flickcurl-1.25/0000755000175000017500000000000012210726306010417 500000000000000flickcurl-1.25/flickcurl.rdf.in0000644000175000017500000000366111317514670013433 00000000000000 Flickcurl Flickcurl Flickr API Library. A free software / Open Source C library that provides a C API to the Flickr API web services. Dave Beckett 970987f991961f2553a1bf2574166fa29befbccb stable 2007-01-24 @VERSION@ Dave Beckett 970987f991961f2553a1bf2574166fa29befbccb flickcurl-1.25/build/0000755000175000017500000000000012210726306011516 500000000000000flickcurl-1.25/build/ltversion.m40000644000175000017500000000126212157732311013731 00000000000000# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) flickcurl-1.25/build/missing0000755000175000017500000002415212157732314013047 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2012-01-06.13; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009, 2010, 2011, 2012 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 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. ;; *) 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 ;; *) 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: flickcurl-1.25/build/ltmain.sh0000644000175000017500000105202612157732310013266 00000000000000 # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.1 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.2 Debian-2.4.2-1.1" TIMESTAMP="" package_revision=1.3337 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$absdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type \`$version_type'" ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" func_resolve_sysroot "$deplib" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 flickcurl-1.25/build/config.sub0000755000175000017500000010532712157732314013437 00000000000000#! /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, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-04-18' # 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, 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. # 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, 2011, 2012 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-android* | 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/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) 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*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -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 \ | aarch64 | aarch64_be \ | 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 \ | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | le32 | le64 \ | 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 \ | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ | open8 \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | 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 \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-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-* \ | aarch64-* | aarch64_be-* \ | 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-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | 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-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | le32-* | le64-* \ | 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-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | 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-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | 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 ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; 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 | 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*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-/'` ;; msys) basic_machine=i386-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; 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 ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; 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 | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) 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 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; 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 ;; tile*) basic_machine=$basic_machine-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 ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; 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* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-android* \ | -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 ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) 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 ;; 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: flickcurl-1.25/build/install-sh0000755000175000017500000003325612157732314013461 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-01-19.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 # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for `test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-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 X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: flickcurl-1.25/build/compile0000755000175000017500000001615212157732314013027 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-03-05.13; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free # Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: flickcurl-1.25/build/depcomp0000755000175000017500000005064312157732314013031 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2012-03-27.16; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # A tabulation character. tab=' ' # A newline character. nl=' ' 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 if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -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 ' ' "$nl" < "$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. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -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 ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # 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" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. 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" sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -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 anf tcc (Tiny C Compiler) understand '-MD -MF file'. # However on # $CC -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 ... \ # ... # tcc 0.9.26 (FIXME still under development at the moment of writing) # will emit a similar output, but also prepend the continuation lines # with horizontal tabulation characters. "$@" -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 -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ < "$tmpdepfile" > "$depfile" sed ' s/[ '"$tab"'][ '"$tab"']*/ /g s/^ *// s/ *\\*$// s/^[^:]*: *// /^$/d /:$/d s/$/ :/ ' < "$tmpdepfile" >> "$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" sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test "$stat" = 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' "$nl" < "$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" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \ ## 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::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: flickcurl-1.25/build/ltsugar.m40000644000175000017500000001042412157732311013365 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) flickcurl-1.25/build/gtk-doc.m40000644000175000017500000000461112157732311013235 00000000000000dnl -*- mode: autoconf -*- # serial 1 dnl Usage: dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) AC_DEFUN([GTK_DOC_CHECK], [ AC_REQUIRE([PKG_PROG_PKG_CONFIG]) AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first dnl check for tools we added during development AC_PATH_PROG([GTKDOC_CHECK],[gtkdoc-check]) AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true]) AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf]) dnl for overriding the documentation installation directory AC_ARG_WITH([html-dir], AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, [with_html_dir='${datadir}/gtk-doc/html']) HTML_DIR="$with_html_dir" AC_SUBST([HTML_DIR]) dnl enable/disable documentation building AC_ARG_ENABLE([gtk-doc], AS_HELP_STRING([--enable-gtk-doc], [use gtk-doc to build documentation [[default=no]]]),, [enable_gtk_doc=no]) if test x$enable_gtk_doc = xyes; then ifelse([$1],[], [PKG_CHECK_EXISTS([gtk-doc],, AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))], [PKG_CHECK_EXISTS([gtk-doc >= $1],, AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build $PACKAGE_NAME]))]) dnl don't check for glib if we build glib if test "x$PACKAGE_NAME" != "xglib"; then dnl don't fail if someone does not have glib PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,) fi fi AC_MSG_CHECKING([whether to build gtk-doc documentation]) AC_MSG_RESULT($enable_gtk_doc) dnl enable/disable output formats AC_ARG_ENABLE([gtk-doc-html], AS_HELP_STRING([--enable-gtk-doc-html], [build documentation in html format [[default=yes]]]),, [enable_gtk_doc_html=yes]) AC_ARG_ENABLE([gtk-doc-pdf], AS_HELP_STRING([--enable-gtk-doc-pdf], [build documentation in pdf format [[default=no]]]),, [enable_gtk_doc_pdf=no]) if test -z "$GTKDOC_MKPDF"; then enable_gtk_doc_pdf=no fi AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes]) AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes]) AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"]) ]) flickcurl-1.25/build/config.guess0000755000175000017500000012743212157732314013775 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-02-10' # 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, 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 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, 2011, 2012 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 tuples: *-*-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'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; 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:*:[4567]) 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:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-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*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys 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 ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -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 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-gnueabi else echo ${UNAME_MACHINE}-unknown-linux-gnueabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-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 ${UNAME_MACHINE}-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 ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-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 ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} 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 ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx 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: flickcurl-1.25/build/ar-lib0000755000175000017500000001330312157732314012540 00000000000000#! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2012-03-01.08; # UTC # Copyright (C) 2010, 2012 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS flickcurl-1.25/build/ltoptions.m40000644000175000017500000003007312157732311013741 00000000000000# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) flickcurl-1.25/ChangeLog0000644000175000017500000047541312210726223012125 000000000000002013-09-01 Dave Beckett * Snapshotted flickcurl_1_25 for 1.25 release (GIT 4222075303446c1f1241282a41838557876559b2) 2013-08-24 Dave Beckett * README.html: Fix broken link 2013-08-09 Dave Beckett * coverage.html, src/flickcurl.h, src/tags-api.c, utils/flickcurl.c: Implement flickr.tags.getMostFrequentlyUsed (flickcurl_tags_getMostFrequentlyUsed): Added implementing flickr.tags.getMostFrequentlyUsed Updated flickcurl utility to support it. ISSUE: This does not seeem to work via OAuth 2.0 although it works in the API Explorer. 2013-07-29 Dave Beckett * coverage.html, src/flickcurl.h, src/people-api.c, utils/flickcurl.c: Added flickr.people.getGroups (flickcurl_people_getGroups): Added. * coverage.html: Added flickr.contacts.getTaggingSuggestions * src/contacts-api.c, src/flickcurl.h, utils/flickcurl.c: Added contacts.getTaggingSuggestions (flickcurl_contacts_getTaggingSuggestions): Added. Reordered parameters to match rest of contacts.get* API calls. flickcurl: Added new command and adjusted some help text for other contacts.get* API calls. 2013-06-22 Dave Beckett * ChangeLog: #changes 2013-06-21 Dave Beckett * src/groups-api.c: Guess that boolean value params take '1' or '0' strings 2013-06-17 Dave Beckett * NEWS.html: 1.25 changes * flickcurl-config.in: tidy vars * configure.ac: tidy AC_CONFIG_FILES * docs/flickcurl-config.1, flickcurl-config.in: Work without pkg-config and deprecate flickcurl-config in docs * docs/tmpl/section-group.sgml, docs/tmpl/section-upload.sgml: Update tmpls * docs/flickcurl-sections.txt: Add internal / deprecated flickcurl_upload_status_free * docs/flickcurl-config.1, flickcurl-config.in: Work without pkg-config and deprecate flickcurl-config in docs * docs/tmpl/section-group.sgml, docs/tmpl/section-upload.sgml: Update tmpls * docs/flickcurl-sections.txt: Add internal / deprecated flickcurl_upload_status_free * utils/flickrdf.c: Use non-deprecated flickcurl_photos_getInfo2 * coverage.html: Update coverage for new groups apis * docs/flickcurl-sections.txt, src/flickcurl.h, src/groups-api.c, utils/flickcurl.c: Added new API calls for groups join, joinRequest and leave (flickcurl_groups_join, flickcurl_groups_joinRequest) (flickcurl_groups_leave): Added. * utils/codegen.c: Update codegen for new parameters calls * coverage.html: reorder * coverage.html: Added auth.oauth 2013-06-16 Dave Beckett * coverage.html: updated %age * coverage.html: Updated coverage by hand * utils/flickcurl.c: (command_urls_lookupUser): Fix failure * src/upload-api.c: (flickcurl_photos_upload): Init hidden to default -1 * src/flickcurl.h: flickcurl_upload_params: annotate default values safety_level, content_type and hidden can be left at their default values with values <=0 * utils/flickcurl.c: Adjust oauth docs to oauth.CMD form * utils/flickcurl.c: newline in output * src/common.c: (flickcurl_invoke_common): Remove totally wrong XML form content type. * src/common.c: Add curl input/output tracing when FLICKCURL_DEBUG > 2 * src/common.c: debug formatting * src/common.c: more CURL debugging details for forms * utils/flickcurl.c: (command_oauth_create): Report next step command line for oauth-create * src/oauth.c: (flickcurl_oauth_prepare_common): Fix assert to look for too small buffer. * src/oauth.c: docs * src/common.c: 2013 2013-05-29 Dave Beckett * src/common.c: docs * src/legacy-auth.c, src/oauth.c: Fix assert to check the right thing 2013-05-27 Dave Beckett * src/common.c, src/legacy-auth.c, src/oauth.c: Take care not to add '?' for OAuth signature calculations in POST Default flickcurl_flickr_service_uri loses the '?' (flickcurl_legacy_prepare_common, flickcurl_oauth_prepare_common): Rename parameter to service_uri and use if(parameters_in_url) to decide when to add '?'. * src/common.c, src/contacts-api.c, src/favorites-api.c, src/galleries-api.c, src/groups-pools-api.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photos-licenses-api.c, src/photos-notes-api.c, src/photos-people-api.c, src/photosets-api.c, src/photosets-comments-api.c: flickcurl_init_params initialises data to empty Remove most flickcurl_set_data calls which all set the data to empty; it's not used to set non-empty data. * src/activity-api.c, src/auth-api.c, src/blogs-api.c, src/collections-api.c, src/common.c, src/commons-api.c, src/contacts-api.c, src/favorites-api.c, src/flickcurl.h, src/flickcurl_internal.h, src/galleries-api.c, src/groups-api.c, src/groups-members-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/legacy-auth.c, src/machinetags-api.c, src/oauth.c, src/panda-api.c, src/people-api.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photos-licenses-api.c, src/photos-notes-api.c, src/photos-people-api.c, src/photos-transform-api.c, src/photos-upload-api.c, src/photosets-api.c, src/photosets-comments-api.c, src/places-api.c, src/prefs-api.c, src/reflection-api.c, src/stats-api.c, src/tags-api.c, src/test-api.c, src/upload-api.c: Move is_write flag to flickcurl_init_params() OAuth needs this flag during prepare which is too late using flickcurl_set_write() later on. 2013-04-10 Dave Beckett * NEWS.html, configure.ac: Bumped version to 1.25 * Snapshotted flickcurl_1_24 for 1.24 release (GIT 874b9f7033ac681925a2f9f260c4d5af510e55d2) * utils/flickrdf.c: Casts for C++ * src/favorites-api.c, src/group.c, src/oauth.c, src/sha1.c: Casts for C++ * src/oauth.c: (flickcurl_oauth_create_access_token): Handle NULL username, user_nsid [clang] * src/group.c: (flickcurl_build_groups): Do not lose malloced attr values [clang] * configure.ac: Only add libcurl and libxml to .pc if they were configured via pkg-config 2013-04-09 Dave Beckett * src/.gitignore: Ignore more 2013-04-08 Dave Beckett * examples/print-photo-info.c: Include flickcurl_config_read_in() example code * examples/search-photos.c: Use flickcurl_config_read_ini() to get config * examples/search-photos.c: Updated for reading OAuth config using flickcurl_config_var_handler() * src/md5.c: Do not destroy MD5 digest 2013-04-07 Dave Beckett * build/.gitignore: ignore more * autogen.sh: autoconf * configure.ac: autoconf warnings Make AC_RUN_IFELSE assume failure when cross compiling and checking for vsnprintf return; pessimisim will work * configure.ac: Modernize LT_INIT call for libtool 2.2+ * README.html: words * docs/flickcurl-oauth.xml: update example tokens * LICENSE.html, NEWS.html, README.html, docs/flickcurl-docs.xml: 2013 * examples/print-photo-info.c: Use OAuth * docs/flickcurl-sections.txt: 1.24 new functions * src/common.c, src/md5.c: memset fixes [gcc 4.8] * NEWS.html: 1.24 * ChangeLog: #changes * src/oauth.c: (flickcurl_oauth_free): Free oauth username and user_nsid * Merge pull request #18 from jcsogo/userid Make available the username and user_nsid when oauth authentication happens 2013-02-22 Dave Beckett * utils/flickcurl.c: Add missing command contacts.getPublicList Fixes https://github.com/dajobe/flickcurl/issues/19 2013-02-14 Jose Carlos Garcia Sogo * src/oauth.c: Commit forgotten code 2013-02-13 Dave Beckett * utils/flickcurl.c: Allow photos.getInfo to take an optional SECRET arg Call flickcurl_photos_getInfo2() instead of deprecated flickcurl_photos_getInfo() * utils/flickcurl.c: Add description of PER-PAGE and PAGE into manpage See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635989 * utils/flickcurl.c: Make PER-PAGE PAGE docs match code See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635989 * src/flickcurl.h, src/photos-api.c: (flickcurl_photos_getInfo2): Added replacing flickcurl_photos_getInfo Adds optional 'secret' parameter that was added sometime to the API. See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637746 2013-02-13 Jose Carlos Garcia Sogo * src/flickcurl.h, src/flickcurl_internal.h: Make available the username and user_nsid when oauth authentication is done 2013-01-16 Dave Beckett * src/common.c: (win32 gettimeofday): Use tp-> not tv-> 2013-01-11 Dave Beckett * src/tags.c: Grab text from child text node correctly. Fixes https://github.com/dajobe/flickcurl/issues/16 2013-01-10 Dave Beckett * src/location.c: Parse double latitude and longitude with atof() not atoi() Bug report from Clemens Arth - thanks 2012-12-15 Dave Beckett * autogen.sh: Handle AM_CONFIG_HEADER AND newer AC_CONFIG_HEADER(S) 2012-12-03 Dave Beckett * src/flickcurl.h, src/group.c, utils/flickcurl.c: Add a pile of group response fields. Added iconfarm icon farm number; is_moderator and is_member booleans, rules description; pool_count, topic_count counts and group restriction booleans: photos_ok, videos_ok, images_ok, screens_ok, art_ok, safe_ok, moderate_ok, restricted_ok, has_geo. 2012-09-02 Dave Beckett * NEWS.html, configure.ac: Bumped version to 1.24 2012-09-01 Dave Beckett * Snapshotted flickcurl_1_23 for 1.23 release (GIT 29b6f5b550599ce9398504b975c784eac4cb2ba1) * docs/flickcurl-authenticate.xml, docs/flickcurl-oauth.xml: docs * utils/flickcurl.c: Add oauth.verify command to upgrade legacy auth to OAuth * docs/flickcurl-authenticate.xml, docs/flickcurl-oauth.xml: More oauth docs * docs/Makefile.am, docs/flickcurl-authenticate.xml, docs/flickcurl-docs.xml, docs/flickcurl-oauth.xml: OAuth docs 2012-08-31 Dave Beckett * autogen.sh: autogen.sh docs * autogen.sh, configure.ac: Update autogen.sh and configure.ac via autoupdate 2012-08-29 Dave Beckett * NEWS.html: words * NEWS.html: html 2012-08-28 Dave Beckett * src/oauth.c: (test_request_token): Fix call to flickcurl_oauth_create_request_token * utils/Makefile.am, utils/oauth-test.c: Remove oauth-test utility no longer needed * docs/tmpl/section-auth.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-misc.sgml: Update tmpls * docs/flickcurl-sections.txt: Add new functions to sections * src/collection.c, src/common.c, src/gallery.c, src/person.c, src/photo.c: Replace strncpy with memcpy * ChangeLog: #changes * src/oauth.c: Remove final strcat from OAuth code (flickcurl_oauth_prepare_common): replaced strcat with pointer movement and memcpy * src/oauth.c: Remove strcpy and stract from OAuth code (flickcurl_oauth_prepare_common): strcpy and strcat replaced with pointer movement and memcpy * src/photo.c: (flickcurl_user_icon_uri): 42 * src/photo.c: (flickcurl_photo_as_source_uri): Remove strcpy * src/machinetags.c: Switch to strlen / malloc / memcpy form (flickcurl_build_tag_namespaces, flickcurl_build_tag_predicate_values): Switch from sequence: dest = malloc(strlen(str) + 1); strcpy(dest, str); to len = strlen(str) dest = malloc(len + 1) memcpy(dest, str, len + 1) to get rid of strcpy for known string length * src/legacy-auth.c: Remove strcpy from legacy auth code (flickcurl_legacy_prepare_common): Lots of url and parameter counting. strcpy and strcat replaced with pointer movement and memcpy * src/args.c: (flickcurl_build_args): Fix strlen/malloc/memcpy cut-n-pasto * src/activity.c, src/args.c, src/blog.c, src/category.c, src/comments.c, src/contacts.c, src/context.c, src/exif.c, src/gallery.c, src/group.c, src/members.c, src/note.c, src/oauth.c, src/panda-api.c, src/perms.c, src/photos-api.c, src/photos-licenses-api.c, src/photoset.c, src/place.c, src/reflection-api.c, src/serializer.c, src/size.c, src/stat.c, src/tags.c, src/ticket.c, src/user_upload_status.c, src/common.c: Switch to strlen / malloc / memcpy form for setters Switch from sequence: dest = malloc(strlen(str) + 1); strcpy(dest, str); to len = strlen(str) dest = malloc(len + 1) memcpy(dest, str, len + 1) to get rid of strcpy for known string length (flickcurl_set_user_agent, flickcurl_set_proxy, flickcurl_set_http_accept): swtich from "malloc(strcpy); strcpy" to "strlen(); malloc(); memcpy()" sequence (flickcurl_invoke_common): Use same for raptor building URIs from filename. * src/common.c, src/legacy-auth.c, src/oauth.c, src/photo.c: Change slightly unportable strdup() with malloc + memcpy * src/group.c: Free attribute values if not used [clang] (flickcurl_build_groups): Free value from child node always * libmtwist: Update submodule libmtwist * src/upload-api.c: Free status on error path [clang] (flickcurl_photos_upload_params, flickcurl_photos_replace): Free status on error exist. * src/ticket.c: Free attribute values if not used [clang] (flickcurl_build_tickets): Free attr_value * src/tags.c: Free attribute values if not used. Free vars in loop [clang] (flickcurl_build_tags): Free attr_value (flickcurl_build_tags_from_string): Use memcpy for known length string. (flickcurl_build_tag_clusters): Free tc on loop skip Free tag cluster on error exit. * src/stats-api.c: Initialise vars for errors. Free results on an error [clang] (flickcurl_stats_getCollectionStats, flickcurl_stats_getPhotosetStats, flickcurl_stats_getPhotostreamStats): Initialize count vars for error case. (flickcurl_stats_getTotalViews): Initialize count vars for error case. Free views on error exits * src/stat.c: Free attribute values if not used [clang] (flickcurl_build_stats): Free attr_value * src/size.c: Free attribute values if not used [clang] (flickcurl_build_sizes): Free attr_value * src/shape.c: Free results on an error [clang] (flickcurl_build_shapes): Free shapes on error exits * src/place.c: Free results on an error, attribute values, calloc fixes [clang] (flickcurl_build_places): Free places on error exits (flickcurl_build_place_types): Calloc correct object pointer (semantic error but not dangerous). Calloc correct parameter order. Free attribute value if not used. * src/photos-licenses-api.c: Free attribute values if not used [clang] (flickcurl_read_licenses): Free attr_value * src/photos-api.c: Free attribute values if not used and objects on error path [clang] (flickcurl_build_photocounts): Free attr_value (flickcurl_photos_getCounts): Free counts on error exit * src/photo.c: Free results on an error [clang] (flickcurl_build_photos): Free photos on error exits (flickcurl_invoke_photos_list): Check for NULL photos_list before trying to call it * src/perms.c: Free attribute values if not used [clang] (flickcurl_build_perms): Free attr_value * src/panda-api.c: Free results on an error [clang] (flickcurl_panda_getList): Free pandas on error exits * src/note.c: Free attribute values if not used [clang] (flickcurl_build_notes): Free attr_value * src/method.c: Free results on an error [clang] (flickcurl_build_method): Free method on error exits * src/machinetags.c: Free attribute values if not used [clang] (flickcurl_build_tag_namespaces, flickcurl_build_tag_predicate_values): Free attr_value * src/location.c: Memcpy and attribute value fixes [clang] (flickcurl_build_location): memcpy instead of strcpy. Always free attribute value. * src/institution.c: Free results on an error [clang] (flickcurl_build_institutions): Free institutions on error exits * src/favorites-api.c: Free results on an error [clang] (flickcurl_favorites_getContext): Do not set an unused value. Free photos lists on error exits * src/exif.c: Free attribute values if not used [clang] (flickcurl_build_exifs): Free attr_value * src/context.c: Fix allocation and freeing attribute values [clang] (flickcurl_build_contexts): Calloc correct sized pointer (no danger, but a semantic error). Free unused attribute values. * src/common.c: Set a return value always [clang] (flickcurl_prepare_common): Set rc and use memcpy for string * src/collection.c: Free results on an error [clang] (flickcurl_build_collections): Free collections on error exits * src/category.c: Free attribute values if not used [clang] (flickcurl_build_categories): Free attr_value * src/blog.c: Free attribute values if not used [clang] (flickcurl_build_blogs, flickcurl_build_blog_services): Free attr_value * src/.gitignore, src/Makefile.am: Add analyze target for source * configure.ac: Add RECHO, RECHO_C, RECHO_N * analyze * src/oauth.c: Remove final strcat from OAuth code (flickcurl_oauth_prepare_common): replaced strcat with pointer movement and memcpy * src/oauth.c: Remove strcpy and stract from OAuth code (flickcurl_oauth_prepare_common): strcpy and strcat replaced with pointer movement and memcpy * src/photo.c: (flickcurl_user_icon_uri): 42 * src/photo.c: (flickcurl_photo_as_source_uri): Remove strcpy * src/machinetags.c: Switch to strlen / malloc / memcpy form (flickcurl_build_tag_namespaces, flickcurl_build_tag_predicate_values): Switch from sequence: dest = malloc(strlen(str) + 1) strcpy(dest, str) to len = strlen(str) dest = malloc(len + 1) memcpy(dest, str, len + 1) to get rid of strcpy for known string length * src/legacy-auth.c: Remove strcpy from legacy auth code (flickcurl_legacy_prepare_common): Lots of url and parameter counting. strcpy and strcat replaced with pointer movement and memcpy * src/args.c: (flickcurl_build_args): Fix strlen/malloc/memcpy cut-n-pasto * src/activity.c, src/args.c, src/blog.c, src/category.c, src/comments.c, src/contacts.c, src/context.c, src/exif.c, src/gallery.c, src/group.c, src/members.c, src/note.c, src/oauth.c, src/panda-api.c, src/perms.c, src/photos-api.c, src/photos-licenses-api.c, src/photoset.c, src/place.c, src/reflection-api.c, src/serializer.c, src/size.c, src/stat.c, src/tags.c, src/ticket.c, src/user_upload_status.c: Switch to strlen / malloc / memcpy form for setters Switch from sequence: dest = malloc(strlen(str) + 1) strcpy(dest, str) to len = strlen(str) dest = malloc(len + 1) memcpy(dest, str, len + 1) to get rid of strcpy for known string length * src/common.c: Switch to strlen / malloc / memcpy form for setters (flickcurl_set_user_agent, flickcurl_set_proxy, flickcurl_set_http_accept): swtich from "malloc(strcpy); strcpy" to "strlen(); malloc(); memcpy()" sequence (flickcurl_invoke_common): Use same for raptor building URIs from filename. * src/common.c, src/legacy-auth.c, src/oauth.c, src/photo.c: Change slightly unportable strdup() with malloc + memcpy * src/group.c: Free attribute values if not used [clang] (flickcurl_build_groups): Free value from child node always * libmtwist: Update submodule libmtwist * src/upload-api.c: Free status on error path [clang] (flickcurl_photos_upload_params, flickcurl_photos_replace): Free status on error exist. * src/ticket.c: Free attribute values if not used [clang] (flickcurl_build_tickets): Free attr_value * src/tags.c: Free attribute values if not used. Free vars in loop [clang] (flickcurl_build_tags): Free attr_value (flickcurl_build_tags_from_string): Use memcpy for known length string. (flickcurl_build_tag_clusters): Free tc on loop skip Free tag cluster on error exit. * src/stats-api.c: Initialise vars for errors. Free results on an error [clang] (flickcurl_stats_getCollectionStats, flickcurl_stats_getPhotosetStats, flickcurl_stats_getPhotostreamStats): Initialize count vars for error case. (flickcurl_stats_getTotalViews): Initialize count vars for error case. Free views on error exits * src/stat.c: Free attribute values if not used [clang] (flickcurl_build_stats): Free attr_value * src/size.c: Free attribute values if not used [clang] (flickcurl_build_sizes): Free attr_value * src/shape.c: Free results on an error [clang] (flickcurl_build_shapes): Free shapes on error exits * src/place.c: Free results on an error, attribute values, calloc fixes [clang] (flickcurl_build_places): Free places on error exits (flickcurl_build_place_types): Calloc correct object pointer (semantic error but not dangerous). Calloc correct parameter order. Free attribute value if not used. * src/photos-licenses-api.c: Free attribute values if not used [clang] (flickcurl_read_licenses): Free attr_value * src/photos-api.c: Free attribute values if not used and objects on error path [clang] (flickcurl_build_photocounts): Free attr_value (flickcurl_photos_getCounts): Free counts on error exit * src/photo.c: Free results on an error [clang] (flickcurl_build_photos): Free photos on error exits (flickcurl_invoke_photos_list): Check for NULL photos_list before trying to call it * src/perms.c: Free attribute values if not used [clang] (flickcurl_build_perms): Free attr_value * src/panda-api.c: Free results on an error [clang] (flickcurl_panda_getList): Free pandas on error exits * src/note.c: Free attribute values if not used [clang] (flickcurl_build_notes): Free attr_value * src/method.c: Free results on an error [clang] (flickcurl_build_method): Free method on error exits * src/machinetags.c: Free attribute values if not used [clang] (flickcurl_build_tag_namespaces, flickcurl_build_tag_predicate_values): Free attr_value * src/location.c: Memcpy and attribute value fixes [clang] (flickcurl_build_location): memcpy instead of strcpy. Always free attribute value. * src/institution.c: Free results on an error [clang] (flickcurl_build_institutions): Free institutions on error exits * src/favorites-api.c: Free results on an error [clang] (flickcurl_favorites_getContext): Do not set an unused value. Free photos lists on error exits * src/exif.c: Free attribute values if not used [clang] (flickcurl_build_exifs): Free attr_value * src/context.c: Fix allocation and freeing attribute values [clang] (flickcurl_build_contexts): Calloc correct sized pointer (no danger, but a semantic error). Free unused attribute values. * src/common.c: Set a return value always [clang] (flickcurl_prepare_common): Set rc and use memcpy for string * src/collection.c: Free results on an error [clang] (flickcurl_build_collections): Free collections on error exits * src/category.c: Free attribute values if not used [clang] (flickcurl_build_categories): Free attr_value * src/blog.c: Free attribute values if not used [clang] (flickcurl_build_blogs, flickcurl_build_blog_services): Free attr_value * src/.gitignore, src/Makefile.am: Add analyze target for source * configure.ac: Add RECHO, RECHO_C, RECHO_N * src/Makefile.am: analyze 2012-08-27 Dave Beckett * NEWS.html: 1.23 * NEWS.html: new APIs * src/common.c, src/flickcurl.h, src/oauth.c, utils/flickcurl.c: Split oauth request token/secret setting into two functions (flickcurl_set_oauth_request_credentials): Deleted (flickcurl_set_oauth_request_token, flickcurl_set_oauth_request_token_secret): Added, replacing above. * NEWS.html: OAuth API calls * NEWS.html: 1.23 2012-08-27 Dave Beckett * src/oauth.c: Remove unused parameters vars (flickcurl_oauth_create_request_token, flickcurl_oauth_create_access_token): Use flickcurl_end_params() and count for form field counting * src/flickcurl.h, src/flickcurl_internal.h, src/win32_flickcurl_config.h: 2012 * utils/codegen.c, utils/flickcurl.c, utils/flickrdf.c, utils/list-methods.c, utils/oauth-test.c, utils/raptor_fake.c, utils/raptor_fake.h: 2012 * src/activity-api.c, src/auth-api.c, src/blogs-api.c, src/collection.c, src/collections-api.c, src/common.c, src/commons-api.c, src/config.c, src/contacts-api.c, src/favorites-api.c, src/galleries-api.c, src/groups-api.c, src/groups-members-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/machinetags-api.c, src/oauth.c, src/panda-api.c, src/people-api.c, src/person.c, src/photo.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photos-licenses-api.c, src/photos-notes-api.c, src/photos-people-api.c, src/photos-transform-api.c, src/photos-upload-api.c, src/photosets-api.c, src/photosets-comments-api.c, src/places-api.c, src/prefs-api.c, src/reflection-api.c, src/serializer.c, src/stats-api.c, src/tags-api.c, src/test-api.c, src/upload-api.c, src/urls-api.c: 2012 2012-08-26 Dave Beckett * src/places-api.c, src/reflection-api.c: Update count parameter use to new style here too * src/activity-api.c, src/auth-api.c, src/blogs-api.c, src/collections-api.c, src/common.c, src/commons-api.c, src/contacts-api.c, src/favorites-api.c, src/flickcurl_internal.h, src/galleries-api.c, src/groups-api.c, src/groups-members-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/legacy-auth.c, src/machinetags-api.c, src/oauth.c, src/panda-api.c, src/people-api.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photos-licenses-api.c, src/photos-notes-api.c, src/photos-people-api.c, src/photos-transform-api.c, src/photos-upload-api.c, src/photosets-api.c, src/photosets-comments-api.c, src/places-api.c, src/prefs-api.c, src/reflection-api.c, src/stats-api.c, src/tags-api.c, src/test-api.c, src/upload-api.c: Move all use of 'count' var to use fc->count (flickcurl_init_params, flickcurl_add_param, flickcurl_end_param): Added and used in every API call to replace by-hand construction of params and adjusting count variable. (flickcurl_prepare_common, flickcurl_legacy_prepare_common, flickcurl_oauth_prepare_common, flickcurl_prepare_noauth, flickcurl_prepare): Lose count param and use fc->count directly for computing parameters and requests. (flickcurl_call_get_one_string_field): Use flickcurl_add_param etc. (flickcurl_append_photos_list_params): Lose count param and use flickcurl_add_param instead. Update all callers. * src/favorites-api.c, src/galleries-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/people-api.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photosets-api.c, src/stats-api.c: Update flickcurl_append_photos_list_params calls without parameters * src/common.c, src/flickcurl_internal.h, src/legacy-auth.c, src/oauth.c: Move parameters into flickcurl object as a fixed array (flickcurl_prepare_common, flickcurl_prepare_noauth, flickcurl_prepare_upload, flickcurl_append_photos_list_params, flickcurl_sort_args, flickcurl_oauth_prepare_common): Remove parameters argument from multiple calls, replacing it with use of fc->parameters (flickcurl_call_get_one_string_field): use fc->parameters Declared largest array of parameters once using FLICKCURL_MAX_OAUTH_PARAM_COUNT and FLICKCURL_MAX_PARAM_COUNT * src/config.c, src/flickcurl.h, src/oauth.c: Replace flickcurl_set_oauth_client_credentials() with two calls (flickcurl_set_oauth_client_key, flickcurl_set_oauth_client_secret): Added. * src/config.c: (flickcurl_config_var_handler): client key/secret get switched * src/oauth.c: Now legal C * utils/flickcurl.c: Add oauth-create and oauth-verify commands to invoke OAuth flow (command_oauth_create): Added to create the request token/secret (command_oauth_verify): Added to verify the request from the OAuth frob to give the access tokens. Saves the OAuth tokens to the config file too. * src/oauth.c: Allow setting NULL fields in OAuth credential set calls (flickcurl_set_oauth_client_credentials, flickcurl_set_oauth_token, flickcurl_set_oauth_token_secret, flickcurl_set_oauth_request_credentials): Allow NULL args and set/cleanup correctly. 2012-08-25 Dave Beckett * utils/flickcurl.c: oauth docs * utils/oauth-test.c: Just use public APIs (oauth_prepare, oauth_test_echo): Removed (main): Remove flickcurl_set_oauth_client_credentials - the client key/secret must be in the configuration file now. Call flickcurl_test_echo(). * utils/oauth-test.c: Allow callback URI * src/flickcurl.h, src/oauth.c, utils/oauth-test.c: (flickcurl_oauth_create_request_token): Allow optional callback * src/flickcurl.h, src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: Expose oauth authentication calls to public API (flickcurl_oauth_create_request_token): Made public, was flickcurl_oauth_request_token internally. (flickcurl_oauth_create_request_token): Was flickcurl_oauth_request_token (flickcurl_oauth_get_authorize_uri): Made public. (flickcurl_oauth_create_access_token): Made public, was flickcurl_oauth_access_token internally. (flickcurl_get_oauth_request_token, flickcurl_get_oauth_request_token_secret, flickcurl_set_oauth_request_credentials): Added to get/set the request tokens. * src/person.c: (flickcurl_build_persons): Tidy up better on loop exit and error path Fixed leaks of - xpathNodeCtx always - person object and persons array on errors * src/photo.c: (flickcurl_build_photos): Fix leak of string_value for tags * configure.ac: Curl version line fix 2012-08-24 Dave Beckett * configure.ac: Use xml2-config and curl-config as well as pkg-config * src/common.c: (flickcurl_prepare_common): Make legacy auth work again * utils/flickcurl.c: OAuth * src/config.c: oauth_token_secret * src/config.c: Read oauth fields from config * utils/oauth-test.c: Use flickcurl_set_oauth_client_credentials() * src/flickcurl.h, src/oauth.c: Added getter/setters for OAuth client key and secret (flickcurl_get_oauth_client_key, flickcurl_get_oauth_client_secret): Added getters (flickcurl_set_oauth_client_credentials): Added setter. * src/common.c: docs * src/auth-api.c: (flickcurl_auth_oauth_getAccessToken): old secret becomes client_secret 2012-08-23 Dave Beckett * src/oauth.c: Turn code into a check for test failure * docs/tmpl/section-core.sgml: update tmpls * src/reflection-api.c: (flickcurl_reflection_getMethods): No auth needed * docs/flickcurl-sections.txt: Added oauth get/setters flickcurl_get_oauth_token flickcurl_get_oauth_token_secret flickcurl_set_oauth_token flickcurl_set_oauth_token_secret * src/Makefile.am, src/common.c, src/flickcurl_internal.h, src/legacy-auth.c: Move legacy auth code to new module src/legacy-auth.c * src/common.c: Call legacy or OAuth to prepare and sign calls (flickcurl_legacy_prepare_common): Renamed from flickcurl_prepare_common. (flickcurl_prepare_common): Call legacy Flickr Auth - above - or OAuth via flickcurl_oauth_prepare_common. * src/flickcurl_internal.h: docs for legacy auth fields * src/auth-api.c: (flickcurl_auth_getToken): Store exchanged OAuth token/secret * utils/flickcurl.c: Document oauth_token and oauth_secret in config * src/config.c: (flickcurl_config_write_ini): Write oauth fields if set * src/common.c: Switch API Key source from fc->api_key to fc->od.client_key Update docs to 'legacy Flickr auth' for get/setters for legacy token and secret. * src/flickcurl.h, src/oauth.c: Add get/setters for OAuth tokens (flickcurl_get_oauth_token, flickcurl_set_oauth_token, flickcurl_get_oauth_token_secret, flickcurl_set_oauth_token_secret): Added * configure.ac, src/Makefile.am, src/common.c, src/flickcurl_internal.h, utils/Makefile.am: Enable OAuth support always * build/.gitignore, configure.ac: Add AM_PROG_AR for linking 2012-04-18 Dave Beckett * src/photos-api.c: (flickcurl_photos_setDates): Actually send date_taken parameter Fixes GitHub issue https://github.com/dajobe/flickcurl/issues/15 2012-03-11 Dave Beckett * src/flickcurl.h: Document sizes 2011-12-29 Dave Beckett * src/auth-api.c: 1.23 * NEWS.html: 1.23 * coverage.html: 1.22 and 1.23 2011-12-28 Dave Beckett * NEWS.html, configure.ac: Bumped version to 1.23 2011-11-11 Dave Beckett * Snapshotted flickcurl_1_22 for 1.22 release (GIT 6698387f4240cec82b0e115adf8a863657dd7066) * utils/oauth-test.c: Update flickcurl_oauth_prepare_common call * NEWS.html, src/common.c, src/flickcurl_internal.h: Disable mtwist unless building experimental OAuth * src/Makefile.am: Do not use libmtwist without oauth * configure.ac, src/Makefile.am, src/common.c, src/flickcurl_internal.h, utils/Makefile.am: Add --enable-oauth default disabled * src/common.c: (flickcurl_free): Free OAuth urls * src/oauth.c: (test_signature_calc): Test free * src/oauth.c: Make oauth test work again * src/flickcurl_internal.h, src/oauth.c: Remove is_request arg - just use od->callback * src/common.c, src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: Move flickcurl_oauth_data into flickcurl struct * docs/flickcurl-docs.xml, docs/tmpl/section-config.sgml: Add config section to docs * autogen.sh, docs/tmpl/section-auth.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-misc.sgml, docs/tmpl/section-unused.sgml, docs/tmpl/section-upload.sgml, libmtwist: Fix submodule checkouts * autogen.sh: Init and update any git submodules 2011-11-09 Dave Beckett * src/flickcurl_internal.h, src/oauth.c: Reduce visibility of oauth internal functions These are internal to the library now because the flickcurl_oauth_data is an internal structure. 2011-11-01 Dave Beckett * src/common.c: Return method details with curl errors * src/Makefile.am: Clean tests 2011-10-30 Dave Beckett * utils/oauth-test.c: code style * utils/oauth-test.c: casts * src/oauth.c: docs * src/oauth.c: consts * docs/flickcurl-sections.txt: add oauth urls * src/flickcurl_internal.h, src/oauth.c: fix const char keys * src/oauth.c: docs * src/oauth.c: (flickcurl_oauth_access_token): Delete request token after success. * src/oauth.c: (flickcurl_oauth_build_key): Build sign key from request OR access token * utils/oauth-test.c: docs * src/Makefile.am, src/oauth.c, utils/oauth-test.c: Add oauth checksum test * src/.gitignore: ignore *_test 2011-10-29 Dave Beckett * utils/oauth-test.c: Report request token * src/oauth.c: (flickcurl_oauth_prepare_common): docs and send all oauth params except callback to requests * src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: (flickcurl_oauth_access_token): Pass in verifier * src/flickcurl_internal.h, src/oauth.c: request_token* fields renamed from tmp_token* * docs/flickcurl-sections.txt, src/auth-api.c, src/flickcurl.h: Added flickr.auth.oauth.getAccessToken partial support (flickcurl_auth_oauth_getAccessToken): Added for flickr.auth.oauth.getAccessToken - right now it exchanges the old tokens for OAuth ones and drops them both. * src/flickcurl_internal.h, utils/oauth-test.c: oauth field client_key_len renamed from client_len * utils/oauth-test.c: FLICKCURL_MAX_OAUTH_PARAM_COUNT * src/oauth.c: is_oauth_method fix * src/flickcurl_internal.h, src/oauth.c: FLICKCURL_MAX_OAUTH_PARAM_COUNT * src/flickcurl.h, src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: Compute authorize URI after getting back oauth request token (flickcurl_oauth_get_authorize_uri): Added. * src/common.c, src/flickcurl_internal.h, src/oauth.c: Add utility functions for oauth responses as HTTP forms (flickcurl_invoke_get_form_content): Added to get content as k/v array of strings. (flickcurl_free_form): Added to free the above. (flickcurl_oauth_request_token), flickcurl_oauth_access_token): Use above. * src/common.c, src/flickcurl_internal.h, src/oauth.c, utils/Makefile.am, utils/oauth-test.c: Move OAuth test code into oauth.c and refactor a little * src/oauth.c: (flickcurl_oauth_prepare_common): Do not use oath method name in params * libmtwist: Update to libmtwist head * utils/oauth-test.c: Pass in (fake) flickr method for flickcurl_oauth_prepare_common() * src/oauth.c: (flickcurl_oauth_prepare_common): Use http method not flickr method * utils/oauth-test.c: remove unused srand() * src/common.c, src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: Use libmtwist for PRNG for nonce * libmtwist: Update to libmtwist head * docs/flickcurl-sections.txt: Add symbols * src/Makefile.am: Add mtwist_config.h * NEWS.html, docs/flickcurl-sections.txt: flickcurl_get_hidden_from_string * README.html: libmtwist submodule 2011-10-28 Dave Beckett * .gitmodules, configure.ac, libmtwist, src/Makefile.am, src/mtwist_config.h: Add libmtwist as a git submodule 2011-10-16 Dave Beckett * src/oauth.c: (flickcurl_oauth_compute_signature): Simplify greatly. * src/config.c, src/flickcurl.h, utils/flickcurl.c: (flickcurl_config_write_ini): Now writes to a filename * utils/codegen.c, utils/flickcurl.c, utils/flickrdf.c, utils/list-methods.c, utils/oauth-test.c: Update the utilities to use flickcurl_config_ functions * docs/flickcurl-sections.txt, src/common.c, src/config.c, src/flickcurl.h: Update flickcurl config file reading and writing support Move ini reading and writing into the library. (flickcurl_config_read_ini): Added, deprecating read_ini_config() and adding a flickcurl* param. Reads in library configuration. (flickcurl_config_var_handler): Added as standard handler for above. (flickcurl_config_write_ini): Added to write an ini file for library configuration. * src/oauth.c: (flickcurl_oauth_compute_signature): Docs and error path. * configure.ac: Fix libcurl version check to actually check curl not libxml twice * configure.ac: Remove unused libcurl_min_vernum * NEWS.html: Tim Harder is 'radhermit' on GitHub. 2011-10-15 Dave Beckett * NEWS.html: 1.22 * utils/flickcurl.c: Tidy help output; describe all upload params defaults * docs/flickcurl-sections.txt: Add flickcurl_get_hidden_label, flickcurl_get_hidden_level_from_string * src/common.c, src/flickcurl.h, src/upload-api.c, utils/flickcurl.c: Add support for upload field 'hidden' flickcurl_upload_params gains int param hidden with values 1 for global and 2 for hidden. (flickcurl_get_hidden_label, flickcurl_get_hidden_from_string): Added utility functions to turn the int to a label and vice versa * utils/flickcurl.c: Document upload params safety_level and content_type * docs/Makefile.am, docs/tmpl/section-favorite.sgml: Update tmpls * docs/flickcurl-sections.txt: Add flickcurl_favorites_getContext * src/favorites-api.c, src/flickcurl.h, utils/flickcurl.c: Implement API favorites.getContext (flickcurl_favorites_getContext): Added returning an array of two photo lists for previous and next photos. flickcurl utility adds new command favorites.getContext to call above. * src/flickcurl_internal.h, src/photo.c: (flickcurl_new_photos_list): Added to construct a photos list * configure.ac, src/common.c, utils/flickrdf.c: Support Raptor V2 only. Raptor V1 was last supported in January 2010 * src/panda-api.c: extras docs 2011-09-02 Dave Beckett * utils/oauth-test.c: access token testing * src/flickcurl_internal.h: Add verifier field 2011-08-15 Dave Beckett * Merge pull request #13 from kumanna/help-without-auth (below) Help without authentication 2011-08-14 Kumar Appaiah * utils/flickcurl.c: Use stdout for non-error user output Since users usually expect any non-error output to come to stdout, this commit changes all output except error reports to be directed to stdout. * utils/flickcurl.c: Fix indentation * utils/flickcurl.c: Provision for help message even when not authenticated. Even when not authenticated, the user might desire to see the list of API calls available. This commit facilitates the display of that message. * utils/flickcurl.c: Move printing help details to a function. This commit moves printing the help message to a function, viz. print_help_string, so that it can be called from multiple places without having to duplicate code. In addition, displays an extra newline at the end for neater output. 2011-08-14 Dave Beckett * Merge pull request #12 from kumanna/kumar (below) Fix man page and documentation quirks reported at Debian. Debian bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635892 2011-08-14 Kumar Appaiah * utils/flickcurl.c: Fix grammatical error in description of galleries.create * docs/flickrdf.1: Fix incorrect spacing in flickrdf man page Fixes an incorrect space in the reference to the flickcurl man page. * docs/flickrdf.1: Remove reference to missing README for flickrdf This removes the reference to a missing README file for flickrdf. This fixes Debian bug 637196 in flickcurl. 2011-07-28 Dave Beckett * Merge pull request #10 from radhermit/curl-headers (below) Remove old curl header include 2011-06-25 Dave Beckett * src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: Test code calls Flickr OAuth endpoint with correctly signed call 2011-06-23 Dave Beckett * src/flickcurl_internal.h: ws * src/flickcurl_internal.h, src/oauth.c, utils/oauth-test.c: (flickcurl_oauth_build_key_data): Added internal call with API that will change * utils/oauth-test.c: (oauth_build_key_data): Added * utils/oauth-test.c: Add a structure oauth_data * utils/oauth-test.c: Do URI encoding and concatenating * src/Makefile.am, src/flickcurl_internal.h, src/oauth.c, src/sha1.c, utils/.gitignore, utils/Makefile.am, utils/oauth-test.c: OAuth test code 2011-05-08 Dave Beckett * src/galleries-api.c, src/method.c, src/photosets-api.c, src/prefs-api.c, src/test-api.c, src/upload-api.c: code style * src/person.c: (flickcurl_build_persons): Do not zap any existing data if a field is not found. 2011-03-31 Dave Beckett * NEWS.html: 1.22 2011-03-31 Dave Beckett * utils/Makefile.am: Add raptor_fake.h to sources and distribution. 2011-03-30 Dave Beckett * NEWS.html, configure.ac: Bumped version to 1.22 * docs/tmpl/section-tag.sgml: Added flickcurl_free_tags to doc tmpls * docs/flickcurl-sections.txt: (flickcurl_free_tags): Added 2011-03-30 Naruto TAKAHASHI * src/flickcurl.h, src/photo.c, src/tags.c: add flickcurl_free_tags * docs/tmpl/section-photoset.sgml, src/flickcurl.h, src/photoset.c: move owner filed to the end of the structure. 2011-03-29 Naruto TAKAHASHI * docs/tmpl/section-photoset.sgml, src/flickcurl.h, src/photoset.c: add owner to flickcurl_photoset 2011-03-26 Dave Beckett * Snapshotted flickcurl_1_21 for 1.21 release (GIT 7fe09ab24658240b02a1ba43d84d6df6814e8fb7) * configure.ac: 1.21 * LICENSE.html, README.html, coverage.html: 2011 * NEWS.html: 1.21 2011-03-25 Dave Beckett * configure.ac, src/common.c, src/flickcurl.h, utils/Makefile.am, utils/flickrdf.c, utils/raptor_fake.c, utils/raptor_fake.h: Support Raptor V1 and Raptor V2 with flickrdf utility (configure.ac): Add check for raptor V1 or V2. Support --with-raptor values '1'/'yes' for V1, '2' for V2 and 'no' for none/fake. (utils/flickrdf.c): can now support raptor V1, V2 or fake (utils/raptor_fake.c, utils/raptor_fake.h): Added module to emulate Raptor V2 emulation for flickrdf (src/flickcurl.h): Updated flickcurl_term_type autodocs 2011-02-27 Dave Beckett * src/photos-api.c: (flickcurl_photos_setPerms): Allow false boolean permissions. Bug report and patch from Henning Spruth - thanks. 2011-02-22 Naruto TAKAHASHI * src/photo.c: leak-- 2010-11-17 Dave Beckett * Snapshotted flickcurl_1_20 for 1.20 release (GIT 36da7d18f61cacc33808d20fb9a00455b5dc34c6) * NEWS.html: 1.20 * src/photosets-api.c: (flickcurl_photosets_getPhotos_params): Make it work again. 2010-09-29 Dave Beckett * src/gallery.c: Casts for C++ * configure.ac: Use AC_LANG_SOURCE for gcc flag test * NEWS.html, configure.ac: 1.20 * src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/stats-api.c, src/tags-api.c: Adjust all callers to flickcurl_invoke_photos_list() to not pass /photo xpath suffix This makes searches work again. 2010-09-02 Dave Beckett * src/photo.c: (flickcurl_invoke_photos_list): End with no-error if no found. * src/photo.c: (flickcurl_invoke_photos_list): End with error if no found. 2010-07-24 Dave Beckett * Snapshotted flickcurl_1_19 for 1.19 release (GIT acd343b3b123211be65b8b8539e847d8575fe56f) * docs/tmpl/section-photo.sgml: Update doc tmpl for flickcurl_photo struct * docs/tmpl/section-note.sgml: Add doc tmpl * src/flickcurl.h: autodocs * src/note.c: autodocs * docs/flickcurl-sections.txt: Added section note for flickcurl_free_note and flickcurl_note * utils/flickcurl.c: Print photo notes using flickcurl_note fields from photo object. (command_print_tags): Print a tags: label if nothing passed in. (command_print_notes): Added to print a list of notes (command_print_photo): Call above. * src/note.c: remove C++ comments 2010-07-22 Dave Beckett * src/Makefile.am, src/flickcurl.h, src/flickcurl_internal.h, src/note.c, src/photo.c: Add flickr notes class flickcurl_note and use for photos Added flickcurl_note class. flickcurl_photo struct gains notes and and notes_count fields. (flickcurl_free_note): Added. (flickcurl_build_notes): Added internal function. (flickcurl_build_photos): Use flickcurl_build_notes to add notes structure. 2010-07-02 Dave Beckett * docs/tmpl/section-photoset.sgml, docs/tmpl/section-stats.sgml: Update doc tmpls * coverage.html: Update coverage for 1.19 * src/photos-api.c: fix autodocs for flickcurl_photos_removeTag * docs/flickcurl-sections.txt: Add flickcurl_stats_getCSVFiles * src/stat.c: autodocs for flickcurl_free_stat * utils/flickcurl.c: Added command support for flickcurl_photosets_removePhotos, flickcurl_photosets_reorderPhotos and flickcurl_photosets_setPrimaryPhoto * docs/flickcurl-sections.txt, src/flickcurl.h, src/photosets-api.c: Added flickcurl_photosets_removePhotos, flickcurl_photosets_reorderPhotos and flickcurl_photosets_setPrimaryPhoto * src/galleries-api.c: (flickcurl_galleries_editPhotos): Fix param check. 2010-05-15 Dave Beckett * src/upload-api.c: (flickcurl_photos_upload): autodocs - note deprecation for flickcurl_photos_upload_params * src/upload-api.c: autodocs 2010-05-13 Dave Beckett * src/flickcurl.h, src/stats-api.c: (flickcurl_stats_getCSVFiles): Added, but not implementing an API with a death date 2 weeks away. Always fails. 2010-05-09 Dave Beckett * coverage.html: Updated to 1.18 - 176 API calls * NEWS.html, configure.ac: 1.19 * utils/flickcurl.c: (command_print_photos_list): Print out photos list new fields * src/favorites-api.c, src/galleries-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/panda-api.c, src/people-api.c: Update flickcurl_invoke_photos_list callers to remove '/photos/' from XPath suffix * src/photo.c: Capture counts and, change xpath convention for internal flickcurl_invoke_photos_list. (flickcurl_invoke_photos_list): Capture the page, per-page and total photos counts into fields of the returned photos_list Adjust the calling convention to pass in the top level XPath, and append '/photo' to it to get the individual photos via the unchanged internal function flickcurl_build_photos. * src/flickcurl.h: flickcurl_photos_list gains page, per_page and total_count * src/collection.c: (flickcurl_build_collections): declare debug var in ifdef 2010-05-03 Dave Beckett * src/vsnprintf.c: Remove space from '> =' and '+ =' operators added by accident - http://github.com/dajobe/flickcurl/issues/#issue/4 2010-04-28 Dave Beckett * utils/flickcurl.c: (main): remove harmless unused set of read_auth var [clang] * utils/flickcurl.c: (main): remove harmless unused set of lastdc var [clang] * utils/flickcurl.c: (command_people_getPhotos): initialise rc [clang] * src/photosets-api.c: (flickcurl_photosets_delete): result var never used [clang] * src/tags.c: (flickcurl_build_tag_clusters): cluster_count written but never read [clang] * src/context.c: (flickcurl_build_contexts): setting i is useless in first loop [clang] * (flickcurl_build_collections): setting datatype is usless [clang] 2010-04-26 Dave Beckett * Snapshotted flickcurl_1_18 for 1.18 release (GIT ebae39d1cde76c5f805bcd2cc4614615317b7eb0) * docs/flickcurl-sections.txt, src/common.c, src/flickcurl.h, src/flickcurl_internal.h: Added flickcurl_curl_setopt_handler() flickcurl_curl_setopt_handler: Added new handler typedef for setting curl options. (flickcurl_curl_setopt_handler): Added to set handler callback with docs to note alternative flickcurl_new_with_handle() * docs/flickcurl-sections.txt, src/common.c, src/flickcurl.h: Add flickcurl_new_with_handle() * src/flickcurl.h: autodocs 2010-04-15 Dave Beckett * utils/flickcurl.c: Make command "photos.geo.setLocation" work Fixes second part of Issue http://github.com/dajobe/flickcurl/issues/#issue/1 * src/photos-geo-api.c: Correct several cut-n-paste "latitude should be longitude" errors (flickcurl_photos_geo_batchCorrectLocation, flickcurl_photos_geo_photosForLocation_params, flickcurl_photos_geo_setLocation): sprintf longitude value into longitude_s - not latitude. Fixes Issue http://github.com/dajobe/flickcurl/issues#issue/1 2010-04-11 Dave Beckett * docs/tmpl/section-photos-people.sgml: give section a title * docs/tmpl/section-gallery.sgml: give section a title * docs/tmpl/section-stats.sgml: give section a title * docs/flickcurl-sections.txt: Add new Galleries methods to docs * NEWS.html: update flickcurl_galleries_editPhoto sig to match param name. * NEWS.html: docs * utils/flickcurl.c: Add utility support for new galleries commands. * src/flickcurl.h, src/gallery.c: Make flickcurl_free_gallery() public 2010-04-09 Dave Beckett * NEWS.html: 1.18 gallery docs * src/flickcurl.h, src/photo.c: Added PHOTO_FIELD_gallery_comment for photo comments in a gallery context. * NEWS.html: Update 1.18 news with new galleries functions * src/flickcurl.h: Update flickcurl_gallery docs * src/photos-api.c: #docs for in_gallery * src/flickcurl.h, src/galleries-api.c: Added implementation for (rest of) galleries APIs (flickcurl_galleries_create, flickcurl_galleries_editMeta, flickcurl_galleries_editPhoto, flickcurl_galleries_editPhotos, flickcurl_galleries_getInfo, flickcurl_galleries_getPhotos_params, flickcurl_galleries_getPhotos): Added. * src/flickcurl.h, src/urls-api.c: Added flickcurl_urls_lookupGallery() As announced http://code.flickr.com/blog/2010/04/08/galleries-apis/ * src/people-api.c: #autodocs 2010-03-18 Dave Beckett * NEWS.html: fix link * NEWS.html, configure.ac: 1.18 * utils/flickcurl.c: Add command for flickcurl_people_getPhotos * src/flickcurl.h, src/people-api.c: Change flickcurl_people_getPhotos* to have int params for filters (flickcurl_people_getPhotos_params, flickcurl_people_getPhotos); Take int param for safe_search, content_type, privacy_filter. * docs/tmpl/section-people.sgml: Add tmpl for flickcurl_people_getPhotos * docs/flickcurl-sections.txt: Add flickcurl_people_getPhotos * src/flickcurl.h, src/people-api.c: Added flickcurl_people_getPhotos() and flickcurl_people_getPhotos_params(). 2010-03-03 Dave Beckett * Snapshotted flickcurl_1_17 for 1.17 release (GIT d5d0b9e21b3c347d1ce7581367a2de209781045f) * src/flickcurl.h: autodocs * docs/flickcurl-docs.xml: Added section-stats.xml * docs/flickcurl-sections.txt: Added section-stats * NEWS.html: notes * src/stats-api.c: (flickcurl_stats_getPhotostreamStats): Init count to 0 * src/stats-api.c: fix getPhotoDomains xpath * utils/flickcurl.c: tidy params for required args * utils/flickcurl.c: fix view command return values * utils/flickcurl.c: Fix args for photostream commands * utils/flickcurl.c: Tidy print stats * src/stat.c: hide view debug message * src/photo.c: Added photo_fields for counts of comments and favorites photo_fields_table gains xpaths for stats/@views, stats/@comments and stats/@favorites (flickcurl_build_photos): Skip setting fields with boolean string value '' * src/flickcurl.h: Added photo_fields for counts of comments and favorites flickcurl_photo_field_type gains PHOTO_FIELD_comments and PHOTO_FIELD_favorites * utils/flickcurl.c: fix stats commands * src/stats-api.c: docs * utils/flickcurl.c: Add stat commands to utility - not yet tested * src/flickcurl.h, src/stat.c: Export flickcurl_free_stat * src/flickcurl.h, src/stat.c: (flickcurl_free_view_stats): Added to free view stats object. * src/Makefile.am, src/flickcurl.h, src/stat.c, src/stats-api.c: Fill out stat APIs with results from responses. flickcurl_stat and flickcurl_view_stats structs added Return array of flickcurl_stat** for stat requests that return domains or referrers. Return int for stat requests for view counts. (flickcurl_stats_getTotalViews): Return flickcurl_view_stats* for total views. (flickcurl_free_stat): Added. (flickcurl_free_stats): Added to free array of stats. (flickcurl_build_stats): Added. * src/flickcurl_internal.h: code style * src/blog.c, src/blogs-api.c: code style * src/flickcurl.h: Added flickr stats API prototypes * src/Makefile.am, src/stats-api.c: Added flickr.stats API initial skeleton APIs 2010-01-22 Dave Beckett * utils/flickcurl.c: (command_people_getPhotosOf, command_galleries_getList): args fix * utils/codegen.c: Handle optional and int args better - hard code page & per_page for now. 2010-01-21 Dave Beckett * src/common.c: f * src/common.c: Update fflickcurl_field_value_type_label * docs/tmpl/section-photos-people.sgml: Updated photos.people template * docs/flickcurl-docs.xml, docs/flickcurl-sections.txt, docs/tmpl/section-gallery.sgml, docs/tmpl/section-people.sgml, src/flickcurl.h: Add documentation for galleries * src/galleries-api.c, src/gallery.c: Add photo galleries support - add photos to gallery, list galleries (flickcurl_galleries_addPhoto, flickcurl_galleries_getList, flickcurl_galleries_getListForPhoto): Added functions for gallery API. (flickcurl_free_galleries): Added destructor * src/Makefile.am, src/common.c, src/flickcurl.h, src/flickcurl_internal.h, utils/flickcurl.c: Add photo galleries support - add photos to gallery, list galleries flickcurl_gallery: added new type Added new gallery.c and galleries-api.c modules. (flickcurl_galleries_addPhoto, flickcurl_galleries_getList, flickcurl_galleries_getListForPhoto): Added functions for gallery API. (flickcurl_free_galleries): Added destructor Updated flickcurl utility to call above functions. * src/Makefile.am, src/flickcurl.h, src/photos-people-api.c, utils/flickcurl.c: Added flickr.photos.people.* APIs - add/remove/edit/list people in photos. (flickcurl_photos_people_add, flickcurl_photos_people_delete, flickcurl_photos_people_deleteCoords, flickcurl_photos_people_editCoordsflickcurl_photos_people_getList): Added Updated utility to support new above functions. * src/flickcurl.h, src/people-api.c, utils/flickcurl.c: Added flickr.people.getPhotosOf support in flickcurl_people_getPhotosOf_params() and flickcurl_people_getPhotosOf() (flickcurl_people_getPhotosOf_params): Added with flickcurl_photos_list_params* list_params for full control of paging and result formats. (flickcurl_people_getPhotosOf_params): Added, calling above with simple photos result and fixed params. Added support for people.getPhotosOf to flickcurl utility (command_people_getPhotosOf): Added. * utils/codegen.c: 2010 * NEWS.html, configure.ac: 1.17 2010-01-13 Dave Beckett * Snapshotted flickcurl_1_16 for 1.16 release (GIT 12509697523a4a91378fbb154a71d1c636d03616) * docs/Makefile.am, docs/flickcurl-authenticate.xml: Add appgarden-mobile-auth-page.png for results of mobile auth and update words * utils/flickcurl.c: Remove spaces around config examples. Add pointer to web site auth page 2010-01-04 Dave Beckett * src/config.c: Allow spaces around = in config key=value lines Include ctype.h for isspace() (read_ini_config): Skip spaces before = in key and after = in value. * utils/flickcurl.c: Fix .flickcurl.conf generation to not add spaces around = 2010-01-03 Dave Beckett * configure.ac: do not edit VERSION to make major/minor/release vars * NEWS.html, configure.ac: Bump version to 1.16 * docs/flickcurl-docs.xml, LICENSE.html, NEWS.html, README.html, coverage.html: Update to 2010 * configure.ac, src/Makefile.am: Add LIBFLICKCURL_LIBTOOL_VERSION and use to explicitly set libtool library version * configure.ac: Remove duplicate AM_INIT_AUTOMAKE call and AC_REVISION 2010-01-02 Dave Beckett * configure.ac: automake 1.11 requires autoconf 2.62 * autogen.sh: Make autogen.sh skip configuring in release dirs * Snapshotted flickcurl_1_15 for 1.15 release (GIT 1131dbef927ac920d8b85cee571650293c17015f) * docs/flickcurl-sections.txt: remove flickcurl_set - never existed 2009-12-31 Dave Beckett * flickcurl.rdf.in: Flickcurl is in GIT 2009-12-21 Dave Beckett * autogen.sh: Tidying autogen. Ignore configure.ac in release dirs. Add gtkdoc_args iff gtk-doc is present. Rename ltdl to ltdl_args Rename silent to silent_args 2009-12-20 Dave Beckett * src/common.c: restore "=" character constant * docs/tmpl/section-photo.sgml: Update templates * utils/flickcurl.c: remove final nl from photos.search help * utils/flickcurl.c: photos.search add geo-context is-commons and is-gallery args Add recent changes to flickcurl_search_params to the photos.search command: geo-context 1-2, is-commons and is-gallery args. * src/activity-api.c, src/activity.c, src/args.c, src/auth-api.c, src/blog.c, src/blogs-api.c, src/category.c, src/collection.c, src/comments.c, src/common.c, src/commons-api.c, src/config.c, src/contacts-api.c, src/contacts.c, src/context.c, src/exif.c, src/favorites-api.c, src/group.c, src/groups-api.c, src/groups-members-api.c, src/groups-pools-api.c, src/institution.c, src/interestingness-api.c, src/location.c, src/machinetags-api.c, src/machinetags.c, src/md5.c, src/members.c, src/method.c, src/panda-api.c, src/people-api.c, src/perms.c, src/person.c, src/photo.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photos-licenses-api.c, src/photos-notes-api.c, src/photos-transform-api.c, src/photos-upload-api.c, src/photoset.c, src/photosets-api.c, src/photosets-comments-api.c, src/place.c, src/places-api.c, src/prefs-api.c, src/reflection-api.c, src/serializer.c, src/shape.c, src/size.c, src/tags-api.c, src/tags.c, src/test-api.c, src/ticket.c, src/upload-api.c, src/user_upload_status.c, src/video.c, src/vsnprintf.c, utils/codegen.c, utils/flickcurl.c, utils/flickrdf.c, utils/list-methods.c: Code style - add whitespace around assignments (=, +=, -=) and comparators (==, <=, >=) * autogen.sh, build/.gitignore, build/shave-libtool.in, build/shave.in, build/shave.m4, configure.ac: Switch from SHAVE to automake 1.11 AM_SILENT_RULES Remove SHAVE files. Depend on automake 1.11 and it's dependencies. Add --enable-silent-rules to configure; only enabled for maintainer builds via autogen.sh Make autogen.sh pick glibtoolize on OSX. * src/photos-api.c: (flickcurl_photos_search): Support #flickcurl_search_params in_gallery field. * src/flickcurl.h: flickcurl_search_params gains in_gallery field added to the API sometime. 2009-12-12 Dave Beckett * flickcurl-config.in: Try computing the decimal version another way * flickcurl-config.in: Make flickcurl-config be a wrapper around pkg-config flickcurl. The --prefix=DIR and --libtool-libs options are no longer supported. 2009-12-11 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.15 * Update authentication docs to use screen shots * Add screen dumps to dist * Added App Garden screen dumps for auth flow 2009-11-26 Dave Beckett * appgarden changes 2009-11-20 Dave Beckett * prune wiki suffix for pkgconfig url 2009-11-19 Dave Beckett * Fail configure if pkg-config is missing to prevent cascading errors for libxml and curl checks. 2009-09-20 Dave Beckett * Snapshotted flickcurl_1_14 for 1.14 release (GIT 34290b418097bb755dccdeaaf2fa45d125957c45) 2009-09-18 Dave Beckett * src/photo.c: Add 1 to static strings short_uri_alphabet and short_uri_prefix for NUL. Remove extra const in other static strings 2009-09-15 Dave Beckett * docs/flickcurl-searching.xml: words and more words. explain search params with kitten and spelcheck * examples/search-photos.c: do not strdup strings that are saved in a static struct that will not be freed. 2009-09-14 Dave Beckett * docs/Makefile.am: adjust dist-hook-local rule * docs/flickcurl-searching.xml: shorter compile line; words * examples/search-photos.c: just print photo ID * examples/search-photos.c: restore errno.h * examples/search-photos.c: Even smaller - add usage/-h hard coded * examples/search-photos.c: remove conditional headers. * examples/search-photos.c: Simplify - remove options, to make a better example program. * docs/Makefile.am: Copy search.photos.c to docs * docs/Makefile.am: Filter search-photos.c to here and clean up after * docs/flickcurl-searching.xml: xml; more docs * docs/Makefile.am: Fix CSS in srcdir * docs/flickcurl-searching.xml: More searching docs * configure.ac, docs/Makefile.am: Fixup absolute positioning in gtkdoc-mkhtml generated CSS 2009-09-13 Dave Beckett * docs/flickcurl-searching.xml: xml; more words * utils/flickcurl.c: do not emit blank line at end * docs/flickcurl-searching.xml: typo in id * docs/flickcurl-searching.xml: move text here from generated code * src/flickcurl.h: flickcurl_search_params: correct autodocs to note when 0 is taken as param is not present. * src/common.c: (flickcurl_search_params_init): Internal docs why memset to 0 is ok. * src/photos-api.c: (flickcurl_photos_search_params): Only set woe_id if >0 * docs/flickcurl-searching.xml: add xi xmlns * docs/Makefile.am, docs/flickcurl-docs.xml, docs/flickcurl-searching.xml: Added searching tutorial * NEWS.html: words * NEWS.html: Update is_commons and geo_context search params notes. * NEWS.html: Use path_alias description from http://tech.groups.yahoo.com/group/yws-flickr/message/5053 * src/common.c: Add path_alias description from http://tech.groups.yahoo.com/group/yws-flickr/message/5053 2009-09-08 Dave Beckett * NEWS.html: 1.14 * examples/Makefile.am, examples/search-photos.c, utils/Makefile.am, utils/search-photos.c: Move search-photos.c from utils to examples dir. * .gitignore: do not ignore flickr.conf * src/win32_flickcurl_config.h: 2009 * utils/flickcurl.c: typo * utils/flickcurl.c: Add newline to msg * docs/flickcurl-authenticate.xml: Update flickr website auth sequence 2009-09-07 Dave Beckett * docs/Makefile.am: Do not erase flickcurl-extras.xml after building it for dist. * .gitignore: Ignore tarballs * docs/.gitignore, docs/Makefile.am: Generate flickcurl-extras.xml via ../utils/flickcurl -m1 * docs/.gitignore: Ignore xml dir here * docs/Makefile.am, utils/Makefile.am, utils/flickcurl.c: Adjust flickcurl utility -m maintainer option to generate extras too The -m option now takes an int arg: 0 for the manpage fragment and 1 for the docbook extras enumeration fragment - not currently used. This option remains only built when compiling for maintainer mode. * .gitignore, src/common.c: Switch captured web service response dir to 'captured' * .gitignore: Do not ignore xml/ in all dirs * docs/flickcurl-docs.xml: Make this newer legal docbook 2009-09-06 Dave Beckett * src/video.c: code style 2009-09-06 Huge * src/video.c: Some small cleanup, but still don't like that goto;) And consult the conversion in >> v=(flickcurl_video*)calloc(1, sizeof(flickcurl_video)); << with bottom lines of this: http://en.wikipedia.org/wiki/Malloc#Usage_example Signed-off-by: Dave Beckett Original commit was 2009-08-04 2009-09-06 Dave Beckett * utils/Makefile.am: Remove list-methods rule for maintainer * utils/search-photos.c: Make this search API example code. Rename list-photos to search-photos throughout and adjust user messages. Add more comments about parameter uses. * utils/.gitignore, utils/Makefile.am, utils/list-photos.c, utils/search-photos.c: Rename list-photos to search-photos * utils/.gitignore: Add list-photos to ignore * docs/tmpl/section-photo.sgml: Add generated docs for new search param fields 2009-08-18 Dave Beckett * utils/list-photos.c: usage 2009-08-18 Dave Beckett * utils/list-photos.c: photos for me (the user) only 2009-08-18 Dave Beckett * utils/Makefile.am, utils/list-photos.c: Add list-photos 2009-08-17 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.14 2009-08-17 Dave Beckett * src/photos-api.c: (flickcurl_photos_search_params): Support geo_context and is_comments search params. 2009-08-17 Dave Beckett * src/flickcurl.h: flickcurl_search_params gains geo_context and is_comments search params added to the API at some point 2009-08-17 Dave Beckett * src/common.c: flickcurl_extras_format_info: add new (undocumented?) API 'extras': path_alias, url_m, url_o, url_s, url_sq, url_t path_alias is the only one not totally clear; the rest provide URLs of images. 2009-08-01 Dave Beckett * Snapshotted flickcurl_1_13 for 1.13 release 2009-07-31 Dave Beckett * docs/flickcurl-sections.txt, docs/tmpl/section-photo.sgml: Added flickcurl_source_uri_as_photo_id * src/photo.c: add #include for isdigit() * src/flickcurl.h, src/photo.c, utils/flickcurl.c: Added utility function flickcurl_source_uri_as_photo_id to get photo IDs from image URLs (flickcurl_source_uri_as_photo_id): Added - decoding the raw image URL format into a photo ID that can be used for other API calls. Added flickcurl utility command getphotoid to call this. 2009-07-26 Dave Beckett * README.html: Tidy readme words - do not mention a Flickr API date. * docs/flickcurl-sections.txt, docs/tmpl/section-core.sgml: Document flickcurl_get_current_request_wait * src/common.c, src/flickcurl.h: Added call to get current web service request delay time. (flickcurl_get_current_request_wait): Added. Allows applications to know when the library will delay - sleep - in order to let the web service rate limiting work. This allows the application to come back later if it desires rather than have Flickcurl freeze the entire application. * src/common.c, src/flickcurl_internal.h: Use a dynamic buffer size for request URI construction Flickcurl crashed when dealing with requests e.g photo IDs that exceeded the "big enough" buffer for a URI. Need to move to a dynamic model. Bug noticed and reported by Henning Spruth - thanks! flickcurl_s structure moves uri to a char* not fixed buffer and adds a uri_len field to record length of allocated buffer. (flickcurl_prepare_common): Calculate length needed and create a new url buffer if current one is too small. 2009-07-09 Dave Beckett * src/common.c: (flickcurl_free): Free any allocated user_agent. Resource leak found by Debarshi Ray - Thanks. 2009-07-09 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.13 2009-07-04 Dave Beckett * NEWS.html: 1.12 * 1.12 2009-07-01 Dave Beckett * coverage.html: Updated for recent API additions: now 145 - flickr.blogs.getServices - flickr.places.getTopPlacesList 2009-07-01 Dave Beckett * docs/tmpl/section-blogs.sgml, docs/tmpl/section-place.sgml: Updated sgml doc templates for recent APIs 2009-07-01 Dave Beckett * docs/flickcurl-sections.txt: Added flickcurl_blog_service 2009-07-01 Dave Beckett * src/places-api.c: (flickcurl_places_getTopPlacesList): autodocs 2009-07-01 Dave Beckett * docs/flickcurl-sections.txt: Added flickcurl_places_getTopPlacesList 2009-07-01 Dave Beckett * utils/flickcurl.c: Allow WOEID args to be "-" to omit them in several calls. Update places.getTopPlacesList args doc 2009-07-01 Dave Beckett * src/flickcurl.h, src/places-api.c, utils/flickcurl.c: Implement new Flickr API call flickr.places.getTopPlacesList (flickcurl_places_getTopPlacesList): Added to implement flickr.places.getTopPlacesList. Update utility to allow calling flickr.places.getTopPlacesList. 2009-07-01 Dave Beckett * src/place.c: Added "continent" to flickcurl_place_type_label Get place name from element content as well as attribute. In Flickr API, there is always more than one way to get a field ;) 2009-06-30 Dave Beckett * docs/tmpl/section-blogs.sgml, docs/tmpl/section-photo.sgml: Updated sgml templates for API additions 2009-06-30 Dave Beckett * docs/flickcurl-sections.txt, src/blog.c, src/blogs-api.c, src/flickcurl.h, src/flickcurl_internal.h, utils/flickcurl.c: Added support for new flickr.blogs.getServices API call Added flickcurl_blog_service structure for describing a blog service. (flickcurl_blogs_getServices): Added to implement flickr.blogs.getServices API call. (flickcurl_free_blog_services): Added to free blog services array. Updated utility to allow calling flickr.blogs.getServices. 2009-06-30 Dave Beckett * docs/flickcurl-sections.txt, src/flickcurl.h, src/photo.c, utils/flickcurl.c: Added functions for generating flic.kr short URIs (flickcurl_photo_as_short_uri, flickcurl_photo_id_as_short_uri): Added to make an http://flic.kr short URI from a photo object or photo ID string. Added shorturi command to utility to call this. 2009-06-28 Dave Beckett * autogen.sh: Note automake 1.11 requirements 2009-06-28 Dave Beckett * configure.ac: note can use automake 1.11 for shave-like functionality at some point. 2009-06-28 Dave Beckett * docs/flickcurl-sections.txt, docs/tmpl/flickcurl-unused.sgml, docs/tmpl/section-collections.sgml, docs/tmpl/section-machinetags.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-photoset.sgml, src/flickcurl.h: Update autodocs 2009-06-28 Dave Beckett * build/shave.in, build/shave.m4: Update SHAVE from master 2134bb1207e06d1650918a56f6b142e9a840219d 2009-06-26 Dave Beckett * .gitignore: Ignore config.cache 2009-06-24 Dave Beckett * coverage.html: Update to 143 API calls Prefer _params() version of functions 2009-06-23 Dave Beckett * src/flickcurl.h, src/photos-comments-api.c, utils/flickcurl.c: Implement new API flickr.photos.comments.getRecentForContacts (flickcurl_photos_comments_getRecentForContacts_params): Added to implement flickr.photos.comments.getRecentForContacts Updated flickcurl utility to add photos.comments.getRecentForContacts command with all optional parameters. 2009-06-21 Dave Beckett * README.md: more markdown 2009-06-21 Dave Beckett * README.md: Add markdown README for github browsers 2009-06-13 Dave Beckett * src/common.c: (flickcurl_invoke_common): Always set/reset HTTP headers list. This allows requests that set/don't set headers to work in sequence when called with the same flickcurl context. The symptom of this was in long sequences with mixed reads and writes, crashes or mysterious failures happened. Bug reported/found by Henning Spruth - thanks! 2009-06-10 Dave Beckett * utils/flickcurl.c: (command_print_photo): Print less and indent fields. Update calls to above to reduce duplication and newlines. 2009-06-10 Dave Beckett * utils/flickcurl.c: (command_print_collection): Print nicer optional description 2009-06-10 Dave Beckett * utils/flickcurl.c: (command_collections_getTree): Print photos inside 2009-06-10 Dave Beckett * src/collection.c: collection_fields_table - match iconphotos / photo elements 2009-06-10 Dave Beckett * utils/flickcurl.c: (command_print_collection): Do not flickcurl_free_photos 2009-06-10 Dave Beckett * src/collection.c: (flickcurl_build_collections): Build icon photos using flickcurl_build_photos 2009-06-05 Dave Beckett * src/flickcurl.h, src/machinetags-api.c, utils/flickcurl.c: Added machinetags.getRecentValues support (flickcurl_machinetags_getRecentValues): Added based on flickcurl_machinetags_getValues processing. 2009-06-05 Dave Beckett * src/flickcurl.h: Replace flickcurl_set with existing flickcurl_photoset 2009-06-04 Dave Beckett * docs/flickcurl-docs.xml, docs/flickcurl-sections.txt, docs/tmpl/section-collections.sgml, docs/tmpl/section-photo.sgml: Added collections to docs 2009-06-04 Dave Beckett * docs/.gitignore: Ignore more tmp files 2009-06-04 Dave Beckett * .gitignore, docs/.gitignore, docs/tmpl/.gitignore: Ignore more dev files 2009-06-04 Dave Beckett * src/flickcurl.h: Fix flickcurl_set use of flickcurl_photo_s forward reference 2009-06-02 Dave Beckett * .gitignore, src/Makefile.am, src/collection.c, src/collections-api.c, src/flickcurl.h, src/flickcurl_internal.h, src/person.c, src/photo.c, src/serializer.c, utils/flickcurl.c: Added flickr collections API - not yet complete. Added new types: flickcurl_set and flickcurl_collection (flickcurl_free_collection, flickcurl_free_collections): Added destructors. Added new API calls flickr.collections.getInfo and flickr.collections.getTree (flickcurl_build_collections): Added to build collection structure into an array. Does not handle icon photos, sub-sets or sub-collections. (flickcurl_build_collection): Added to use above to get just 1 collection. (flickcurl_collections_getInfo): Added, using above to get individual collection details. (flickcurl_collections_getTree): Added, using above to get tree. Not working at this point since the XML is slightly different. 2009-06-02 Dave Beckett * utils/.gitignore: Ignore more 2009-06-02 Dave Beckett * .gitignore, README.html, build/.gitignore, docs/.gitignore, examples/.gitignore, src/.gitignore, utils/.gitignore: Switched from Subversion to GIT source control hosted by GitHub. 2009-05-27 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.12 2009-05-26 Dave Beckett * Snapshotted flickcurl_1_11 for 1.11 release (SVN 1020) This corresponds to GIT Commit bee9a12977670cabc0e65e43890a26f844c33302 2009-05-24 Dave Beckett * Makefile.am, flickcurl.conf.example: Added flickcurl.conf.example example ~/.flickcurl.conf file * flickcurl.spec.in: use PACKAGE * src/flickcurl.h, src/photo.c: Rename _url to _uri * src/flickcurl.h, src/photo.c: Added PHOTO_FIELD_original_width, PHOTO_FIELD_original_height, PHOTO_FIELD_views for more photo extras * src/flickcurl.h, src/photo.c: (flickcurl_user_icon_uri): Added to get a user buddy icon url. (flickcurl_photo_as_user_icon_uri): Added to get the user buddy icon url from a user's photo * src/flickcurl.h, src/photo.c: Added PHOTO_FIELD_owner_iconserver and PHOTO_FIELD_owner_iconfarm fields * src/photo.c: Support more fields returned as attributes from 'extras' in search: owner, place_id, woeid, accuracy, latitude, longitude * src/serializer.c: Added internal VALUE_TYPE_TAG_STRING to switch * src/flickcurl.h, src/photo.c: (flickcurl_photo_as_page_uri): Added 2009-05-23 Dave Beckett * src/person.c: (flickcurl_build_persons): Handle/ignore new VALUE_TYPE_TAG_STRING * src/common.c: flickcurl_field_value_type_label: Added internal types * src/common.c: (flickcurl_invoke_common): Added more attempts to reset curl context between calls - GET/POST. * src/flickcurl.h: Added internal VALUE_TYPE_TAG_STRING * src/photo.c: (flickcurl_build_photos): Use flickcurl_build_tags_from_string to handle photos/@tags as special field type VALUE_TYPE_TAG_STRING * src/flickcurl_internal.h: (flickcurl_build_tags_from_string): Added * src/tags.c: (flickcurl_build_tags_from_string): Added * src/flickcurl.h: flickcurl_search_params - document new 'extras': o_dims, views, media 2009-05-22 Dave Beckett * utils/flickcurl.c: Add support for search woeid param * src/flickcurl.h, src/photos-api.c: Add woe_id field to search params * configure.ac: CFLAGS * flickcurl.pc.in: Always use Requires: - for libcurl and libxml * configure.ac: Switch to pkg-config for libxml and libcurl configuration 2009-05-12 Dave Beckett * utils/flickcurl.c: formatting * utils/flickcurl.c: (command_print_shape): Added and handle is/has donut holes as well as shapedata inline XML (command_print_place, command_places_getShapeHistory): Use above * src/shape.c: shape_field_type gains SHAPE_HAS_DONUTHOLE shape_fields_table gains ./@has_donuthole XPATH (flickcurl_build_shapes): Handle has_donutfield. * src/flickcurl.h: flickcurl_shapedata gains has_donuthole field * utils/flickcurl.c: (command_print_place): Print location timezone * src/place.c: place_field_type gains PLACE_TIMEZONE (flickcurl_free_place, flickcurl_build_places): Add place timezone field support * src/flickcurl.h: flickcurl_place gains timezone field * utils/flickcurl.c: (command_places_getShapeHistory): Print is_donuthole flag * src/shape.c: shape_field_type gains SHAPE_IS_DONUTHOLE shape_fields_table gains ./@is_donuthole XPATH (flickcurl_build_shapes): Handle is_donutfield. * src/flickcurl.h: flickcurl_shapedata gains is_donuthole field * src/places-api.c: (flickcurl_places_getShapeHistory): Handle API response returning /rsp/shapes/shape instead of /rsp/shapes/shapedata wot it used to. 2009-05-09 Dave Beckett * configure.ac, flickcurl.spec.in: Export libcurl @LIBCURL_MIN_VERSION@ and libxml2-devel @LIBXML_MIN_VERSION@ * flickcurl.spec.in: Use @RAPTOR_MIN_VERSION@ * configure.ac: Set raptor libs and cflags correctly * configure.ac: Add raptor libs and cflags to LIBS and CPPFLAGS * configure.ac: Separate raptor autodetection, version checking and enabling * configure.ac, flickcurl.pc.in: Find raptor via pkg-config and update flickcurl.pc to reflect it * configure.ac: Update shave comments * Makefile.am, autogen.sh, configure.ac: Disable shave by default, enable it for maintainers and make autogen.sh do that * build, build/shave-libtool.in, build/shave.in, build/shave.m4, configure.ac: Added SHAVE support "make autotools output sane" - enabled by default http://git.lespiau.name/cgit/shave/ git clone git://git.lespiau.name/shave * autogen.sh: libtool V2 needed Add -Wall to automake args Reorder args to remove dups Find config_aux_dir and config_macro_dir and use them for copying in config.{sub,guess} and adjusting aclocal args respectively. * NEWS.html, configure.ac: Bump version to 1.11 2009-04-29 Dave Beckett * Snapshotted flickcurl_1_10 for 1.10 release (SVN 962) * docs/flickcurl-sections.txt: Add flickcurl_set_replace_service_uri and flickcurl_set_upload_service_uri * src/common.c, src/flickcurl.h, src/flickcurl_internal.h, src/upload-api.c: Make uploading work again - add service URIs for uploading and replacing services. flickcurl structure gains upload_service_uri and replace_service_uri fields. Added constants: flickcurl_flickr_upload_service_uri and flickcurl_flickr_replace_service_uri for default Flickr upload and replace URIs. (flickcurl_new): Initialise default upload and replace service URIs. (flickcurl_free): Free service URIs. (flickcurl_set_upload_service_uri): Added to set upload service URI, (flickcurl_set_replace_service_uri): Added to set replace service URI. (flickcurl_prepare_common): Restore url parameter to use in calls, do not just use fc->service_uri. (flickcurl_photos_upload_params): Pass in fc->upload_service_uri to flickcurl_prepare_upload. (flickcurl_photos_replace): Pass in fc->replace_service_uri to flickcurl_prepare_upload. (flickcurl_prepare_noauth, flickcurl_prepare): Pass in fc->service_uri to flickcurl_prepare_common. (flickcurl_prepare_upload): Pass along incoming url to inner flickcurl_prepare_common. * src/common.c, src/flickcurl.h, src/institution.c, src/machinetags-api.c, src/place.c, src/serializer.c, src/shape.c, src/tags-api.c, utils/flickcurl.c, utils/flickrdf.c: Casts for compiling and using from C++. Main change is to rename variables and arguments called 'namespace' to 'nspace' 2009-04-05 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.10 * Snapshotted flickcurl_1_9 for 1.9 release (SVN 948) * docs/tmpl/section-core.sgml: sgml docs * README.html, coverage.html, NEWS.html: Flickcurl 1.9 * src/groups-members-api.c: flickcurl_groups_members_getList announcement * src/contacts-api.c, src/contacts.c, src/groups-api.c, src/photos-api.c, src/photosets-api.c, src/place.c: 2009 * src/common.c: autodocs * docs/flickcurl-sections.txt, src/common.c, src/flickcurl.h, src/flickcurl_internal.h: (flickcurl_set_service_uri): Added to allow using Flickr-compatible services such as 23hq.com. Fix based on patch from Thorsten Zitterell 2009-03-18 Dave Beckett * src/photos-api.c: (flickcurl_photos_setDates): Increase date buffer string size 2009-03-04 Dave Beckett * src/common.c: 2009 2009-03-03 Dave Beckett * docs/flickcurl-docs.xml, docs/flickcurl-sections.txt, docs/tmpl/section-panda.sgml, src/panda-api.c: panda docs * src/Makefile.am, src/flickcurl.h, src/panda-api.c, utils/flickcurl.c: Added Panda support (flickcurl_panda_getList): Added to implement flickr.panda.getList API added 2009-03-03 (flickcurl_panda_getPhotos): Added to implement flickr.panda.getPhotos API added 2009-03-03 Updated flickcurl utility to support the new calls. 2009-03-02 Dave Beckett * docs/tmpl/section-group.sgml: templates * docs/flickcurl-sections.txt: Add flickcurl_groups_members_getList and members * src/Makefile.am, src/flickcurl.h, src/flickcurl_internal.h, src/groups-api.c, src/groups-members-api.c, src/members.c, utils/flickcurl.c: flickcurl_member added (flickcurl_groups_members_getList): Added to implement new flickr.groups.members.getList API method added sometime between 2009-02-23 and 2009-03-02. (flickcurl_free_member, flickcurl_free_members): Added to destroy members. (flickcurl_build_members): Added. Added flickr.groups.members.getList to flickcurl utility 2009-02-15 Dave Beckett * src/config.c: (read_ini_config): Handle \r\n, \r and \n newlines * src/common.c: macro * src/common.c: Be less noisy when debugging - don't print output of set auth token, api key and secret * src/photosets-api.c: (flickcurl_photosets_getList): Fix to match correct xpath 2009-02-10 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.9 2009-02-09 Dave Beckett * Snapshotted flickcurl_1_8 for 1.8 release (SVN 920) * NEWS.html: 1.8 2009-02-08 Dave Beckett * README.html, LICENSE.html, NEWS.html, coverage.html: 2009 * docs/tmpl/section-commons.sgml, docs/tmpl/section-shapes.sgml: tmpls * src/flickcurl.h: autodocs * src/places-api.c: more autodocs in docbook sgml * src/places-api.c: more autodocs in docbook sgml * src/places-api.c: autodocs in docbook sgml * docs/tmpl/section-commons.sgml, docs/tmpl/section-contact.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-place.sgml, docs/tmpl/section-shapes.sgml, docs/tmpl/section-unused.sgml: Update tmpls * coverage.html: added commons * src/flickcurl.h: autodocs * src/institution.c: autodocs * docs/flickcurl-sections.txt: added new functions for 1.8 * utils/flickcurl.c: (command_print_institution): Rename to ix * src/Makefile.am, src/commons-api.c, src/flickcurl.h, src/flickcurl_internal.h, src/institution.c, utils/flickcurl.c: Added flickr.commons API (flickcurl_commons_getInstitutions): Added. Added flickcurl_instutition class. (flickcurl_free_institution, flickcurl_free_institutions, flickcurl_get_institution_url_type_label): Added. (flickcurl_build_institutions, flickcurl_build_institution): Added internal helpers. Updated utility to call commons.getInstitutions * docs/flickcurl-docs.xml: 2009 and commons 2009-02-06 Dave Beckett * utils/flickcurl.c: fix return * src/place.c: (flickcurl_free_place): Do not free shape data twice. * src/shape.c: disable debug message * coverage.html, src/Makefile.am, src/contacts-api.c, src/contacts.c, src/flickcurl.h, src/flickcurl_internal.h, src/place.c, src/places-api.c, src/shape.c, utils/flickcurl.c: (flickcurl_places_getShapeHistory, flickcurl_places_tagsForPlace, flickcurl_contacts_getListRecentlyUploaded): Added. Updated utility for new calls. Added missing contacts.getList command. Added flickcurl_shapedata structure and deprecated old shape fields in flickcurl_place (but continue to include them). (flickcurl_build_shapes, flickcurl_free_shape, flickcurl_free_shapes): Added to create and free flickcurl_shape structures. 2009-01-12 Dave Beckett * src/places-api.c, utils/flickcurl.c: Make flickcurl_places_placesForContacts work and fix arg parsing 2009-01-11 Dave Beckett * src/flickcurl.h, src/places-api.c, utils/flickcurl.c: (flickcurl_places_getChildrenWithPhotosPublic2): Added to deprecate flickcurl_places_getChildrenWithPhotosPublic with an integer woe_id argument. (flickcurl_places_getInfo2): Added to deprecated flickcurl_places_getInfo with an integer woe_id argument. (flickcurl_places_placesForContacts): Use integer woe_id and threshold. Implemented. Added places.placesForContacts via function command_places_placesForContacts to flickcurl utility. 2009-01-05 Dave Beckett * src/flickcurl.h, src/places-api.c, utils/flickcurl.c: (flickcurl_places_placesForBoundingBox): Made work. Added to flickcurl utility * src/place.c: (flickcurl_place_type_to_id): Return ID 2008-12-28 Dave Beckett * src/photo.c: Removed duplicate xpaths "./location/region/@place_id" for region_placeid and "./location/region/@woeid" for region_woeid 2008-12-27 Dave Beckett * src/place.c: (flickcurl_build_places): Free strings used for atoi, atof * src/photo.c: debug typo * src/photo.c: debug messages * src/common.c: (flickcurl_xpath_eval): Use xmlXPathNodeSetIsEmpty * utils/flickcurl.c: (command_places_getPlaceTypes): make it compile * ChangeLog, src/flickcurl.h, src/flickcurl_internal.h, src/photos-geo-api.c, src/place.c, src/places-api.c, utils/flickcurl.c: Added flickcurl_place_type_info Added FLICKCURL_PLACE_CONTINENT (flickcurl_places_getPlaceTypes): Added. (flickcurl_places_placesForBoundingBox): Added skeleton. (flickcurl_places_placesForContacts): Added skeleton. (flickcurl_places_placesForTags): Added skeleton. (flickcurl_free_place_type_infos): Added. (flickcurl_photos_geo_batchCorrectLocation): Added. (flickcurl_photos_geo_correctLocation): Added skeleton. (flickcurl_photos_geo_photosForLocation_params): Added. (flickcurl_photos_geo_photosForLocation): Added. (flickcurl_photos_geo_setContext): Added. (flickcurl_build_place_types): Added. (flickcurl_place_type_to_id): Added. (flickcurl_place_id_to_type): Added. flickcurl command: Added places.getPlaceTypes * src/common.c: (flickcurl_xpath_eval_to_tree_string): Check for empty nodeset with xmlXPathNodeSetIsEmpty macro. 2008-12-18 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.8 2008-12-15 Dave Beckett * src/machinetags-api.c: more docs 2008-11-30 Dave Beckett * Snapshotted flickcurl_1_7 for 1.7 release (SVN 880) * src/tags-api.c: docs * src/place.c: (flickcurl_build_places): Fix shapefile paths * utils/flickcurl.c: shapefile url print tidying * src/places-api.c: add places API announce dates * src/photosets-api.c: (flickcurl_photosets_getList, flickcurl_photosets_getPhotos_params): Fix photoset photo xpath now /rsp/photoset/photo * utils/flickcurl.c: Give usage message when min/max args are wrong * docs/tmpl/section-machinetags.sgml: Update template for machine tags * src/flickcurl.h, src/machinetags.c: Rename some args to match docs * docs/flickcurl-docs.xml, docs/flickcurl-sections.txt: Add new functions to sections * src/flickcurl.h, src/flickcurl_internal.h, src/machinetags-api.c, src/machinetags.c, utils/flickcurl.c: Renamed flickcurl_namespace to flickcurl_tag_namespace and adjusted all machine tag namespace functions to use that naming for constructors, destructors, methods: flickcurl_free_tag_namespace, flickcurl_free_tag_namespaces, flickcurl_machinetags_getNamespaces. Added flickcurl_tag_predicate_value structure (flickcurl_free_tag_predicate_value, flickcurl_free_tag_predicate_values): Added. (flickcurl_machinetags_getPairs, flickcurl_machinetags_getPredicates, flickcurl_machinetags_getValues): Return array of flickcurl_tag_predicate_value Adjusted utils/flickcurl to new return value. (command_print_predicate_values): Added. 2008-11-19 Dave Beckett * src/Makefile.am, src/flickcurl.h, src/flickcurl_internal.h, src/machinetags-api.c, src/machinetags.c, utils/flickcurl.c: Added flickcurl_namespace typedef for machine tags. (flickcurl_free_namespace, flickcurl_free_namespaces): Added. (flickcurl_machinetags_getNamespaces): Now returns array of flickcurl_namespace (flickcurl_build_namespaces, flickcurl_build_namespace): Added. 2008-11-18 Dave Beckett * src/flickcurl.h, src/machinetags-api.c, utils/flickcurl.c: update machinetags APIs calling conventions * src/tags-api.c: (flickcurl_tags_getClusterPhotos): Fix error return * src/Makefile.am, src/machinetags-api.c: Add flickr.machinetags methods added 2008-11-18 2008-11-06 Dave Beckett * src/flickcurl.h: xml quoting * src/common.c, src/flickcurl.h, src/place.c, src/places-api.c, utils/flickcurl.c: Added flickcurl_places_getChildrenWithPhotosPublic() for flickr.places.getChildrenWithPhotosPublic 2008-11-05 Dave Beckett * src/flickcurl.h, src/places-api.c, utils/flickcurl.c: Added places.getInfoByUrl 2008-11-03 Dave Beckett * utils/flickcurl.c: (command_print_place): Print shapedata and shapefile_urls if present * src/place.c: (flickcurl_free_place): Free shapefile urls Add PLACE_SHAPEFILE_URL (not yet generated in API but predicted!) (flickcurl_build_places): Use flickcurl_xpath_eval_to_tree_string to fill in place->shapedata as an XML string. Fill in place->shapefile_urls as an array of URLs - based on predicated output * src/flickcurl.h: flickcurl_place gains shapefile_urls and shapefile_urls_count fields. * src/common.c, src/flickcurl_internal.h: (flickcurl_xpath_eval_to_tree_string): Added * src/flickcurl.h, src/place.c: Add shapedate and shapedata_length fields to flickcurl_place * utils/flickcurl.c: Add places.getInfo * src/flickcurl.h: Added flickcurl_places_getInfo to API * src/place.c: struct place_fields_table - added place_url attributes. (flickcurl_build_places): Add placeholder for processing. * src/places-api.c: (flickcurl_places_getInfo): Added. 2008-09-19 Dave Beckett * src/flickcurl.h, src/tags-api.c: (flickcurl_tags_getClusterPhotos): Added 2008-09-05 Dave Beckett * src/places-api.c: words 2008-09-04 Dave Beckett * utils/flickcurl.c: (command_places_placesForUser): Renamed from command_places_forUser and use flickcurl_places_placesForUser rather than deprecated flickcurl_places_forUser * src/flickcurl.h, src/places-api.c: (flickcurl_places_placesForUser): Added with correct name, deprecating flickcurl_places_forUser * NEWS.html, configure.ac: Bump version to 1.7 * Snapshotted flickcurl_1_6 for 1.6 release (SVN 831) * NEWS.html, docs/flickcurl-sections.txt, src/flickcurl.h, src/place.c, src/places-api.c, utils/flickcurl.c: (flickcurl_places_forUser): Added for flickr.places.forUser announced about 25mins ago * src/common.c: (flickcurl_invoke_common): Report HTTP code on an error * src/common.c: (flickcurl_invoke_common): late night code idiocy, put {}s around an if in an if. 2008-09-03 Dave Beckett * src/common.c: (flickcurl_curl_header_callback): Ensure capturing of feed format failure error messages by saving HTTP headers X-FlickrErrCode/Message (flickcurl_invoke_common): Set callback for headers using above and if status code is not 200, fail with error. This might cause other things to fail that previously were silent about it. 2008-09-02 Dave Beckett * utils/flickcurl.c: commands: make final NULL sentinal entry have correct number of fields. * docs/tmpl/section-photo.sgml: Added flickcurl_search_params_init * docs/flickcurl-sections.txt: Added flickcurl_search_params_init * src/flickcurl.h: autodocs * src/photo.c: (flickcurl_invoke_photos_list): Copy correct format for regular XML result * utils/flickcurl.c: (command_photos_search): Use flickcurl_search_params_init to ensure params structure is not junk. * src/common.c, src/flickcurl.h: (flickcurl_search_params_init): Added * src/context.c: (flickcurl_build_contexts): Do not expect the number of contexts to be 3 (!!) but allocate it based on the returned XML. Bug reported by Francis Gastellu. 2008-09-01 Dave Beckett * src/place.c: place_fields_table: Add XPaths for both spellings of neighbourhood just in case * src/photo.c: photo_fields_table: Add XPaths for both spellings of neighbourhood just in case * docs/tmpl/section-core.sgml, docs/tmpl/section-favorite.sgml, docs/tmpl/section-group.sgml, docs/tmpl/section-misc.sgml, docs/tmpl/section-people.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-photoset.sgml, docs/tmpl/section-photoslist.sgml: update tmpls * docs/flickcurl.1.in: Added -o FILE, -q and -V * utils/flickcurl.c: Added -o FILE option to set format=feed* output file. Added -q option for less verbose Added more output conditional to if(verbose) (command_print_photos_list): May fail if fwrite fails, returns error state to caller. * src/common.c: (flickcurl_append_photos_list_params): Keep per_page & page param memory around. * utils/flickcurl.c: (command_photos_recentlyUpdated): Make photos.recentlyUpdated take 1-4 params, first one is mandator min-date in unixtime * src/common.c: (flickcurl_append_photos_list_params): Fix counting * docs/flickcurl-sections.txt: Added flickcurl_photos_list_params_init * examples/print-photo-info.c: compile line * utils/flickcurl.c: Use flickcurl_photos_list_params_init to replace photos_list_params_init * src/common.c, src/flickcurl.h: (flickcurl_photos_list_params_init): Added. flickcurl_photos_list_params gains a version field currently set to 1 * utils/flickcurl.c: (command_photos_setPerms): perm_comment and perm_addmeta are not booleans. * utils/flickcurl.c: Added parse_bool_param to parse is_FOO values and strings false/no, true/yes as well as integers: non-0 is true * utils/flickcurl.c: Added parse_page_param to parse page/per_page values and accept '-' for default * docs/flickcurl-sections.txt: Added flickcurl_favorites_getList_params, flickcurl_favorites_getPublicList_params, flickcurl_groups_pools_getPhotos_params, flickcurl_interestingness_getList_params, flickcurl_people_getPublicPhotos_params, flickcurl_photos_getContactsPhotos_params, flickcurl_photos_getContactsPublicPhotos_params, flickcurl_photos_getNotInSet_params, flickcurl_photos_getRecent_params, flickcurl_photos_getUntagged_params, flickcurl_photos_getWithGeoData_params, flickcurl_photos_getWithoutGeoData_params, flickcurl_photos_recentlyUpdated_params, flickcurl_photos_search_params, flickcurl_photosets_getPhotos_params * docs/flickcurl-sections.txt: Added flickcurl_get_extras_format_info * utils/flickcurl.c: Use flickcurl_get_extras_format_info * utils/flickcurl.c: Add FORMAT to all photos lists results. (photos_list_params_init): Added. Explain list params in help message * src/common.c, src/flickcurl.h: (flickcurl_get_extras_format_info): Added to enumerate values of 'extras' 2008-08-30 Dave Beckett * src/favorites-api.c, src/groups-pools-api.c, src/photos-api.c: Fix 'implements function (vers)' dups for _params calls * docs/tmpl/flickcurl-unused.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-photoslist.sgml: docs * docs/flickcurl-sections.txt: section typo * docs/flickcurl-docs.xml, docs/flickcurl-sections.txt: Add section-photoslist and functions/typedefs * src/flickcurl.h, src/photosets-api.c: (flickcurl_photosets_getPhotos_params): Added (flickcurl_photosets_getPhotos): Use above. * src/flickcurl.h, src/photos-api.c: (flickcurl_get_photoslist_params): Renamed from flickcurl_get_photoslist and takes a list_params. (flickcurl_photos_getNotInSet_params, flickcurl_photos_getRecent_params, flickcurl_photos_getUntagged_params, flickcurl_photos_getWithGeoData_params, flickcurl_photos_getWithoutGeoData_params, flickcurl_photos_recentlyUpdated_params): Added, using flickcurl_get_photoslist_params instead of flickcurl_get_photoslist. Rewrote old non-_params functions to use call _params version. * src/favorites-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/people-api.c: Update to use flickcurl_invoke_photos_list without xpathCtx arg * src/flickcurl.h, src/photos-api.c: (flickcurl_photos_getContactsPublicPhotos_params): Added with list_params and using flickcurl_append_photos_list_params. (flickcurl_photos_getContactsPublicPhotos): Use flickcurl_photos_getContactsPublicPhotos_params * src/flickcurl_internal.h, src/photo.c: (flickcurl_invoke_photos_list): Remove xpathCtx arg * src/flickcurl.h, src/photos-api.c: (flickcurl_photos_getContactsPhotos_params): Added with list_params and using flickcurl_append_photos_list_params. (flickcurl_photos_getContactsPhotos): Use flickcurl_photos_getContactsPhotos_params * src/flickcurl.h, src/people-api.c: (flickcurl_people_getPublicPhotos_params): Added with list_params and using flickcurl_append_photos_list_params. (flickcurl_people_getPublicPhotos): Use flickcurl_people_getPublicPhotos_params * src/flickcurl.h, src/interestingness-api.c: (flickcurl_interestingness_getList_params): Added with list_params and using flickcurl_append_photos_list_params. (flickcurl_interestingness_getlist): Use flickcurl_interestingness_getList_params * src/flickcurl.h, src/groups-pools-api.c: (flickcurl_groups_pools_getPhotos_params): Added with list_params and using flickcurl_append_photos_list_params. (flickcurl_groups_pools_getPhotos): Use flickcurl_groups_pools_getPhotos_params * src/photos-api.c: (flickcurl_photos_search_params): Use flickcurl_append_photos_list_params. * src/favorites-api.c: (flickcurl_favorites_getList_params, flickcurl_favorites_getPublicList_params): Use flickcurl_append_photos_list_params. * src/flickcurl.h: autodocs for extras 2008-08-29 Dave Beckett * src/common.c, src/flickcurl_internal.h: (flickcurl_append_photos_list_params): Added 2008-08-27 Dave Beckett * utils/flickcurl.c: Use flickcurl_get_feed_format_info to print feed formats into the generated man page. * utils/flickcurl.c: Use flickcurl_get_feed_format_info to enumerate feed FORMATS in help message. * src/common.c, src/flickcurl.h: (flickcurl_get_feed_format_info): Added to enumerate possible feed format parameter values. * src/favorites-api.c, src/flickcurl.h: (flickcurl_favorites_getPublicList_params): Added. (flickcurl_favorites_getPublicList): Refactored to use it * utils/flickcurl.c: (command_print_photos_list): Added to print a flickcurl_photos_list (command_photos_search): Use it. (command_favorites_getList): Alter to use flickcurl_favorites_getList_params to return a flickcurl_photos_list and use flickcurl_photos_list to print the result. (main): Add an optional 4th parameter to favorites.getList for FORMAT * utils/flickcurl.c: (command_photos_search): Use flickcurl_photos_search_params for photos.search command with a flickcurl_photos_list result and accept the format parameter. If the result is raw content, print it. * docs/tmpl/section-photo.sgml, docs/tmpl/section-place.sgml, src/favorites-api.c, src/flickcurl.h: (flickcurl_favorites_getList_params): Added. (flickcurl_favorites_getList): Refactored to use it * src/photos-api.c: (flickcurl_photos_search_params): Free photos list with flickcurl_free_photos_list on error * src/flickcurl.h: (typedef flickcurl_photos_list_params): const chars * src/photos-api.c: autodocs * src/flickcurl.h, src/photos-api.c: (flickcurl_photos_search_params): Added with flickcurl_photos_list_params. (flickcurl_photos_search): Refactored to use flickcurl_photos_search_params * src/flickcurl_internal.h: Added flickcurl_invoke_photos_list prototype * src/flickcurl.h, src/photo.c: Added typedef flickcurl_photos_list. Added flickcurl_photos_list_params for new API calls to pass in list result parameters. (flickcurl_invoke_photos_list): Added to construct it. (flickcurl_free_photos_list): Added to delete it - public * src/common.c, src/flickcurl_internal.h: (flickcurl_invoke_get_content): Added to return the raw content of the web service call as a block of bytes. Added struct flickcurl_chunk_s to support this. struct flickcurl_s gains extra content fields and chunks fields. * src/flickcurl_internal.h: (FLICKCURL_ASSERT_OBJECT_POINTER_RETURN_VALUE): Define with a test 2008-08-23 Dave Beckett * docs/flickcurl.1.in: words * docs/flickcurl.1.in: Note -a change and how to make a config file * utils/flickcurl.c: Print a help message when no config file is present. Make -a FROB exit with success after it 2008-08-19 Dave Beckett * src/serializer.c: Fix FOAF NS - no trailing # 2008-08-18 Dave Beckett * src/flickcurl.h, src/photo.c, src/place.c: Support neighbourhood in location despite expecting it to be spelled neighborhood in American. As announced 2008-08-19 at http://geobloggers.com/2008/08/19/correcting-location-data-the-flickr-way/ 2008-08-17 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.6 * Snapshotted flickcurl_1_5 for 1.5 release (SVN 720) * docs/flickcurl-sections.txt, docs/tmpl/section-serializer.sgml: Add flickcurl_serializer_factory * utils/flickcurl.c: (command_tags_getClusters): Call flickcurl_free_tag_clusters to do proper cleanup * src/tags-api.c: (flickcurl_tags_getClusters): Casts and fix error return * src/tags.c: (flickcurl_free_tag_cluster): Remove from public api, make static * src/flickcurl.h: Remove flickcurl_free_tag_cluster from public api 2008-08-16 Dave Beckett * utils/flickcurl.c: Added new command tags.getClusters for flickcurl_tags_getClusters * src/tags-api.c: (flickcurl_tags_getClusters): Added for new API call flickr.tags.getClusters * src/tags.c: (flickcurl_free_tag_cluster, flickcurl_free_tag_clusters, flickcurl_build_tag_clusters): Added for tag clusters * src/flickcurl_internal.h: Added flickcurl_build_tag_clusters for building clusters of tags for new API call flickr.tags.getClusters * src/flickcurl.h: Added typedefs flickcurl_tag_cluster, flickcurl_tag_clusters Added prototypes for flickcurl_free_tag_cluster and flickcurl_free_tag_clusters Added flickcurl_tags_getClusters prototype for new API call flickr.tags.getClusters * docs/tmpl/section-photo.sgml, src/flickcurl.h, src/photos-api.c, utils/flickcurl.c: flickcurl_search_params gains contacts field. (flickcurl_photos_search): Added support for photos.search contacts parameter. 2008-08-15 Dave Beckett * utils/flickrdf.c: Make flickrdf build without raptor 2008-06-27 Dave Beckett * src/flickcurl.h: flickcurl_search_params gains fields: has_geo, lat, lon, radius, radius_units * src/photos-api.c: (flickcurl_photos_search): Add has_geo, lat/lon/radius/radius_units as announced 2008-06-27 http://tech.groups.yahoo.com/group/yws-flickr/message/4146 2008-06-26 Dave Beckett * utils/Makefile.am: Added check-api target for maintainer 2008-06-25 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.5 * Snapshotted flickcurl_1_4 for 1.4 release (SVN 685) * docs/tmpl/flickcurl-unused.sgml, docs/tmpl/section-place.sgml, docs/tmpl/section-unused.sgml: Updates from gtk-doc run * src/flickcurl.h: code reformat to help gtkdoc-scan 2008-05-24 Dave Beckett * src/flickcurl.h: spelling and autodocs 2008-05-15 Dave Beckett * utils/Makefile.am: tab * utils/Makefile.am: Add rule for building libflickcurl.la 2008-05-10 Dave Beckett * src/serializer.c: Add dc: for old dc namespace, new stuff to dcterms: * src/serializer.c: make geo:lat and geo:long into floats * src/serializer.c: Use flickcurl_sqltimestamp_to_isotime to convert dc:created from SQL form to XSD. * src/common.c: (flickcurl_sqltimestamp_to_isotime): Fix end of string * src/common.c, src/flickcurl_internal.h: Added flickcurl_sqltimestamp_to_isotime for convertion sql timestamp to iso time format * src/serializer.c: Namespace notes. Update DC to new 2008 http://purl.org/dc/dcterms/ namespace from old http://purl.org/dc/elements/1.1/ * utils/flickcurl.c: Update sizes * src/serializer.c: Add photo/video size info to serializing * src/size.c: (flickcurl_free_size): free media param (flickcurl_build_sizes): decode media * src/flickcurl.h: Add media field to flickcurl_size 2008-05-09 Dave Beckett * src/serializer.c: move debug * src/serializer.c: Declare rdfs for sizes * src/serializer.c: XSD_NS * src/serializer.c: namespace sort * src/serializer.c: RDFS * src/serializer.c: just 1 buf * src/serializer.c: Added image sizes to serializatin 2008-05-01 Dave Beckett * src/common.c: (flickcurl_invoke): Use raptor file: URI decoding when it is available - for -DOFFLINE only * src/Makefile.am: Use conditional OFFLINE to enable raptor for library * configure.ac: Add conditional OFFLINE 2008-04-28 Dave Beckett * src/flickcurl.h: docs * src/serializer.c: autodocs * docs/flickcurl-docs.xml, docs/flickcurl-sections.txt, docs/tmpl/section-photo.sgml, docs/tmpl/section-unused.sgml, docs/tmpl/section-video.sgml: add serializer to docs * src/serializer.c: Declare namespaces needed for places triples 2008-04-27 Dave Beckett * src/serializer.c: Added dopplr, flickr, places, geonames namespaces pointing to machinetags.org (flickcurl_serialize_photo): Generate triples from places * utils/Makefile.am: clean up internal programs * src/activity.c, src/args.c, src/blog.c, src/category.c, src/comments.c, src/contacts.c, src/context.c, src/exif.c, src/group.c, src/location.c, src/method.c, src/perms.c, src/person.c, src/photo.c, src/photoset.c, src/place.c, src/serializer.c, src/size.c, src/tags.c, src/ticket.c, src/upload-api.c, src/user_upload_status.c, src/video.c: Use FLICKCURL_ASSERT_OBJECT_POINTER_RETURN to check and protect NULL pointers in destructors. * src/flickcurl_internal.h: Added asset macros 2008-04-15 Dave Beckett * utils/flickrdf.c: code style * src/serializer.c: gcc warning * src/flickcurl.h: autodocs * utils/flickrdf.c: Fix flickcurl_serializer_factory calling convention 2008-04-12 Dave Beckett * src/serializer.c: autodocs * src/flickcurl.h: autodoc flickcurl_serialzier_factory 2008-04-11 Dave Beckett * src/serializer.c: debug > 1 * src/serializer.c: Do not flickcurl_free_photo inside serializer * src/serializer.c: one more user data * src/serializer.c: (flickcurl_serialize_photo): Ignore tags with no ':' * src/serializer.c: use BLANK not ANONYMOUS * src/flickcurl.h: flickcurl_term_type * src/flickcurl.h, src/serializer.c: Pass user data in to serializer. Remove emit_start unused * utils/flickrdf.c: error checking * utils/flickrdf.c: (raptor_serialize_start_to_file_handle): Only write @base for Turtle * utils/flickrdf.c: Use new flickcurl_serializer API to generate triples. Raptor specific code still lives here. * src/Makefile.am, src/common.c, src/flickcurl.h, src/flickcurl_internal.h, src/serializer.c: Added serializer API. (flickcurl_new_serializer, flickcurl_free_serializer, flickcurl_serialize_photo): Added. Added new object flickcurl_serializer and new open factory flickcurl_serializer_factory * src/serializer.c (from /trunk/utils/flickrdf.c:609): copy rdf serializer * utils/flickrdf.c: refactor - introduce a flickcurl_serializer and flickcurl_serializer_factory 2008-04-10 Dave Beckett * utils/flickrdf.c: N-Triples escape strings when !HAVE_RAPTOR * utils/flickrdf.c: default ntriples when ! HAVE_RAPTOR * utils/flickrdf.c: Use fake static raptor when not HAVE_RAPTOR * src/photo.c: (flickcurl_build_photos): Ensure media_type is set to default "photo" if nothing was found 2008-04-08 Dave Beckett * src/photo.c: Add labels for usage* fields * utils/flickcurl.c: (command_print_video): Added. (command_print_photo): Use command_print_video (command_photos_search): Add media arg * src/Makefile.am, src/favorites-api.c, src/flickcurl.h, src/flickcurl_internal.h, src/groups-pools-api.c, src/interestingness-api.c, src/people-api.c, src/person.c, src/photo.c, src/photos-api.c, src/photosets-api.c, src/video.c: Added video support. Photos have a media_type and an optional pointer to new flickcurl_video* object. Search API takes media param. Added VALUE_TYPE_MEDIA_TYPE (internal). Added PHOTO_FIELD_usage_candownload, PHOTO_FIELD_usage_canblog, PHOTO_FIELD_usage_canprint. Added flickcurl_free_video(). * utils/flickrdf.c: more refactoring * utils/flickrdf.c: Add flickrdf_context_s to refactor raptor/non-raptor code 2008-04-07 Dave Beckett * docs/tmpl/section-misc.sgml: new doc functions 2008-04-06 Dave Beckett * docs/flickcurl.1.in: date * docs/flickcurl.1.in: Add -V/--verbose * src/flickcurl.h: document flickcurl typedef * docs/Makefile.am: ignore win32_flickcurl_config.h * docs/flickcurl-sections.txt: Added flickcurl_get_content_type_label, flickcurl_get_content_type_from_string, flickcurl_get_safety_level_label and flickcurl_get_safety_level_from_string * utils/flickcurl.c: Add a -V/--verbose flag (print_upload_status): Add FILE* handle (yesno): Added earlier (print_upload_params): Added. (command_upload): Fix command arg to be a while loop and not be off-per-1 each loop. Use flickcurl_get_safety_level_from_string and flickcurl_get_content_type_from_string Print more when verbose with print_upload_params() (command_photos_setContentType): Use flickcurl_get_content_type_from_string and flickcurl_get_content_type_label. (command_photos_setSafetyLevel): Use flickcurl_get_safety_level_from_string and flickcurl_get_safety_level_label (command_photos_search, command_interestingness_getList): Fix arg parsing to be a while loop. * src/common.c, src/flickcurl.h: (flickcurl_get_content_type_label, flickcurl_get_content_type_from_string, flickcurl_get_safety_level_label, flickcurl_get_safety_level_from_string): Added 2008-03-24 Dave Beckett * docs/flickcurl-sections.txt, docs/tmpl/section-prefs.sgml: Added flickcurl_prefs_getGeoPerms * coverage.html: 1.4 flickcurl_prefs_getGeoPerms * src/common.c, src/flickcurl.h, src/prefs-api.c, utils/flickcurl.c: Added flickcurl_prefs_getGeoPerms() for flickr.prefs.getGeoPerms added 2008-03-24 2008-03-14 Dave Beckett * docs/tmpl/section-photo.sgml: docs 2008-03-08 Dave Beckett * ChangeLog: Snapshotted flickcurl_1_3 for 1.3 release (SVN 571) 2008-03-05 Dave Beckett * utils/flickcurl.c: (command_print_place): Added woe ID printing. Tidy places help messages * src/place.c: Added place woe_ids parsing * src/photo.c: Add photo woeid fields parsing * src/flickcurl.h: Added WOE ID photo fiels: PHOTO_FIELD_location_woeid, PHOTO_FIELD_neighborhood_woeid, PHOTO_FIELD_locality_woeid, PHOTO_FIELD_county_woeid, PHOTO_FIELD_region_woeid and PHOTO_FIELD_country_woeid flickcurl_place gains woe_ids array * utils/Makefile.am, utils/list-methods.c: Added list-methods example utility 2008-03-04 Dave Beckett * docs/tmpl/section-prefs.sgml, docs/flickcurl-docs.xml: Added section-prefs.xml * coverage.html, src/Makefile.am, src/flickcurl.h, src/prefs-api.c, utils/flickcurl.c: Added flickr.prefs calls flickcurl_prefs_getContentType, flickcurl_prefs_getHidden, flickcurl_prefs_getPrivacy and flickcurl_prefs_getSafetyLevel * src/person.c, src/photo.c: Add cast for time_t to int to prevent non-gcc compiler warning 2008-03-01 Dave Beckett * src/common.c: Use FOUR_GIGA_NSEC100 as legal macro name * configure.ac: Search for gettimeofday and nanosleep * src/win32_flickcurl_config.h: win32_flickcurl_config.h for windows config * configure.ac: Test for usleep. Warn, don't fail if no nanosleep is present, the static version can be used. * src/common.c: (gettimeofday): Added static version for win32 based on GetSystemTimeAsFileTime() (nanosleep): Added static version for win32 or other systems based on Sleep, sleep and/or usleep. 2008-02-29 Dave Beckett * configure.ac: Use AM_PROG_CC_C_O to stop libtool warnings * docs/tmpl/flickcurl-unused.sgml, docs/tmpl/section-activity.sgml, docs/tmpl/section-auth.sgml, docs/tmpl/section-blogs.sgml, docs/tmpl/section-category.sgml, docs/tmpl/section-comment.sgml, docs/tmpl/section-contact.sgml, docs/tmpl/section-context.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-exif.sgml, docs/tmpl/section-favorite.sgml, docs/tmpl/section-general.sgml, docs/tmpl/section-group.sgml, docs/tmpl/section-misc.sgml, docs/tmpl/section-people.sgml, docs/tmpl/section-person.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-photoset.sgml, docs/tmpl/section-place.sgml, docs/tmpl/section-reflection.sgml, docs/tmpl/section-tag.sgml, docs/tmpl/section-test.sgml, docs/tmpl/section-unused.sgml, docs/tmpl/section-upload.sgml, docs/tmpl/section-urls.sgml: gtkdoc * NOTICE: url * LICENSE.html: Make it clear it's any newer version * docs/flickcurl-sections.txt: Add FLICKCURL_API * examples/Makefile.am: example Makefile.am * src/activity-api.c, src/activity.c, src/args.c, src/auth-api.c, src/blog.c, src/blogs-api.c, src/category.c, src/comments.c, src/common.c, src/config.c, src/contacts-api.c, src/contacts.c, src/context.c, src/exif.c, src/favorites-api.c, src/group.c, src/groups-api.c, src/groups-pools-api.c, src/interestingness-api.c, src/location.c, src/md5.c, src/method.c, src/people-api.c, src/perms.c, src/person.c, src/photo.c, src/photos-api.c, src/photos-comments-api.c, src/photos-geo-api.c, src/photos-licenses-api.c, src/photos-notes-api.c, src/photos-transform-api.c, src/photos-upload-api.c, src/photoset.c, src/photosets-api.c, src/photosets-comments-api.c, src/place.c, src/places-api.c, src/reflection-api.c, src/size.c, src/tags-api.c, src/tags.c, src/test-api.c, src/ticket.c, src/upload-api.c, src/urls-api.c, src/user_upload_status.c, src/vsnprintf.c: Conditionally include win32_flickcurl_config.h if WIN32 defined * configure.ac: Add -DFLICKCURL_INTERNAL to CPPFLAGS * src/flickcurl.h: Add FLICKCURL_API macro for handling win32 declspec dllexport/dllimport * src/common.c: Add AC_HEADER_TIME standed ifdef headers to get time structs and prototypes. * configure.ac: Add AC_HEADER_TIME * src/common.c: Add time.h if it's present for time prototype functions. (flickcurl_sort_args): Cast for qsort array (flickcurl_unixtime_to_isotime, flickcurl_unixtime_to_sqltimestamp): Casts for gmtime() return value. * src/example.c: move example.c to examples/ * examples, examples/print-photo-info.c: Added new example based on old src/example.c * Makefile.am, configure.ac: Added examples dir * src/Makefile.am: Removed example.c * src/example.c: Change flickcurl_photo_field field to flickcurl_photo_field_type field_type; 2008-02-17 Dave Beckett * INSTALL: Remove INSTALL from svn * autogen.sh: Update autogen.sh to latest 2008-02-11 Dave Beckett * src/photosets-api.c: (flickcurl_photosets_create): Initialise xpathCtx * utils/flickcurl.c: photosets.create has 3 args not 4 2008-02-08 Dave Beckett * docs/Makefile.am, docs/flickcurl-authenticate.xml, docs/flickcurl-docs.xml, docs/tmpl/flickcurl-unused.sgml, docs/tmpl/section-activity.sgml, docs/tmpl/section-auth.sgml, docs/tmpl/section-blogs.sgml, docs/tmpl/section-category.sgml, docs/tmpl/section-comment.sgml, docs/tmpl/section-contact.sgml, docs/tmpl/section-context.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-exif.sgml, docs/tmpl/section-favorite.sgml, docs/tmpl/section-general.sgml, docs/tmpl/section-group.sgml, docs/tmpl/section-misc.sgml, docs/tmpl/section-people.sgml, docs/tmpl/section-person.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-photoset.sgml, docs/tmpl/section-place.sgml, docs/tmpl/section-reflection.sgml, docs/tmpl/section-tag.sgml, docs/tmpl/section-test.sgml, docs/tmpl/section-unused.sgml, docs/tmpl/section-upload.sgml, docs/tmpl/section-urls.sgml: Added flickcurl-authenticate.xml for authenticating howto 2008-01-31 Dave Beckett * utils/flickcurl.c: (command_print_photo): Print place only if not NULL 2008-01-29 Dave Beckett * utils/flickcurl.c: Patch from Kumar Appaiah to change USER-ID references in help messages to use USER-NSID. * src/common.c: (flickcurl_prepare_common): Patch from Kumar Appaiah to prevent a crash when a parameter has a NULL value. 2008-01-28 Dave Beckett * NEWS.html, configure.ac: Bump version to 1.3 * ChangeLog: Snapshotted flickcurl_1_2 for 1.2 release (SVN 518) * configure.ac: Look for nanosleep in -lrt and -lposix4 to help solaris. * docs/Makefile.am: Add flickcurl.1.in to dist. Make build rule maintainer only 2008-01-26 Dave Beckett * README.html: curl min * ChangeLog: Snapshotted flickcurl_1_1 for 1.1 release (SVN 507) * NEWS.html, configure.ac: Bump version to 1.2 * Snapshotted flickcurl_1_1 for 1.1 release (SVN 509) * NEWS.html: 1.1 2008-01-24 Dave Beckett * NEWS.html: min libcurl and libxml * configure.ac: Set min curl version to 7.10.0 when curl_free() was added, but still ancient (Oct 1 2002) Die if either libxml or libcurl is too old in configure. 2008-01-23 Dave Beckett * README.html: 2008-01-23 places API * docs/tmpl/section-activity.sgml, docs/tmpl/section-auth.sgml, docs/tmpl/section-blogs.sgml, docs/tmpl/section-category.sgml, docs/tmpl/section-comment.sgml, docs/tmpl/section-contact.sgml, docs/tmpl/section-context.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-exif.sgml, docs/tmpl/section-favorite.sgml, docs/tmpl/section-general.sgml, docs/tmpl/section-group.sgml, docs/tmpl/section-misc.sgml, docs/tmpl/section-people.sgml, docs/tmpl/section-person.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-photoset.sgml, docs/tmpl/section-place.sgml, docs/tmpl/section-reflection.sgml, docs/tmpl/section-tag.sgml, docs/tmpl/section-test.sgml, docs/tmpl/section-unused.sgml, docs/tmpl/section-upload.sgml, docs/tmpl/section-urls.sgml: long desc * docs/flickcurl-sections.txt: Added flickcurl_places_findByLatLon * src/places-api.c: flickcurl_places_findByLatLon docs * utils/flickcurl.c: Add -m to help * utils/flickcurl.c: define GETOPT_STRING_MORE to null when not maintainer * utils/flickcurl.c: (command_upload): Handle upload with just filenme arg crash * utils/flickcurl.c: sort commands before writing to manpage * utils/flickcurl.c: docs. Update man output to do escaping and newlines * docs/flickcurl.1.in: no seealso * utils/flickcurl.c: Added -m option to build manpage when FLICKCURL_MANPAGE is defined * docs/Makefile.am, docs/flickcurl.1, docs/flickcurl.1.in (from /trunk/docs/flickcurl.1:479): Build flickcurl.1 using the utility itself and -m option * utils/Makefile.am: When bulding flickcurl in maintainer mode, add -DFLICKCURL_MANPAGE * coverage.html: flickr.places.findByLatLon * utils/flickcurl.c: make getopt_long() not permute args * src/flickcurl.h: typo * ChangeLog, coverage.html, src/flickcurl.h, src/places-api.c, utils/flickcurl.c: (flickcurl_places_findByLatLon): Added, implementing flickr.places.findByLatLon 2008-01-19 Dave Beckett * Makefile.am: Enable gtk doc for make distcheck * src/flickcurl.h: activity autodocs * docs/flickcurl-docs.xml: docd * docs/version.xml.in: add version.xml.in * docs/flickcurl-sections.txt: Add gtkdoc files * docs, docs/flickcurl-docs.xml, docs/flickcurl-overrides.txt, docs/flickcurl.types: Add gtkdoc files * configure.ac: gtk-doc * docs/Makefile.am, docs/tmpl, docs/tmpl/flickcurl-unused.sgml, docs/tmpl/section-activity.sgml, docs/tmpl/section-auth.sgml, docs/tmpl/section-blogs.sgml, docs/tmpl/section-category.sgml, docs/tmpl/section-comment.sgml, docs/tmpl/section-contact.sgml, docs/tmpl/section-context.sgml, docs/tmpl/section-core.sgml, docs/tmpl/section-exif.sgml, docs/tmpl/section-favorite.sgml, docs/tmpl/section-general.sgml, docs/tmpl/section-group.sgml, docs/tmpl/section-misc.sgml, docs/tmpl/section-people.sgml, docs/tmpl/section-person.sgml, docs/tmpl/section-photo.sgml, docs/tmpl/section-photoset.sgml, docs/tmpl/section-place.sgml, docs/tmpl/section-reflection.sgml, docs/tmpl/section-tag.sgml, docs/tmpl/section-test.sgml, docs/tmpl/section-unused.sgml, docs/tmpl/section-upload.sgml, docs/tmpl/section-urls.sgml: gtkdoc from docucomments * src/activity-api.c, src/activity.c, src/auth-api.c, src/blog.c, src/category.c, src/comments.c, src/common.c, src/config.c, src/contacts.c, src/context.c, src/exif.c, src/flickcurl.h, src/group.c, src/groups-pools-api.c, src/location.c, src/method.c, src/perms.c, src/person.c, src/photo.c, src/photos-api.c, src/photos-upload-api.c, src/photoset.c, src/photosets-api.c, src/place.c, src/size.c, src/tags-api.c, src/tags.c, src/ticket.c, src/upload-api.c, src/user_upload_status.c: docucomments * docs/Makefile.am: Fix dist for mans * Makefile.am, configure.ac, docs, docs/Makefile.am (from /trunk/Makefile.am:457), docs/flickcurl-config.1 (from /trunk/flickcurl-config.1:457), docs/flickcurl.1 (from /trunk/flickcurl.1:457), docs/flickrdf.1 (from /trunk/flickrdf.1:457), flickcurl-config.1, flickcurl.1, flickrdf.1: Move man pages to docs/ * Makefile.am, configure.ac, src/Makefile.am, src/codegen.c, src/flickcurl_getopt.h, src/flickrdf.c, src/getopt.c, src/test.c, utils/Makefile.am, utils/codegen.c (from /trunk/src/codegen.c:456), utils/flickcurl_getopt.h (from /trunk/src/flickcurl_getopt.h:456), utils/flickrdf.c (from /trunk/src/flickrdf.c:456), utils/getopt.c (from /trunk/src/getopt.c:456): Updates for source dir reorg. * activity-api.c, activity.c, args.c, auth-api.c, blog.c, blogs-api.c, category.c, codegen.c, comments.c, common.c, config.c, contacts-api.c, contacts.c, context.c, docs, example.c, exif.c, favorites-api.c, flickcurl.c, flickcurl.h, flickcurl_getopt.h, flickcurl_internal.h, flickrdf.c, getopt.c, group.c, groups-api.c, groups-pools-api.c, interestingness-api.c, location.c, md5.c, method.c, people-api.c, perms.c, person.c, photo.c, photos-api.c, photos-comments-api.c, photos-geo-api.c, photos-licenses-api.c, photos-notes-api.c, photos-transform-api.c, photos-upload-api.c, photoset.c, photosets-api.c, photosets-comments-api.c, place.c, places-api.c, reflection-api.c, size.c, src, src/Makefile.am (from /trunk/Makefile.am:455), src/activity-api.c (from /trunk/activity-api.c:455), src/activity.c (from /trunk/activity.c:455), src/args.c (from /trunk/args.c:455), src/auth-api.c (from /trunk/auth-api.c:455), src/blog.c (from /trunk/blog.c:455), src/blogs-api.c (from /trunk/blogs-api.c:455), src/category.c (from /trunk/category.c:455), src/codegen.c (from /trunk/codegen.c:455), src/comments.c (from /trunk/comments.c:455), src/common.c (from /trunk/common.c:455), src/config.c (from /trunk/config.c:455), src/contacts-api.c (from /trunk/contacts-api.c:455), src/contacts.c (from /trunk/contacts.c:455), src/context.c (from /trunk/context.c:455), src/example.c (from /trunk/example.c:455), src/exif.c (from /trunk/exif.c:455), src/favorites-api.c (from /trunk/favorites-api.c:455), src/flickcurl.h (from /trunk/flickcurl.h:455), src/flickcurl_getopt.h (from /trunk/flickcurl_getopt.h:455), src/flickcurl_internal.h (from /trunk/flickcurl_internal.h:455), src/flickrdf.c (from /trunk/flickrdf.c:455), src/getopt.c (from /trunk/getopt.c:455), src/group.c (from /trunk/group.c:455), src/groups-api.c (from /trunk/groups-api.c:455), src/groups-pools-api.c (from /trunk/groups-pools-api.c:455), src/interestingness-api.c (from /trunk/interestingness-api.c:455), src/location.c (from /trunk/location.c:455), src/md5.c (from /trunk/md5.c:455), src/method.c (from /trunk/method.c:455), src/people-api.c (from /trunk/people-api.c:455), src/perms.c (from /trunk/perms.c:455), src/person.c (from /trunk/person.c:455), src/photo.c (from /trunk/photo.c:455), src/photos-api.c (from /trunk/photos-api.c:455), src/photos-comments-api.c (from /trunk/photos-comments-api.c:455), src/photos-geo-api.c (from /trunk/photos-geo-api.c:455), src/photos-licenses-api.c (from /trunk/photos-licenses-api.c:455), src/photos-notes-api.c (from /trunk/photos-notes-api.c:455), src/photos-transform-api.c (from /trunk/photos-transform-api.c:455), src/photos-upload-api.c (from /trunk/photos-upload-api.c:455), src/photoset.c (from /trunk/photoset.c:455), src/photosets-api.c (from /trunk/photosets-api.c:455), src/photosets-comments-api.c (from /trunk/photosets-comments-api.c:455), src/place.c (from /trunk/place.c:455), src/places-api.c (from /trunk/places-api.c:455), src/reflection-api.c (from /trunk/reflection-api.c:455), src/size.c (from /trunk/size.c:455), src/tags-api.c (from /trunk/tags-api.c:455), src/tags.c (from /trunk/tags.c:455), src/test-api.c (from /trunk/test-api.c:455), src/test.c (from /trunk/test.c:455), src/ticket.c (from /trunk/ticket.c:455), src/upload-api.c (from /trunk/upload-api.c:455), src/urls-api.c (from /trunk/urls-api.c:455), src/user_upload_status.c (from /trunk/user_upload_status.c:455), src/vsnprintf.c (from /trunk/vsnprintf.c:455), tags-api.c, tags.c, test-api.c, test.c, ticket.c, upload-api.c, urls-api.c, user_upload_status.c, utils, utils/Makefile.am (from /trunk/Makefile.am:455), utils/flickcurl.c (from /trunk/flickcurl.c:455), vsnprintf.c: Move sources to src/ utils to utils/ * NEWS.html: 1.1 news * coverage.html: 1.1 * coverage.html, flickcurl.c, flickcurl.h, flickcurl_internal.h, photo.c, place.c, places-api.c: (flickcurl_places_find): Added to support flickr.places.find announced 2008-01-18 2008-01-12 Dave Beckett * README.html: word * NEWS.html, configure.ac: Bump version to 1.1 * Snapshotted flickcurl_1_0 for 1.0 release (SVN 449) * README.html: place * flickcurl.c, flickcurl.h, photo.c: Add place field to flickcurl_photo so place can be got as a structure rather than just raw fields * LICENSE.html, Makefile.am, NEWS.html, activity-api.c, activity.c, args.c, auth-api.c, blog.c, blogs-api.c, category.c, codegen.c, comments.c, common.c, config.c, configure.ac, contacts-api.c, contacts.c, context.c, coverage.html, exif.c, favorites-api.c, flickcurl-config.in, flickcurl.c, flickcurl.h, flickcurl.rdf.in, flickcurl_internal.h, flickrdf.c, group.c, groups-api.c, groups-pools-api.c, interestingness-api.c, location.c, md5.c, method.c, people-api.c, perms.c, person.c, photo.c, photos-api.c, photos-comments-api.c, photos-geo-api.c, photos-licenses-api.c, photos-notes-api.c, photos-transform-api.c, photos-upload-api.c, photoset.c, photosets-api.c, photosets-comments-api.c, place.c, places-api.c, reflection-api.c, size.c, tags-api.c, tags.c, test-api.c, test.c, ticket.c, upload-api.c, urls-api.c, user_upload_status.c, vsnprintf.c: 2008 and url tweak * README.html: words * NEWS.html: places 1.0 * flickcurl.h, photo.c: photo fields added for place IDs * README.html: 100% and update output * common.c: No PWD * NEWS.html: 1.0 * NEWS.html, activity-api.c, blogs-api.c, configure.ac, coverage.html, favorites-api.c, photos-api.c, places-api.c, test-api.c: 0.14 is now 1.0 since 100% of the API is supported * Makefile.am, activity-api.c, activity.c, common.c, coverage.html, flickcurl.c, flickcurl.h, flickcurl_internal.h: Implement activity API - 100% of API DONE 2008-01-11 Dave Beckett * category.c: categories comment out debug message * Makefile.am, blog.c, blogs-api.c, coverage.html, flickcurl.c, flickcurl.h, flickcurl_internal.h: Added Blogs API * configure.ac: 0.14 * coverage.html, flickcurl.c, flickcurl.h, test-api.c: Completed flickr.test API * ChangeLog, Makefile.am, coverage.html, favorites-api.c, flickcurl.c, flickcurl.h: Added Favorites API * places-api.c: doc * coverage.html: 0.14 * place.c: (flickcurl_build_place): Free xpathNodeCtx * Makefile.am, common.c, flickcurl.c, flickcurl.h, flickcurl_internal.h, photos-api.c, place.c, places-api.c: Added Places API * NEWS.html: 0.14 * codegen.c: 2008 * coverage.html: Added 2 places APIs 2007-12-21 Dave Beckett * Snapshotted flickcurl_0_13 for 0.13 release (SVN 422) 2007-12-18 Dave Beckett * NEWS.html: 0.13 * Makefile.am, coverage.html, flickcurl.c, flickcurl.h, interestingness-api.c: Added flickr.interestingness.getList * Makefile.am, coverage.html, flickcurl.c, flickcurl.h, photos-transform-api.c: Added photos.transform.rotate * coverage.html: Added people.getUploadStatus * Makefile.am, coverage.html, flickcurl.c, flickcurl.h, flickcurl_internal.h, people-api.c, user_upload_status.c: Added people.getUploadStatus * coverage.html, flickcurl.c, flickcurl.h, people-api.c: Added flickr.people.getPublicGroups * Makefile.am, category.c, flickcurl.c, flickcurl.h, flickcurl_internal.h, group.c, groups-api.c: Added flickr.group API 2007-11-03 Dave Beckett * upload-api.c: docs * flickcurl.c: Added command_photos_upload_checkTickets * flickcurl_internal.h: Added flickcurl_build_tickets * flickcurl.h: Added flickcurl_ticket Added flickcurl_free_ticket, flickcurl_free_tickets and flickcurl_photos_upload_checkTickets * photos-upload-api.c, ticket.c: Photos upload api * Makefile.am: Added photos-upload-api.c * Makefile.am: Added ticket.c 2007-11-02 Dave Beckett * photos-api.c: flickcurl_photos_getSizes 0.13 * flickcurl.c: Added command_photos_getSizes * photos-api.c: (flickcurl_photos_getSizes): Added. * flickcurl_internal.h: Added flickcurl_build_sizes * Makefile.am: Added size.c * size.c: Added size * flickcurl.h: Added flickcurl_size Added flickcurl_free_size and flickcurl_free_sizes Added flickcurl_photos_getSizes * flickcurl.c: Added commands: flickr.photosets.addPhoto, flickr.photosets.create, flickr.photosets.delete, flickr.photosets.editMeta, flickr.photosets.editPhotos, flickr.photosets.orderSets and flickr.photosets.removePhoto * photosets-api.c: (flickcurl_photosets_editPhotos, flickcurl_photosets_orderSets) Now take an array of photo IDs/photoset IDs * flickcurl.h: flickcurl_photosets_editPhotos, flickcurl_photosets_orderSets now take an array of photo IDs/photoset IDs * flickcurl.c: command_photos_getCounts added * common.c, flickcurl.h, photos-api.c: (flickcurl_array_join, flickcurl_array_split, flickcurl_array_free): Added. (flickcurl_photos_getCounts): Added 2007-10-31 Dave Beckett * flickcurl.c: Added command_print_photoset Added command flickr.photosets.getInfo, flickr.photosets.getList and flickr.photosets.getPhotos 2007-10-30 Dave Beckett * flickcurl.h, flickcurl_internal.h: Added flickcurl_photoset * photosets-api.c: Added rest of flickr.photosets APIs - writeable ones untested. * Makefile.am: Added photoset.c * photoset.c: Flickcurl photoset functions 2007-08-11 Dave Beckett * NEWS.html, configure.ac: Bump version to 0.13 * Snapshotted flickcurl_0_12 for 0.12 release (SVN 368) * coverage.html, flickcurl.c, flickcurl.h, photos-api.c: Added flickr.photos.getNotInSet, flickr.photos.getRecent, flickr.photos.getUntagged, flickr.photos.getWithGeoData, flickr.photos.getWithoutGeoData, flickr.photos.recentlyUpdated * coverage.html, flickcurl.c, flickcurl.h, person.c, photos-api.c: Added flickr.photos.getFavorites * coverage.html, flickcurl.h, flickcurl_internal.h, person.c: Added flickcurl_build_persons * exif.c: -debug * Makefile.am, exif.c, flickcurl.c, flickcurl.h, flickcurl_internal.h, photos-api.c: Added flickcurl_photos_getExif * coverage.html, flickcurl.c, flickcurl.h, photos-api.c: Added flickcurl_photos_getContactsPublicPhotos 2007-08-10 Dave Beckett * Makefile.am, coverage.html, flickcurl.c, flickcurl.h, flickcurl_internal.h, group.c, groups-pools-api.c: Added groups.pools APIs * coverage.html, flickcurl.c, people-api.c: Added flickcurl_people_getPublicPhotos * flickcurl.h: Added flickcurl_people_getPublicPhotos * flickcurl.c, flickcurl.h, photos-licenses-api.c: Added photos.licenses.setLicense API * Makefile.am, coverage.html, flickcurl.c, flickcurl.h, photos-notes-api.c: Added photos.notes API * photos-geo-api.c: (flickcurl_photos_geo_setLocation): Handle optional accuracy * flickcurl.c, flickcurl.h, location.c, photos-geo-api.c: Added photos.geo API * photos-api.c: (flickcurl_photos_delete): Tidy result returning. * Makefile.am: Add location.c photos-geo-api.c * flickcurl_internal.h: Add flickcurl_build_location * perms.c: (flickcurl_build_perms): Add iscontact. * photos-api.c: (flickcurl_photos_setContentType): No need for xpathCtx 2007-08-08 Dave Beckett * AUTHORS, contacts-api.c, contacts.c: Added Vanila I. Shu copyright to AUTHORS and contacts code 2007-08-06 Dave Beckett * flickcurl_internal.h: Remove libxslt headers - patch from FreeBSD packaging 2007-08-05 Dave Beckett * example.c: title, license header 2007-08-04 Dave Beckett * flickrdf.c: change machinetags.org namespaces 2007-08-03 Dave Beckett * photo.c: (flickcurl_build_photos): Do not overwrite a field if it's found in the earlier of two XPaths * flickrdf.c: Properly ignore xmlns in (machine) tags * NEWS.html: 0.12 * configure.ac: Bumped version to 0.12 2007-08-02 Dave Beckett * configure.ac: Bumped version to 0.12 * Snapshotted flickcurl_0_11 for 0.11 release (SVN 337) * coverage.html: 50%!!! 2007-08-01 Dave Beckett * flickcurl.c: (command_print_photo): Added. (command_photos_getInfo): Use above. (command_photos_getContactsPhotos): Added. (command_photos_search): Added with huge list of optional fields. * photos-api.c: (flickcurl_photos_getContactsPhotos): Fix field types (flickcurl_photos_search): Fix parameter types and do int/string conversions and checks. * flickcurl.h: Fix types of flickcurl_search_params fields * photo.c: Recognise photo fields as attributes when they appear in a photos summary result. 2007-07-31 Dave Beckett * flickcurl.h: Added flickcurl_free_photos prototype. * photos-api.c: (flickcurl_photos_getContactsPhotos): Added. * photo.c: declare var * photo.c: (flickcurl_free_photos): Added. * flickcurl_internal.h: Added flickcurl_build_perms * flickcurl.c: (command_photos_getPerms) tidied * flickcurl.c: command_photos_getPerms for flickr.photos.getPerms added. * Makefile.am: Added perms.c * flickcurl.h: flickcurl_perms structure added Added flickcurl_photos_getPerms and altered flickcurl_photos_setPerms to use flickcurl_perms Added flickcurl_free_perms * photos-api.c: (flickcurl_photos_getPerms): Added, returning flickcurl_perms (flickcurl_photos_setPerms): Changed to use flickcurl_perms * perms.c: flickcurl_perms functions 2007-07-29 Dave Beckett * Makefile.am, contacts-api.c, contacts.c, flickcurl.h, flickcurl_internal.h: Added contacts APIs * upload-api.c: (flickcurl_photos_upload_params): Added as prefered upload API call, deprecating flickcurl_photos_upload (flickcurl_free_upload_status): Added, replacing deprecated flickcurl_upload_status_free. * flickcurl.c: (command_upload): switch to new API flickcurl_photos_upload_params (command_photos_setContentType, command_photos_setDates, command_photos_setMeta, command_photos_setPerms, command_photos_setSafetyLevel): Added along with commands for the photos API calls. * photos-api.c: (flickcurl_photos_search, flickcurl_photos_setContentType, flickcurl_photos_setDates, flickcurl_photos_setMeta, flickcurl_photos_setPerms, flickcurl_photos_setSafetyLevel): Added. * flickcurl_internal.h: Added flickcurl_unixtime_to_sqltimestamp and flickcurl_build_photos prototypes * flickcurl.h: Added FLICKCURL_DEPRECATED macro. Added flickcurl_upload_params structure for uploading and flickcurl_search_params for searching. Deprecated flickcurl_photos_upload for flickcurl_photos_upload_params and flickcurl_upload_status_free for flickcurl_free_upload_status * photo.c: photo_fields_table: XPaths are now relative (flickcurl_build_photos): Added return a list of photos (flickcurl_build_photo): Altered to wrap flickcurl_build_photos and return 1 photo. * common.c: (flickcurl_unixtime_to_sqltimestamp): Added. 2007-05-06 Dave Beckett * flickcurl.c: Title and usage with no args 2007-04-22 Dave Beckett * autogen.sh: Update autogen.sh 2007-04-19 Dave Beckett * flickrdf.c: Declare namespaces from tags if seen too. * flickrdf.c: debug messages are gone one place to add namespaces * flickrdf.c: license name if no url * flickrdf.c: handle license with no url * flickrdf.c: namespace fun * flickrdf.c: Add type override for geo:lat, geo:long - keep the values as string in RDF. * configure.ac: Bumped version to 0.11 2007-04-16 Dave Beckett * Snapshotted flickcurl_0_10 for 0.10 release (SVN 295) * photo.c: region is not a float * photo.c: field twice * photo.c: debug msg * photo.c: free photo tags * common.c: +1 * upload-api.c: errno * flickcurl.c: (command_upload): Change command parsing. Works. * flickcurl.c: (print_upload_status): Added. (command_upload): Added for uploading a photo file with option handling that does not seem to work. (command_replace): Added for uploading a replacement photo file. * common.c: (flickcurl_prepare_common): Properly add api_sig as a new parameter. Fix debugging output with no method parameter to go to upload.xml * upload-api.c: (flickcurl_photos_upload): Return if file is not readable. Handle optional parameters. (flickcurl_photos_replace): Return if file is not readable. * Makefile.am: Added upload-api.c * upload-api.c: Flickr photo upload API calls * flickcurl.h: Added flickcurl_upload_status struct Added flickcurl_photos_upload, flickcurl_photos_replace and flickcurl_upload_status_free * common.c: (flickcurl_prepare_common): Handle optional method. (flickcurl_prepare): Check for required method here. (flickcurl_prepare_upload): No need for flickcurl_set_write * flickcurl_internal.h: flickcurl_prepare_upload has no method. * common.c: Save away fields: param_fields, param_values, parameter_count, upload_field, upload_value saved from prepare to invoke. (flickcurl_free): Free new fields (flickcurl_prepare_common): Handle params in body not urls by saving them away and not appending them here. Take in destination URL base as a parameter. Add upload params, saved away for invoke. (flickcurl_prepare): Now a wrapper around flickcurl_prepare_common with no upload params. (flickcurl_prepare_upload): Added, calling flickcurl_prepare_common with most params set. (flickcurl_invoke): Look for upload field and if present, put params in form-data body using curl_formadd and curl_easy_setopt CURLOPT_HTTPPOST. * flickcurl_internal.h: Added flickcurl_prepare_upload struct flickcurl_s gains fields: param_fields, param_values, parameter_count, upload_field, upload_value saved from prepare. * flickcurl.h: Added flickcurl_photosets_comments_addComment, flickcurl_photosets_comments_deleteComment, flickcurl_photosets_comments_editComment and flickcurl_photosets_comments_getList * flickcurl.c: Added photosets.comments calls * Makefile.am: photosets-comments-api.c * photosets-comments-api.c: Flickr flickr.photosets.comments.* API calls * codegen.c: better codegen. no -a/auth. delay init. usage * Makefile.am: codegen is extra * common.c: (flickcurl_prepare): Fix URI escaping with curl_escape to allow sending values with spaces. * photos-comments-api.c: Use flickcurl_set_data for POST with no content * codegen.c: write sets default data to empty 2007-04-15 Dave Beckett * comments.c: now with less core dumps * comments.c: (flickcurl_free_comments): Added. * flickcurl.h: Added flickcurl_free_comments * flickcurl.c: Added photos.comments calls * comments.c: Flickr comments * photos-comments-api.c: Flickr flickr.photos.comments.* API calls * Makefile.am: Added codegen, photos comments API in comments.c and photos-comments-api.c * flickcurl_internal.h: Added flickcurl_build_comments * flickcurl.h: Added flickcurl_comment structure. Added flickcurl_free_comment, flickcurl_photos_comments_addComment, flickcurl_photos_comments_deleteComment, flickcurl_photos_comments_editComment, flickcurl_photos_comments_getList functions. * codegen.c: code generator * flickcurl.c: (command_reflection_getMethodInfo): prints * flickcurl.c: (command_reflection_getMethods): Added for flickr.reflection.getMethods * reflection-api.c: Flickr flickr.reflection.* API calls * flickcurl.c: (command_reflection_getMethodInfo): Added for flickr.reflection.getMethodInfo * Makefile.am: Added args.c method. reflection-api.c * flickcurl.h: Added flickcurl_arg, flickcurl_method structures Other docs Added: flickcurl_free_method(flickcurl_method *method) Added API calls: flickcurl_reflection_getMethods flickcurl_reflection_getMethodInfo * method.c: Flickcurl method functions * flickcurl_internal.h: Add args.c method.c prototypes for reflection API support: flickcurl_free_arg, flickcurl_build_args, flickcurl_build_method. * flickcurl.c: fix error returns * photo.c: Added location fields neighborhood, locality, region and country to photo_fields_table. * flickcurl.h: Added PHOTO_FIELD_location_neighborhood, PHOTO_FIELD_location_locality, PHOTO_FIELD_location_region, PHOTO_FIELD_location_country after announcement http://geobloggers.com/archives/2007/04/12/flickr-two-new-subtle-geo-updates/ which doesn't seem to actually be live right now. 2007-04-14 Dave Beckett * Makefile.am, flickrdf.c: triplr becomes flickrdf 2007-02-25 Dave Beckett * common.c, person.c: Move flickcurl_free_person from common.c to person.c * configure.ac: Bumped version to 0.10 * Snapshotted flickcurl_0_9 for 0.9 release (SVN 221) * tags.c: (flickcurl_build_tags): Handle @score from tags.getHotList * tags-api.c: (flickcurl_tags_getHotList): Added. * photos-api.c: (flickcurl_photos_addTags, flickcurl_photos_delete, flickcurl_photos_removeTag, flickcurl_photos_setTags): Added * flickcurl.c: Added commands for flickcurl_photos_addTags, flickcurl_photos_delete, flickcurl_photos_removeTag, flickcurl_photos_setTags and flickcurl_tags_getHotList * flickcurl.h: Added API calls flickcurl_photos_addTags, flickcurl_photos_delete, flickcurl_photos_removeTag, flickcurl_photos_setTags and flickcurl_tags_getHotList * common.c: (flickcurl_invoke): Remove extra curl_set_easyopt 2007-02-24 Dave Beckett * flickcurl_internal.h: flickcurl_call_get_one_string_field const xpathExpr * common.c: (flickcurl_call_get_one_string_field): const xpathExpr * flickcurl.c: Added commands for flickcurl_urls_getGroup, flickcurl_urls_getUserPhotos, flickcurl_urls_getUserProfile, flickcurl_urls_lookupGroup and flickcurl_urls_lookupUser * urls-api.c: (flickcurl_urls_getGroup, flickcurl_urls_getUserPhotos, flickcurl_urls_getUserProfile, flickcurl_urls_lookupGroup and flickcurl_urls_lookupUser): Added. * flickcurl.h: Added flickcurl_urls_getGroup, flickcurl_urls_getUserPhotos, flickcurl_urls_getUserProfile, flickcurl_urls_lookupGroup and flickcurl_urls_lookupUser * flickcurl_internal.h: Add flickcurl_call_get_one_string_field * people-api.c: Use flickcurl_call_get_one_string_field to replace flickcurl_get_nsid * common.c: (flickcurl_call_get_one_string_field): Added based on flickcurl_get_nsid, removed from people-api.c * auth-api.c, groups-pools-api.c, people-api.c, photos-api.c, photos-licenses-api.c, photosets-api.c, tags-api.c, test-api.c, test.c, urls-api.c: Adjust parameters arrays to allow for up to 5 added params * flickcurl.c: (main): Check max and min args. * configure.ac: Define FLICKCURL_VERSION_DECIMAL and substitute it * flickcurl.c: warning when command failed * config.c: (read_ini_config): Check for full length of app string match, not just prefix. * flickcurl_internal.h, photo.c, photos-api.c: (flickcurl_build_photo): Created from flickcurl_photos_getInfo() content which now uses it * Makefile.am, api.c, common.c, flickcurl_internal.h, photo.c (from common.c r185), tags.c: Copied photo routines from common.c to new photo.c and moved remaining api junk from api.c to common.c. Deleted api.c * Makefile.am, common.c, context.c, tags.c (from common.c r184): Pulled tags code out of api.c common.c into new tags.c including tags destructor and flickcurl_build_tags() * Makefile.am, api.c, common.c, context.c (from common.c r181), flickcurl_internal.h: Pulled contexts code out of api.c common.c into new context.c including flickcurl_build_contexts() * flickcurl.c: Added command_tags_getRelated for flickr.tags.getRelated * tags-api.c: (flickcurl_tags_getListUserRaw): Let flickcurl_build_tags tidy up the raw/cooked field detail. * common.c: (flickcurl_build_tags): Handle raw for flickr.tags.getListUserRaw and put @clean into the tags->cooked field and content into tags->raw field. * configure.ac: AM_CONFIG_HEADER * api.c, flickcurl.c, flickcurl.h, photos-api.c, triplr.c: Major tidy of flickcurl.h with reordering and more comments. Pulled out photos and contexts fields into new structures named flickcurl_THING_type, renaming enums to flickcurl_THING_field_type * Makefile.am, flickcurl_internal.h, people-api.c, person.c (from api.c r176): Added person.c from api.c and pulled out flickcurl_build_person from people-api.c * api.c, auth-api.c, groups-pools-api.c, people-api.c, photos-api.c, photos-licenses-api.c, photosets-api.c, tags-api.c, test-api.c, urls-api.c: Header comments * photosets-api.c: add stubs * Makefile.am, api.c, test-api.c (from api.c r173): Added test-api.c from api.c * Makefile.am, api.c, coverage.html, photosets-api.c (from api.c r172): Added photosets-api.c from api.c * Makefile.am, api.c, groups-pools-api.c (from api.c r171): Added groups-pools-api.c from api.c * api.c, flickcurl.h, people-api.c: Added PERSON_FIELD_photos_views in photos * api.c, auth-api.c, coverage.html, flickcurl.h, people-api.c, photos-api.c, photos-licenses-api.c, test.c, urls-api.c: Remove use of setting token field into flickcurl_prepare and remove uses of flickcurl_set_sig_key * common.c: (flickcurl_free): No sig_key field (flickcurl_set_sig_key): Removed (flickcurl_set_sign): Added. (flickcurl_prepare): Set auth_token field here and sign either if it present or otherwise told to sign, if fc->sign is set. (flickcurl_invoke): Reset fc->sign. * flickcurl_internal.h: flickcurl* replaced sig_key field with sign flag. * tags-api.c: (flickcurl_tags_getRelated): Added. * flickcurl.c: (command_print_tags): Added Added commands for flickcurl_tags_getListPhoto, flickcurl_tags_getListUser, flickcurl_tags_getListUserPopular and flickcurl_tags_getListUserRaw. * tags-api.c: (flickcurl_tags_getListPhoto, flickcurl_tags_getListUser, flickcurl_tags_getListUserPopular and flickcurl_tags_getListUserRaw): Added. * flickcurl.h: Added flickcurl_tags_getListPhoto, flickcurl_tags_getListUser, flickcurl_tags_getListUserPopular and flickcurl_tags_getListUserRaw 2007-02-23 Dave Beckett * example.c: add tag count * common.c: (flickcurl_build_tags): Add count * flickcurl.h: struct flickcurl_tag gains count * flickcurl.h: Added flickcurl_tags_getListInfo * flickcurl.c: Added command_tags_getListInfo for tags.getListPhoto * photos-api.c: (flickcurl_photos_getInfo): Free xpathCtx here * common.c: (flickcurl_build_tags): Do not free xpathCtx here * Makefile.am: Added tags-api.c * tags-api.c: flickr.tags.* * flickcurl.c: (command_photos_getInfo): Handle NULL authorname * flickcurl.c: (command_photos_getInfo): Print authorname * common.c: (flickcurl_free_tag): Free authorname (flickcurl_build_tags): Add authorname * example.c: add authorname * flickcurl.h: struct flickcurl_tag gains authorname * photos-api.c: (flickcurl_photos_getInfo): Moved tags parsing to new flickcurl_build_tags() * flickcurl.h: struct flickcurl_photo replace flickcurl_tag* tags[20] with flickcurl_tag** * common.c: (flickcurl_build_tags): Added, pulled out of flickcurl_photos_getInfo(). * flickcurl_internal.h: Added flickcurl_build_tags * Makefile.am: remove example * coverage.html: Link to photo upload API * common.c: (flickcurl_free): Only free XML data. * test.c: errno * common.c: (flickcurl_invoke): Error if capture write fails. Tidy URI debug message * test.c: low-level api test * Makefile.am: example and test are extra * example.c: tidy * flickcurl.c: Added new commands and helper functions for flickcurl_auth_checkToken, flickcurl_auth_getFrob, flickcurl_auth_getToken and flickcurl_auth_getFullToken Moved initializing earlier so that '-a' can work again. 2007-02-22 Dave Beckett * common.c: (flickcurl_free): Tidy data, data_length and data_is_xml fields. (flickcurl_prepare): Init to read-only, no content data. (flickcurl_invoke): Add Content-Type: application/xml header when sending data. Use POST when write flag is set. Handle non XML responses failing gracefully (flickcurl_set_write, flickcurl_set_data, flickcurl_set_xml_data): Added. * flickcurl_internal.h: Added is_write, data, data_length and data_is_xml fields to flickcurl* * auth-api.c: (flickcurl_auth_checkToken, flickcurl_auth_getFrob and flickcurl_auth_getToken): Added, completing the flickr.auth.* API calls. * flickcurl.h: Added flickcurl_set_write, flickcurl_set_data, flickcurl_set_xml_data Added auth API calls: flickcurl_auth_checkToken, flickcurl_auth_getFrob and flickcurl_auth_getToken * coverage.html: 0.9 2007-02-20 Dave Beckett * Snapshotted flickcurl_0_8 for 0.8 release (SVN 122) * example.c: Add init, finish * coverage.html: Now with changes * NEWS: NEWS now generated * common.c: (flickcurl_new): 1000ms default delay 2007-02-19 Dave Beckett * triplr.c: (emit_triple): Casts for raptor_free_uri * flickcurl.c, triplr.c: Use flickcurl_init/flickcurl_finish to ensure all of curl/libxml is initialised and cleaned up as far as is possible * flickcurl.h: Added flickcurl_init * common.c: (flickcurl_init): Added. * flickcurl.c: (main): Call flickcurl_finish * flickcurl.h: Added flickcurl_finish prototype. * common.c: (flickcurl_finish): Added. * photos-api.c: (flickcurl_photos_getInfo): return NULL on error * flickcurl.c: (main): Init fc and ensure it is freed on help/usage. * photos-licenses-api.c: free attribute strings that are atoi()ed * photos-api.c: free attribute strings that are atoi()ed * common.c: free attribute strings that are atoi()ed * triplr.c: (emit_triple): Free uris properly. (main): Init fc and ensure it is freed on help/usage. * triplr.c: help to stdout * Makefile.am, api.c, photos-licenses-api.c (renamed from api.c r95): Pull photos.licenses API out of api.c into photos-licenses-api.c * api.c, auth-api.c, people-api.c, photos-api.c, urls-api.c: autodocs * Makefile.am, api.c, photos-api.c (renamed from api.c r90): Pull photos API out of api.c into photos-api.c * common.c: common.c * Makefile.am, common.c (renamed from core.c r90), core.c: Rename core.c to common.c - files named core* are a bad idea * flickcurl.c: Rename commands to match API names Allow old foo-bar commands to work Allow flickr.COMMAND to work 2007-02-18 Dave Beckett * triplr.c: Extend help when raptor is present * people-api.c: (flickcurl_get_nsid): Added with common code from flickcurl_people_findByEmail, flickcurl_people_findByUsername. (flickcurl_people_findByEmail, flickcurl_people_findByUsername): Updated to use flickcurl_get_nsid. * flickcurl.c: Added commands to call flickcurl_people_findByEmail and flickcurl_people_findByUsername * people-api.c: (flickcurl_people_findByEmail, flickcurl_people_findByUsername): Added. * flickcurl.h: Added char* flickcurl_people_findByEmail(flickcurl* fc, const char* email); char* flickcurl_people_findByUsername(flickcurl* fc, const char* username); * core.c, flickcurl_internal.h: Fix offline/capture defines * core.c: use errno.h * configure.ac, core.c, flickcurl_internal.h: Added --enable-offline and --enable-capture to configure rather than editing a header file * api.c, auth-api.c, core.c, flickcurl_internal.h, people-api.c, urls-api.c: More comprehensive offline and XML capture * Makefile.am, api.c, urls-api.c (from /trunk/api.c:67): Copy urls apis from api.c urls-api.c * people-api.c: Move person_fields_table from api.c * Makefile.am, api.c, people-api.c (from /trunk/api.c:62): Move people calls from api.c to people-api.c * auth-api.c: remove offline define * Makefile.am, flickcurl.c (from /trunk/main.c:57), main.c: Rename main.c to flickcurl.c * Makefile.am, core.c (from /trunk/flickcurl.c:61), flickcurl.c: Rename flickcurl.c to core.c * Makefile.am, api.c, auth-api.c (from /trunk/api.c:51), flickcurl_internal.h: Move auth calls from api.c to auth-api.c * flickcurl.c: (flickcurl_new): Default to 100ms min delay between requests. * configure.ac: Remove -Wmissing-format-attribute Which is too annoying to fix right now. * flickcurl.c: ifdef not if * flickcurl.c: (flickcurl_invoke): Wrap debug messages with ifdefs * main.c: Added -d/--delay DELAY to set request delay * triplr.c: Debug is now -D/--delay -d/--delay DELAY to set request delay * flickcurl.c: (flickcurl_set_request_delay): Added to set the inter-request minimum delay. (flickcurl_invoke): Use gettimeofday and nanosleep to enforce the minimum delay between requests. * flickcurl.h: Added flickcurl_set_request_delay * flickcurl_internal.h: flickcurl gains last_request_time and request_delay fields * flickcurl.c: Fix home page url * configure.ac: Bumped version to 0.8 * Snapshotted flickcurl_0_7 for 0.7 release (SVN 48) 2007-02-17 Dave Beckett * main.c: (command_contexts_print): Added helper (command_groups_pools_getContext): Added, calling flickcurl_groups_pools_getContext. (command_photos_getAllContexts): Added, calling flickcurl_photos_getAllContexts. (command_photos_getContext): Added, calling flickcurl_photos_getContext. (command_photosets_getContext): Added, calling flickcurl_photosets_getContext * api.c: (flickcurl_get_context_type_field_label): Added helper (flickcurl_groups_pools_getContext, flickcurl_photos_getAllContexts, flickcurl_photos_getContext, flickcurl_photosets_getContext): Added API calls. * flickcurl.c: (flickcurl_free_context, flickcurl_free_contexts, flickcurl_build_contexts): Added * flickcurl.h: Added flickcurl_context_type enum, flickcurl_context typedef Added flickcurl_get_context_type_field_label, flickcurl_groups_pools_getContext, flickcurl_photos_getAllContexts, flickcurl_photos_getContext, flickcurl_photosets_getContext, API calls. Added flickcurl_free_context and flickcurl_free_contexts * flickcurl_internal.h: Added flickcurl_context_type_element, flickcurl_build_contexts 2007-02-11 Dave Beckett * README.html: dc:rights example * NEWS, README.html, configure.ac: Bumped to 0.7 * coverage.html: annoate version it appeared * Makefile.am, README.html, coverage.html: Added coverage doc * configure.ac: AC_INIT tweak 2007-02-11 Dave Beckett * Snapshotted flickcurl_0_6 for 0.6 release (SVN 31) * Makefile.am, README.html, coverage.html: Added coverage doc * configure.ac: AC_INIT tweak 2007-02-05 Dave Beckett * README.html: Added flickcurl_urls_lookupUser * main.c; Added command_urls_lookupUser and urls-lookupUser command * flickcurl.h: Added flickcurl_urls_lookupUser * api.c: (flickcurl_urls_lookupUser): Added 2007-02-04 Dave Beckett * api.c: online * triplr.c: When a photo license field is found, look up the license URI with flickcurl_photos_licenses_getInfo_by_id() * main.c: Added command_people_getInfo, command_photos_licenses_getInfo and corresponding as people-getInfo and photos-licenses-getInfo * flickcurl.c (flickcurl_free): Tidy licenses found. (flickcurl_free_person): Added. * api.c: (flickcurl_photos_getInfo): auth_token is optional. (flickcurl_get_person_field_label, flickcurl_people_getInfo, flickcurl_photos_licenses_getInfo, flickcurl_photos_licenses_getInfo_by_id, flickcurl_free_person): Added (compare_licenses, flickcurl_read_licenses): Added to implement flickcurl_photos_licenses_getInfo() and flickcurl_photos_licenses_getInfo_by_id(). * flickcurl.h: Added VALUE_TYPE_PERSON_ID Added flickcurl_license, flickcurl_person_field, flickcurl_person Added: const char* flickcurl_get_person_field_label(flickcurl_person_field field); flickcurl_person* flickcurl_people_getInfo(flickcurl* fc, const char* user_id); flickcurl_license** flickcurl_photos_licenses_getInfo(flickcurl *fc); flickcurl_license* flickcurl_photos_licenses_getInfo_by_id(flickcurl *fc, int id); void flickcurl_free_person(flickcurl_person *person); * flickcurl_internal.h: Added licenses to struct flickcurl_s * configure.ac: 0.6 * Imported flickcurl 0.1 - 0.5 from tarballs flickcurl-1.25/README.html0000644000175000017500000005643012210725073012172 00000000000000 Flickcurl: C library for the Flickr API

Flickcurl: C library for the Flickr API

Dave Beckett

Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. It uses libcurl to call the REST web service and libxml2 to manipulate the XML responses. Flickcurl supports all of the API (see Flickcurl API coverage for details) including the functions for photo/video uploading, browsing, searching, adding and editing comments, groups, notes, photosets, categories, activity, blogs, favorites, places, tags, machine tags, institutions, pandas and photo/video metadata. It also includes a program flickrdf to turn photo metadata, tags, machine tags and places into an RDF triples description.

License: LGPL 2.1+ / GPL 2+ / Apache 2.0+

Download: http://download.dajobe.org/flickcurl/

Docs: Flickcurl API reference manual

News: Flickcurl News including changes

Requirements: the following libraries are needed:

Then do the usual ./configure, make and make install sequence to install the library and the flickcurl and flickrdf utilities.

GitHub hosts the sources for Flickcurl at the GitHub flickcurl project page.

Checkout with:

  git clone git://github.com/dajobe/flickcurl.git

  # Get the libmtwist submodule and fetch its content with:

  git submodule update --init

Flickr API Configuration

The library needs to know your Flickr API OAuth token, token secret, client key and client secret, suitable for calling some of the API calls. To obtain these, you need to apply for API keys at the Flickr Services site. When using the utility programs, this information should be stored in the ~/.flickcurl.conf file so that it can be read at run-time. The configuration file has the format:

[flickr]
oauth_token=12345678901234567-abcdef0123456789
oauth_token_secret=abcdef9876543210
oauth_client_key=0123456789abcdef0123456789abcdef
oauth_client_secret=fedcba9876543210

See Authenticating Flickcurl for OAuth in the manual for full details of how to build flickcurl, authenticate and set up the configuration file above.

Utility programs

flickcurl - call Flickr API

This can call some of the Flickr APIs plus help with OAuth authentication steps to get the final set of tokens and secrets and writing them into ~/.flickcurl.conf file. Use flickcurl -h to get a list of the supported commands and their arguments.

This example calls the photos.getInfo API via the photos-getInfo command on photo 196308964 which decodes the returned XML into fields in a flickcurl_photo structure which are then printed with their datatype, string value and integer value (or -1 if it has none). All dateTime values are converted into both the ISO format string (such as used by Web and XML standards) and unix time integers. Photo tags are also returned when present along with their id, author, raw, cooked and machine tag status.

$ flickcurl photos.getInfo 196308964
flickcurl: photo with URI http://www.flickr.com/photos/dajobe/196308964/ ID 196308964 and 5 tags
    field dateuploaded (1) with dateTime value: '2006-07-23T18:16:13Z' / 1153678573
    field farm (2) with integer value: '1' / 1
    field isfavorite (3) with boolean value: '0' / 0
    field license (4) with integer value: '1' / 1
    field originalformat (5) with string value: 'jpg' / -1
    field rotation (6) with integer value: '0' / 0
    field server (7) with integer value: '57' / 57
    field dates_lastupdate (8) with dateTime value: '2007-02-25T07:45:46Z' / 1172389546
    field dates_posted (9) with dateTime value: '2006-07-23T18:16:13Z' / 1153678573
    field dates_taken (10) with string value: '2006-07-22 22:28:50' / -1
    field dates_takengranularity (11) with integer value: '0' / 0
    field editability_canaddmeta (13) with boolean value: '1' / 1
    field editability_cancomment (14) with boolean value: '1' / 1
    field geoperms_iscontact (15) with boolean value: '0' / 0
    field geoperms_isfamily (16) with boolean value: '0' / 0
    field geoperms_isfriend (17) with boolean value: '0' / 0
    field geoperms_ispublic (18) with boolean value: '1' / 1
    field location_accuracy (19) with integer value: '12' / 12
    field location_latitude (20) with float value: '36.620487' / -1
    field location_longitude (21) with float value: '-121.904468' / -1
    field owner_location (22) with string value: 'Mountain View, California, USA' / -1
    field owner_nsid (23) with string value: '13355580@N00' / -1
    field owner_realname (24) with string value: 'Dave Beckett' / -1
    field owner_username (25) with string value: 'dajobe' / -1
    field title (26) with string value: 'Jellyfish at Monterey Aquarium' / -1
    field visibility_isfamily (27) with boolean value: '0' / 0
    field visibility_isfriend (28) with boolean value: '0' / 0
    field visibility_ispublic (29) with boolean value: '1' / 1
    field secret (30) with string value: 'b34cb0af68' / -1
    field originalsecret (31) with string value: 'b34cb0af68' / -1
    field location_locality (33) with string value: 'Pacific Grove' / -1
    field location_region (35) with string value: 'California' / -1
    field location_country (36) with string value: 'United States' / -1
    field location_placeid (37) with string value: 'J1HdelRTVrx7R.g2' / -1
    field locality_placeid (39) with string value: 'J1HdelRTVrx7R.g2' / -1
    field county_placeid (40) with string value: 'fpIAzjpQUL9F5MEpDw' / -1
    field region_placeid (41) with string value: 'NsbUWfBTUb4mbyVu' / -1
    field country_placeid (42) with string value: 'nz.gsghTUb4c2WAecA' / -1
    field location_woeid (43) with string value: '2467327' / -1
    field locality_woeid (45) with string value: '2467327' / -1
    field county_woeid (46) with string value: '12587696' / -1
    field region_woeid (47) with string value: '2347563' / -1
    field country_woeid (48) with string value: '23424977' / -1
    field usage_candownload (49) with boolean value: '1' / 1
    field usage_canblog (50) with boolean value: '1' / 1
    field usage_canprint (51) with boolean value: '1' / 1
    field views (56) with integer value: '529' / 529
tags:
0) regular tag: id 94493-196308964-3362 author ID 13355580@N00 name (Unknown) raw 'jellyfish' cooked 'jellyfish' count 0
1) regular tag: id 94493-196308964-119180 author ID 13355580@N00 name (Unknown) raw 'montereyaquarium' cooked 'montereyaquarium' count 0
2) regular tag: id 94493-196308964-2443 author ID 13355580@N00 name (Unknown) raw 'monterey' cooked 'monterey' count 0
3) machine tag: id 94493-196308964-8499312 author ID 13355580@N00 name (Unknown) raw 'xmlns:dc=http://purl.org/dc/elements/1.1/' cooked 'xmlns:dc=httppurlorgdcelements11' count 0
4) machine tag: id 94493-196308964-8499315 author ID 13355580@N00 name (Unknown) raw 'dc:subject=jellyfish' cooked 'dc:subject=jellyfish' count 0
notes:
  Location: latitude 36.620487  longitude -121.904468  accuracy unknown
  0) place location: name '
		' id J1HdelRTVrx7R.g2 woeid 2467327
  2) place locality: name 'Pacific Grove' id J1HdelRTVrx7R.g2 woeid 2467327
  3) place county: name 'Monterey' id fpIAzjpQUL9F5MEpDw woeid 12587696
  4) place region: name 'California' id NsbUWfBTUb4mbyVu woeid 2347563
  5) place country: name 'United States' id nz.gsghTUb4c2WAecA woeid 23424977

flickrdf - generate RDF triples from a Flickr photo

This utility uses the photos.getInfo API to interpret the description fields, tags and places for a photo URI into RDF triples. If raptor is present, it will be used to provide proper serializing to RDF rather than the built in and hacky ntriples/turtle output.

Machine tags when they are found are scanned for xmlns:prefix=uri and then all other machine tags with that prefix turn into triples. Several prefixes are also pre-defined by the library to automatically get turned into triples without an xmlns, such as blue:, cell:, filter: and geo:. Non-machine tags are not yet interpreted.

Places attached to photos are turned into extra information blocks (sets of triples) hung off a places:place predicate.

<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/creator> _:person .
_:person <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/#Person> .
_:person <http://xmlns.com/foaf/0.1/#maker> <http://www.flickr.com/photos/dajobe/196308964/> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/dateSubmitted> "2006-07-23T18:16:13Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/rights> <http://creativecommons.org/licenses/by-nc-sa/2.0/> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/modified> "2007-02-25T07:45:46Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/issued> "2006-07-23T18:16:13Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/created> "2006-07-22T22:28:50Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://www.w3.org/2003/01/geo/wgs84_pos#lat> "36.620487"^^<http://www.w3.org/2001/XMLSchema#double> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://www.w3.org/2003/01/geo/wgs84_pos#long> "-121.904468"^^<http://www.w3.org/2001/XMLSchema#double> .
_:person <http://xmlns.com/foaf/0.1/#name> "Dave Beckett" .
_:person <http://xmlns.com/foaf/0.1/#nick> "dajobe" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/terms/title> "Jellyfish at Monterey Aquarium" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://purl.org/dc/elements/1.1/subject> "jellyfish" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Places#place> _:place0 .
_:place0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://machinetags.org/ns/Places#Place> .
_:place0 <http://machinetags.org/ns/Places#type> "location" .
_:place0 <http://machinetags.org/ns/Places#id> "WM3JEXSbBZqqRtGA" .
_:place0 <http://machinetags.org/ns/Places#placeid> "2467327" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Places#place> _:place2 .
_:place2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://machinetags.org/ns/Places#Place> .
_:place2 <http://machinetags.org/ns/Places#type> "locality" .
_:place2 <http://machinetags.org/ns/Places#name> "Pacific Grove" .
_:place2 <http://machinetags.org/ns/Places#id> "WM3JEXSbBZqqRtGA" .
_:place2 <http://machinetags.org/ns/Places#placeid> "2467327" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Places#place> _:place3 .
_:place3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://machinetags.org/ns/Places#Place> .
_:place3 <http://machinetags.org/ns/Places#type> "county" .
_:place3 <http://machinetags.org/ns/Places#name> "Monterey" .
_:place3 <http://machinetags.org/ns/Places#id> "AQ4UpRqYA5l0BiyF.A" .
_:place3 <http://machinetags.org/ns/Places#placeid> "12587696" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Places#place> _:place4 .
_:place4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://machinetags.org/ns/Places#Place> .
_:place4 <http://machinetags.org/ns/Places#type> "region" .
_:place4 <http://machinetags.org/ns/Places#name> "California" .
_:place4 <http://machinetags.org/ns/Places#id> "SVrAMtCbAphCLAtP" .
_:place4 <http://machinetags.org/ns/Places#placeid> "2347563" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Places#place> _:place5 .
_:place5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://machinetags.org/ns/Places#Place> .
_:place5 <http://machinetags.org/ns/Places#type> "country" .
_:place5 <http://machinetags.org/ns/Places#name> "United States" .
_:place5 <http://machinetags.org/ns/Places#id> "4KO02SibApitvSBieQ" .
_:place5 <http://machinetags.org/ns/Places#placeid> "23424977" .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Flickr#photo> <http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/#Image> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg> <http://www.w3.org/2000/01/rdf-schema#label> "Square" .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg> <http://machinetags.org/ns/Flickr#width> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg> <http://machinetags.org/ns/Flickr#height> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Flickr#photo> <http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/#Image> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg> <http://www.w3.org/2000/01/rdf-schema#label> "Thumbnail" .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg> <http://machinetags.org/ns/Flickr#width> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg> <http://machinetags.org/ns/Flickr#height> "100"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Flickr#photo> <http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/#Image> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg> <http://www.w3.org/2000/01/rdf-schema#label> "Small" .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg> <http://machinetags.org/ns/Flickr#width> "180"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg> <http://machinetags.org/ns/Flickr#height> "240"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Flickr#photo> <http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/#Image> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg> <http://www.w3.org/2000/01/rdf-schema#label> "Medium" .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg> <http://machinetags.org/ns/Flickr#width> "375"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg> <http://machinetags.org/ns/Flickr#height> "500"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://www.flickr.com/photos/dajobe/196308964/> <http://machinetags.org/ns/Flickr#photo> <http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/#Image> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg> <http://www.w3.org/2000/01/rdf-schema#label> "Original" .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg> <http://machinetags.org/ns/Flickr#width> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg> <http://machinetags.org/ns/Flickr#height> "800"^^<http://www.w3.org/2001/XMLSchema#integer> .

If you have raptor installed, you can get nicer RDF triples out and with rapper 1.4.14+, pretty-printed turtle:

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix places: <http://machinetags.org/ns/Places#> .
@prefix flickr: <http://machinetags.org/ns/Flickr#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://www.flickr.com/photos/dajobe/196308964/>
    flickr:photo <http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg>, <http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg>, <http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg>, <http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg>, <http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg> ;
    places:place [
        places:id "WM3JEXSbBZqqRtGA" ;
        places:placeid "2467327" ;
        places:type "location" ;
        a places:Place
    ], [
        places:id "WM3JEXSbBZqqRtGA" ;
        places:name "Pacific Grove" ;
        places:placeid "2467327" ;
        places:type "locality" ;
        a places:Place
    ], [
        places:id "AQ4UpRqYA5l0BiyF.A" ;
        places:name "Monterey" ;
        places:placeid "12587696" ;
        places:type "county" ;
        a places:Place
    ], [
        places:id "SVrAMtCbAphCLAtP" ;
        places:name "California" ;
        places:placeid "2347563" ;
        places:type "region" ;
        a places:Place
    ], [
        places:id "4KO02SibApitvSBieQ" ;
        places:name "United States" ;
        places:placeid "23424977" ;
        places:type "country" ;
        a places:Place
    ] ;
    dc:subject "jellyfish" ;
    dcterms:created "2006-07-22T22:28:50Z"^^xsd:dateTime ;
    dcterms:creator [
        a foaf:Person ;
        foaf:maker <http://www.flickr.com/photos/dajobe/196308964/> ;
        foaf:name "Dave Beckett" ;
        foaf:nick "dajobe"
    ] ;
    dcterms:dateSubmitted "2006-07-23T18:16:13Z"^^xsd:dateTime ;
    dcterms:issued "2006-07-23T18:16:13Z"^^xsd:dateTime ;
    dcterms:modified "2007-02-25T07:45:46Z"^^xsd:dateTime ;
    dcterms:rights <http://creativecommons.org/licenses/by-nc-sa/2.0/> ;
    dcterms:title "Jellyfish at Monterey Aquarium" ;
    geo:lat 36.620487 ;
    geo:long -121.904468 .

<http://farm1.static.flickr.com/57/196308964_b34cb0af68_s.jpg>
    flickr:height 75 ;
    flickr:width 75 ;
    a foaf:Image ;
    rdfs:label "Square" .

<http://farm1.static.flickr.com/57/196308964_b34cb0af68_t.jpg>
    flickr:height 100 ;
    flickr:width 75 ;
    a foaf:Image ;
    rdfs:label "Thumbnail" .

<http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg>
    flickr:height 240 ;
    flickr:width 180 ;
    a foaf:Image ;
    rdfs:label "Small" .

<http://farm1.static.flickr.com/57/196308964_b34cb0af68.jpg>
    flickr:height 500 ;
    flickr:width 375 ;
    a foaf:Image ;
    rdfs:label "Medium" .

<http://farm1.static.flickr.com/57/196308964_b34cb0af68_o.jpg>
    flickr:height 800 ;
    flickr:width 600 ;
    a foaf:Image ;
    rdfs:label "Original" .

Library use example

See examples/print-photo-info.c

#include <stdio.h>
#include <flickcurl.h>

int main(int argc, char *argv[]);

int main(int argc, char *argv[]) {
  flickcurl *fc;
  flickcurl_photo *photo;
  flickcurl_photo_field_type field_type;
  int i;

  flickcurl_init(); /* optional static initialising of resources */
  fc = flickcurl_new();

  /* Set configuration, or more likely read from a config file */
  flickcurl_set_oauth_client_key(fc, "...");
  flickcurl_set_oauth_client_secret(fc, "...");
  flickcurl_set_oauth_token(fc, "...");
  flickcurl_set_oauth_token_secret(fc, "...");

  photo = flickcurl_photos_getInfo(fc, "123456789"); /* photo ID */

  for(field_type = 0; field_type <= PHOTO_FIELD_LAST; field_type++) {
    flickcurl_field_value_type datatype = photo->fields[field_type].type;
    
    if(datatype != VALUE_TYPE_NONE)
      fprintf(stderr, "field %s (%d) with %s value: '%s' / %d\n", 
              flickcurl_get_photo_field_label(field_type), (int)field_type,
              flickcurl_get_field_value_type_label(datatype),
              photo->fields[field_type].string,
              photo->fields[field_type].integer);
  }

  for(i = 0; i < photo->tags_count; i++) {
    flickcurl_tag* tag=photo->tags[i];
    fprintf(stderr,
            "%d) %s tag: id %s author ID %s name %s raw '%s' cooked '%s' count %d\n",
            i, (tag->machine_tag ? "machine" : "regular"),
            tag->id, tag->author, 
            (tag->authorname ? tag->authorname : "(Unknown)"), 
            tag->raw, tag->cooked,
            tag->count);
  }

  flickcurl_free_photo(photo);
  flickcurl_free(fc);
  flickcurl_finish(); /* optional static free of resources */

  return 0;
}

For more extensive example code, see the source of the flickcurl utility in flickcurl.c which has code that calls all the API functions.


Copyright (C) 2007-2013 Dave Beckett

flickcurl-1.25/README0000644000175000017500000005312612210725076011231 00000000000000 Flickcurl: C library for the Flickr API [1]Dave Beckett Flickcurl is a C library for the [2]Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. It uses [3]libcurl to call the [4]REST web service and [5]libxml2 to manipulate the XML responses. Flickcurl supports all of the API (see [6]Flickcurl API coverage for details) including the functions for photo/video uploading, browsing, searching, adding and editing comments, groups, notes, photosets, categories, activity, blogs, favorites, places, tags, machine tags, institutions, pandas and photo/video metadata. It also includes a program flickrdf to turn photo metadata, tags, machine tags and places into an RDF triples description. License: LGPL 2.1+ / GPL 2+ / Apache 2.0+ Download: [7]http://download.dajobe.org/flickcurl/ Docs: [8]Flickcurl API reference manual News: [9]Flickcurl News including changes Requirements: the following libraries are needed: * [10]libcurl 7.10.0 or newer * [11]libxml2 2.6.8 or newer * [12]raptor 2.0.0 (optional) Then do the usual ./configure, make and make install sequence to install the library and the flickcurl and flickrdf utilities. [13]GitHub hosts the sources for Flickcurl at the [14]GitHub flickcurl project page. Checkout with: git clone git://github.com/dajobe/flickcurl.git # Get the libmtwist submodule and fetch its content with: git submodule update --init Flickr API Configuration The library needs to know your Flickr API OAuth token, token secret, client key and client secret, suitable for calling some of the API calls. To obtain these, you need to [15]apply for API keys at the Flickr Services site. When using the utility programs, this information should be stored in the ~/.flickcurl.conf file so that it can be read at run-time. The configuration file has the format: [flickr] oauth_token=12345678901234567-abcdef0123456789 oauth_token_secret=abcdef9876543210 oauth_client_key=0123456789abcdef0123456789abcdef oauth_client_secret=fedcba9876543210 See [16]Authenticating Flickcurl for OAuth in the manual for full details of how to build flickcurl, authenticate and set up the configuration file above. Utility programs flickcurl - call Flickr API This can call some of the Flickr APIs plus help with OAuth authentication steps to get the final set of tokens and secrets and writing them into ~/.flickcurl.conf file. Use flickcurl -h to get a list of the supported commands and their arguments. This example calls the [17]photos.getInfo API via the photos-getInfo command on photo 196308964 which decodes the returned XML into fields in a flickcurl_photo structure which are then printed with their datatype, string value and integer value (or -1 if it has none). All dateTime values are converted into both the ISO format string (such as used by Web and XML standards) and unix time integers. Photo tags are also returned when present along with their id, author, raw, cooked and machine tag status. $ flickcurl photos.getInfo 196308964 flickcurl: photo with URI http://www.flickr.com/photos/dajobe/196308964/ ID 1963 08964 and 5 tags field dateuploaded (1) with dateTime value: '2006-07-23T18:16:13Z' / 1153678 573 field farm (2) with integer value: '1' / 1 field isfavorite (3) with boolean value: '0' / 0 field license (4) with integer value: '1' / 1 field originalformat (5) with string value: 'jpg' / -1 field rotation (6) with integer value: '0' / 0 field server (7) with integer value: '57' / 57 field dates_lastupdate (8) with dateTime value: '2007-02-25T07:45:46Z' / 117 2389546 field dates_posted (9) with dateTime value: '2006-07-23T18:16:13Z' / 1153678 573 field dates_taken (10) with string value: '2006-07-22 22:28:50' / -1 field dates_takengranularity (11) with integer value: '0' / 0 field editability_canaddmeta (13) with boolean value: '1' / 1 field editability_cancomment (14) with boolean value: '1' / 1 field geoperms_iscontact (15) with boolean value: '0' / 0 field geoperms_isfamily (16) with boolean value: '0' / 0 field geoperms_isfriend (17) with boolean value: '0' / 0 field geoperms_ispublic (18) with boolean value: '1' / 1 field location_accuracy (19) with integer value: '12' / 12 field location_latitude (20) with float value: '36.620487' / -1 field location_longitude (21) with float value: '-121.904468' / -1 field owner_location (22) with string value: 'Mountain View, California, USA ' / -1 field owner_nsid (23) with string value: '13355580@N00' / -1 field owner_realname (24) with string value: 'Dave Beckett' / -1 field owner_username (25) with string value: 'dajobe' / -1 field title (26) with string value: 'Jellyfish at Monterey Aquarium' / -1 field visibility_isfamily (27) with boolean value: '0' / 0 field visibility_isfriend (28) with boolean value: '0' / 0 field visibility_ispublic (29) with boolean value: '1' / 1 field secret (30) with string value: 'b34cb0af68' / -1 field originalsecret (31) with string value: 'b34cb0af68' / -1 field location_locality (33) with string value: 'Pacific Grove' / -1 field location_region (35) with string value: 'California' / -1 field location_country (36) with string value: 'United States' / -1 field location_placeid (37) with string value: 'J1HdelRTVrx7R.g2' / -1 field locality_placeid (39) with string value: 'J1HdelRTVrx7R.g2' / -1 field county_placeid (40) with string value: 'fpIAzjpQUL9F5MEpDw' / -1 field region_placeid (41) with string value: 'NsbUWfBTUb4mbyVu' / -1 field country_placeid (42) with string value: 'nz.gsghTUb4c2WAecA' / -1 field location_woeid (43) with string value: '2467327' / -1 field locality_woeid (45) with string value: '2467327' / -1 field county_woeid (46) with string value: '12587696' / -1 field region_woeid (47) with string value: '2347563' / -1 field country_woeid (48) with string value: '23424977' / -1 field usage_candownload (49) with boolean value: '1' / 1 field usage_canblog (50) with boolean value: '1' / 1 field usage_canprint (51) with boolean value: '1' / 1 field views (56) with integer value: '529' / 529 tags: 0) regular tag: id 94493-196308964-3362 author ID 13355580@N00 name (Unknown) ra w 'jellyfish' cooked 'jellyfish' count 0 1) regular tag: id 94493-196308964-119180 author ID 13355580@N00 name (Unknown) raw 'montereyaquarium' cooked 'montereyaquarium' count 0 2) regular tag: id 94493-196308964-2443 author ID 13355580@N00 name (Unknown) ra w 'monterey' cooked 'monterey' count 0 3) machine tag: id 94493-196308964-8499312 author ID 13355580@N00 name (Unknown) raw 'xmlns:dc=http://purl.org/dc/elements/1.1/' cooked 'xmlns:dc=httppurlorgdce lements11' count 0 4) machine tag: id 94493-196308964-8499315 author ID 13355580@N00 name (Unknown) raw 'dc:subject=jellyfish' cooked 'dc:subject=jellyfish' count 0 notes: Location: latitude 36.620487 longitude -121.904468 accuracy unknown 0) place location: name ' ' id J1HdelRTVrx7R.g2 woeid 2467327 2) place locality: name 'Pacific Grove' id J1HdelRTVrx7R.g2 woeid 2467327 3) place county: name 'Monterey' id fpIAzjpQUL9F5MEpDw woeid 12587696 4) place region: name 'California' id NsbUWfBTUb4mbyVu woeid 2347563 5) place country: name 'United States' id nz.gsghTUb4c2WAecA woeid 23424977 flickrdf - generate RDF triples from a Flickr photo This utility uses the photos.getInfo API to interpret the description fields, tags and places for a photo URI into RDF triples. If [18]raptor is present, it will be used to provide proper serializing to RDF rather than the built in and hacky ntriples/turtle output. Machine tags when they are found are scanned for xmlns:prefix=uri and then all other machine tags with that prefix turn into triples. Several prefixes are also pre-defined by the library to automatically get turned into triples without an xmlns, such as blue:, cell:, filter: and geo:. Non-machine tags are not yet interpreted. Places attached to photos are turned into extra information blocks (sets of triples) hung off a places:place predicate. _:person . _:person . _:person . "2006-07-23T18:16:13Z"^^ . . "2007-02-25T07:45:46Z"^^ . "2006-07-23T18:16:13Z"^^ . "2006-07-22T22:28:50Z"^^ . "36.620487"^^ . "-121.904468"^^ . _:person "Dave Beckett" . _:person "dajobe" . "Jellyfish at Monterey Aquarium" . "jellyfish" . _:place0 . _:place0 . _:place0 "location" . _:place0 "WM3JEXSbBZqqRtGA" . _:place0 "2467327" . _:place2 . _:place2 . _:place2 "locality" . _:place2 "Pacific Grove" . _:place2 "WM3JEXSbBZqqRtGA" . _:place2 "2467327" . _:place3 . _:place3 . _:place3 "county" . _:place3 "Monterey" . _:place3 "AQ4UpRqYA5l0BiyF.A" . _:place3 "12587696" . _:place4 . _:place4 . _:place4 "region" . _:place4 "California" . _:place4 "SVrAMtCbAphCLAtP" . _:place4 "2347563" . _:place5 . _:place5 . _:place5 "country" . _:place5 "United States" . _:place5 "4KO02SibApitvSBieQ" . _:place5 "23424977" . . . "Square" . "75"^^ . "75"^^ . . . "Thumbnail" . "75"^^ . "100"^^ . . . "Small" . "180"^^ . "240"^^ . . . "Medium" . "375"^^ . "500"^^ . . . "Original" . "600"^^ . "800"^^ . If you have raptor installed, you can get nicer RDF triples out and with rapper 1.4.14+, pretty-printed turtle: @prefix rdf: . @prefix rdfs: . @prefix dc: . @prefix foaf: . @prefix geo: . @prefix dcterms: . @prefix places: . @prefix flickr: . @prefix xsd: . flickr:photo , < http://farm1.static.flickr.com/57/196308964_b34cb0af68_m.jpg>, , , ; places:place [ places:id "WM3JEXSbBZqqRtGA" ; places:placeid "2467327" ; places:type "location" ; a places:Place ], [ places:id "WM3JEXSbBZqqRtGA" ; places:name "Pacific Grove" ; places:placeid "2467327" ; places:type "locality" ; a places:Place ], [ places:id "AQ4UpRqYA5l0BiyF.A" ; places:name "Monterey" ; places:placeid "12587696" ; places:type "county" ; a places:Place ], [ places:id "SVrAMtCbAphCLAtP" ; places:name "California" ; places:placeid "2347563" ; places:type "region" ; a places:Place ], [ places:id "4KO02SibApitvSBieQ" ; places:name "United States" ; places:placeid "23424977" ; places:type "country" ; a places:Place ] ; dc:subject "jellyfish" ; dcterms:created "2006-07-22T22:28:50Z"^^xsd:dateTime ; dcterms:creator [ a foaf:Person ; foaf:maker ; foaf:name "Dave Beckett" ; foaf:nick "dajobe" ] ; dcterms:dateSubmitted "2006-07-23T18:16:13Z"^^xsd:dateTime ; dcterms:issued "2006-07-23T18:16:13Z"^^xsd:dateTime ; dcterms:modified "2007-02-25T07:45:46Z"^^xsd:dateTime ; dcterms:rights ; dcterms:title "Jellyfish at Monterey Aquarium" ; geo:lat 36.620487 ; geo:long -121.904468 . flickr:height 75 ; flickr:width 75 ; a foaf:Image ; rdfs:label "Square" . flickr:height 100 ; flickr:width 75 ; a foaf:Image ; rdfs:label "Thumbnail" . flickr:height 240 ; flickr:width 180 ; a foaf:Image ; rdfs:label "Small" . flickr:height 500 ; flickr:width 375 ; a foaf:Image ; rdfs:label "Medium" . flickr:height 800 ; flickr:width 600 ; a foaf:Image ; rdfs:label "Original" . Library use example See examples/print-photo-info.c #include #include int main(int argc, char *argv[]); int main(int argc, char *argv[]) { flickcurl *fc; flickcurl_photo *photo; flickcurl_photo_field_type field_type; int i; flickcurl_init(); /* optional static initialising of resources */ fc = flickcurl_new(); /* Set configuration, or more likely read from a config file */ flickcurl_set_oauth_client_key(fc, "..."); flickcurl_set_oauth_client_secret(fc, "..."); flickcurl_set_oauth_token(fc, "..."); flickcurl_set_oauth_token_secret(fc, "..."); photo = flickcurl_photos_getInfo(fc, "123456789"); /* photo ID */ for(field_type = 0; field_type <= PHOTO_FIELD_LAST; field_type++) { flickcurl_field_value_type datatype = photo->fields[field_type].type; if(datatype != VALUE_TYPE_NONE) fprintf(stderr, "field %s (%d) with %s value: '%s' / %d\n", flickcurl_get_photo_field_label(field_type), (int)field_type, flickcurl_get_field_value_type_label(datatype), photo->fields[field_type].string, photo->fields[field_type].integer); } for(i = 0; i < photo->tags_count; i++) { flickcurl_tag* tag=photo->tags[i]; fprintf(stderr, "%d) %s tag: id %s author ID %s name %s raw '%s' cooked '%s' count % d\n", i, (tag->machine_tag ? "machine" : "regular"), tag->id, tag->author, (tag->authorname ? tag->authorname : "(Unknown)"), tag->raw, tag->cooked, tag->count); } flickcurl_free_photo(photo); flickcurl_free(fc); flickcurl_finish(); /* optional static free of resources */ return 0; } For more extensive example code, see the source of the flickcurl utility in flickcurl.c which has code that calls all the API functions. __________________________________________________________________ Copyright (C) 2007-2013 [19]Dave Beckett References 1. http://www.dajobe.org/ 2. http://www.flickr.com/services/api/ 3. http://curl.haxx.se/libcurl/ 4. http://www.flickr.com/services/api/request.rest.html 5. http://xmlsoft.org/ 6. file://localhost/home/dajobe/dev/redland/flickcurl/coverage.html 7. http://download.dajobe.org/flickcurl/ 8. http://librdf.org/flickcurl/api/ 9. file://localhost/home/dajobe/dev/redland/flickcurl/NEWS.html 10. http://curl.haxx.se/libcurl/ 11. http://xmlsoft.org/ 12. http://librdf.org/raptor/ 13. http://github.com/ 14. https://github.com/dajobe/flickcurl 15. http://www.flickr.com/services/api/keys/apply/ 16. http://librdf.org/flickcurl/api/flickcurl-auth.html 17. http://www.flickr.com/services/api/flickr.photos.getInfo.html 18. http://librdf.org/raptor/ 19. http://www.dajobe.org/ flickcurl-1.25/Makefile.am0000644000175000017500000000262411212024216012367 00000000000000# # Makefile.am - Top level automakefile for Flickcurl # # Copyright (C) 2007-2009, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. SUBDIRS = src utils docs examples ACLOCAL_AMFLAGS = -I build bin_SCRIPTS = flickcurl-config pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = flickcurl.pc EXTRA_DIST= \ ChangeLog \ README.html NEWS.html coverage.html README NEWS AUTHORS \ LICENSE.html LICENSE-2.0.txt NOTICE \ autogen.sh \ flickcurl-config.in flickcurl.pc.in \ flickcurl.rdf.in \ $(man_MANS) \ flickcurl.spec \ flickcurl.conf.example # Allows 'make distcheck' to work DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc # Create some text files from HTML sources LYNX=lynx HTML_TO_TEXT=TERM=vt100 $(LYNX) -dump SUFFIXES = .html .txt .html.txt: $(HTML_TO_TEXT) $< > $@ README: README.html $(HTML_TO_TEXT) $< > $@ NEWS: NEWS.html $(HTML_TO_TEXT) $< > $@ flickcurl-1.25/COPYING.LIB0000644000175000017500000006363711543424731012023 00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser 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 Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "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 LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY 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 LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! flickcurl-1.25/Makefile.in0000644000175000017500000007507112157737151012430 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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@ # # Makefile.am - Top level automakefile for Flickcurl # # Copyright (C) 2007-2009, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/flickcurl-config.in \ $(srcdir)/flickcurl.pc.in $(srcdir)/flickcurl.rdf.in \ $(srcdir)/flickcurl.spec.in $(top_srcdir)/configure AUTHORS \ COPYING COPYING.LIB ChangeLog INSTALL NEWS build/ar-lib \ build/compile build/config.guess build/config.sub \ build/depcomp build/install-sh build/ltmain.sh build/missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/gtk-doc.m4 \ $(top_srcdir)/build/libtool.m4 \ $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.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_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = flickcurl.spec flickcurl.rdf flickcurl.pc \ flickcurl-config CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)" SCRIPTS = $(bin_SCRIPTS) AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLICKCURL_VERSION_DECIMAL = @FLICKCURL_VERSION_DECIMAL@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBCURL_MIN_VERSION = @LIBCURL_MIN_VERSION@ LIBFLICKCURL_LIBTOOL_VERSION = @LIBFLICKCURL_LIBTOOL_VERSION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML_MIN_VERSION = @LIBXML_MIN_VERSION@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PKG_CONFIG_REQUIRES = @PKG_CONFIG_REQUIRES@ RANLIB = @RANLIB@ RAPTOR_CFLAGS = @RAPTOR_CFLAGS@ RAPTOR_LIBS = @RAPTOR_LIBS@ RAPTOR_MIN_VERSION = @RAPTOR_MIN_VERSION@ RECHO = @RECHO@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STANDARD_CFLAGS = @STANDARD_CFLAGS@ STRIP = @STRIP@ VERSION = @VERSION@ XML_CONFIG = @XML_CONFIG@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ 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@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src utils docs examples ACLOCAL_AMFLAGS = -I build bin_SCRIPTS = flickcurl-config pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = flickcurl.pc EXTRA_DIST = \ ChangeLog \ README.html NEWS.html coverage.html README NEWS AUTHORS \ LICENSE.html LICENSE-2.0.txt NOTICE \ autogen.sh \ flickcurl-config.in flickcurl.pc.in \ flickcurl.rdf.in \ $(man_MANS) \ flickcurl.spec \ flickcurl.conf.example # Allows 'make distcheck' to work DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc # Create some text files from HTML sources LYNX = lynx HTML_TO_TEXT = TERM=vt100 $(LYNX) -dump SUFFIXES = .html .txt all: all-recursive .SUFFIXES: .SUFFIXES: .html .txt am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu 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: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): flickcurl.spec: $(top_builddir)/config.status $(srcdir)/flickcurl.spec.in cd $(top_builddir) && $(SHELL) ./config.status $@ flickcurl.rdf: $(top_builddir)/config.status $(srcdir)/flickcurl.rdf.in cd $(top_builddir) && $(SHELL) ./config.status $@ flickcurl.pc: $(top_builddir)/config.status $(srcdir)/flickcurl.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ flickcurl-config: $(top_builddir)/config.status $(srcdir)/flickcurl-config.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) installcheck-binSCRIPTS: $(bin_SCRIPTS) bad=0; pid=$$$$; list="$(bin_SCRIPTS)"; for p in $$list; do \ case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ esac; \ f=`echo "$$p" | sed 's,^.*/,,;$(transform)'`; \ for opt in --help --version; do \ if "$(DESTDIR)$(bindir)/$$f" $$opt >c$${pid}_.out \ 2>c$${pid}_.err &2; bad=1; fi; \ done; \ done; rm -f c$${pid}_.???; exit $$bad mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done 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: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ 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: ctags-recursive $(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) @case `sed 15q $(srcdir)/NEWS` in \ *"$(VERSION)"*) : ;; \ *) \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1;; \ esac $(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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -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=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(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_OPT=$${XZ_OPT--e} 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 $(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.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod u+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" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(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: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(SCRIPTS) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: installcheck-binSCRIPTS maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binSCRIPTS uninstall-pkgconfigDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \ dist-zip distcheck distclean distclean-generic \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-binSCRIPTS install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-pkgconfigDATA install-ps install-ps-am install-strip \ installcheck installcheck-am installcheck-binSCRIPTS \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-binSCRIPTS \ uninstall-pkgconfigDATA .html.txt: $(HTML_TO_TEXT) $< > $@ README: README.html $(HTML_TO_TEXT) $< > $@ NEWS: NEWS.html $(HTML_TO_TEXT) $< > $@ # 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: flickcurl-1.25/NEWS0000644000175000017500000026037212210725076011053 00000000000000 Flickcurl News [1]Dave Beckett 2013-09-01 Flickcurl Version 1.25 Released More OAuth fixes including getting uploading fully working. Multiple internal OAuth changes to simplify code. Updated the coverage for API calls added in the last year approximately. Added new API call to get the most frequently used tags for a user. This does not seem to work over OAuth: flickcurl_tag** flickcurl_tags_getMostFrequentlyUsed(flickcurl* fc); Added new API call to get the groups of a user: flickcurl_group** flickcurl_people_getGroups(flickcurl* fc, const char* user_id, const char* extras); Added new API call to get contacts tagging suggestions but reordered the parameters to match the rest of the contacts.get* API calls. flickcurl_contact** flickcurl_contacts_getTaggingSuggestions(flickcurl* fc, const char* include_self, const char* include_address_book, int page, int per_page); Added new API calls flickcurl_groups_join(), flickcurl_groups_joinRequest() and flickcurl_groups_leave() for (some of) the new group API: int flickcurl_groups_join(flickcurl* fc, const char* group_id, const char* accept_rules); int flickcurl_groups_joinRequest(flickcurl* fc, const char* group_id, const char* message, const char* accept_rules); int flickcurl_groups_leave(flickcurl* fc, const char* group_id, const char* delete_photos); Updated the example code flickrdf.c to use the non-deprecated flickcurl_photos_getInfo2() Updated deprecated flickcurl-config(1) program to be independent of pkg-config. This allows make distcheck to work. 2013-04-10 Flickcurl Version 1.24 Released Fixed uploading with OAuth - incorrect signature since it failed to use POST. Added flickcurl_photos_getInfo2() deprecating flickcurl_photos_getInfo() adding the optional 'secret' parameter that was added sometime to the API. See [2]Debian bug 637746. Updated flickcurl(1) to allow photos.getInfo to take an optional SECRET arg using the new call below, and to add the missing command contacts.getPublicList which fixes [3]Issue 19. . Added new APIs calls to make available the Flickr username and NSID when OAuth authentication is done. const char* flickcurl_get_oauth_username(flickcurl* fc); const char* flickcurl_get_oauth_user_nsid(flickcurl* fc); These new calls were from GitHub [4]pull request 18 from Jose Carlos Garcia Sogo - thanks. Added a pile of fields to flickcurl_group to match what the API returns rather than what the documentation says: * iconfarm icon farm number * is_moderator and is_member booleans * rules descriptive text * pool_count and topic_count counts * group restriction booleans: photos_ok, videos_ok, images_ok, screens_ok, art_ok, safe_ok, moderate_ok, restricted_ok, has_geo. Fixed grabbing text from a child text node correctly Fixes [5]Issue 16. Fixed parsing of latitude and longitude value responses. Fixed a few flickcurl(1) utility manual page wordings. See [6]Debian bug 635989 and [7]Debian bug 635989. Updated example code to use OAuth authentication API. Fixed a few memory mis-uses via clang and GCC 4.8. 2012-09-01 Flickcurl Version 1.23 Released This release fully supports using Flickr via OAuth 1.0 and converting from the legacy Flickr authentication to OAuth. It supports both authentication flows but Flickr has deprecated the legacy authentication, so it might stop working at any time. Flickr [8]Legacy authentication flow with Flickcurl: 1. The initial configuration needed is the API Key and Shared Secret, obtained from the [9]Flickr App Garden. 2. Get the Authentication URL from the Flickr App Garden. 3. Show the Authentication URL to the user who approves the app resulting in a user visible Frob. 4. Authentication completes using flickcurl_auth_getFullToken() which exchanges the Frob for the final Auth Token. 5. Optionally, the flickcurl(1) utility will store in the configuration file: auth_token, api_key and secret. Otherwise the application should do this. Flickr [10]Flickr OAuth 1.0 flow with Flickcurl: 1. The initial configuration needed is the Client Key (API Key) and Client Secret (Shared Secret), obtained from the [11]Flickr App Garden. 2. Authentication starts with a call to flickcurl_oauth_create_request_token() to get the Request Token and Request Token Secret. 3. Get the Authentication URL using flickcurl_oauth_get_authorize_uri(). 4. Show the Authentication URL to the user who approves the app resulting in a user visible Verifier. 5. Authentication completes using flickcurl_oauth_create_access_token() to exchange the request token, request token secret and verifier for the final Access Token and Access Token Secret. 6. Optionally, the flickcurl(1) utility will store in the configuration file: oauth_token, oauth_token_secret, oauth_client_key and oauth_client_secret. Otherwise the application should do this. Added an API call to upgrade from the Flickr legacy authentication to OAuth 1.0. This revokes and deletes the legacy 'auth_token' and returns an OAuth Access Token and Access Token Secret pair which need to be saved. int flickcurl_auth_oauth_getAccessToken(flickcurl* fc) The upgrade can also be performed by using the oauth.upgrade command of the flickcurl(1) utility. Added new API calls to get and set OAuth parameters: const char* flickcurl_get_oauth_token(flickcurl *fc); void flickcurl_set_oauth_token(flickcurl *fc, const char* token); const char* flickcurl_get_oauth_token_secret(flickcurl* fc); void flickcurl_set_oauth_token_secret(flickcurl* fc, const char *secret); const char* flickcurl_get_oauth_client_key(flickcurl *fc); void flickcurl_set_oauth_client_key(flickcurl *fc, const char* client_key); const char* flickcurl_get_oauth_client_secret(flickcurl *fc); void flickcurl_set_oauth_client_secret(flickcurl *fc, const char* client_secre t); const char* flickcurl_get_oauth_request_token(flickcurl* fc); void flickcurl_set_oauth_request_token(flickcurl *fc, const char* token); const char* flickcurl_get_oauth_request_token_secret(flickcurl* fc); void flickcurl_set_oauth_request_token_secret(flickcurl *fc, const char* secre t); Added new API calls for performing the OAuth flow int flickcurl_oauth_create_request_token(flickcurl* fc, const char* callback); char* flickcurl_oauth_get_authorize_uri(flickcurl* fc); int flickcurl_oauth_create_access_token(flickcurl* fc, const char* verifier); In flickcurl_photos_setDates() actually send date_taken parameter. This fixes [12]GitHub issue 15 Updated configure to use xml2-config(1) and curl-config(1) as well as pkg-config(1), for systems that do not ship with the pkg-config files, such as OSX 10.8. Fixed memory leak in flickcurl_build_persons() on loop exit (always) and on the error path. Fixed memory leak in flickcurl_build_photos() of string_value for tags. Updated flickcurl utility to handle the OAuth authentication flow with new commands oauth-create and oauth-verify, while still supporting legacy Flickr auth flow with the existing -a FROB form. Multiple internal changes in the construction of parameters to make the code more readable and handle the extra parameters needed by OAuth. Multiple internal changes for error path and leaks found by the LLVM [13]clang static code analyzer. Removed all strncpy, strcat and strcpy with counted memcpy. 2011-12-28 Flickcurl Version 1.22 Released Add support for the upload field 'hidden' to set if a photo is visible in global search.. The flickcurl_upload_params structure gains an int param hidden with values 1 for global and 2 for hidden. Added helper functions flickcurl_get_hidden_label() and flickcurl_get_hidden_from_string() to help converting between the int values and readable labels: const char* flickcurl_get_hidden_label(int hidden); int flickcurl_get_hidden_from_string(const char* hidden_string); Note: This is an API addition so code should test that the Flickcurl version is 1.22 or newer to use this field and the helper functions. Added flickcurl_favorites_getContext() for new API call [14]flickr.favorites.getContext, to get previous and next photos around a favo(u)rite: flickcurl_photos_list** flickcurl_favorites_getContext(flickcurl* fc, const char* photo_id, const char* user_id, int num_prev, int num_next, const char* extras); Now supports only Raptor V2 for optional serializing of triples. Fix flickcurl(1) utility output and help messages. Patch from Kumar Appaiah - thanks. Fix several man page and documentation issues. Patch from Kumar Appaiah - thanks. Remove old curl header include. Patch from Tim Harder - thanks. Do not delete any existing data in flickcurl_build_persons() if a field is not found. Added raptor_fake.h to distribution so that flickrdf(1) utility can work without raptor installed. Noticed by Naruto TAKAHASHI - thanks. Added flickcurl_free_tags() to API. Patch from Naruto TAKAHASHI - thanks. flickcurl_photoset structure gains an owner NSID field filled in when present. Patch from Naruto TAKAHASHI - thanks! Add experimental OAuth code, not compiled in by default and built with --enable-oauth. 2011-03-26 Flickcurl 1.21 Minor bug fixes: * Fixed a memory leak when building photo list results. Patch from Naruto TAKAHASHI - thanks. * flickcurl_photos_setPerms() now allows false boolean permissions. Patch from Henning Spruth - thanks. * flickcurl_photosets_getPhotos_params() now works again. Made the flickrdf(1) utility handle Raptor V1, V2 or none. The configure argument --with-raptor now takes values '1', '2', 'yes' or 'no'. 'yes' selects Raptor V1 as before. 2010-11-18 Flickcurl 1.20 Fixed parsing of standard photos responses (SPR) to make several API calls work again including: * flickr.photos.comments.getRecentForContacts Functions flickcurl_photos_comments_getRecentForContacts_params() and flickcurl_photos_comments_getRecentForContacts(). * flickr.photos.getContactsPhotos Functions flickcurl_photos_getContactsPhotos_params() and flickcurl_photos_getContactsPhotos(). * flickr.photos.getContactsPublicPhotos Functions flickcurl_photos_getContactsPublicPhotos_params() and flickcurl_photos_getContactsPublicPhotos(). * flickr.photos.getRecent Functions flickcurl_photos_getRecent_params() and flickcurl_photos_getRecent(). * flickr.photos.recentlyUpdated Functions flickcurl_photos_recentlyUpdated_params() and flickcurl_photos_recentlyUpdated(). * flickr.photos.search Functions flickcurl_photos_search_params() and flickcurl_photos_search(). * flickr.photos.geo.photosForLocation Functions flickcurl_photos_geo_photosForLocation_params() and flickcurl_photos_geo_photosForLocation(). * flickr.photosets.getPhotos Functions flickcurl_photosets_getPhotos_params() and flickcurl_photosets_getPhotos(). * flickr.stats.getPopularPhotos Functions flickcurl_stats_getPopularPhotos(). * flickr.tags.getClusterPhotos Functions flickcurl_tags_getClusterPhotos(). 2010-07-24 Flickcurl 1.19 Support returning photo notes in flickcurl_photo structure when returning photo information with a new array field notes and notes_count for the size of the array. Added flickcurl_note class to store photo notes. Added flickcurl_photosets_removePhotos(), flickcurl_photosets_reorderPhotos() and flickcurl_photosets_setPrimaryPhoto() for new API calls [15]flickr.photosets.removePhotos, [16]flickr.photosets.reorderPhotos and [17]flickr.photosets.setPrimaryPhoto: int flickcurl_photosets_removePhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array); int flickcurl_photosets_reorderPhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array); int flickcurl_photosets_setPrimaryPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id); Added flickcurl(1) command support for new API calls. flickcurl_photos_list gains fields for page number (page), per-page count (per_page) and total photos count (total_count). Added flickcurl_stats_getCSVFiles but it always does nothing since it expired at 2010-06-01. Fixed portability operator typo '> =' and '+ =' lose spaces. [18]Issue #4. 2010-04-26 Flickcurl 1.18 Added (rest of) Galleries API calls as [19]announced 2010-04-08: char* flickcurl_galleries_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** gallery_url_p); int flickcurl_galleries_editMeta(flickcurl* fc, const char* gallery_id, const char* title, const char* description); int flickcurl_galleries_editPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* new_comment); int flickcurl_galleries_editPhotos(flickcurl* fc, const char* gallery_id, const char* primary_photo_id, const char** photo_ids_array); flickcurl_gallery* flickcurl_galleries_getInfo(flickcurl* fc, const char* gallery_id); flickcurl_photos_list* flickcurl_galleries_getPhotos_params(flickcurl* fc, const char* gallery_id, flickcurl_photos_list_params* list_params); flickcurl_photo** flickcurl_galleries_getPhotos(flickcurl* fc, const char* gallery_id, const char* extras, int per_page, int page); char* flickcurl_urls_lookupGallery(flickcurl* fc, const char* url); (The other Gallery API calls were implemented in Flickcurl 1.17 before they were announced.) Enum flickcurl_photo_field_type gains a new PHOTO_FIELD_gallery_comment field for representing a photo's comments in a gallery context. Added function for new people API call (not announced): [20]flickr.people.getPhotos: flickcurl_photos_list* flickcurl_people_getPhotos_params(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, flickcurl_photos_list_params* list_params); flickcurl_photo** flickcurl_people_getPhotos(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, const char* extras, int per_page, int page); Added functions to allow more control over the internal CURL* handle and to set any curl options needed such as with curl_easy_setopt(). The new library constructor function flickcurl_new_with_handle() allows reuse an existing curl handle rather than create and destroy one during the library use. The new library method flickcurl_set_curl_setopt_handler() allows user code to be called via a handler to make any adjustments to the curl options that may be required on a per-request basis. flickcurl* flickcurl_new_with_handle(void* curl_handle); void flickcurl_set_curl_setopt_handler(flickcurl *fc, flickcurl_curl_setopt_handler curl_handler, void* curl_handler_data); Added flickcurl(1) utility support for new API calls. Fix several cut-n-paste "latitude should be longitude" errors in flickcurl_photos_geo_batchCorrectLocation(), flickcurl_photos_geo_photosForLocation_params() and flickcurl_photos_geo_setLocation(). 2010-03-05 Flickcurl 1.17 Added functions for new stats API calls [21]announced 2010-03-03: [22]flickr.stats.getCollectionDomains, [23]flickr.stats.getCollectionReferrers, [24]flickr.stats.getCollectionStats, [25]flickr.stats.getPhotoDomains, [26]flickr.stats.getPhotoReferrers, [27]flickr.stats.getPhotosetDomains, [28]flickr.stats.getPhotosetReferrers, [29]flickr.stats.getPhotosetStats, [30]flickr.stats.getPhotoStats, [31]flickr.stats.getPhotostreamDomains, [32]flickr.stats.getPhotostreamReferrers, [33]flickr.stats.getPhotostreamStats, [34]flickr.stats.getPopularPhotos and [35]flickr.stats.getTotalViews including new flickcurl_stats and flickcurl_view_stats datatypes: flickcurl_stat** flickcurl_stats_getCollectionDomains(flickcurl* fc, const char* date, const char* collection_id, int per_page, int page); flickcurl_stat** flickcurl_stats_getCollectionReferrers(flickcurl* fc, const char* date, const char* domain, const char* collection_id, int per_page, int page); int flickcurl_stats_getCollectionStats(flickcurl* fc, const char* date, const char* collection_id); flickcurl_stat** flickcurl_stats_getPhotoDomains(flickcurl* fc, const char* date, const char* photo_id, int per_page, int page); flickcurl_stat** flickcurl_stats_getPhotoReferrers(flickcurl* fc, const char* date, const char* domain, const char* photo_id, int per_page, int page); flickcurl_stat* flickcurl_stats_getPhotoStats(flickcurl* fc, const char* date, const char* photo_id); flickcurl_stat** flickcurl_stats_getPhotosetDomains(flickcurl* fc, const char* date, const char* photoset_id, int per_page, int page); flickcurl_stat** flickcurl_stats_getPhotosetReferrers(flickcurl* fc, const char* date, const char* domain, const char* photoset_id, int per_page, int page); int flickcurl_stats_getPhotosetStats(flickcurl* fc, const char* date, const char* photoset_id); flickcurl_stat** flickcurl_stats_getPhotostreamDomains(flickcurl* fc, const char* date, int per_page, int page); flickcurl_stat** flickcurl_stats_getPhotostreamReferrers(flickcurl* fc, const char* date, const char* domain, int per_page, int page); int flickcurl_stats_getPhotostreamStats(flickcurl* fc, const char* date); flickcurl_photo** flickcurl_stats_getPopularPhotos(flickcurl* fc, const char* date, const char* sort, int per_page, int page, const char* extras); flickcurl_view_stats* flickcurl_stats_getTotalViews(flickcurl* fc, const char* date); void flickcurl_free_stat(flickcurl_stat *stat); void flickcurl_free_stats(flickcurl_stat **stats_object); void flickcurl_free_view_stats(flickcurl_view_stats *view_stats); The flickcurl_photo_field_type enum gains new fields for counts of comments (PHOTO_FIELD_comments) and favorites (PHOTO_FIELD_favorites) so that these stats can be returned by the new flickcurl_stats_getPopularPhotos() call. (View count field is already present). Added functions for 5 new people API calls [36]announced 2010-01-21 [37]flickr.photos.people.add, [38]flickr.photos.people.delete, [39]flickr.photos.people.deleteCoords, [40]flickr.photos.people.editCoords and [41]flickr.photos.people.getList: int flickcurl_photos_people_add(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h) ; int flickcurl_photos_people_delete(flickcurl* fc, const char* photo_id, const char* user_id); int flickcurl_photos_people_deleteCoords(flickcurl* fc, const char* photo_id, const char* user_id); int flickcurl_photos_people_editCoords(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h) ; flickcurl_person** flickcurl_photos_people_getList(flickcurl* fc, const char* photo_id); Added functions for 1 new "photos of" people API calls [42]announced 2010-01-21 [43]flickr.people.getPhotosOf: flickcurl_photos_list* flickcurl_people_getPhotosOf_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params); flickcurl_photo** flickcurl_people_getPhotosOf(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); Added functions for 3 new gallery API calls - not yet announced and seems a little incomplete e.g. you cannot list the photos in a gallery: [44]flickr.galleries.addPhoto, [45]flickr.galleries.getList and [46]flickr.galleries.getListForPhoto including new type flickcurl_gallery: int flickcurl_galleries_addPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* comment_text); flickcurl_gallery** flickcurl_galleries_getList(flickcurl* fc, const char* user_id, int per_page, int page); flickcurl_gallery** flickcurl_galleries_getListForPhoto(flickcurl* fc, const char* photo_id, int per_page, int page); void flickcurl_free_galleries(flickcurl_gallery **galleries_object); Updated the flickcurl(1) to support the new gallery, people photos and stats API calls. 2010-01-13 Flickcurl 1.16 Fix flickcurl(1) utility configuration file generation to use key=value format as documented. Make the software accept files with spaces around the '='. Updated authentication documentation to add a picture showing the result of fetching the mobile authentication URLs. 2010-01-02 Flickcurl 1.15 The flickcurl_search_params gains an in_gallery boolean field which was added to the photos search API [47]as announced 2009-12-17. The flickcurl(1) utility photos.search commands gains geo-context taking an integer arg for inside/outside, is-commons boolean flag and is-gallery boolean flag arguments. Update the authentication section of the documentation to represent the Flickr App Garden changes. Add screen shots of the steps in the flow to authenticate. Switch the build system to use automake 1.11 AM_SILENT_RULES enabled by default for maintainer, but can be triggered with --enable-silent-rules in configure. 2009-09-20 Flickcurl 1.14 Added a tutorial section to the documentation on how to use the search API - search parameters, result formats, extras and walking through the photos list results. Added a new example program search-photos.c to demonstrate a full working program searching for photos and using the results. The flickcurl_search_params structure gains geo_context and is_commons search parameters which were added to the search API at some time in the past (geo_context before 10 March 2009). The Geo Context can be set for photos with flickcurl_photos_geo_setLocation() corresponding to the flickr.photos.geo.setLocation API call. The flickcurl_extras_format_info gains new API 'extras': path_alias, url_m, url_o, url_s, url_sq, url_t as [48]announced 2009-06-29. path_alias returns the user's Flickr URL as in /photos/user and the others provide various computed URLs and dimensions for the photos of a given size so that flickcurl_photos_getSizes() calls can be avoided directly after a search. Apply a little resource leak fix to the video API when calloc fails - patch from github fork by 'mr.huge at seznam dot cz'. Thanks. Fixed some off-by-1 errors in some static string allocation sizes. Small typos and fixes to flickcurl(1) utility messages. 2009-08-01 Flickcurl 1.13 Added function flickcurl_source_uri_as_photo_id() to get photo IDs from full raw 'farm' image URLs. Added command getphotoid to the command-line utility to allow this to be called. char* flickcurl_source_uri_as_photo_id(const char *uri); Added function flickcurl_get_current_request_wait() so applications can know when flickcurl will delay - sleep(2) - in order to let the web service rate limiting work. This allows the application to avoid this and try again later if it desires, rather than have Flickcurl freeze the entire application (if single threaded). int flickcurl_get_current_request_wait(flickcurl *fc); Use a dynamic buffer size for request URI construction to avoid crashing when dealing with requests with e.g. long lists of of photo IDs that exceeded the "big enough" buffer for a URI. Bug noticed and reported by Henning Spruth - thanks! After the above problem, reviewed the other fixed buffer sizes in the code and they are all for known fixed uses such as formatting a decimal number (of known size) into a string. None of the remaining ones can be influenced by data passed by API calls. Fixed resource leak of user agent string in flickcurl_free() found by Debarshi Ray - Thanks. 2009-07-04 Flickcurl 1.12 Added function flickcurl_places_getTopPlacesList() for new API call [49]flickr.places.getTopPlacesList. flickcurl_place** flickcurl_places_getTopPlacesList(flickcurl* fc, flickcurl_place_type place_type, const char* date, int woe_id, const char* place_id); Added function flickcurl_blogs_getServices() and new flickcurl_blog_service structure for describing a blog service. for new API call [50]flickr.blogs.getServices. Added function flickcurl_free_blog_services() to free blog services array. flickcurl_blog_service** flickcurl_blogs_getServices(flickcurl* fc); void flickcurl_free_blog_services(flickcurl_blog_service **blog_services_objec t); Added function flickcurl_photos_comments_getRecentForContacts_params() for new API call [51]flickr.photos.comments.getRecentForContacts Added function flickcurl_machinetags_getRecentValues() for new API call [52]flickr.machinetags.getRecentValues Added flickr collections API including new flickcurl_collection datatype: flickcurl_collection* flickcurl_collections_getInfo(flickcurl* fc, const char* collection_id); flickcurl_collection* flickcurl_collections_getTree(flickcurl* fc, const char* collection_id, const char* user_id); Added functions for generating flic.kr short URIs from a photo object or photo ID: char* flickcurl_photo_id_as_short_uri(char *photo_id); char* flickcurl_photo_as_short_uri(flickcurl_photo *photo); Fixed flickcurl_invoke_common() to always set / reset HTTP headers list to allows requests that set/don't set headers to work in sequence when called with the same flickcurl context. The symptom of this was in long sequences with mixed reads and writes, crashes or mysterious failures happened. Bug reported / found by Henning Spruth - thanks! Added continent type to allow flickcurl_get_place_type_label() and flickcurl_get_place_type_by_label() to use. This allows 'continent' to be used in place APIs when called from flickcurl(1) utility. Retrieve the place name from the element content as well as from attribute value. In the Flickr API, there is always more than one way to get a field ;) Switched from Subversion to GIT source control hosted by [53]GitHub. The [54]GitHub flickcurl project page. previously was in Subversion at [55]svn.dajobe.org and it moved as of SVN r1021 on 2006-06-02 after the 1.11 release tagged flickcurl_1_11. Update SHAVE from master GIT 2134bb1207e06d1650918a56f6b142e9a840219d Added flickcurl(1) utility support for new API calls, allow WOEID args to be "-" to omitted and to add a shorturi command to generate flic.kr short URIs from a photo ID. 2009-05-26 Flickcurl 1.11 flickcurl_search_params structure now has an integer field woe_id for searching via Where On Earth IDs (WOEIDs). Forgot to add this earlier! The flickcurl utility was updated to support searching with the integer woeid parameter. Search results now decode more of the extras that can be returned in search queries when the extras field is set in the query to a comma-separated list of things to return. The additions with their extras names are: original dimensions (o_dims), photo views count (views), simple list of tags (tags), photo user information (owner), geo information (geo) and user buddy icons (icons), Added new flickcurl_photo fields for 'extras' from search results: PHOTO_FIELD_original_height, PHOTO_FIELD_original_width, PHOTO_FIELD_owner_iconfarm, PHOTO_FIELD_owner_iconserver and PHOTO_FIELD_views Added donuthole support to shapes as [56]announced 2009-05-06. The flicckurl_shapedata structure now has is_donuthole and has_donuthole boolean flag fields. Fix handling API calls return shape XML with slightly different names so that places.getShapeHistory and places.getInfo both work now (again?). Added function to get a user buddy icon URI for a given user: char* flickcurl_user_icon_uri(int farm, int server, char *nsid); Added function to get the user buddy icon URI from a user's photo: char* flickcurl_photo_as_user_icon_uri(flickcurl_photo *photo); Added function to return the photo page URI of a photo: char* flickcurl_photo_as_page_uri(flickcurl_photo *photo); Added timezone field support to place (This has not yet been announced as an API change). The flickcurl_place structure now has a timezone string field. Make more attempts to reset the libcurl context between requests which should help in sequences of calls that mix GET (searches, get information) and POST (uploading, deletions etc.) This is intended to try to fix a hard-to-test report of crashes with multiple upload and API calls on Solaris/SPARC. Configuration via configure now uses pkg-config(1) to get the compile (CFLAGS) and link (LIBS) flags info for libxml, libcurl and raptor. This should work since those libraries have shipped the respective .pc file in releases for some time. Use pkg-config raptor configuration for checking raptor presence, versions, cflags and libs rather than the (deprecated) raptor-config program output. Added configure [57]SHAVE support (git clone git://git.lespiau.name/shave ) to "make autotools output sane" which amounts to much less verbose messages when compiling. It is now enabled by default. Compiling from subversion (autogen.sh or configure --enable-maintainer-mode) requires Libtool V2 for consistency with my other projects. 2009-05-01 Flickcurl 1.10 Made uploading images and replacing images work again. Added functions to set the service URIs for the image upload and image replacing web services: void flickcurl_set_upload_service_uri(flickcurl *fc, const char *uri); void flickcurl_set_replace_service_uri(flickcurl *fc, const char *uri); Added casts for compiling and using from C++ - the main change is to rename internal variables and function arguments called 'namespace' to 'nspace'. 2009-04-04 Flickcurl 1.9 Added functions for 2 new API calls [58]flickr.panda.getList [59]flickr.panda.getPhotos as [60]announced on 2009-03-03 used in the vomiting [61]Flickr Panda. char** flickcurl_panda_getList(flickcurl* fc); flickcurl_photo** flickcurl_panda_getPhotos(flickcurl *fc, const char *panda_name); Added function for 1 new API call [62]flickr.groups.members.getList as [63]announced as experimental on 2009-02-24. flickcurl_member** flickcurl_groups_members_getList(flickcurl* fc, const char* group_id, const char* membertypes, int per_page, int page); Updated the flickcurl(1) utility to support the 3 new calls. Fixed flickcurl_photosets_getList() to work again with XML returned by the web service. Not clear if the service changed since this used to work and the code did not change. Allow config file ~/.flickcurl.conf (as used by flickcurl(1) utility) to contain DOS newline sequence (\r\n) as well as Unix (\n) and \r. Increased date buffer size in flickcurl_photos_setDates() to prevent buffer overruns. 2009-02-09 Flickcurl 1.8 Added support for new commons API with new institution class, new photos geo and places APIs, and new shape history API with a new shape structure class. Added functions for 12 new API calls [64]flickr.commons.getInstitutions, [65]flickr.contacts.getListRecentlyUploaded, [66]flickr.photos.geo.batchCorrectLocation, [67]flickr.photos.geo.correctLocation, [68]flickr.photos.geo.photosForLocation, [69]flickr.photos.geo.setContext, [70]flickr.places.getPlaceTypes, [71]flickr.places.getShapeHistory, [72]flickr.places.placesForBoundingBox, [73]flickr.places.placesForContacts, [74]flickr.places.placesForTags and [75]flickr.places.tagsForPlace as announced [76]2009-01-12 (flickr.places.getShapeHistory), [77]2009-01-14 (flickr.contacts.getListRecentlyUploaded) and [78]2009-01-29 (Commons API): flickcurl_institution** flickcurl_commons_getInstitutions(flickcurl* fc); flickcurl_contact** flickcurl_contacts_getListRecentlyUploaded(flickcurl* fc, int date_lastupload, const char* filter); int flickcurl_photos_geo_batchCorrectLocation(flickcurl* fc, flickcurl_location* location, const char* place_id, int woe_id); int flickcurl_photos_geo_correctLocation(flickcurl* fc, const char* photo_id, const char* place_id, int woe_id); flickcurl_photo** flickcurl_photos_geo_photosForLocation(flickcurl* fc, flickcurl_location* location, const char* extras, int per_page, int page); flickcurl_photos_list* flickcurl_photos_geo_photosForLocation_params(flickcurl * fc, flickcurl_location* location, flickcurl_photos_list_params* list_params); int flickcurl_photos_geo_setContext(flickcurl* fc, const char* photo_id, int context); flickcurl_place_type_info** flickcurl_places_getPlaceTypes(flickcurl* fc); flickcurl_shapedata** flickcurl_places_getShapeHistory(flickcurl* fc, const char* place_id, int woe_id); flickcurl_place** flickcurl_places_placesForBoundingBox(flickcurl* fc, flickcurl_place_type place_type, double minimum_longitude, double minimum_latitude, double maximum_longitude, double maximum_latitude); flickcurl_place** flickcurl_places_placesForContacts(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold, const char* contacts, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date); int flickcurl_places_placesForTags(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, const char* threshold, const char* tags, const char* tag_mode, const char* machine_tags, const char* machine_tag_mode, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date); flickcurl_tag** flickcurl_places_tagsForPlace(flickcurl* fc, int woe_id, const char* place_id, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date); Added destructors for new classes: void flickcurl_free_institution(flickcurl_institution *); void flickcurl_free_institutions(flickcurl_institution **); void flickcurl_free_place_type_infos(flickcurl_place_type_info **); void flickcurl_free_shape(flickcurl_shapedata *); void flickcurl_free_shapes(flickcurl_shapedata **); Added flickcurl_institution class and flickcurl_institution_url_type enum for URL types for response from flickcurl_commons_getInstitutions(). Added flickcurl_free_institution() and flickcurl_free_institutions() destructors. Added FLICKCURL_PLACE_CONTINENT value to place flickcurl_location enum. Added flickcurl_place_type_info for results of flickcurl_places_getPlaceTypes(). Added flickcurl_free_place_type_infos() destructor. Added new flickcurl_shapedata class to store shape information, ESRI shape data and/or URLs returned by flickcurl_places_getShapeHistory(). flickcurl_place structure gains a shape field returning a pointer to the flickcurl_shapedata shape data, deprecating old shape fields. Added flickcurl_free_shape() and flickcurl_free_shapes() destructors. flickcurl_tag gains a new uploaded field for use with flickcurl_contacts_getListRecentlyUploaded() Deprecated flickcurl_places_getChildrenWithPhotosPublic() and flickcurl_places_getInfo() replacing them with new flickcurl_places_getChildrenWithPhotosPublic2() and flickcurl_places_getInfo2() that taken an integer WOEID parameter rather than string. Updated flickcurl(1) utility for new API calls. 2008-11-30 Flickcurl 1.7 Added support for the new Machine Tags API as [79]announced 2008-11-18. Added representations for machine tag namespaces flickcurl_tag_namespace and machine tag predicate/value pairs flickcurl_tag_predicate_value. Added functions for the new API calls [80]flickr.machinetags.getNamespaces, [81]flickr.machinetags.getPairs, [82]flickr.machinetags.getPredicates and [83]flickr.machinetags.getValues: flickcurl_tag_namespace** flickcurl_machinetags_getNamespaces(flickcurl* fc, const char* predicate, int per_page, int page); flickcurl_tag_predicate_value** flickcurl_machinetags_getPairs(flickcurl* fc, const char* namespace, const char* predicate, int per_page, int page); flickcurl_tag_predicate_value** flickcurl_machinetags_getPredicates(flickcurl* fc, const char* namespace, int per_page, int page); flickcurl_tag_predicate_value** flickcurl_machinetags_getValues(flickcurl* fc, const char* namespace, const char* predicate, int per_page, int page); Added destructors for new machine tag structures and arrays of them: void flickcurl_free_tag_namespace(flickcurl_tag_namespace *tag_nspace); void flickcurl_free_tag_namespaces(flickcurl_tag_namespace** tag_nspaces); void flickcurl_free_tag_predicate_value(flickcurl_tag_predicate_value* tag_pv) ; void flickcurl_free_tag_predicate_values(flickcurl_tag_predicate_value **tag_p vs); Added flickcurl_tags_getClusterPhotos() function for new API call [84]flickr.tags.getClusterPhotos to get a set of photos around a cluster (of 3 tags). This was added to the web service API but not announced some time between 2008-09-04 ad 2008-09-19. flickcurl_photos_list* flickcurl_tags_getClusterPhotos(flickcurl* fc, const char* tag, const char* cluster_id, flickcurl_photos_list_params* list_params); Updated Places API for changes as [85]announced 2008-11-05 and in [86]The Shape of Alpha to support querying for places via place IDs or [87]Where on Earth (WOE) Ids. The places APIs may now return ESRI shape information and flickcurl_place now stores any XML and ESRI shapefile URLs returned in a lookup call e.g: $ ./flickcurl places.getInfo 4hLQygSaBJ92 Type locality (2) Location: latitude 45.512000 longitude -73.554000 accuracy unknown Shapedata (1752 bytes): 45.427627563477,-73.589645385742 45.427051544. .. Shapefile URLs: 1 0): http://farm4.static.flickr.com/3228/shapefiles/3534_20081111_0a8afe03c5. tar.gz 0) place location: name 'Montreal, Quebec, Canada' id 4hLQygSaBJ92 woeid 3534 url '/Canada/Quebec/Montreal' 2) place locality: name 'Montreal, Quebec, Canada' id 4hLQygSaBJ92 woeid 3534 url '/Canada/Quebec/Montreal' 3) place county: name 'Montréal, Quebec, Canada' id cFBi9x6bCJ8D5rba1g woeid 2 9375198 url '/cFBi9x6bCJ8D5rba1g' 4) place region: name 'Quebec, Canada' id CrZUvXebApjI0.72 woeid 2344924 url ' /Canada/Quebec' 5) place country: name 'Canada' id EESRy8qbApgaeIkbsA woeid 23424775 url '/Can ada' Added flickcurl_places_getInfo() for [88]flickr.places.getInfo, flickcurl_places_getInfoByUrl() for [89]flickr.places.getInfoByUrl and flickcurl_places_getChildrenWithPhotosPublic() for [90]flickr.places.getChildrenWithPhotosPublic: flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic(flickcurl* fc, const char* place_id, const char* woe_id); flickcurl_place* flickcurl_places_getInfo(flickcurl* fc, const char* place_id, const char* woe_id); flickcurl_place* flickcurl_places_getInfoByUrl(flickcurl* fc, const char* url); Added flickcurl_places_placesForUser() function to match API name correctly for API call [91]flickr.places.placesForUser deprecating wrong name flickcurl_places_forUser(). flickcurl_place** flickcurl_places_placesForUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold); Fixed photoset API calls flickcurl_photosets_getList() and flickcurl_photosets_getPhotos_params() to correctly find photos in a photoset from latest web service API. Not clear if the existing code was wrong or the web service response changed. Updated flickcurl(1) utility to give a usage message for a commmand when it is called with too many or too few arguments. 2008-09-04 Flickcurl 1.6 [92]"It's a beautiful day in the neighborhood" and also "Everybody needs good [93]Neighbours". Added PHOTO_FIELD_location_neighbourhood, PHOTO_FIELD_neighbourhood_placeid, PHOTO_FIELD_neighbourhood_woeid, PHOTO_FIELD_location_neighbourhood and FLICKCURL_PLACE_NEIGHBOURHOOD enum values making the American English spelling versions aliases for the British / Commonwealth English. Adjusted the XPaths to accept both spellings just in case Flickr changes this. The neighbourhood / neighborhood feature was [94]announced 2008-08-19. Added flickcurl_places_forUser() function for new API call [95]flickr.places.placesForUser to get the cluster of places for a user as [96]announced 2008-09-04. flickcurl_place** flickcurl_places_forUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold); Added support for the (experimental) Photos List feed format parameter by the new feature of allowing any function that returns a Standard Photos Response to send the same optional result parameters, including format. This is done by adding new typedefs flickcurl_photos_list for the standard photos response and flickcurl_photos_list_params for the parameters. This allows for existing result parameters (page, per_page, extras) as well as the new new format parameter to be given optionally. The standard photos response format was [97]described 2008-08-19 and the experimental feeds format feature was [98]announced 2008-08-25. Added functions to return lists of photos with list results parameters based on existing functions without the _params suffix. The functions all take a flickcurl_photos_list_params to replace any existing extras, page and/or per_page parameters and return a new flickcurl_photos_list object on success. flickcurl_photos_list* flickcurl_favorites_getList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* params); flickcurl_photos_list* flickcurl_favorites_getPublicList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_groups_pools_getPhotos_params(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_interestingness_getList_params(flickcurl* fc, const char* date, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_people_getPublicPhotos_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* params); flickcurl_photos_list* flickcurl_photos_getContactsPhotos_params(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_getContactsPublicPhotos_params(flickcurl* fc, const char* user_id, int photo_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_getNotInSet_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_getRecent_params(flickcurl* fc, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_getUntagged_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_getWithGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_getWithoutGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_recentlyUpdated_params(flickcurl* fc, int min_date, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photos_search_params(flickcurl* fc, flickcurl_search_params* params, flickcurl_photos_list_params* list_params); flickcurl_photos_list* flickcurl_photosets_getPhotos_params(flickcurl* fc, const char* photoset_id, int privacy_filter, flickcurl_photos_list_params* list_params); Added int flickcurl_photos_list_params_init() to initialize a photos list parameter object and flickcurl_free_photos_list() to destroy a photos list object. int flickcurl_photos_list_params_init(flickcurl_photos_list_params* list_param s); void flickcurl_free_photos_list(flickcurl_photos_list* photos_list); Added a flickcurl_location to a flickcurl_place for the new flickcurl_places_forUser() function. Added flickcurl_get_feed_format_info() to get the names and descriptions of the current known feed 'format' parameter values, as usable by the '_params' functions mentioned above. int flickcurl_get_feed_format_info(int feed_format, const char** name_p, const char** label_p, const char** mime_type_p); Added flickcurl_get_extras_format_info() to get the names and descriptions of the current known 'extras' parameter values, as usable by the '_params' functions mentioned above. int flickcurl_get_extras_format_info(int extras_format, const char** name_p, const char** label_p); Added flickcurl_search_params_init() to initialize a search parameter object int flickcurl_search_params_init(flickcurl_search_params* params); Fixed building contexts to not expect the number of contexts to be 3 (!!) but allocate it based on the returned XML. Bug reported by Francis Gastellu. Fixed typo in the FOAF namespace - no trailing # Updated flickcurl(1) utility to help with authentication configuration. It now prints a help message on how to get authentication tokens set up, when there is no configuration file present and now accepts -a FROB as an entire command line to get the auth token from the web service via the mobile frob. Updated flickcurl(1) utility help message to explain list result parameters in more detail, enumerating the known format and extra values using the new flickcurl_get_extras_format_info() and flickcurl_get_feed_format_info() functions. All flickcurl(1) utility command options that accept booleans, now recognise "true", "false", "yes" and "no" values as well as the existing 'non-zero integer means true' form. Updated flickcurl(1) utility command photos.recentlyUpdated now enforces it's required parameter - min-date. Updated flickcurl(1) utility to understand raw format results and write them either to stdout (default) or a file, when called with -o FILE or --output FILE. Updated flickcurl(1) utility to add a -q / --quiet to be less verbose in its output. This option does not make informational requests generate no output! Improved error reporting when an API fails (returns non-200), an error message is called via the error handler (set by flickcurl_set_error_handler()). 2008-08-17 Flickcurl 1.5 Added flickcurl_tags_getClusters() function for new API call [99]flickr.tags.getClusters as [100]announced 2008-07-17 Added Tag Clusters API support including new typedefs flickcurl_tag_cluster and flickcurl_tag_clusters and destructor function: void flickcurl_free_tag_clusters(flickcurl_tag_clusters *tcs); Updated flickcurl(1) utility command to add new command tags.getClusters for calling the flickcurl_tags_getClusters() API. Updated photo search API structure flickcurl_search_params to add contacts, has_geo, lat, lon, radius and radius_units fields. Updated flickcurl_photos_search() to add support for new photos.search contacts, has_geo, lat, lon, radius and radius_units parameters. The lat, lon, radius and radius_units parameters were [101]announced 2008-06-27 Updated flickrdf utility to make it build without raptor available. 2008-06-24 Flickcurl 1.4 Added video support. Updated flickcurl(1) utility to report video information when found. Document that photos.search can now take a media argument to search over photos, videos or both. Added a char* media type field to flickcurl_photo to allow detection of photos or videos by type, and in the case of type "video", provide extra video information in another new field flickcurl_video* video. Added new flickcurl_video structure for providing video-specific information such as duration and flickcurl_free_video() to free it. Added an API for turning photo description/metadata into RDF triples. Added new class flickcurl_serializer and factory flickcurl_serializer_factory for called to handle the results of serializing. Added new functions: flickcurl_serializer* flickcurl_new_serializer(flickcurl* fc, void* data, flickcurl_serializer_factory* factory); void flickcurl_free_serializer(flickcurl_serializer* serializer); int flickcurl_serialize_photo(flickcurl_serializer* frc, flickcurl_photo* photo); Updated all the namespaces used by the RDF serializer to use a different use of machinetags.org as follows: 1. Public namespaces (existing schemas): + [102]Dublin Core: Prefix: dc URI: http://purl.org/dc/elements/1.1/ legacy namespace + [103]Dublin Core Terms: Prefix: dcterms URI: http://purl.org/dc/terms/ new namespace with predicates dc:creator dc:dateSubmitted dc:rights dc:modified dc:issued dc:created dc:description dc:title + [104]FOAF: Prefix: foaf URI: http://xmlns.com/foaf/0.1/ with predicates foaf:maker foaf:name foaf:nick and classes foaf:Person foaf:Image + [105]Geo by W3C SWIG: Prefix: geo URI: http://www.w3.org/2003/01/geo/wgs84_pos# with predicates geo:lat geo:long + [106]RDF Schema: Prefix: rdfs URI: http://www.w3.org/2000/01/rdf-schema# with predicates rdfs:label + [107]RDF: Prefix: rdf URI: http://www.w3.org/1999/02/22-rdf-syntax-ns# with predicates rdf:type + [108]XML Schema Datatypes: Prefix: xsd URI: http://www.w3.org/2001/XMLSchema# with XSD datatypes xsd:boolean xsd:dateTime xsd:double xsd:integer 2. Flickr terminology namespaces (no schema yet): + [109]Flickr API initially for video terms: Prefix: flickr URI: http://machinetags.org/ns/Flickr# with predicates flickr:image flickr:video flickr:width flickr:height and classes flickr:Video + [110]Places API: Prefix: places URI: http://machinetags.org/ns/Places# with predicates places:place places:type places:name places:id places:placeid places:url and class places:Place 3. Machine Tag namespaces (no schema yet; prefix is the same as the machine tag prefix): + Bluetagging: Prefix: blue URI: http://machinetags.org/ns/Blue# + Celltagging: Prefix: cell URI: http://machinetags.org/ns/Cell# + [111]Dopplr: Prefix: dopplr URI: http://machinetags.org/ns/Dopplr# + [112]Filtr: Prefix: filtr URI: http://machinetags.org/ns/Filtr# + [113]Geonames: Prefix: geonames URI: http://machinetags.org/ns/Geonames# + Ph: Prefix: ph URI: http://machinetags.org/ns/Ph# + [114]Upcoming: Prefix: upcoming URI: http://machinetags.org/ns/Upcoming# Updated flickrdf(1) to use new serialization API and to have less conditional code. Fixed argument parsing bugs for the flickcurl(1) utility commands photos.search and photos.upload - 1 argument was skipped for every argument found. flickcurl(1) utility commands photos.setContentType and photos.setSafetyLevel now accept both integer and label values. Added a -V / --verbose flag to the flickcurl(1) utility. Added helper functions for to/from labels for content type and safety level. const char* flickcurl_get_content_type_label(int content_type); int flickcurl_get_content_type_from_string(const char* content_type_string); const char* flickcurl_get_safety_level_label(int safety_level); int flickcurl_get_safety_level_from_string(const char* safety_level_string); Added 1 new Flickr API call for the preferences API added to the public API around 2008-03-24. int flickcurl_prefs_getGeoPerms(flickcurl* fc); Protect destructors from NULL args. In maintainer mode, a warning message and an abort happen. Note that the woeids can be used with the new [115]Yahoo! Geo API 2008-03-08 Flickcurl 1.3 4 new Flickr API calls for updates to the new flickr.prefs APIs: int flickcurl_prefs_getContentType(flickcurl* fc); int flickcurl_prefs_getHidden(flickcurl* fc); int flickcurl_prefs_getPrivacy(flickcurl* fc); int flickcurl_prefs_getSafetyLevel(flickcurl* fc); Fixed flickcurl_photosets_create() to return properly on success. It used to do the creation correctly but failed to set up the XML XPath context so returned a failure response and error message even on success.. Fixed flickcurl photosets.create command to take 3 args not 4. flickcurl help message was edited to use USER-NSID for NSIDs not USER-ID for user login IDs. Added documentation section on how to do Flickr authentication. Fixed example code and renamed it to examples/print-photo-info.c Portability fixes for time headers. Win32 and portability compilation fixes: * Add FLICKCURL_API macro for handling win32 declspec dllexport and dllimport. * Added check for FLICKCURL_STATIC macro to compile without dll parts * Added FLICKCURL_INTERNAL define when compiling library * Added some casts to remove warnings Add portable gettimeofday() which does not exist on Win32 and may not exist on non-BSD systems. Added an implementation of the nanosleep() using either on win32: Sleep() or on unixes: sleep() and/or usleep(). Added support for place woeid field and added new photo fields PHOTO_FIELD_location_woeid, PHOTO_FIELD_neighborhood_woeid, PHOTO_FIELD_locality_woeid, PHOTO_FIELD_county_woeid, PHOTO_FIELD_region_woeid and PHOTO_FIELD_country_woeid. 2008-01-28 Flickcurl 1.2 Fixed "brown paper bag" issue. 1.1 could not be built as docs/flickcurl.1.in was missing from the tarball: make[1]: *** No rule to make target `flickcurl.1.in', needed by `flickcurl.1'. Stop. Added configure search for nanosleep() in librt and libposix4 for building on Solaris. 2008-01-26 Flickcurl 1.1 2 new Flickr API calls for updates to the places APIs: flickcurl_place** flickcurl_places_find(flickcurl* fc, const char* query); flickcurl_place* flickcurl_places_findByLatLon(flickcurl* fc, double lat, double lon, int accuracy); Added type field to flickcurl_place structure for use by results from flickcurl_places_find(). Added method to turn a place type label into an enum: flickcurl_place_type flickcurl_get_place_type_by_label(const char* place_label ); Added destructor function to free list of places void flickcurl_free_places(flickcurl_place **places_object); Source structure reorganised but it is building the same libraries and binaries and installing them in the same places. Added HTML documentation API reference manual documentation automatically generated from source code autodocs, via gtkdoc. 100% of the API functions and structures are documented. Made flickcurl manpage automatically be kept up to date with the command help from the utility itself. Fixed a crash with the upload command of flickcurl(1) Enforce minimum library versions in configure: libcurl minimum version 7.10.0 from 2002. libxml minimum version 2.6.8 from 2004 2008-01-12 Flickcurl 1.0 Now supports the entire Flickr API including the new Places API: searching, looking up by ID or URI, getting place IDs from photo descriptions. 12 new Flickr API calls supported (100.0% of API): * flickcurl_activity_userComments flickcurl_activity** flickcurl_activity_userComments(flickcurl* fc, int per_page, int page); * flickcurl_activity_userPhotos flickcurl_activity** flickcurl_activity_userPhotos(flickcurl* fc, const char* timeframe, int per_page, int page); * flickcurl_blogs_getList flickcurl_blog** flickcurl_blogs_getList(flickcurl* fc); * flickcurl_blogs_postPhoto int flickcurl_blogs_postPhoto(flickcurl* fc, const char* blog_id, const char* photo_id, const char* title, const char* description, const char* blog_password); * flickcurl_favorites_add int flickcurl_favorites_add(flickcurl* fc, const char* photo_id); * flickcurl_favorites_getList flickcurl_photo** flickcurl_favorites_getList(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); * flickcurl_favorites_getPublicList flickcurl_photo** flickcurl_favorites_getPublicList(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); * flickcurl_favorites_remove int flickcurl_favorites_remove(flickcurl* fc, const char* photo_id); * flickcurl_places_resolvePlaceId flickcurl_place* flickcurl_places_resolvePlaceId(flickcurl* fc, const char* place_id); * flickcurl_places_resolvePlaceURL flickcurl_place* flickcurl_places_resolvePlaceURL(flickcurl* fc, const char* url); * flickcurl_test_login char* flickcurl_test_login(flickcurl* fc); * flickcurl_test_null int flickcurl_test_null(flickcurl* fc); flickcurl utility updated to add all new functions. Added flickcurl_activity and flickcurl_activity_event for photo/comment activity Added flickcurl_blog for photo blogs. Added flickcurl_place for places. Added place_id to search parameters Added placeid fields to the flickcurl_photo_field_type enum and as new flickcurl_photo fields. Added destructor functions to free photosets, tickets, user status information and categories void flickcurl_free_activities(flickcurl_activity** activities); void flickcurl_free_blogs(flickcurl_blog **blogs_object); void flickcurl_free_place(flickcurl_place* place); 2007-12-22 Flickcurl 0.13 20 new Flickr API calls supported (91.3% of API): * flickcurl_groups_browse flickcurl_category* flickcurl_groups_browse(flickcurl* fc, int cat_id); * flickcurl_groups_getInfo flickcurl_group* flickcurl_groups_getInfo(flickcurl* fc, const char* group_id, const char* lang); * flickcurl_groups_search flickcurl_group** flickcurl_groups_search(flickcurl* fc, const char* text, int per_page, int page); * flickcurl_interestingness_getList flickcurl_photo** flickcurl_interestingness_getList(flickcurl* fc, const char* date, const char* extras, int per_page, int page); * flickcurl_people_getPublicGroups flickcurl_group** flickcurl_people_getPublicGroups(flickcurl* fc, const char* user_id); * flickcurl_people_getUploadStatus flickcurl_user_upload_status* flickcurl_people_getUploadStatus(flickcurl* fc); * flickcurl_photos_getCounts int** flickcurl_photos_getCounts(flickcurl* fc, const char** dates_array, const char** taken_dates_array); * flickcurl_photos_getSizes flickcurl_size** flickcurl_photos_getSizes(flickcurl* fc, const char* photo_id); * flickcurl_photos_transform_rotate int flickcurl_photos_transform_rotate(flickcurl* fc, const char* photo_id, int degrees); * flickcurl_photos_upload_checkTickets flickcurl_ticket** flickcurl_photos_upload_checkTickets(flickcurl* fc, const char** tickets_ids); * flickcurl_photosets_addPhoto int flickcurl_photosets_addPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id); * flickcurl_photosets_create char* flickcurl_photosets_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** photoset_url_p); * flickcurl_photosets_delete int flickcurl_photosets_delete(flickcurl* fc, const char* photoset_id); * flickcurl_photosets_editMeta int flickcurl_photosets_editMeta(flickcurl* fc, const char* photoset_id, const char* title, const char* description); * flickcurl_photosets_editPhotos int flickcurl_photosets_editPhotos(flickcurl* fc, const char* photoset_id, const char* primary_photo_id, const char** photo_ids_array); * flickcurl_photosets_getInfo flickcurl_photoset* flickcurl_photosets_getInfo(flickcurl* fc, const char* photoset_id); * flickcurl_photosets_getList flickcurl_photoset** flickcurl_photosets_getList(flickcurl* fc, const char* user_id); * flickcurl_photosets_getPhotos flickcurl_photo** flickcurl_photosets_getPhotos(flickcurl* fc, const char* photoset_id, const char* extras, int privacy_filter, int per_page, int page); * flickcurl_photosets_orderSets int flickcurl_photosets_orderSets(flickcurl* fc, const char** photoset_ids_array); * flickcurl_photosets_removePhoto int flickcurl_photosets_removePhoto(flickcurl* fc, const char* photoset_id, const char* photo_id); flickcurl utility updated to add all new functions. Added flickcurl_category for categories of groups. Added flickcurl_photoset for photosets. Added flickcurl_size for returning image sizes. Added flickcurl_ticket for returning asynchronous upload tickets. Added flickcurl_user_upload_status for returning details on a user's upload status. Added destructor functions to free photosets, tickets, user status information and categories void flickcurl_free_photoset(flickcurl_photoset *photoset); void flickcurl_free_photosets(flickcurl_photoset **photosets_object); void flickcurl_free_ticket(flickcurl_ticket *ticket); void flickcurl_free_tickets(flickcurl_ticket **tickets_object); void flickcurl_free_user_upload_status(flickcurl_user_upload_status *u); void flickcurl_free_category(flickcurl_category *category); void flickcurl_free_categories(flickcurl_category **categories_object); Added utility functions: char* flickcurl_array_join(const char *array[], char delim); char** flickcurl_array_split(const char *str, char delim); void flickcurl_array_free(char *array[]); 2007-08-11 Flickcurl 0.12 23 new Flickr API calls supported (72.1% of API): * flickcurl_groups_pools_add int flickcurl_groups_pools_add(flickcurl* fc, const char* photo_id, const char* group_id); * flickcurl_groups_pools_getGroups flickcurl_group** flickcurl_groups_pools_getGroups(flickcurl* fc, int page, int per_page); * flickcurl_groups_pools_getPhotos flickcurl_photo** flickcurl_groups_pools_getPhotos(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, const char* extras, int per_page, int page); * flickcurl_groups_pools_remove int flickcurl_groups_pools_remove(flickcurl* fc, const char* photo_id, const char* group_id); * flickcurl_people_getPublicPhotos flickcurl_photo** flickcurl_people_getPublicPhotos(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); * flickcurl_photos_getContactsPublicPhotos flickcurl_photo** flickcurl_photos_getContactsPublicPhotos(flickcurl* fc, const char* user_id, int count, int just_friends, int single_photo, int include_self, const char* extras); * flickcurl_photos_getExif flickcurl_exif** flickcurl_photos_getExif(flickcurl* fc, const char* photo_id, const char* secret); * flickcurl_photos_getFavorites flickcurl_person** flickcurl_photos_getFavorites(flickcurl* fc, const char* photo_id, int page, int per_page); * flickcurl_photos_getNotInSet flickcurl_photo** flickcurl_photos_getNotInSet(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); * flickcurl_photos_getRecent flickcurl_photo** flickcurl_photos_getRecent(flickcurl* fc, const char* extras, int per_page, int page); * flickcurl_photos_getUntagged flickcurl_photo** flickcurl_photos_getUntagged(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); * flickcurl_photos_getWithGeoData flickcurl_photo** flickcurl_photos_getWithGeoData(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); * flickcurl_photos_getWithoutGeoData flickcurl_photo** flickcurl_photos_getWithoutGeoData(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); * flickcurl_photos_recentlyUpdated flickcurl_photo** flickcurl_photos_recentlyUpdated(flickcurl* fc, int min_date, const char* extras, int per_page, int page); * flickcurl_photos_geo_getLocation flickcurl_location* flickcurl_photos_geo_getLocation(flickcurl* fc, const char* photo_id); * flickcurl_photos_geo_getPerms flickcurl_perms* flickcurl_photos_geo_getPerms(flickcurl* fc, const char* photo_id); * flickcurl_photos_geo_removeLocation int flickcurl_photos_geo_removeLocation(flickcurl* fc, const char* photo_id); * flickcurl_photos_geo_setLocation int flickcurl_photos_geo_setLocation(flickcurl* fc, const char* photo_id, flickcurl_location* location); * flickcurl_photos_geo_setPerms int flickcurl_photos_geo_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms); * flickcurl_photos_licenses_setLicense int flickcurl_photos_licenses_setLicense(flickcurl* fc, const char* photo_id, int license_id); * flickcurl_photos_notes_add char* flickcurl_photos_notes_add(flickcurl* fc, const char* photo_id, int note_x, int note_y, int note_w, int note_h, const char* note_text); * flickcurl_photos_notes_delete int flickcurl_photos_notes_delete(flickcurl* fc, const char* note_id); * flickcurl_photos_notes_edit int flickcurl_photos_notes_edit(flickcurl* fc, const char* note_id, int note_x, int note_y, int note_w, int note_h, const char* note_text); flickcurl utility updated to add all new functions. Added flickcurl_exif for flickcurl_photos_getExif Added flickcurl_group for the groups functions flickcurl_groups_pools_add, flickcurl_groups_pools_getGroups, flickcurl_groups_pools_getPhotos and flickcurl_groups_pools_remove Added photos field PERSON_FIELD_favedate as returned by flickcurl_photos_getFavorites Added destructor functions to free persons lists, exif, exifs list, group and groups list. void flickcurl_free_persons(flickcurl_person** persons); void flickcurl_free_exif(flickcurl_exif *exif); void flickcurl_free_exifs(flickcurl_exif **exifs_object); void flickcurl_free_group(flickcurl_group *group); void flickcurl_free_groups(flickcurl_group **groups_object); 2007-08-03 Flickcurl 0.11 10 new Flickr API calls supported (50% of API): * flickr.contacts.getList: flickcurl_contact** flickcurl_contacts_getList(flickcurl* fc, const char* filter, int page, int per_page); * flickr.contacts.getPublicList: flickcurl_contact** flickcurl_contacts_getPublicList(flickcurl* fc, const char* user_id, int page, int per_page); * flickr.photos.getContactsPhotos: flickcurl_photo** flickcurl_photos_getContactsPhotos(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, const char* extras); * flickr.photos.getPerms: flickcurl_perms* flickcurl_photos_getPerms(flickcurl* fc, const char* photo_id); * flickr.photos.search: flickcurl_photo** flickcurl_photos_search(flickcurl* fc, flickcurl_search_params* params); * flickr.photos.setContentType: int flickcurl_photos_setContentType(flickcurl* fc, const char* photo_id, int content_type); * flickr.photos.setDates: int flickcurl_photos_setDates(flickcurl* fc, const char* photo_id, int date_posted, int date_taken, int date_taken_granularity); * flickr.photos.setMeta: int flickcurl_photos_setMeta(flickcurl* fc, const char* photo_id, const char* title, const char* description); * flickr.photos.setPerms: int flickcurl_photos_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms); * flickr.photos.setSafetyLevel: int flickcurl_photos_setSafetyLevel(flickcurl* fc, const char* photo_id, int safety_level, int hidden); flickcurl utility updated to add all new functions. Added flickcurl_search_params structure for flickcurl_photos_search(). Added flickcurl_perms for the flickcurl_photos_getPerms() and flickcurl_photos_setPerms() functions. Added flickcurl_contact structure for flickcurl_contacts_getList() and flickcurl_contacts_getPublicList() functions. Added flickcurl_upload_params structure and added new upload function flickcurl_photos_upload_params() to use it, deprecating flickcurl_photos_upload() with the long list of parameters. Added destructor functions to free a photos list, perms contacts and upload status. void flickcurl_free_photos(flickcurl_photo** photos); void flickcurl_free_perms(flickcurl_perms *perms); void flickcurl_free_contact(flickcurl_contact *contact_object); void flickcurl_free_contacts(flickcurl_contact **contacts_object); void flickcurl_free_upload_status(flickcurl_upload_status* status); Deprecated wrongly named function flickcurl_free_upload_status(), replaced by void flickcurl_upload_status_free(flickcurl_upload_status* status); 2007-04-16 Flickcurl 0.10 13 new Flickr API calls supported (40.8% of API): * flickcurl_photos_comments_addComment: Add comment to a photo as the currently authenticated user. char* flickcurl_photos_comments_addComment(flickcurl* fc, const char* photo_id, const char* comment_text); * flickcurl_photos_comments_deleteComment: Delete a comment as the currently authenticated user. int flickcurl_photos_comments_deleteComment(flickcurl* fc, const char* comment_id); * flickcurl_photos_comments_editComment: Edit the text of a comment as the currently authenticated user. int flickcurl_photos_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text); * flickcurl_photos_comments_getList: Returns the comments for a photo. flickcurl_comment** flickcurl_photos_comments_getList(flickcurl* fc, const char* photo_id); * flickcurl_photosets_comments_addComment: Add a comment to a photoset. char* flickcurl_photosets_comments_addComment(flickcurl* fc, const char* photoset_id, const char* comment_text); * flickcurl_photosets_comments_deleteComment: Delete a photoset comment as the currently authenticated user. int flickcurl_photosets_comments_deleteComment(flickcurl* fc, const char* comment_id); * flickcurl_photosets_comments_editComment: Edit the text of a comment as the currently authenticated user. int flickcurl_photosets_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text); * flickcurl_photosets_comments_getList: Returns the comments for a photoset. flickcurl_comment** flickcurl_photosets_comments_getList(flickcurl* fc, const char* photoset_id); * flickcurl_reflection_getMethods: Get the list of available API method names. char** flickcurl_reflection_getMethods(flickcurl* fc); * flickcurl_reflection_getMethodInfo: Get information about an API method. flickcurl_method* flickcurl_reflection_getMethodInfo(flickcurl* fc, const char* name); flickcurl utility updated to add all new functions. Added all uploading and replacing of photos APIs. and flickcurl_upload_status structure for upload results. Added all photo comments APIs and flickcurl_comment structure for comments. Added support for uploading with POST and form-data. Yay libcurl. Added codegen utility to aid writing skeleton API code. Added all reflection APIs and flickcurl_method and flickcurl_arg structures for method descriptions. Added photo location fields: neighborhood, locality, region and country. They may not be returned in the API just yet, they were announced and then removed. Renamed the "Flickr to RDF app" to be called flickrdf since I used [116]Triplr for something else as it was such a good name. 2007-02-25 Flickcurl 0.9 17 new Flickr API calls supported (28.2% of API): * flickr.auth.checkToken: Get the credentials attached to an authentication TOKEN. char* flickcurl_auth_checkToken(flickcurl* fc, const char* token); * flickr.auth.getFrob: Get a frob to be used during authentication. char* flickcurl_auth_getFrob(flickcurl* fc); * flickr.auth.getToken: Get the auth token for the FROB, if one has been attached. char* flickcurl_auth_getToken(flickcurl* fc, const char* frob); * flickr.photos.addTags: Add TAGS to a PHOTO-ID. int flickcurl_photos_addTags(flickcurl* fc, const char* photo_id, const char* tags); * flickr.photos.delete: Delete a PHOTO-ID. int flickcurl_photos_delete(flickcurl* fc, const char* photo_id); * flickr.photos.removeTag: Remove a tag TAG-ID from a photo. int flickcurl_photos_removeTag(flickcurl* fc, const char* tag_id); * flick.photos.setTags: Set the tags for a PHOTO-ID to TAGS. int flickcurl_photos_setTags(flickcurl* fc, const char* photo_id, const char* tags); * flickr.tags.getHotList: Get the list of hot tags for the given PERIOD (day, week). flickcurl_tag** flickcurl_tags_getHotList(flickcurl* fc, const char* period, int tag_count); * flickr.tags.getListPhoto: Get the tag list for a PHOTO-ID. flickcurl_tag** flickcurl_tags_getListPhoto(flickcurl* fc, const char* photo_id); * flickr.tags.getListUser: Get the tag list for a USER-ID (or current user). flickcurl_tag** flickcurl_tags_getListUser(flickcurl* fc, const char* user_id); * flickr.tags.getListUserPopular: Get the popular tag list for a USER-ID (or current user). flickcurl_tag** flickcurl_tags_getListUserPopular(flickcurl* fc, const char* user_id, int pop_count); * flickr.tags.getListUserRaw: Get the raw versions of a TAG (or all tags) for the current user. flickcurl_tag** flickcurl_tags_getListUserRaw(flickcurl* fc, const char* tag); * flickr.tags.getRelated: Get a list of tags 'related' to TAG based on clustered usage analysis. flickcurl_tag** flickcurl_tags_getRelated(flickcurl* fc, const char* tag); * flickr.urls.getGroup: Get the url of the group page for GROUP-ID. char* flickcurl_urls_getGroup(flickcurl* fc, const char* group_id); * flickr.urls.getUserPhotos: Get the url of the photo page for USER-ID. char* flickcurl_urls_getUserPhotos(flickcurl* fc, const char* user_id); * flickr.urls.getUserProfile: Get the url of the profile page for USER-ID. char* flickcurl_urls_getUserProfile(flickcurl* fc, const char* user_id); * flickr.urls.lookupGroup: Get a group NSID from the URL to a group's page or photo pool. char* flickcurl_urls_lookupGroup(flickcurl* fc, const char* url); Renamed enum flickcurl_photo_field to flickcurl_photo_field_type and added flickcurl_photo_field as the photo field structure. Added authorname and count fields to the flickcurl_tag structure to handle tag methods that return counts. Added enum flickcurl_person_field_type value PERSON_FIELD_photos_views with value integer, not in API docs. flickcurl_person_field structure for fields of flickcurl_person. Added flickcurl* method to indicate that an API call must be signed, even if no authentication token has been given. This is mostly for internals of authentication. void flickcurl_set_sign(flickcurl *fc) Added flickcurl* method to do a write request with POST. Not presently used. void flickcurl_set_write(flickcurl *fc, int is_write); Added flickcurl methods to set data to send in a request: /* send binary data */ void flickcurl_set_data(flickcurl *fc, void* data, size_t data_length); /* send XML serialized from the document DOM */ void flickcurl_set_xml_data(flickcurl *fc, xmlDocPtr doc); 2007-02-20 Flickcurl 0.8 Added flickcurl_init() and flickcurl_finish() to do once-per-process initializing and cleanup. Added more help info to flickrdf. Added a -d DELAY option to flickrdf and flickcurl to set delay between requests using new flickcurl_set_request_delay(). Added 2 new Flickr API calls (12% of API): * flickr.people.findByEmail: char* flickcurl_people_findByEmail(flickcurl* fc, const char* email); * flickr.people.findByUsername: char* flickcurl_people_findByUsername(flickcurl* fc, const char* username); Added configure development/debugging options: --enable-capture to capture web service responses into XML files --enable-offline to use the XML files to return results when offline Split large api.c into auth-api.c, people-api.c, photos-api.c, photos-licenses-api.c and urls-api.c to match the API sections. Added method to set the minimum delay between web service requests: void flickcurl_set_request_delay(flickcurl *fc, long delay_msec); The default is set to 1000ms = 1 request/second. Moved flickcurl utility code into flickcurl.c 2007-02-18 Flickcurl 0.7 Added API calls returning contexts as a struct flickcurl_context* array and of type flickcurl_context_type Added 4 Flickr API calls (10% of API): * flickr.groups.pool.getContext: flickcurl_context** flickcurl_groups_pools_getContext(flickcurl* fc, const char* photo_id, const char* group_id); * flickr.photos.getAllContexts: flickcurl_context** flickcurl_photos_getAllContexts(flickcurl* fc, const char* photo_id); * flickr.photos.getContext: flickcurl_context** flickcurl_photos_getContext(flickcurl* fc, const char* photo_id); * flickr.photosets.getContext: flickcurl_context** flickcurl_photosets_getContext(flickcurl* fc, const char* photo_id, const char* photoset_id); Added struct flickcurl_context utility functions: const char* flickcurl_get_context_type_field_label(flickcurl_context_type type ); void flickcurl_free_context(flickcurl_context *context); void flickcurl_free_contexts(flickcurl_context** contexts); Added new flickcurl utility commands for the new APIs: groups.pools.getContext photos.getAllContexts photos.getContext, photosets.getContext 2007-02-11 Flickcurl 0.6 Added API call flickcurl.licenses.getInfo: struct flickcurl_license flickcurl_license** flickcurl_photos_licenses_getInfo(flickcurl *fc); and command licenses.getInfo in flickcurl utility Added helper to look up one license by ID: flickcurl_license* flickcurl_photos_licenses_getInfo_by_id(flickcurl *fc, int id); Flickrdf updated to use the above to emit URIs instead of integers for dc:rights Added API call flickr.people.getInfo: enum flickcurl_person_field, struct flickcurl_person const char* flickcurl_get_person_field_label(flickcurl_person_field field); flickcurl_person* flickcurl_people_getInfo(flickcurl* fc, const char* user_id) ; void flickcurl_free_person(flickcurl_person *person); and command person.getInfo in flickcurl utility 6% of API 2007-02-04 Flickcurl 0.5 Added optional support for using [117]Raptor for more accurate and prettier serializing triples in flickrdf Released to the world! 3% of API 2007-02-03 Flickcurl 0.4 Added flickrdf utility. 3% of API 2007-02-01 Flickcurl 0.3 Renamed all symbols to be flickcurl_* Added flickcurl_photo_as_source_uri() to get the image file URLs for a photo ID. Configuration file for the utilities to record the authentication is now ~/.flickcurl.conf Packaging and licensing 3% of API 2007-01-24 Flickcurl 0.2 Refactored to have separate flickcurl* object API calls flickr.test.echo, flickr.auth.getFullToken and flickr.photos.getInfo with functions flickcurl_test_echo, flickcurl_auth_getFullToken, flickcurl_photos_getInfo Test program has commands table and help, authentication 3% of API 2007-01-21 Flickcurl 0.1 First version 0% of API __________________________________________________________________ Copyright (C) 2007-2013 [118]Dave Beckett References 1. http://www.dajobe.org/ 2. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637746 3. https://github.com/dajobe/flickcurl/issues/19 4. https://github.com/dajobe/flickcurl/pull/18 5. https://github.com/dajobe/flickcurl/issues/16 6. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635989 7. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635989 8. http://www.flickr.com/services/api/misc.userauth.html 9. http://www.flickr.com/services/ 10. http://www.flickr.com/services/api/auth.oauth.html 11. http://www.flickr.com/services/ 12. https://github.com/dajobe/flickcurl/issues/15 13. http://clang-analyzer.llvm.org/ 14. http://www.flickr.com/services/api/flickr.favorites.getContext.html 15. http://www.flickr.com/services/api/flickr.photosets.removePhotos.html 16. http://www.flickr.com/services/api/flickr.photosets.reorderPhotos.html 17. http://www.flickr.com/services/api/flickr.photosets.setPrimaryPhoto.html 18. http://github.com/dajobe/flickcurl/issues/#issue/4 19. http://code.flickr.com/blog/2010/04/08/galleries-apis/ 20. http://www.flickr.com/services/api/flickr.people.getPhotos.html 21. http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ 22. http://www.flickr.com/services/api/flickr.stats.getCollectionDomains.html 23. http://www.flickr.com/services/api/flickr.stats.getCollectionReferrers.html 24. http://www.flickr.com/services/api/flickr.stats.getCollectionStats.html 25. http://www.flickr.com/services/api/flickr.stats.getPhotoDomains.html 26. http://www.flickr.com/services/api/flickr.stats.getPhotoReferrers.html 27. http://www.flickr.com/services/api/flickr.stats.getPhotosetDomains.html 28. http://www.flickr.com/services/api/flickr.stats.getPhotosetReferrers.html 29. http://www.flickr.com/services/api/flickr.stats.getPhotosetStats.html 30. http://www.flickr.com/services/api/flickr.stats.getPhotoStats.html 31. http://www.flickr.com/services/api/flickr.stats.getPhotostreamDomains.html 32. http://www.flickr.com/services/api/flickr.stats.getPhotostreamReferrers.html 33. http://www.flickr.com/services/api/flickr.stats.getPhotostreamStats.html 34. http://www.flickr.com/services/api/flickr.stats.getPopularPhotos.html 35. http://www.flickr.com/services/api/flickr.stats.getTotalViews.html 36. http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ 37. http://www.flickr.com/services/api/flickr.photos.people.add.html 38. http://www.flickr.com/services/api/flickr.photos.people.delete.html 39. http://www.flickr.com/services/api/flickr.photos.people.deleteCoords.html 40. http://www.flickr.com/services/api/flickr.photos.people.editCoords.html 41. http://www.flickr.com/services/api/flickr.photos.people.getList.html 42. http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ 43. http://www.flickr.com/services/api/flickr.people.getPhotosOf.html 44. http://www.flickr.com/services/api/flickr.galleries.addPhoto.html 45. http://www.flickr.com/services/api/flickr.galleries.getList.html 46. http://www.flickr.com/services/api/flickr.galleries.getListForPhoto.html 47. http://www.flickr.com/groups/api/discuss/72157622404753248/#comment72157622896186411 48. http://tech.groups.yahoo.com/group/yws-flickr/message/5053 49. http://www.flickr.com/services/api/flickr.places.getTopPlacesList.html 50. http://www.flickr.com/services/api/flickr.blogs.getServices.html 51. http://www.flickr.com/services/api/flickr.photos.comments.getRecentForContacts.html 52. http://www.flickr.com/services/api/flickr.machinetags.getRecentValues.html 53. http://github.com/ 54. http://github.com/dajobe/flickcurl/tree/master 55. http://svn.dajobe.org/view/ 56. http://code.flickr.com/blog/2009/05/06/the-absence-and-the-anchor/ 57. http://git.lespiau.name/cgit/shave/ 58. http://www.flickr.com/services/api/flickr.panda.getList.html 59. http://www.flickr.com/services/api/flickr.panda.getPhotos.html 60. http://code.flickr.com/blog/2009/03/03/panda-tuesday-the-history-of-the-panda-new-apis-explore-and-you/ 61. http://www.flickr.com/explore/panda 62. http://www.flickr.com/services/api/flickr.groups.members.getList.html 63. http://tech.groups.yahoo.com/group/yws-flickr/message/4749 64. http://www.flickr.com/services/api/flickr.commons.getInstitutions.html 65. http://www.flickr.com/services/api/flickr.contacts.getListRecentlyUploaded.html 66. http://www.flickr.com/services/api/flickr.photos.geo.batchCorrectLocation.html 67. http://www.flickr.com/services/api/flickr.photos.geo.correctLocation.html 68. http://www.flickr.com/services/api/flickr.photos.geo.photosForLocation.html 69. http://www.flickr.com/services/api/flickr.photos.geo.setContext.html 70. http://www.flickr.com/services/api/flickr.places.getPlaceTypes.html 71. http://www.flickr.com/services/api/flickr.places.getShapeHistory.html 72. http://www.flickr.com/services/api/flickr.places.placesForBoundingBox.html 73. http://www.flickr.com/services/api/flickr.places.placesForContacts.html 74. http://www.flickr.com/services/api/flickr.places.placesForTags.html 75. http://www.flickr.com/services/api/flickr.places.tagsForPlace.html 76. http://tech.groups.yahoo.com/group/yws-flickr/message/4669 77. http://tech.groups.yahoo.com/group/yws-flickr/message/4668 78. http://flickr.com/groups/api/discuss/72157613093793775/ 79. http://tech.groups.yahoo.com/group/yws-flickr/message/4545 80. http://www.flickr.com/services/api/flickr.machinetags.getNamespaces.html 81. http://www.flickr.com/services/api/flickr.machinetags.getPairs.html 82. http://www.flickr.com/services/api/flickr.machinetags.getPredicates.html 83. http://www.flickr.com/services/api/flickr.machinetags.getValues.html 84. http://www.flickr.com/services/api/flickr.tags.getClusterPhotos.html 85. http://tech.groups.yahoo.com/group/yws-flickr/message/4510 86. http://code.flickr.com/blog/2008/10/30/the-shape-of-alpha/ 87. http://developer.yahoo.com/geo/ 88. http://www.flickr.com/services/api/flickr.places.getInfo.html 89. http://www.flickr.com/services/api/flickr.places.getInfoByUrl.html 90. http://www.flickr.com/services/api/flickr.places.getChildrenWithPhotosPublic.html 91. http://www.flickr.com/services/api/flickr.places.placesForUser.html 92. http://en.wikipedia.org/wiki/Mister_Rogers%27_Neighborhood 93. http://en.wikipedia.org/wiki/Neighbours 94. http://geobloggers.com/2008/08/19/correcting-location-data-the-flickr-way/ 95. http://www.flickr.com/services/api/flickr.places.placesForUser.html 96. http://code.flickr.com/blog/2008/09/04/whos-on-first/ 97. http://code.flickr.com/blog/2008/08/19/standard-photos-response-apis-for-civilized-age/ 98. http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/ 99. http://www.flickr.com/services/api/flickr.tags.getClusters.html 100. http://tech.groups.yahoo.com/group/yws-flickr/message/4218 101. http://tech.groups.yahoo.com/group/yws-flickr/message/4146 102. http://dublincore.org/ 103. http://dublincore.org/ 104. http://www.foaf-project.org/ 105. http://www.w3.org/2003/01/geo/ 106. http://www.w3.org/TR/rdf-schema/ 107. http://www.w3.org/TR/rdf-concepts/ 108. http://www.w3.org/TR/xmlschema-1/ 109. http://www.flickr.com/services/api/ 110. http://www.flickr.com/services/api/ 111. http://www.dopplr.com/ 112. http://www.aaronland.info/bin/filtr/ 113. http://www.geonames.org/ 114. http://upcoming.yahoo.com/ 115. http://developer.yahoo.com/geo/ 116. http://triplr.org/ 117. http://librdf.org/raptor 118. http://www.dajobe.org/ flickcurl-1.25/flickcurl-config.in0000644000175000017500000000317212157737143014126 00000000000000#!/bin/sh # # Copyright (C) 2007-2013, David Beckett http://www.dajobe.org/ # # Packaging PACKAGE="@PACKAGE@" VERSION="@VERSION@"; VERSION_DECIMAL="@FLICKCURL_VERSION_DECIMAL@"; program=`basename $0` # pkg-config like vars prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ usage() { cat<&2 fi args="" while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in # GNU standards require this --help|--usage) usage 0 ;; --prefix) echo "${prefix}" exit 0 ;; --libs) echo "-L${libdir} -lflickcurl" exit 0 ;; --cflags) echo "-I${includedir}" exit 0 ;; --private-libs) echo "@LIBS@" exit 0 ;; --version) echo "${VERSION}" exit 0 ;; --version-decimal) echo "${VERSION_DECIMAL}" exit 0 ;; # Other options are ignored as illegal *) echo "$program: unrecognized argument \`$1'" 1>&2 break ;; esac shift done echo "$program: Try $program --help" 1>&2 exit 1 flickcurl-1.25/configure.ac0000644000175000017500000003234012157737143012642 00000000000000# -*- Autoconf -*- # Copyright (C) 2007-2011 David Beckett http://www.dajobe.org/ AC_PREREQ([2.68]) AC_INIT([Flickcurl], [1.25], [http://bugs.librdf.org/], [flickcurl]) AC_CONFIG_SRCDIR([src/flickcurl.h]) AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_AUX_DIR(build) AC_CONFIG_MACRO_DIR(build) AM_INIT_AUTOMAKE([1.11 check-news std-options -Wobsolete -Wportability -Wsyntax -Wunsupported -Wextra-portability]) AM_MAINTAINER_MODE if test "$USE_MAINTAINER_MODE" = yes; then CFLAGS=`echo $CFLAGS | sed -e "s/-O[A-Za-z0-9]*//"` CXXFLAGS=`echo $CXXFLAGS | sed -e "s/-O[A-Za-z0-9]*//"` CPPFLAGS=`echo $CPPFLAGS | sed -e "s/-O[A-Za-z0-9]*//"` fi dnl need to change quotes to allow square brackets changequote(<<, >>)dnl version="$PACKAGE_VERSION.0" version_major=`echo $version | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\1/'` version_minor=`echo $version | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\2/'` version_release=`echo $version | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\3/'` changequote([, ])dnl version_decimal=`expr $version_major \* 10000 + $version_minor \* 100 + $version_release` AC_DEFINE_UNQUOTED(FLICKCURL_VERSION_DECIMAL, $version_decimal, [Release version as a decimal]) # for flickcurl-config.in FLICKCURL_VERSION_DECIMAL=$version_decimal AC_SUBST(FLICKCURL_VERSION_DECIMAL) # Libtool versioning # # CURRENT # The most recent interface number that this library implements. # # REVISION # The implementation number of the CURRENT interface. # # AGE # The difference between the newest and oldest interfaces that this # library implements. In other words, the library implements all the # interface numbers in the range from number `CURRENT - AGE' to # `CURRENT'. # # Rules: # 1. Start with version information of `0:0:0' for each libtool library. # # 2. Update the version information only immediately before a public # release of your software. More frequent updates are unnecessary, # and only guarantee that the current interface number gets larger # faster. # # 3. If the library source code has changed at all since the last # update, then increment REVISION (`C:R:A' becomes `C:r+1:A'). # # 4. If any interfaces have been added, removed, or changed since the # last update, increment CURRENT, and set REVISION to 0. # # 5. If any interfaces have been added since the last public release, # then increment AGE. # # 6. If any interfaces have been removed since the last public release, # then set AGE to 0. # # syntax: CURRENT[:REVISION[:AGE]] LIBFLICKCURL_LIBTOOL_VERSION=0:0:0 AC_SUBST(LIBFLICKCURL_LIBTOOL_VERSION) AC_CANONICAL_HOST AM_SANITY_CHECK # Checks for programs. AM_PROG_AR AM_PROG_CC_C_O dnl Initialize libtool LT_INIT # Checks for libraries. libxml_min_version=2.6.8 raptor_min_version=2.0.0 libcurl_min_version=7.10.0 # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([errno.h getopt.h stdlib.h stdint.h time.h string.h unistd.h]) AC_HEADER_TIME # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T AC_STRUCT_TM AC_C_BIGENDIAN AC_CHECK_TYPE([u32]) AC_CHECK_SIZEOF(unsigned int, 4) AC_CHECK_SIZEOF(unsigned long, 4) # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC AC_FUNC_STRFTIME AC_FUNC_VPRINTF AC_CHECK_FUNCS([getopt getopt_long gettimeofday memset strdup usleep vsnprintf]) AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1, [Define to 1 if you have the 'nanosleep' function.]), AC_MSG_WARN(nanosleep was not found)) AM_CONDITIONAL(GETOPT, test $ac_cv_func_getopt = no -a $ac_cv_func_getopt_long = no) AC_MSG_CHECKING(whether need to declare optind) AC_LINK_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_GETOPT_H #include #endif]], [[int x=optind; ]])],[AC_MSG_RESULT(no)],[AC_DEFINE(NEED_OPTIND_DECLARATION, 1, need 'extern int optind' declaration?) AC_MSG_RESULT(yes)]) if test $ac_cv_func_vsnprintf = yes; then AC_MSG_CHECKING(vsnprintf has C99 compatible return value) AC_RUN_IFELSE([AC_LANG_SOURCE([[#include int is_c99(char *s, ...) { char buffer[32]; va_list args; int r; va_start(args, s); r = vsnprintf(buffer, 5, s, args); va_end(args); return (r == 7); } int main(int argc, char* argv) { return is_c99("1234567"); }]])],[AC_MSG_RESULT(no)],[AC_DEFINE(HAVE_C99_VSNPRINTF, 1, vsnprint has C99 compatible return value) AC_MSG_RESULT(yes)], [ ], [ ]) fi AC_CHECK_PROGS(RECHO, echo) RECHO_C= RECHO_N= case `$RECHO -n x` in -n*) case `$RECHO 'xy\c'` in *c*) ;; xy) RECHO_C='\c' ;; esac;; *) RECHO_N='-n' ;; esac AC_CHECK_PROGS(PKG_CONFIG, pkg-config) PKG_CONFIG_REQUIRES= dnl libxml - required LIBXML_MIN_VERSION=$libxml_min_version AC_SUBST(LIBXML_MIN_VERSION) AC_ARG_WITH(xml2-config, [ --with-xml2-config=PATH Location of libxml xml2-config []], xml2_config="$withval", xml2_config="") if test "X$xml2_config" != "Xno" ; then if test "X$xml2_config" != "X" ; then AC_MSG_CHECKING(for $xml2_config) if test -f $xml2_config ; then XML_CONFIG=$xml2_config AC_MSG_RESULT(yes) else AC_MSG_RESULT(no - searching PATH) fi fi if test "X$XML_CONFIG" = "X" ; then AC_CHECK_PROGS(XML_CONFIG, xml2-config) fi fi libxml_source=no if test "X$XML_CONFIG" != "X"; then oCPPFLAGS="$CPPFLAGS" oLIBS="$LIBS" CPPFLAGS="`$XML_CONFIG --cflags` $CPPFLAGS" LIBS="$LIBS `$XML_CONFIG --libs`" AC_CHECK_FUNC(xmlCreatePushParserCtxt, have_xmlCreatePushParserCtxt=yes, have_xmlCreatePushParserCtxt=no) AC_MSG_CHECKING(for libxml via xml2-config) if test $have_xmlCreatePushParserCtxt = yes; then libxml_source="xml2-config" LIBXML_VERSION=`$XML_CONFIG --version` fi CPPFLAGS="$oCPPFLAGS" LIBS="$oLIBS" else AC_MSG_CHECKING(for libxml via pkg-config) XML_CONFIG="$PKG_CONFIG libxml-2.0" if $XML_CONFIG --exists; then LIBXML_VERSION=`$XML_CONFIG --modversion 2>/dev/null` libxml_source="pkg-config" fi fi if test "$libxml_source" != "no"; then AC_MSG_RESULT(yes - $LIBXML_VERSION via $libxml_source) else AC_MSG_RESULT(no - not found) AC_MSG_ERROR(Please install version $libxml_min_version or newer) fi libxml_min_version_dec=`echo $libxml_min_version | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` libxml_version_dec=`echo $LIBXML_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test $libxml_version_dec -lt $libxml_min_version_dec; then AC_MSG_ERROR(libxml $LIBXML_VERSION is too old - $libxml_min_version or newer required.) fi LIBS="$LIBS `$XML_CONFIG --libs`" CFLAGS="`$XML_CONFIG --cflags` $CFLAGS" if test $libxml_source = "pkg-config"; then if test "X$PKG_CONFIG_REQUIRES" != X; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES libxml-2.0 >= $LIBXML_MIN_VERSION" fi dnl curl - required LIBCURL_MIN_VERSION=$libcurl_min_version AC_SUBST(LIBCURL_MIN_VERSION) AC_ARG_WITH(curl-config, [ --with-curl-config=PATH Location of libcurl curl-config []], curl_config="$withval", curl_config="") if test "X$curl_config" != "Xno" ; then if test "X$curl_config" != "X" ; then AC_MSG_CHECKING(for $curl_config) if test -f $curl_config ; then CURL_CONFIG=$curl_config AC_MSG_RESULT(yes) else AC_MSG_RESULT(no - searching PATH) fi fi if test "X$CURL_CONFIG" = "X" ; then AC_CHECK_PROGS(CURL_CONFIG, curl-config) fi fi libcurl_source=no if test "X$CURL_CONFIG" != "X"; then oCPPFLAGS="$CPPFLAGS" oLIBS="$LIBS" CPPFLAGS="`$CURL_CONFIG --cflags` $CPPFLAGS" LIBS="$LIBS `$CURL_CONFIG --libs`" AC_CHECK_HEADER(curl/curl.h) AC_CHECK_FUNC(curl_easy_init, have_curl_easy_init=yes, have_curl_easy_init=no) AC_MSG_CHECKING(for libcurl via curl-config) if test $have_curl_easy_init = yes; then libcurl_source="curl-config" LIBCURL_VERSION=`$CURL_CONFIG --version | sed -e 's/^libcurl *//'` fi CPPFLAGS="$oCPPFLAGS" LIBS="$oLIBS" else AC_MSG_CHECKING(for libcurl via pkg-config) CURL_CONFIG="$PKG_CONFIG libcurl" if $CURL_CONFIG --exists; then LIBCURL_VERSION=`$CURL_CONFIG --modversion 2>/dev/null` libcurl_source="pkg-config" fi fi if test "$libcurl_source" != "no"; then AC_MSG_RESULT(yes - $LIBCURL_VERSION via $libcurl_source) else AC_MSG_RESULT(no - not found) AC_MSG_ERROR(Please install version $libcurl_min_version or newer) fi libcurl_min_version_dec=`echo $libcurl_min_version | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` libcurl_version_dec=`echo $LIBCURL_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test $libcurl_version_dec -lt $libcurl_min_version_dec; then AC_MSG_ERROR(libcurl $LIBCURL_VERSION is too old - $libcurl_min_version or newer required.) fi LIBS="$LIBS `$CURL_CONFIG --libs`" CFLAGS="`$CURL_CONFIG --cflags` $CFLAGS" if test $libcurl_source = "pkg-config"; then if test "X$PKG_CONFIG_REQUIRES" != X; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES libcurl >= $LIBCURL_MIN_VERSION" fi dnl raptor - optional AC_ARG_WITH(raptor, [ --with-raptor=yes|no|2 Use Raptor to serialize to triples (default=auto)], with_raptor="$withval", with_raptor="auto") # resolve autodetecting raptor if test "$with_raptor" = auto; then if $PKG_CONFIG raptor2 --exists; then with_raptor=yes else with_raptor=no fi fi # Check raptor version and use it if new enough RAPTOR_VERSION= if test "$with_raptor" = yes -o "$with_raptor" = 2; then RAPTOR_VERSION=`$PKG_CONFIG raptor2 --modversion 2>/dev/null` if $PKG_CONFIG raptor2 --atleast-version=$raptor_min_version; then with_raptor=yes else with_raptor=no AC_MSG_WARN(Installed Raptor $RAPTOR_VERSION is too old - need $raptor_min_version) fi else with_raptor="no" fi RAPTOR_MIN_VERSION=$raptor_min_version AC_SUBST(RAPTOR_MIN_VERSION) AM_CONDITIONAL(RAPTOR, test $with_raptor != no) AC_MSG_CHECKING(whether to use Raptor) if test "$with_raptor" = yes; then AC_MSG_RESULT(yes - $RAPTOR_VERSION) RAPTOR_LIBS="`$PKG_CONFIG raptor2 --libs`" RAPTOR_CFLAGS="`$PKG_CONFIG raptor2 --cflags`" LIBS="$LIBS $RAPTOR_LIBS" CPPFLAGS="$CPPFLAGS $RAPTOR_CFLAGS" if test "X$PKG_CONFIG_REQUIRES" != X; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES raptor2 >= $raptor_min_version" AC_SUBST(RAPTOR_LIBS) AC_SUBST(RAPTOR_CFLAGS) AC_DEFINE(HAVE_RAPTOR, 1, [have Raptor RDF syntax library]) else AC_MSG_RESULT(no) fi AC_ARG_ENABLE(offline, [ --enable-offline Turn on offline use of captured XML web service responses (default disabled). ], offline="yes", offline="no") AC_MSG_CHECKING(using offline mode) AC_MSG_RESULT($offline); if test $offline = yes; then AC_DEFINE(OFFLINE, 1, [Offline mode]) fi AM_CONDITIONAL(OFFLINE, test $offline = yes) AC_ARG_ENABLE(capture, [ --enable-capture Turn on capturing web service responses (default disabled). ], capture="yes", capture="no") AC_MSG_CHECKING(capturing web service responses) AC_MSG_RESULT($capture); if test $capture = yes; then AC_DEFINE(CAPTURE, 1, [Capture web service responses]) fi if test $offline = yes -a $capture = yes; then AC_MSG_ERROR(Cannot use both offline mode and capturing web service responses) fi dnl compiler checks AC_DEFUN([FLICKCURL_CC_TRY_FLAG], [ AC_MSG_CHECKING([whether $CC supports $1]) flickcurl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $1" AC_COMPILE_IFELSE([AC_LANG_SOURCE([ ])], [flickcurl_cc_flag=yes], [flickcurl_cc_flag=no]) CFLAGS="$flickcurl_save_CFLAGS" if test "X$flickcurl_cc_flag" = "Xyes"; then ifelse([$2], , :, [$2]) else ifelse([$3], , :, [$3]) fi AC_MSG_RESULT($flickcurl_cc_flag) ]) # Just too annoying: # -Wmissing-format-attribute possible_warnings="-Wall -Wextra \ -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -Wredundant-decls -Wswitch-enum \ -Wsign-compare -Werror-implicit-function-declaration -Wwrite-strings -Wpacked -Wpointer-arith -Wcast-align -Winit-self \ -Wunsafe-loop-optimizations -Wdeclaration-after-statement \ -Wold-style-definition \ -Wno-missing-field-initializers -Wno-unused-parameter" warning_cflags= if test "$USE_MAINTAINER_MODE" = yes; then AC_MSG_CHECKING(for supported $CC warning flags) AC_MSG_RESULT($warning_cflags) for warning in $possible_warnings; do FLICKCURL_CC_TRY_FLAG([$warning], [warning_cflags="$warning_cflags $warning"]) done AC_MSG_CHECKING($CC supports warning flags) AC_MSG_RESULT($warning_cflags) fi CPPFLAGS="-DFLICKCURL_INTERNAL=1 $CPPFLAGS" STANDARD_CFLAGS= MAINTAINER_CFLAGS="$warning_cflags" STANDARD_CFLAGS="$STANDARD_CFLAGS $CFLAGS" if test "$USE_MAINTAINER_MODE" = yes; then CPPFLAGS="-g -DFLICKCURL_DEBUG=1 $CPPFLAGS" CFLAGS="$MAINTAINER_CFLAGS $CFLAGS" fi AC_SUBST(STANDARD_CFLAGS) AC_SUBST(PKG_CONFIG_REQUIRES) AC_SUBST(ECHO) dnl automake 1.11 AM_SILENT_RULES([no]) AC_CONFIG_FILES([Makefile src/Makefile utils/Makefile examples/Makefile docs/Makefile docs/version.xml flickcurl.spec flickcurl.rdf flickcurl.pc]) AC_CONFIG_FILES([flickcurl-config], [chmod +x flickcurl-config]) dnl Check for gtk-doc and docbook GTK_DOC_CHECK([1.3]) AC_OUTPUT AC_MSG_RESULT([ Flickcurl build summary: libxml $LIBXML_VERSION via $libxml_source curl $LIBCURL_VERSION via $libcurl_source raptor $RAPTOR_VERSION ]) flickcurl-1.25/docs/0000755000175000017500000000000012210726306011347 500000000000000flickcurl-1.25/docs/version.xml0000644000175000017500000000000512210726277013500 000000000000001.25 flickcurl-1.25/docs/html/0000755000175000017500000000000012210726306012313 500000000000000flickcurl-1.25/docs/html/flickcurl-searching.html0000644000175000017500000000611212210726306017040 00000000000000 Searching for Photos with Flickcurl

Searching for Photos with Flickcurl

Introduction

This chapter describes how to use Flickcurl to call the Flickr API to search for photos - construct the request, run it and get back the results. The search API is very powerful and changes over time to add new features, parameters, result fields and result formats so the interface in Flickcurl has several aspects that can be configured.

flickcurl-1.25/docs/html/flickcurl-searching-search-parameters.html0000644000175000017500000001104012210726306022440 00000000000000 Search parameters

Search parameters

The first step is to choose the parameters for the photos search - such as search by tag, search by lat/long, search by license (or combinations). There are lots of parameters that may be chosen and some of the values are strings, some are numbers and some are from allowed sets (such as license IDs or photo type).

The flickcurl_search_params struct is used to store these parameters and the reference documentation contains all the details on the restrictions. This structure has fields for all of the API search parameters that are not specifically about the list of photos result - such as format, number of results and paging (see below).

There are, however, several constraints on the fields used in a search - some fields are cause expensive (i.e. slow) queries and the web service requires them to be used with additional fields added to make the query sufficiently selective. The restrictions are recorded in the API documentation for the flickcurl_search_params struct as well as in the documentation for the search API calls.

Once the search parameters are chosen, they must be put into a flickcurl_search_params struct. This struct must be initialised to default values with flickcurl_search_params_init() which initialises the struct from a previously allocated piece of memory (or on the stack).

The following code fragment initialises the search parameters to their defaults using the variable params which is stored on the stack. This is freed when the program execution leaves the current block or function. Then the code sets three search parameters - the user_id set to me which makes the search return photos only for the calling user, sets the tags field to "kitten" to perform a tag search and then sets the sort to interestingness-desc which asks that the results are sorted by interestingness with the most interesting kitten photos that the caller took first in the results.

  flickcurl_search_params params;

  flickcurl_search_params_init(&params);
  params.user_id = "me";
  params.tags = "kitten";
  params.sort = "interestingness-desc";
flickcurl-1.25/docs/html/flickcurl-section-photoslist.html0000644000175000017500000002766612210726306020770 00000000000000 Photos List

Photos List

Photos List — Photos List.

Description

Photos List.

Details

flickcurl_photos_list

typedef struct {
  char *format;
  flickcurl_photo** photos;
  int photos_count;
  char* content;
  size_t content_length;
  int page;
  int per_page;
  int total_count;
} flickcurl_photos_list;

Photos List result.

char *format;

requested content format or NULL if a list of photos was wanted. On the result from API calls this is set to the requested feed format or "xml" if none was given.

flickcurl_photo **photos;

list of photos if format is NULL. Also may be NULL on failure.

int photos_count;

number of photos in photos array if format is NULL. Undefined on failure

char *content;

raw content if format is not NULL. Also may be NULL on failure.

size_t content_length;

size of content if format is not NULL. Undefined on failure

int page;

current photo list page

int per_page;

current photo list per-page

int total_count;

total number of photos available of which the current page and per_page is a slice

flickcurl_photos_list_params

typedef struct {
  /* NOTE: Bump @version and update
   * flickcurl_photos_list_params_init() when adding fields 
   */
  int version; /* 1 */
  const char* format;
  const char* extras;
  int per_page;
  int page;
} flickcurl_photos_list_params;

Photos List API parameters for multiple functions that return a flickcurl_photos_list

Use flickcurl_get_extras_format_info() to enumerate the list of known extra values and flickcurl_get_feed_format_info() to enumerate the list of known format values.

int version;

structure version (currently 1)

const char *format;

Feed format. If given, the photos list result will return raw content. This paramter is EXPERIMENTAL as annouced 2008-08-25 http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/ The current formats are feed-rss_100 for RSS 1.0, feed-rss_200 for RSS 2.0, feed-atom_10 for Atom 1.0, feed-georss for RSS 2.0 with GeoRSS and W3C Geo for geotagged photos, feed-geoatom for Atom 1.0 with GeoRSS and W3C Geo for geotagged photos, feed-geordf for RSS 1.0 with GeoRSS and W3C Geo for geotagged photos, feed-kml for KML 2.1, feed-kml_nl for KML 2.1 network link (or NULL)

const char *extras;

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags. 'media will return an extra media=VALUE for VALUE "photo" or "video". API addition 2008-04-07. (or NULL)

int per_page;

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0)

int page;

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

flickcurl_photos_list_params_init ()

int                 flickcurl_photos_list_params_init   (flickcurl_photos_list_params *list_params);

Initialise an existing photos list parameter structure

list_params :

photos list params to init

Returns :

non-0 on failure

flickcurl_free_photos_list ()

void                flickcurl_free_photos_list          (flickcurl_photos_list *photos_list);

Destructor for photos list

photos_list :

photos list object
flickcurl-1.25/docs/html/flickcurl-section-category.html0000644000175000017500000001167312210726306020364 00000000000000 Categories

Categories

Categories — Categories of groups

Synopsis

typedef             flickcurl_category;
void                flickcurl_free_categories           (flickcurl_category **categories_object);
void                flickcurl_free_category             (flickcurl_category *category);

Description

Categories of groups

Details

flickcurl_category

typedef struct flickcurl_category_s flickcurl_category;

A category.


flickcurl_free_categories ()

void                flickcurl_free_categories           (flickcurl_category **categories_object);

Destructor for array of category object

categories_object :

category object array

flickcurl_free_category ()

void                flickcurl_free_category             (flickcurl_category *category);

Destructor for category object

category :

category object
flickcurl-1.25/docs/html/flickcurl-searching-search-example.html0000644000175000017500000004606112210726306021743 00000000000000 Photos search example

Photos search example

Example 1. search-photos.c: Search for my interesting photos with a given tag and print the resulting photo IDs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>

#include <flickcurl.h>

static const char* program;

static const char*
my_basename(const char *name)
{
  char *p;
  if((p = strrchr(name, '/')))
    name = p+1;
  else if((p = strrchr(name, '\\')))
    name = p+1;

  return name;
}


static void
my_message_handler(void *user_data, const char *message)
{
  fprintf(stderr, "%s: ERROR: %s\n", program, message);
}


static const char* config_filename = ".flickcurl.conf";
static const char* config_section = "flickr";


int
main(int argc, char *argv[]) 
{
  flickcurl *fc = NULL;
  int rc = 0;
  const char* home;
  char config_path[1024];
  char* tag = NULL;
  flickcurl_photos_list_params list_params;
  flickcurl_search_params params;
  flickcurl_photos_list* photos_list = NULL;
  int i;
  
  program = my_basename(argv[0]);

  flickcurl_init();

  home = getenv("HOME");
  if(home)
    sprintf(config_path, "%s/%s", home, config_filename);
  else
    strcpy(config_path, config_filename);
  
  if(argc != 2) {
    fprintf(stderr, "%s: No tag given\n"
                    "Try `%s -h for more information.\n", program, program);
    rc = 1;
    goto tidy;
  }

  if(!strcmp(argv[1], "-h")) {
    printf("%s - search for my interesting photos about a tag\n"
           "Usage: %s TAG\n\n", program, program);
    
    fputs("Flickcurl home page: ", stdout);
    puts(flickcurl_home_url_string);
    puts(flickcurl_copyright_string);
    fputs("License: ", stdout);
    puts(flickcurl_license_string);
    rc = 1;
    goto tidy;
  }
  
  tag = argv[1];

  /* Initialise the Flickcurl library */
  fc = flickcurl_new();
  if(!fc) {
    rc = 1;
    goto tidy;
  }

  flickcurl_set_error_handler(fc, my_message_handler, NULL);

  if(!access((const char*)config_path, R_OK)) {
    if(flickcurl_config_read_ini(fc, config_path, config_section,
                                 fc, flickcurl_config_var_handler)) {
      fprintf(stderr, "%s: Failed to read config filename %s: %s\n",
              program, config_path, strerror(errno));
      rc = 1;
      goto tidy;
    }
  }
  

  /* Initialise the search parameters themselves
   *  user_id: "me" - Search only photos of the calling user.
   *  sort: "interestingness-desc" - return results with most interesting first
   *  tag: TAG - search for photos about the TAG given on the command line
   */
  flickcurl_search_params_init(&params);
  /* these strings are shared and not strdup()ed since they are stored 
   * in 'params" on the stack */
  params.user_id = (char*)"me";
  params.sort = (char*)"interestingness-desc";
  params.tags = tag;

  /* Initialise the search result (list) parameters:
   *   per_page: 10 - ten results per-page
   *   page: 1 - return 1 page
   *   extras: "original_format" - want the returned photos to have the
   *      original secret and format fields.
   */
  flickcurl_photos_list_params_init(&list_params);
  list_params.per_page = 10;
  list_params.page = 1;
  /* this string is shared and not strdup()ed since it is stored 
   * in 'list_params" on the stack */
  list_params.extras = "original_format";

  photos_list = flickcurl_photos_search_params(fc, &params, &list_params);
  if(!photos_list)
    goto tidy;

  fprintf(stderr, "%s: Search returned %d photos\n", 
          program, photos_list->photos_count);

  for(i = 0; i < photos_list->photos_count; ++i)
    printf("  Result #%d has ID %s\n", i, photos_list->photos[i]->id);
  
 tidy:
  if(photos_list)
    flickcurl_free_photos_list(photos_list);

  if(fc)
    flickcurl_free(fc);

  flickcurl_finish();

  return(rc);
}

Compile it like this:

$ gcc -o search-photos search-photos.c `pkg-config flickcurl --cflags --libs`

and assuming the flickcurl API configuration has already been created in ~/.flickcurl.conf, run the program like this:

$ ./search-photos kitten
search-photos: Search returned 2 photos
  Result #0 has ID 1234567890
  Result #1 has ID 2345678901

Your kitten results may vary.

flickcurl-1.25/docs/html/flickcurl-section-urls.html0000644000175000017500000003027112210726306017527 00000000000000 URLs

URLs

URLs — Support functions to get URLs.

Synopsis

char *              flickcurl_urls_getGroup             (flickcurl *fc,
                                                         const char *group_id);
char *              flickcurl_urls_getUserPhotos        (flickcurl *fc,
                                                         const char *user_id);
char *              flickcurl_urls_getUserProfile       (flickcurl *fc,
                                                         const char *user_id);
char *              flickcurl_urls_lookupGallery        (flickcurl *fc,
                                                         const char *url);
char *              flickcurl_urls_lookupGroup          (flickcurl *fc,
                                                         const char *url);
char *              flickcurl_urls_lookupUser           (flickcurl *fc,
                                                         const char *url);

Description

Support functions to get URLs.

Details

flickcurl_urls_getGroup ()

char *              flickcurl_urls_getGroup             (flickcurl *fc,
                                                         const char *group_id);

Get the url to a group's page.

Implements flickr.urls.getGroup (0.9)

fc :

flickcurl context

group_id :

group ID

Returns :

NSID or NULL on failure

flickcurl_urls_getUserPhotos ()

char *              flickcurl_urls_getUserPhotos        (flickcurl *fc,
                                                         const char *user_id);

Get the url to a user's photos.

Implements flickr.urls.getUserPhotos (0.9)

fc :

flickcurl context

user_id :

user ID

Returns :

NSID or NULL on failure

flickcurl_urls_getUserProfile ()

char *              flickcurl_urls_getUserProfile       (flickcurl *fc,
                                                         const char *user_id);

Get the url to a user's profile.

Implements flickr.urls.getUserProfile (0.9)

fc :

flickcurl context

user_id :

user ID

Returns :

NSID or NULL on failure

flickcurl_urls_lookupGallery ()

char *              flickcurl_urls_lookupGallery        (flickcurl *fc,
                                                         const char *url);

Get a gallery ID by url.

Implements flickr.urls.lookupGallery (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

url :

The gallery's URL.

Returns :

gallery ID or NULL on failure

flickcurl_urls_lookupGroup ()

char *              flickcurl_urls_lookupGroup          (flickcurl *fc,
                                                         const char *url);

Get a group NSID, given the url to a group's page or photo pool.

Implements flickr.urls.lookupGroup (0.9)

fc :

flickcurl context

url :

URL of group's page or photo pool

Returns :

NSID or NULL on failure

flickcurl_urls_lookupUser ()

char *              flickcurl_urls_lookupUser           (flickcurl *fc,
                                                         const char *url);

Get a user NSID, given the url to a user's photos or profile.

Implements flickr.urls.lookupUser (0.6)

fc :

flickcurl context

url :

URL of user's photo or user's profile

Returns :

NSID or NULL on failure
flickcurl-1.25/docs/html/flickcurl-section-prefs.html0000644000175000017500000002155712210726306017670 00000000000000 Preferences

Preferences

Preferences — User preferences

Description

User preferences

Details

flickcurl_prefs_getContentType ()

int                 flickcurl_prefs_getContentType      (flickcurl *fc);

Returns the default content type preference for the user.

Implements flickr.prefs.getContentType (1.3)

fc :

flickcurl context

Returns :

content type or <0 on failure

flickcurl_prefs_getGeoPerms ()

int                 flickcurl_prefs_getGeoPerms         (flickcurl *fc);

Returns the default privacy level for geographic information attached to the user's photos.

Possible values are: 0: no default, 1: public, 2: contacts only, 3: friends and family only, 4: friends only, 5: family only, 6: private.

Implements flickr.prefs.getGeoPerms (1.4)

fc :

flickcurl context

Returns :

non-0 on failure

flickcurl_prefs_getHidden ()

int                 flickcurl_prefs_getHidden           (flickcurl *fc);

Returns the default hidden preference for the user.

Implements flickr.prefs.getHidden (1.3)

fc :

flickcurl context

Returns :

non-0 on failure

flickcurl_prefs_getPrivacy ()

int                 flickcurl_prefs_getPrivacy          (flickcurl *fc);

Returns the default privacy level preference for the user.

Possible values are: Public (1), Friends only (2), Family only (3) Friends and Family (4) and Private (5)

Implements flickr.prefs.getPrivacy (1.3)

fc :

flickcurl context

Returns :

privacy level or <0 on failure

flickcurl_prefs_getSafetyLevel ()

int                 flickcurl_prefs_getSafetyLevel      (flickcurl *fc);

Returns the default safety level preference for the user.

Implements flickr.prefs.getSafetyLevel (1.3)

fc :

flickcurl context

Returns :

safety level or <0 on failure
flickcurl-1.25/docs/html/flickcurl-legacy-auth-register.html0000644000175000017500000001477712210726306021142 00000000000000 Register application to get API Key and Shared Secret

Register application to get API Key and Shared Secret

This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication

NOTE: In the pictures below, the Flickr web site is shown in English and the screenshots taken in early December 2009. Flickr upgrade the web site often so these instructions may not match the latest look. Hopefully you can figure it out!

Start by navigating to the Flickr App Garden at http://www.flickr.com/services/ and follow the link 'Create an App' taking you to http://www.flickr.com/services/apps/create/

Flickr App Garden - Get your API Key

Select the link 'Request an API Key' taking you to http://www.flickr.com/services/apps/create/apply/

Flickr App Garden - Commercial / Non-Commercial

Select either of the two buttons: 'Apply for a Non-Commercial Key' or 'Apply for a Commercial Key' as appropriate.

Flickr App Garden - Describe application

Fill in the form fields and submit it via the 'Submit' button.

Flickr App Garden - Key and Secret

Flickr will return a page containing both the API Key that looks something like:

   0123456789abcdef0123456789abcdef

and Secret which looks something like:

   fedcba9876543210

These strings should be used for the values of the api and secret keys in either the ~/.flickcurl.conf if used with the flickcurl(1) utility or in code, with the flickcurl_set_api_key() and flickcurl_set_shared_secret() functions.

You now need to change the key to be of type mobile since no callback URL is usually appropriate for a command-line application or library.

Click the 'Edit auth flow for this app' link below the Key and Secret

Flickr App Garden - Edit authentication flow

Change the 'App Type' to 'Mobile Application' then set the 'Mobile Permissions' to 'Read', 'Write' Or 'Delete' as appropriate.

Flickr App Garden - Edit authentication flow: mobile

This sequence will make the new key 'Auth mode Mobile' and an authentication URL will be shown on the same page and look something like http://www.flickr.com/auth-11111111111111111

Finish with the 'Save Changes' button to confirm and return you to the application page.

Flickr App Garden - Application page

If you ever need to alter or view the authentication, use the link 'Edit the authentication flow' on right-hand side of the application page.

All your Flickr applications are linked from http://www.flickr.com/services/apps/by/me

flickcurl-1.25/docs/html/flickcurl-section-activity.html0000644000175000017500000003731012210726306020377 00000000000000 Activity

Activity

Activity — Activity on notes and comments

Synopsis

                    flickcurl_activity;
                    flickcurl_activity_event;
flickcurl_activity ** flickcurl_activity_userComments   (flickcurl *fc,
                                                         int per_page,
                                                         int page);
flickcurl_activity ** flickcurl_activity_userPhotos     (flickcurl *fc,
                                                         const char *timeframe,
                                                         int per_page,
                                                         int page);
void                flickcurl_free_activities           (flickcurl_activity **activities_object);

Description

Activity on notes and comments

Details

flickcurl_activity

typedef struct {
  char *type; /* photoset or photo */
  char *owner;
  char *owner_name;
  char *primary;

  /* photo info: ID/secret/server/farm */
  char *id;
  char *secret;
  int server;
  int farm;

  /* counts */
  int comments_old;
  int comments_new;
  int notes_old;
  int notes_new;
  int views;
  int comments;
  int photos;
  int faves;

  /* flags */
  int more;
  char* title;

  /* Array of events on this item */
  flickcurl_activity_event* events[FLICKCURL_MAX_ACTIVITY_EVENTS+1];
} flickcurl_activity;

Comments or photos item with activity

char *type;

activity type photoset or photo

char *owner;

owner NSID

char *owner_name;

owner name

char *primary;

primary

char *id;

photo id

char *secret;

photo secret

int server;

photo server

int farm;

photo farm

int comments_old;

old comments count

int comments_new;

new comments count

int notes_old;

old notes count

int notes_new;

new notes count

int views;

views count

int comments;

comments count

int photos;

photos count

int faves;

favourites count

int more;

more boolean flag

char *title;

title of acitivty

flickcurl_activity_event *events[FLICKCURL_MAX_ACTIVITY_EVENTS+1];

array of events associated with this actiivty

flickcurl_activity_event

typedef struct {
  char *type; /* comment or note */
  char *id;
  char *user;
  char *username;
  char *value;
  int date_added;
} flickcurl_activity_event;

Comment or photo activity event

char *type;

activty event type

char *id;

ID

char *user;

user ID

char *username;

user name

char *value;

event value

int date_added;

date added

flickcurl_activity_userComments ()

flickcurl_activity ** flickcurl_activity_userComments   (flickcurl *fc,
                                                         int per_page,
                                                         int page);

Returns a list of recent activity on photos commented on by the calling user.

Implements flickr.activity.userComments (1.0)

fc :

flickcurl context

per_page :

Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50.

page :

The page of results to return. If this argument is omitted, it defaults to 1.

Returns :

non-0 on failure

flickcurl_activity_userPhotos ()

flickcurl_activity ** flickcurl_activity_userPhotos     (flickcurl *fc,
                                                         const char *timeframe,
                                                         int per_page,
                                                         int page);

Returns a list of recent activity on photos belonging to the calling user. Do not poll this method more than once an hour.

Implements flickr.activity.userPhotos (1.0)

fc :

flickcurl context

timeframe :

The timeframe in which to return updates for. This can be specified in days ('2d') or hours ('4h'). The default behavoir is to return changes since the beginning of the previous user session. (or NULL)

per_page :

Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50. (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or NULL)

Returns :

non-0 on failure

flickcurl_free_activities ()

void                flickcurl_free_activities           (flickcurl_activity **activities_object);

Destructor for array of activity objects

activities_object :

activity object array
flickcurl-1.25/docs/html/flickcurl-section-collections.html0000644000175000017500000002313612210726306021062 00000000000000 Collections

Collections

Collections — Collections of photos or sets.

Synopsis

typedef             flickcurl_collection;
flickcurl_collection * flickcurl_collections_getInfo    (flickcurl *fc,
                                                         const char *collection_id);
flickcurl_collection * flickcurl_collections_getTree    (flickcurl *fc,
                                                         const char *collection_id,
                                                         const char *user_id);
void                flickcurl_free_collection           (flickcurl_collection *collection);
void                flickcurl_free_collections          (flickcurl_collection **collections);

Description

Collections of photos or sets.

Details

flickcurl_collection

typedef struct flickcurl_collection_s flickcurl_collection;

A photo collection. May contain collections OR sets but not both.


flickcurl_collections_getInfo ()

flickcurl_collection * flickcurl_collections_getInfo    (flickcurl *fc,
                                                         const char *collection_id);

Returns information for a single collection. Currently can only be called by the collection owner, this may change.

Implements flickr.collections.getInfo (1.12)

fc :

flickcurl context

collection_id :

The ID of the collection to fetch information for.

Returns :

a collection or NULL on failure

flickcurl_collections_getTree ()

flickcurl_collection * flickcurl_collections_getTree    (flickcurl *fc,
                                                         const char *collection_id,
                                                         const char *user_id);

Returns a tree (or sub tree) of collections belonging to a given user.

Implements flickr.collections.getTree (1.12)

fc :

flickcurl context

collection_id :

The ID of the collection to fetch a tree for, or zero to fetch the root collection. Defaults to zero. (or NULL)

user_id :

The ID of the account to fetch the collection tree for. Deafults to the calling user. (or NULL)

Returns :

a collection or NULL on failure

flickcurl_free_collection ()

void                flickcurl_free_collection           (flickcurl_collection *collection);

Destructor collection

collection :

collection

flickcurl_free_collections ()

void                flickcurl_free_collections          (flickcurl_collection **collections);

Destructor for array of collection object

collections :

collection object array
flickcurl-1.25/docs/html/flickcurl-legacy-auth-authenticate.html0000644000175000017500000001041612210726306021756 00000000000000 Getting Authentication Token from API Key and Secret

Getting Authentication Token from API Key and Secret

This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication

Create a file ~/.flickcurl.conf with the two values above (API Key, Shared Secret) like this:

  [flickr]
  api_key=0123456789abcdef0123456789abcdef
  secret=fedcba9876543210

Then prompt the user to visit the Authentication URL mentioned in the previous section (http://www.flickr.com/auth-11111111111111111) in a web browser.

Flickr will return a page that says something like:

  "[APP NAME] wants to link to your Flickr account"

with more information and two buttons. Click the button with the text:

  [OK, I'LL AUTHORIZE IT]

Flickr App Garden - Mobile Auth

Flickr will return on the next page a 9-digit FROB that looks like this:

  123-456-789

Switch back to the command line and run the flickcurl(1) utility with that FROB:

  $ flickcurl -a 123-456-789

The result will be that an Authentication Token (auth token) is calculated and returned. The flickcurl(1) utility will reply:

  flickcurl: Successfully exchanged frob 123-456-789 for authentication token
  flickcurl: Updated configuration file /Users/NAME/.flickcurl.conf with authentication token

The flickcurl(1) utility has automatically updated the ~/.flickcurl.conf configuration file (as the message will show) with the auth_token field to give something like:

  $ cat ~/.flickcurl.conf
  [flickr]
  auth_token=1234567-8901234567890123
  api_key=0123456789abcdef0123456789abcdef
  secret=fedcba9876543210

At this stage, the utility (or library) is authenticated and ready to use.

flickcurl-1.25/docs/html/flickcurl-auth.html0000644000175000017500000000544112210726306016042 00000000000000 Authenticating Flickcurl for OAuth

Authenticating Flickcurl for OAuth

Introduction

This section describes the supported Flickr authentication - the legacy authentication was deprecated at the start of August 2012 and should not be used for new applications.

flickcurl-1.25/docs/html/flickcurl-searching-search-result-formats.html0000644000175000017500000000677612210726306023310 00000000000000 Search result format

Search result format

Searching normally returns what is called a Standard Photo Response (SPR) which is a list of photos with lots of fields, turned into a C array of pointers to flickcurl_photo structs by Flickcurl. There are alternate syntax formats that may be returned and these can be configured by setting the field format in the flickcurl_photos_list_params to a format name such as "feed-kml" for a KML 2.1 feed result. When this is done, Flickcurl will NOT return an array of flickcurl_photo structs but will make available the raw content bytes from the web service result as a C string. The default format is SPR and is either chosen by format field NULL or string "xml".

Use flickcurl_get_feed_format_info() to get list the known format names and descriptions at runtime.

The following code fragment initialises a list parameters block on the stack and then configures the result format name to feed-kml for a KML 2.1 feed result.

  flickcurl_photos_list_params list_params;

  flickcurl_photos_list_params_init(&list_params);

  list_params.format = "feed-kml";
flickcurl-1.25/docs/html/flickcurl-section-favorite.html0000644000175000017500000005757212210726306020376 00000000000000 Favorites

Favorites

Favorites — Favorite photos.

Synopsis

int                 flickcurl_favorites_add             (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photos_list ** flickcurl_favorites_getContext (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id,
                                                         int num_prev,
                                                         int num_next,
                                                         const char *extras);
flickcurl_photo **  flickcurl_favorites_getList         (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_favorites_getList_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_photo **  flickcurl_favorites_getPublicList   (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_favorites_getPublicList_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);
int                 flickcurl_favorites_remove          (flickcurl *fc,
                                                         const char *photo_id);

Description

Favorite photos.

Details

flickcurl_favorites_add ()

int                 flickcurl_favorites_add             (flickcurl *fc,
                                                         const char *photo_id);

Adds a photo to a user's favorites list.

Implements flickr.favorites.add (1.0)

fc :

flickcurl context

photo_id :

The id of the photo to add to the user's favorites.

Returns :

non-0 on failure

flickcurl_favorites_getContext ()

flickcurl_photos_list ** flickcurl_favorites_getContext (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id,
                                                         int num_prev,
                                                         int num_next,
                                                         const char *extras);

Returns next and previous favorites for a photo in a user's favorites.

Implements flickr.favorites.getContext (1.22)

fc :

flickcurl context

photo_id :

The id of the photo to fetch the context for.

user_id :

The user who counts the photo as a favorite.

num_prev :

number of previous photos to return (?) (or < 0)

num_next :

number of next photos to return (?) (or < 0)

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_z, url_l, url_o (or NULL)

Returns :

NULL-terminated array of photo lists (prev, next) or non-0 on failure

flickcurl_favorites_getList ()

flickcurl_photo **  flickcurl_favorites_getList         (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of the user's favorite photos.

See flickcurl_favorites_getList_params() for details of parameters.

Implements flickr.favorites.getList (1.0)

fc :

flickcurl context

user_id :

The NSID of the user to fetch the favorites list for. If this argument is omitted, the favorites list for the calling user is returned. (or NULL)

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags. (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or NULL)

Returns :

non-0 on failure

flickcurl_favorites_getList_params ()

flickcurl_photos_list * flickcurl_favorites_getList_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of the user's favorite photos.

Flickcurl 1.6: Added list_params beyond flickcurl_favorites_getList() to allow returning raw content if list_params is present and field format is not NULL as announced 2008-08-25 http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/

Only photos which the calling user has permission to see are returned.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

user_id :

The NSID of the user to fetch the favorites list for. If this argument is omitted, the favorites list for the calling user is returned. (or NULL)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_favorites_getPublicList ()

flickcurl_photo **  flickcurl_favorites_getPublicList   (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of favorite public photos for the given user.

See flickcurl_favorites_getPublicList_params() for details of parameters.

Implements flickr.favorites.getPublicList (1.0)

fc :

flickcurl context

user_id :

The user to fetch the favorites list for.

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags. (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or NULL)

Returns :

non-0 on failure

flickcurl_favorites_getPublicList_params ()

flickcurl_photos_list * flickcurl_favorites_getPublicList_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of favorite public photos for the given user.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

user_id :

The user to fetch the favorites list for.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_favorites_remove ()

int                 flickcurl_favorites_remove          (flickcurl *fc,
                                                         const char *photo_id);

Removes a photo from a user's favorites list.

Implements flickr.favorites.remove (1.0)

fc :

flickcurl context

photo_id :

The id of the photo to remove from the user's favorites.

Returns :

non-0 on failure
flickcurl-1.25/docs/html/flickcurl-searching-search-paging.html0000644000175000017500000000666712210726306021565 00000000000000 Result paging parameters

Result paging parameters

A search request returns a structure flickcurl_photos_list struct containing a list of results (in some format). This list can be paged - returning some of the results in one page followed by more results on a second page and so on. The number of results per-page and the page to return are configured as fields in a flickcurl_photos_list_params struct as fields per_page and page respectively. This struct must be initialised to default values with flickcurl_photos_list_params_init() which initialises the struct from a previously allocated piece of memory (or on the stack).

The per_page integer field records the maximum number of photo results to return in a single request. The page integer field records the particular page of results (each of size per_page) that should be returned, the first page is 1.

The following code fragment initialises the list parameters structure to the defaults and then sets it to return the first page of results and for each page to contain 10 photos maximum.

  flickcurl_photos_list_params list_params;

  flickcurl_photos_list_params_init(&list_params);

  list_params.per_page = 10;
  list_params.page = 1;
flickcurl-1.25/docs/html/flickcurl-searching-search-extras.html0000644000175000017500000001256712210726306021622 00000000000000 Extra result fields

Extra result fields

Search results can be made to return additional fields in the photo results by using the extras configuration of the search API. (This applies to both results returning the flickcurl_photo struct as well as syntax formats described in the next section.) This is done by configuring the field extras in the flickcurl_photos_list_params structure containing a , (comma) separated list of the extra names like name1,name2.

The known search 'extras' names and what they fields they return are as follows (at the time this documentation was built):

date_taken

Date item was taken

date_upload

Date item was uploaded

geo

Geotagging latitude, longitude and accuracy

icon_server

Item owner icon fields

last_update

Date item was last updated

license

Item License

machine_tags

Machine tags

media

Item Format: photo or video

o_dims

Original item dimensions

original_format

Original item secret and format

owner_name

Item owner ID

path_alias

Path alias for owner like /photos/USERNAME

tags

Item clean tags (safe for HTML, URLs)

url_m

URL of medium size image

url_o

URL of original size image

url_s

URL of small size image

url_sq

URL of square size image

url_t

URL of thumbnail size image

views

Number of times item has been viewed

Use flickcurl_get_extras_format_info() to get the known extra names and descriptions at runtime.

The following code fragment sets the extras field to the single extra name original_format which adds to the the search results flickcurl_photo objects fields for the original item secret and original item format (like "jpg").

  flickcurl_photos_list_params list_params;

  flickcurl_photos_list_params_init(&list_params);

  list_params.extras = "original_format";
flickcurl-1.25/docs/html/flickcurl-section-exif.html0000644000175000017500000001405312210726306017475 00000000000000 EXIF

EXIF

EXIF — EXIF photo metadata.

Description

EXIF photo metadata.

Details

flickcurl_exif

typedef struct {
  char* tagspace;
  int tagspaceid;
  int tag;
  char* label;
  char* raw;
  char* clean;
} flickcurl_exif;

An EXIF tag.

char *tagspace;

Tagspace name

int tagspaceid;

ID of tagspace

int tag;

tag ID

char *label;

tag label

char *raw;

raw tag name

char *clean;

pretty-formatted tag name

flickcurl_free_exif ()

void                flickcurl_free_exif                 (flickcurl_exif *exif);

Destructor for exif object

exif :

exif object

flickcurl_free_exifs ()

void                flickcurl_free_exifs                (flickcurl_exif **exifs_object);

Destructor for array of exif objects

exifs_object :

array of exif objects
flickcurl-1.25/docs/html/appgarden-test-app-page.png0000644000175000017500000012101312210726306017345 00000000000000‰PNG  IHDR¡HgâÔ¡ÒIDATxÚíÝÿwSw¾ï÷ü ÷)ëü —óCh{Êiïêºk•ÓÕ5–s;7¥™“.z9SÚ’ÒhS|²&0^±9‘'Âc°sQf žX‰Û#ÅÎH+h‘­XAF²l±±Œ,»Ÿýý‹¶dòÌZ…%míýÙ[òÎ~ùýù|öOž<^„78B(€ !@€ „¡B„P¡B(€úü% ~PüB(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B ¡B(„P€ „@B „¡B(„P!´{þ÷ä±þ‘Ú¶+ÓÃIù¥ú\/ìò;Bè¾ÃLyÖ743¤‡É){*çgËN•qH¤™àØÌÉÍ^“©¥ªUáÜ’Ùój=g'e§m-™<¥ºýeBÖïy-¤ê.·#×Tp>:¼¤~®ÊÐQxŸ­±­§®ÉN }„Pð¼Ôo~)ÿâ_¼šþ¾¯|Œ¶¯§¾ôµkzóå<Æk©¯å¯z8¶ÿ”ªÿíÛ‘ßüÂÚþÍm~'@Ýo˜ÉšUÅ Ñ%Í‹9œÓœªéèÑð ‚ZÕ%:uÔ¿žc£²e­Ã;áÑrì„9:Üýµ1¡1O[c¹c1£îêäY38ﬕÜùjÛ‰‚ ž_%´$ÿ¤ªœg?øÒñËpƒÑß¿ÿ¥çµ¤ª|fŒJhý›¯­e®ËüBw%úþ÷w£÷^¾ÿMÆ×Æ¿þǤD+’ùæžÌ§îÈ?ûÔ÷zôÎî ¡ÿü„PBŸ2Ì”ä¼ÞmV©\^]–\.'ËËPAS¯b¶ìê„NM†CChUôÐyjX–VËFriø˜ “£¢µÙ'2Û§–˜ ¹ž×BBè°gb¢Ù³žå´Œñúùá>FÏÊr+¸ŸÛ„PðÃÓ;vpúT2»ÂÕB+wå¯Ûª‰3²òRuÁ­Ê/¶Åä7_‡W:7¾Yt+¥'³ÒxÑ•PB(¡Of´¥a£b9Uö?_2*‹Geî»ChkUúÔr'F3ƤEÕܤÕCé 3„ã>O ÉòÖŽT—Ì×ú¦JN7ÛÐ×BºãêË­ª{™–—®ËŸs»ñNõY³û͇î+!ü°Õ»½¦»Ìgrã^M®«q…ò3Ã;‘E™¿~'€õoîªê_ÂYö¸Z6SÙõ/;ú©<3wn;!îì×íAjwó¾\‰e$öuMê•{òÏÌXÛO¨ñ˜+²¾ûlËw²29ãä㓵®Ëf†?íØ½y£P’+£_ÉñÓæ1û{5÷ì°:ÆßzñcÉþ)+ÿ¬/­Ô$¦Úüwj¼éñ2’¹·ëÎùDÆYÏ/ßÿZ­£æT”ÃBh/Ÿ—÷xíîÔ䊱íOãe~kJ}MCèìy«Ëlð5UY4f£›2&^Ú»;nîZŸ§+î 8¯wó=/«ÝI…l§†æÌ1›;]^ó…P÷2ÎrÃþå¶2Cæ¤IîsJŽFEŽ\¹±i>¾rUä°z<¿ù‚BhgÿüͶ¯â{ÿzÇeÏ&ªûhc]Þù™ù¾¿zÅX÷?YãÿÅ?.¶UÝñ«|*Ó•§_~ÏîÂ?ûRÖ÷Ú§MvG³2_Ð<,=–ßí1ŽTsޝs þvô¾º½/ǶǘԛO÷yí}¼‚ßB_§‰‰ž£ÖŽ&[šæ¿…‹sO}Œ©¦*£­Þ^ë`GÛ ]ÎZíð>B(pÄU}ã”Ò¯ºªÇÓWÝÇõBÿúôWÿº(W" ÷ù_|-u§Òçš¿úÇ/%~óždRYùûŸí<¤wÛÿl½çε„Óíõú½Ç]Ûú·ïg%ûmU¦cn¥ò_üCF6žrùP;÷äïì÷GJOõ94î,z¶7#±TI²wJޱ;¶Ó®¨þýÉëÖ„Måú¹˜gTuòÎ=µžÏ:†Ðý|^¡ß…ÔŠD?ð¬ÿ_p7cB_—0£ªªGCgÔÝãµ^yª¤î칄PÐͶȡSfð<ò'ch¶ñBBèß ý]Kí®²?Kš·oÑJN ûëîn¥R“³vïäín³â TªÂèÜfsÅ# }Þ¶þí+¾×ÖIçµß|³óTËïBÃ&Lj¨.³w U¹£Â­ñ¯£æ÷ùÈœ.Ïw:uõýÅWVö†ÐOUaÜê*»£ù½;Nwå¿ø?+7¼{Bè>?/ÿw¡ø.|æìCv‡ßWB(!ô)h’›Ÿ—Õ­Ö>_ëQ«*³×FåÚ\Î_%„€n ²ªŸJ\uÃ]ÿÒ}+ÿÀ!T- gFØëÛ¹èÁM]©+U{,óNÕ-!wöo©ÒßÚ3÷^ówáu«} ÉõÓý©9]{i­o¿Ë‡‡ÐûΤDac-Ý€ÒÕÕZ~WõÊË~S’Œwìçî®l¨1¸ñÑ„ï{Cè_w á×Cn§S“ãvî÷óê¶þÆL—mƒJ}eB@›3¿¶‚ç¯U7\õGñ>ûñ9‘£6„jÝ_ëeüh¯AÅ;Ù¾ü/OÚ“õ|æ»ç;ª··ÇÓ=Ø;ö1Þö»|xX.:a9¬;®;±Òc3w5™¾öµÚÏOå¯ =fóÜžs?U§j¾?NÝç絟ï¿«„PB(!”Ï €×Å«nõ3£Bè¼çñG«?jõmÜcŸîAe[~ó‹{[—³Y¶çgÝCØ/c÷ŸjùN=èœn«ž¶x»7Œê¢N¿_ëŠZí0¸{ï®óœÏÏ®{nOÓBƒ•×l,át_ÛŸàì¸ûý¼¡„PB(ÀONEä€8ëã@7ÝLJþøÃwÇÝ«zó뎷±c÷h×î·Y'ýýð¹¡&BšVàØôÇÿ|ÎíæzåÛÇÊfX¨tƒíß ß{ªå;™\÷Ì»Ó}ÿvÝ1¤fôŽñŒÉñáÛ’QãE76Íõìzº¹îBÝÏ#ì>ª!•Ð}~^„PB(!à§æÊE·+nC=ŽýÖéŠûdýÉBÝqá÷Ëœwî‘ù™dºL^sãƒëÇ¡:îÝvgiµ&òv/a÷ÛÛmÝ`÷»|G•;ž.Âúm]:í•ÔWõîÈoìzòNÛòq'lïB½ÇÿŸ‚÷QõLèäVB÷÷yB ¡„P€Ÿ’úÿ¤D»wÝÇ×ËOµÎçBõê¡{˘ü&Uó„/ÏøÃÓ]fÇÝ­:ýt]N¯Tzf‰õ‡$½KjBnÜ3o-²[)Ê/[ޏx¿Ëw“ùoƒòˈº=J¡.ÚŽlTê2ÿ§¬ÿÇX`L莿ëñ?|í¹Ïè®d®Í„taîB½÷UÕ?“ë{ÜûröÂÆ¢îïó"„B ¡?%'ÏznÏ¢OPd?þò©×¹ßzCÛûµF!×øùëŸyǶßß3tr°j^ÀZ i¿T•¼°‰vþúþÙiϦ´ö÷¶|we:òic,Õ„J×î9ûÆðŸ¿Ó''j{}ÜÜÊiX…6xüÿêè:!Ò~>¯ý~@%„¼Ê6*ê-ªâ¹ÛáñSp'¦éx™q½„P®W€ÊIB„P®W€ÊIB€ÊI€ë „p½„PNê€ „p½„PNê€ „PNê\¯!€ „PNê€ „p½„PNê€ „p½„PB(B9©B(€ Àõ B9©Bè+eKfc£2<:)¥àk-YšR¯]ËÈÎ hËVu«û2-M¶´–õsY&‡‡ej©Úqùõ´ Gb’Ûj=sÛJó×dxxTæV5~OB(×+Ok'“#GŽÎÏ–¯k2zT½vtX¶~Ðv´dnà¨jÃPçí´V¥Oµq cUmIŽ©ÇG‡2×ûp)bì×@zëÛW2¶m§S×^H ¡œÔ!ôµ4wþ˜B „@Mb'Ìçµ´;;¦¶s"Ö9àµrFèÍí˜w–ä„z|lx©ãz[[%IÏ/Iuç+´™a÷9*³å¿+!€ë•}SAî”^Mfƒ£RjYÝš½ûxô˜³}÷8„PNê€úZÛ’Q#`ž’%£»jU†¬jä’ÖBOf̪¶,ÇÜn©;ËÖ˜ÒcC²l½¯œµÂÖTÕãÜè‰ÀzUpË™Ë /m¹m9Öeì©DÍåÝî¸zhÌ™Ïmå®áî˜5Nô¡w;93´öM9ë\=åiCøvW'ÏšãJ­`›³Þ30WnÛý”¬pš5ßwêÚ²B­ãxv4ãŒq²‚餯ú B9©Bèk¨Uš2ƒ“ eö8Ì\Ì X}“«: å1’Cj’ %§¯œ¤9Ñ<÷¡=Œ=Ý ¡þ1¡%9Ä]?„º¡õüð5É,—T5U“nã;í`~JrZษñ«Z`_®-{ä9‘Ò‘SúröqÃîüÀ1+¨êÇÆå»ÉÐ53¨ZUÀåÉóî-VB'ê©Jì”}‹ÕµwËÜ£¹öz*æ«„Æ–¯W—®É‰£v͆ŒCµƒº9pèxÑÕkÎEëÖvNõ޳=!±LÙß.½½ÇüÇ1·ÅÔ!”ã¢%[[[J箣šñú–h&úi©Ùh·ªUÙÚéwö˜­V…?}FÛVë™÷CÓ”çslÌJè Ééû­Ö[Uëoù–±B¨ ¬;öqÒ¸- ¡œÔ¸^ÁS‡Ðc¾‰—ž„…Ðn/„PNê€ ôB[Öm›!ØB™·h!„‚ÊI€ë „!”“:×+@àz¡œÔ!@àz¡œÔ!¡œÔ¸^B(!ôÖj6¥©p,B¸^ùÁÔò 2é—þ~[D颴~í5$—ZróéÞ›ŒöKt¦øƒF1)ƒýÞãÑ/ƒ‘™Hæ¤ñ}n¥äˆôG“?x›Š¶Óª¤Õ±‰J¡ÑûºêÅE‰E­ã:(ãê˜6=Ÿïb"æó±Ä¢o›•\R¢ƒÖç12!…zËýÌÊYw½ƒ#’Ê×øÝ&„p½òRÐì„yá‰ÉB6/…|VâcæÅüØBù¹o¯YLá£ð”!tF…åÁDá¡3Æþ'’’J&%9“؈pÆRžÐôã*ÎDTàJü !´¸0n}?fDó£ò¢D°¸ªåÌp—ÅBAÒVàI­ý‰'r’[0¿—Ñ™‚'ðªÏ>–”|>-#ƶ'¤f­7b„Ï1Içó’š0ד,6ø'„p½òCùæ›oä‹/¾T*%?îí}Í‚$¢þ€a„½¨~‘?"¥– ŽõŠTê ©s²˜+HÝ õrA²‹‹’ÍEk‚\­$ùlV²J¡T³ªªM)¦Çš*”¥Ñr·WÊ«u«uå‹Á VK*…¼z-+åZÅhW¤K­•ÂÚÔRm-‹¦ºû°h¶©{J1°Où™1#Ü$òu·²×åS·í‰G=Õ`õ±·[I{ªÄ½‡ÐÚ¢:s ÷sY1n£Y4‚e$‘w–/$ô09&åVK²ãúÆÍЩò‚±®4аªÞg5{½M£bÞI¾T•kB('u@}müþ÷¿—¡¡!¹yó¦ 罌ílÌŠ_¢ µW,ëeú4#ƒ¾®©ñB]²ñ¨ï9=,äëv÷ͱÀk*\ÄU·K«ÂhÓÄ“FQÆ]_c VxÐ$9Òß¶.»:¬’.ÄËŽH®Ö2^K ¶¯gd¦Ð%„FÚÃUË”š]Á“FAÆ‚Ç`"kÏz~¦­-ñlÅ ^‘¶×GFü݃dzVi[¶$iýA¡{ûÚ?Ó@ÕP…ÂXdLËšú<ÕzÝZLÆd|¡¨l‡ãÔ© ®Õ¥\®ùºßê•m£«¯õ‘„§MgýV\}‡ÜõUd\?¦ê34Cè„Pã8üã ¡\¯<³¼ê~¨‡oõsbbBfgg{èÛ[ˆ°ÃN"W–z¥,ëIø‚Ó“fÉ ’ci5¹QÑèé­hå&n£š|Æ6óšY 3+\cÖã'¢’fWØlMUÎÆ­í˜UËZÎÜn4¤j/;‘.™•²zÞ #z÷Ys,iL ZË ¬ýN›z¡VhÒ+±Z¾Ë1Pûµ3«„ÙŠùÇ€bÊ<†‹ÕïŒv ާ­P×’œQñ‘bÓ=Ö3ƘFu|&ÌPš°¶cüÀ²9ÿñ™PÇ«{ûÚ?Ó¶*n[·ß™¶ªbsŸ!4¨`ý±Bÿ¬[µE÷nÑ åzH7lõ™ZÏ•ScFu=]¶ÿðR“xΰr~$„p½ò|}ýõ×òå—_úCCQUÇÇ{ûØKõ=4»IJ|!-é…I/¦Í€3—ºšT*)êÝh’26èÿ6­J˜ ‡ j j}‹é3ÄÆóV5ËÕòƒáÝq6öÇ}¡Ò 'Q§’I=ËGCƒÕ^!4i…ÐîÇÀ®Üå}]s+•šÔ¿MZÕÞÕWíszQRñ§" |æ8I3tÁ¯d¶-ߪßAãØuÿŒö3ž´SmýôSãçV«ÕÃÄDf¨ÒÇúFSR#î¤3ÁR°ªs%ï8…´¤Õä7Võj,Yp†=N£mÒ«Ëú&"ʧS²X¬[ã#cRv^«K¼?<ܵ/«º*Ç­±‚OBÛ'&²ÇºÎ¨Še·cв÷k|Ñ}#¯Žõ |yk®} f£$ ê¶5ÅzkŸ!4XÍ,KÌ:>ÝÛ÷c…PwܮݽØý.–ŒïâHªäV²Ƭ?"4%=è>]Ï:@iV²2®*Ë5Ï÷×8þ#/ÏLÆ„PNê€úÚÑ'%šœœ”?ýéOòèÑ£žßW^ˆY“ßÄ%[(ª®¼9IX·h±«LÁÒª˜3“ŽÍHIM^TÎ[÷ÕQ •SVÍ«Éf4)eΤ8¥¦=&T[Le¥Òh™÷ ÔǦòR×j’MŒ8ã›Ö ¨‘ñ©x^ Ú,¥¬n®))kª[ë¢µÝØ¢ ÷BUPL©®¬i½;kJ&Æ¬ê® 6=ŽAë‰uOcŒª æj’§¤¾T°mª =hNš”.V¤^+ÈD¤?,{ ¡Öñˆ/ªcWq*Œ jlä^íû¡BhyqJÆbÓR cêÜHÍr»¨fþM[]…²f0ÎŽ›ÇaAÍ\+.˜·]_4^³¿7cê¾¢u­$‰¨ûjÕÒVe5k|‡­ïI²Ä-Z¡\¯¼„ZRXˆ›üŽAóNÉèö˜ä¥’›ñ½G±¥†¿»¥} ‰ sâ==ÑòÎø½x^3ªc‹qÿ,¯±™œ³íòbÜ×.o8n Ô*ðzg‘ާ¬®ªfõ¾Ï‰{„PÕu|fÑ×½³ó1x²_IækÖ¤I*xzo¢ŽQªP=ÖÁvÚUZ#„ZA׻ωl¹§ö…}¦Ch4ôv'Þ¶8ËNGŒÏ)R]l?®ýž g³" ïlÈѸ”›žïi2æ;ž©¢æ¾–÷­Óž  „P®W^â0ÚPDMkì£ cS-¯ÞÓh¿L³a®«Õa[ͦ¿»pKûÓ×Õ›¥µen§§vYË6š­tÜ:c¿Žm·wë9µ¡ÙÚûž7³ë§ºöq ]¿ñ=éðµ¾CͿτP®W€Ÿ„’ªVþ!]æXB9©B(€ Àõ B9©B(€ Àõ B¡¯œVYÆÕý*#ÙÙY›² ß×2š”¼~ÈtO·òxþ’Œv¾%‹~«“øˆu;˜Á¨$s•ŽëjiEI¥Ì[¿4KIãÖ"+ ¾!€ë•&7¡ß·qD ÍÀkZθ÷äXª$åô„DÿþÑB¨~ÏÁD!䵺Äõ{BŽI:Ÿ—d̼¥q/Òuúë c?š•E‰þAJM¾!€ë•¦YNÁm"[ó=_N©ç#’Óôû\Ö¥RÓ|Á°”ÏÉââ¢ä‹5§rZ)•¤Þ°ïÍÙ’Z¹$•ºµŠ ´µF—u>.ÿüÏÿ,/^”jµÚã{ë’Ы‰#)3y+Œ±´ÑMw%®Wã¢é¯5ŠF^£û«e0¶ ÕµwLÿ9ž7×Ñ0+©îz+S#z·ÚNë0–Ó$9âMi¡å…1£ Zö½|BÍÁ„ÙV_4ê®O½^]™2~Ϋî¸B¢m{zWݨ¯cRl˜a;–“|Ýl{j,¸žq_ûB('u@}åµZ-#ð$ ÙÞÞ–B¡`<®T*=½¿²sªžÆú¬êh¢`V-‹Óz°ÓÇ„¶$;>h†.kY­`V#ÇU%5W¯ šaUËÇ­“’géÚ£®ë¨-Ž?Ç­Êl-gÄhH%´8£ÂààŒ¯›pq&Òöœ­0ãÔFqÚØg}Lh£8cncbÑÌuk›ƒãfäfiÁlS^Sû•°ÚgÛfÉ Ôc*°7‹U¯,T¬ã˜6–)6ø!”“: „¾>Òé´üûÿï}ÏݼyS®]»ÖÛ:y‰èã?Êf5Q“ª‚W³ƒBÍñ™z°\XLËÂBZÓ3Æ{#ªjVêb>1~6ÆhVZª{oÔ¨¦Ö÷XG¡­’©– ßê}-,„&ín½V˜LØáÑ~\ÐTû¢Æ~ÅU»Ó ’Vû`„P¾ëÖrú뱉Y̫9!”“: „¾n¾úê+ùÓŸþä¯ú©jh,ëq-YŒ©ðÑšÙm6štg£uB¨5›®Ø"‘ˆ%*###2±PRc+K2bŒ/ÍÝyõ}r£¬;®su”ô™xí®¿VMFº„Ðþ ',»A³½;îÞ!4"{¦ÜfÁÅzè >.ÎŒøÛ>‘èȘjÿ¸Ñ]·YSû>æí®‘…•PB9©BèkäþýûFà©ÕÌ.¬?6ë“þô<¦Ô b3É £’—­?i¡v3–õØ|:%‹ÅºñsÚš¡ÖèÞ«BYÁ3Óœ@¨û:ŒJ¨ª’–½ãSûÃCh£`V0ën`ÕCoÿÈ‚g|k{m>C-ÁwÄèbl¯·^HKj±(Ôíb’‰Uí5÷©^Z4B¹3N „rR„Ð×E.—3ÙþðùðÃå‹/¾Øç:Ô̲öD“Ϧ¾’µ^–ûâ+)oÉÔ¤õxö¦ÜŠÐSÙcå•¿Èí½—&¤UVnÊgz{õã¼%•çºþŠ,ÍM©c!„PB( „¾ÊÝq++à˜¦¾üKÛ2Õµ[¾ úUþž d îsŸ-<]í°Žå…)çù/–:!tÊ{Œ­z?¯ªÅöó_È2!„PB( „¾ÚcB«òÍÜgž™”b ËgáÏÓž×ge¥j¾¯|¯$÷tåJH¸½¯^»g*ß—j‡m‡­£ðç/ÜPü"C¨§Í÷+{„Ð/ÒFwÜêý²³½®»ÓñÐ×U*Ý3TìÏ ²,_xBh§Jèýò½ÞÚA!€úcOLäëè ìŠûÙ—·=ã9ÕcõÚgÓžñœ÷‹’ž›ö­oÒêJúåͼoeû:îËÍÙÏBÞÛ¡›peE’FU_fÚS%¼/ééÏŒ1¬ú{¿ü¦ävm]š3÷C¯²~õg—¾šmÛæìÂ7¾j§/„ª0¾ðUÒÿž/æ$_ òžGEn%§¬6›cBïÒ¡Çbr:íïraIf? ¼>•”oVÊ„PB¡/g­U‹f˜³ƒæÜmOWÜ¥Ð0Þ5µ$_~6œì`ws¥K÷V—ÔÎÁجÇ;ŽRï&lwaý»?Éo¬ÊcEnN»Ï'o65Õ¥Í_,ȽÐÚÉ”Ü.U­öíçx´ þq x¼Kùªëºþr B(!ô% ¡Jþ«/BºÜê³âz«xsÎì¹ÁyßxÎ[¹ûBnå ²Rø‹,øª›ÓκÛסfˆU}æ SŸÉ_LË­•ðn¦Å›³mUÚòòB YíV][§½añžÿýF(üê¦Üúóœï¹äÒZ‡ú™|usIÒ_*VèÝßñPÕÛ@­—dzÊ_þlê ™ž»%÷«+2ëÝæg³rsé–Ì}1úyBA „¾T!´R¼˜|¨lT½UBï$Aa!´²’öw7M/Ia­¬Æ:åVú–üe¹ kj¼cµË:ôçW<Á÷‹?º·½ô'´ÎUËå…/ÚÂâ’ œo8ýâÏF÷_oõqÎ ›FõV¿H[!ûϾuÞ\q»Þ.ûÆÍš]ƒ÷w<ÚC¨Y¥öN¥&&ª„t¡þÌ6ýŸYølÇ„PB¸^ù‘C¨Ñ-Õ;ösî/R¹÷¯*yk­Ú5„gÑõúböKU ,ú&äéB½!í=;î=Y˜rƒá7kk¾`éÌÛk¾p:{³¨Œšc)¾’¯äKoµò³¯Œp럘èÏþûš–ÿâ›ÅVŸ@hÇ£C½¿ì ¡öÄDþÉ¢Tµö«ùꫯTû¿ô´C‡ÝG—\Î „p½òCh ëígúÄ;ž®ªS 'éñÈåôl÷1“jRòs ¡þå§¿üÒú™êÆk²)ú’Þ°ªÛÔ'6úl²§qžzøóµWM¤Téx«÷V*½!´²ºÞ`íd?÷Yå¼B(×+/4„ú»¶vžP¨[€4&3*å›ôWj8‘U©¬®´ßkÓ;¶Õ·-}l埗ä/ߤÒ[Æþ‡Ý¢eîÏ7ÛfǵgéÝßñè<&ô ßXÒY™žM˽ÀóúxÖ¥¿üEݓԿ?7‹B(¡„З7„ú»•¶W»vÇ­n:ò¦6;…ÐàmSŒ1{tË­ÂæÔW±f— ÞÊ$ÐVÝ#u®ë¸PkühÏ÷ ýBþR¶Ç‰îçx´ß'4´ýžn¹Å¥¹îãA¿¼Í}BA „¾ä!Tïθåòý°Ðw³í&æøÇU› sÉ…o|°Ó:ôðöe`üäôžÝrýar!_vög)ù™§{oH˜­–äæÜí!î‹9¹]¼ï ÞnÐ^X’[_ösjNò%÷×ÞGEnΆßZ¥¸ôeà½ÓέZJù›þЍµî¹ômÿ콄PB¡/g}Nª÷å^©$%Ã=¹_Ýÿ:Ê÷Ì÷ß+W^H›+å{²¦nñ²ŸmVï—Í}¼WþaGÅÞÎ=©TÛÿpp¯´¦î9j®»R}ºýç¼B(×+¯nÅ+‡ó¡\¯BA!”“: „BA¡\¯BA!€J!„PNê€J¡ „p½B!„PNê€úŠÑ4p…žèßÎ „p½òLZ­–lnn²Ð•þÑ¿+œ@àzå¹Q*¢èV%€‚ Àõ B9©B(€ Àõ B9ø€ „PNê\¯!€ë „rR„P!€ë „rR„P „rRàz¡„P „rR„P!€ë•§ÔZÿZÞ;}ZNLÉv×eIêÒ»òîå¯C_pûºœ>= ùퟪ™OT["Rx´¿÷•R—Ôû.K©¥·6%59%ÅGOsLSò®:¦“ùþ×d@=ùëuõxS®_xWmï´ß»ïÉåÉŒóYl¦ÔóïÉ×ÕÖÞÛ~†6ÿ(ŸE5c|÷¦‹Ûû^o)3-)ë}Ý?ïm™ºpZÞ»ž!ß!Ý£êm™œZ’VH[ ¡œÔ~â×+d:b ½.¸×å²ZîÂd!ôõüõ÷Ô:>‘Í—`¿n¢ÂÝ»×÷Õa!ô²\¸”4ÞW˜Ô÷çã§ÚŸjæ²zï»’Ù „“â”q¬' *<¸m°O¦åë¯S’J™®_¾`,óÉm3À¦ŒpßKz–6ÿŸÅæÒÇFÀ¾½Ï?\´JÓÆ1š.=êáóÞ”©ÈùÄþ?üwHßÞǪmïZ¡7ØVB('u€ŸôõʃüuãyàÒ€ÚBÓfI–2_Kæöº´ThÒ«{×íê^ëngT€º-TµiZU›N_Îtfżd¾VëZÊKµCèØ®–d}Ó½X°^’âú¦SQÚÞ4Û®b~Imÿk¹]Üô¬ç\W…€O¾–Rñ¶z}IÖÛÛTmùÚjËfË äÕõuy ?¨ä“÷Ôþ¼÷‰<Úc{aæ=£¢º ¹Óõü#tm&­p¬pä‚zþ½OnmJèí˜Ü3 uj³ùém®îñ}è¼6×ÍÏåQUnë߇¥‚l·¼ØR¼m¾w)_’G=~Á?\´¬Ëí¥Œ±\éAxå·µ½)KS—Œ?¯ªï†¹÷®«ïaµh|Ç|ûú謯Wï¾ ý;­o£Xí »·[?Å’û½|òhS-WRǤ%Õ|Òø=˜\’ÍÁ¶¿ãûÖóq&„rR„ÐW[U>~× 8›VUîzÞí2¸þõ'n¢§ ºôà‰QÅv#U.¥ÖC/è§"Áeß í^šÒ—‹¤Ì‹õí¼ÆôjÔãõ’DN[A÷AÞüÙãÂõÛ¾.¯þí©à÷À ˆ“ÖþØ]aÌ×¶Í}yéž@ì÷¾ûñR÷í…ìï¤#IOÓµäëKúvÍÐU´*œ¥`uð¶N/­‚T«$—ô6|r{Ïlskóv[›ßûøk78yuÝ¿–ù¹^×úƒCKu©½<Þ®›Á²ëg¡ºÉ¾çþᢚ¹Þ¶°nºùëÞ.̸ ¡ßEû%կͨÿG¥dÛrgBÂy×v·Ì? ¼ëþa`;oþ®dòÓ¾÷|t)ÐVˆ“—ß ¬÷’¶÷>΄PNê€úÊ[7Æ?ê]CõjPѸè˜*š¯ofŒ@öîÇ)ãB»U]²áÇRÕCÖóâ9ÿÀ ]Ó‘w;v9´·3U°*¨ÛV7ÔébHwÒ NÈ¢Q5ÔCò”æª__¶B°µýw/KqÛîþjvëÌ?Ò»¼N;kÛ3îÐìF¼mÄËKÎ~ÚáÙ®Lêḵn†sLg÷í…˜ Þcé ývˆÖ+œVà¸ôÉ'ò‰ác¹4`UÍ\o¹ŸChPj‡êmó¦JíÏHÿ£ÂåŸÑ^ûgý±B½7Y4?åߵþ8 ºs˜ß‹’u,,}ât±íúY<2¿sÆ.¬ý¼ðIÆ Éúøcó³ßéîúÉ»n0··¡ßu½ ­¢¨í1 KŸ¼ëü!ì¼Úݕͱ¢aÛèþ2?Ç÷<ÝÒïíiýwCï>}ÁWhkqÚüÈämëóÜ4¯œõv<΄PNê€úª³+=zTu!l=Z7/–?^ò\T{Ç!>2/Ø/¥œjÒ'Kî¤;Å®ãõnž·eIu³L¥’2õÉ%_¥ÊBõ øwõйnV/¼gUªò‰Uá{d±;™’Ûª h&£$ÍJTj½e…Þ ž€øÈ¨¸™cô¬Ð¤‡Ä§¤PÝVû¾-ÛÛ-+ \2ƒ9Vñ‚1ÉÒ^Û{Ò!ÀLæU¼KF1«ÅæøÚÓï^H$"ž Ц2E§‚úàvç턯´Úljcì©ó™›•åOÇ}Ïý³ÚI–œãiT­Jok[ïB»dtqM%§å“Kï9]Ž»}-ë{4]|d}ßTØNfÔz2ªê’L]:ÀT…ü=O07·ñ®Y¡÷¼nŽ©µºÕZßëRÒúÃÆ…Ë’Ê«.æ­Gê³ïô‡“ß!u<|ÝÒíï”QÁ·ŽÍ€U÷¶Õ®jœñÉÖ×ûÞd~ÏãL夡¯´Û×/´ÏÊj\œ›] 3zF]H·¼Õ'«ziV /ø§Qaz7lÜâ¶ê~ø®Ó÷Bä’ ¼kþ¬ÌuG$9}Ù„KK“F¸M¡Èœèg;o¬wß{OÞ³\PA.ò±jSK2—Í ÷V`B%gvÔVU’ŸDÜ.ÄÓ·+äÀ´qÁÛS=ë¾½°I‰Â'Û1+„ªÊ¥W"í çÒ¦oR¤ÓuóÆç¤Bxã½m6ÇúúÛ`‡ã©@×½öoÛX—g’%+L•ìmO7Þ÷T ¾1öëô{z;ºfe[ÿ™³.ë³_pÚpAm?"‘ËÉ*¥9¹SÊèÎmmÃ3fÖüYݽ­à}ÙSI.¤®»Ý‡&C&qêÞîÖñpB¯Uy5+ûÖä]S…ö¶úÂq{U·ëq&„rR„ÐWZõk#(¼w9%ÕͪT«Uã߯?¶«ŽÖ$Cªê *Sª²f^ä{º¢Zá¡ã™Þ—=3“šÁê’Õ]ñIh :ítÙ4ßÚSAÚ.˜«ày>y]>6n‰a^ÔŸ¾ôµg×­ª º}‰šyö²=nUUínÅ¥–wæ_³Ë®½?Ý·×¾f7â`µ»0›“…W8UZ½«°Õ­Óé.êûc@ç1¡Þ6›ë÷w^úø½@uïIOûçíjjì*«ÙõtÀokwU5+Ý>‹íö.½¦=©ÏæòÇ’YÔáø^²ÆÒZ!ÎsûoEÛIµžRRÍ||9åÍBòãöj±gÚmÎ@ìN¦dws6ÖcýqÁìâh«B=rûû®WJ»gB('u@}…Ùc/´Uê¶=3\˜3znSVôwO5gÿ,YÁ©Ã¸EëÂ;2­*=Ûäöô%«âÚឤV—Dg$k|¥·Bdwã¼ð±¢¿¾n޳»¤]5Þô‚õþda]ÍÈûµùXmï=Ž Ú5³é#ÕtjÀ }›Þ.–ö„H꾩몛n×í…Í´»·|"K…’š5uI®[cfí0žŸ ¯pV­@c´Ã ÷§ßSalÉœáÖúZ ›­¶ãìm³¾"úgäÌ&«‡ì|H{»íŸ·«©·Ûï{žî¶ú±ÞT3eÒêê|yÏÏž}Ö Í%#8¾+“KEÙ\ÏËÇ<ß¶‰‰Þ3ƯæõY“­ñÅnEÙú~[m³û­yœKÖxÌO¾V3Ϊ?´R‡‘íÚn{\©k[Ý”Â××I‹ôß ûwhJí‡>«­¯­vì Ÿ¨ÏOÍØ«fÑ5ÇY¢‚g÷ãL夡¯,;@FBºøµÖSnR“Æ|üž;“í»ÖøÑViÉ *Æä-Æd:ïv·øH¾þÄÓõWÅû8Òå–#ªò9à7|lW»¬*–3Ãi²àéŠyA®O^vgL:“æ¶×éøußÎsþ¼ž¥ÍûÞ?ÿ~n?êü]èöYø¿'ÛÆñÚk9}}žòþ™ú{{ÝÏŽínmwþ\õÉŽ<Ç¢½­Öñêñwç !”“: „¡\¯!”“: „¡\¯!€ „PNê€ „p½„PNê€ „p½„PB(B9©B(€ Àõ B9©B(€ Àõ B¡@夡B(×+@夡B(×+@Уôºøù²¡/ÝÜ÷û+U9øó¼8]‘ús\?„–\9wWÞøù]¹²üøXÿcÉÌ×e}—c p½„PBÕÓyJ,ïT¤±ÏuÔo­›ï}{]6žã²øaBè…_™Ÿuß­Ýç»îÝ9c¬{Ynhk€ë „³µiT&ªD¬üýþBèm7XÖŸã²øaBèÅ*„jš2¾C+2O¸^B(€0Ùñ¢H¼³&ÇßY6~>x©¾Çû¾—­¦¬WweW=Þ]¾ß%XîgÙN¶ÇÖ:š²¡í¿ éîNK6Ô{×·v¥±G7ц¶klg}«ÕÃræ>µm«­ú:v÷ åûXV¯Z˪íÖwžvÝzáöcóóéaæç`­W ]vÇ ¡TB®W€ Ä#9ù¦HŽ|Úµ¹5«Z”l‡°–ýüž¿rúæª7ƪŸå–ûY64LU59sú®§Jë®ç£[{]Õßòö÷ùp£­+ðÚ­ªy{Ù¿ìÛE‰Ýn:áí£wômåÂ¥5ÏrßJÆ dõ•MyëWÁ¶åÊíö¶ö¶¬Ú¦ÞUúÍoåzzCŽöãðþýèmÝzøÃ{òÖÛÁuVÛ»Iï6%öa±m½ú²kÖ÷¤±\iÿœÞ¹Oµàz¡<Õ<»*©&©‰Wõî”u«’•—ãsÚ–/|¾Ö4¼<Ár?ËvïÚi: â7½ë¸+ÓÕ=¶çýµ*‡<ï?ðÁ¦³ì†=NÕrèW+¾ÇWÖ¾÷…7¿5)ë¸ï{þ ZÇÏã3žãÙû²îøM7¨úƒò¡+Ú>÷7d?ë<øá–ç8î8¨0—½+‡Þöïÿ]½›õýϘ p½„Pñ÷—“}/±sËNHôUÄvÊa;М¾ïTÀÖÒ÷Ýew±Ýϲº _]µÂ̪ÄËnÜå 'œö¥w{ Ø7¶Ü®ÁóÎzW¬ fCÞrÚT’Ì–5vë¡·Â×÷kðvW.ÎoKáö¦\™kø*Êoüê;w»äâée§bšÝy²ÏeÛLï8Ë^°ºN¿ñö=ãsê}½ë\ö­ÓÙ¾µNýùŒóþ¼œü|ÛýƒÄÜ=7_²‚°óGŒOp½„PÖø=;(žñ„¹†§¢ueÅ ΄B*'q£,÷³l§öæîË[ï¬ÈñOmc{™ÝÕmÃ]¹0·-;ödKM‰º!Óémcûú-cì@v½ì_ÇÆü=ãy½ÛkÝÛõêÃŽÛšn ÙpºÑêíÝϲÞÀxd|Û²íõü*xÌ»ïoOë|û;Y·õÛvu´}œpæŠõY¾Y’5ßwЉ‰®WÌsHn*&££1‰ÅÂÇ$SÞáû€ ü¬Í¸ÝeoÊôܦ\W⟗<]8Ýn™ks¥ŽÝhwí g½¶Ÿe÷jçÆÚ¶ÄgªrñÊ=5žtÕ×mµëì®»ÛNÈvº™¾ó­\øtKÖ4wö_ï-cê{\L¹ú´:„P}‚§oå­s^n×Þ“óÍ}-ÛÓ6ív÷¸¿ÝÖùd«îŸXhgÛŠÛ'jÚ]«:UVsyB(ÀõŠ—&ÃGÈ‘#Ý d¶ø> „¯¿Ýö±†¡T%ÓštgþÒJçðhw¿µ^Ûϲ+µÛrr6îu‹‘úJMM6þÞCn]õJèžBqç[›d?ý¶‡c©‡úú¾–í¶Í°[Ýô²¿]oÑ ‘꾟f—d½Jr۞݇þå ¡×+-mK¶¶tšh¥99¡B籡9ÙRç óù-Ùiñ]@^{»kî §ï'}~'g÷äÌîL¨o}¾³g%ôIÕº×h•Ðà²ámTcSO{Ô¹ïä£ÏkrãvCݤÙSw\_`+«jêç÷å乕@ˆmíQ },…åm¹Snª×%:}+óåGRXÛñx$kUE=¿¾õx_Ëî7„ö²¿û ¡ž±½TB®Wž}È’BO /ùŸ×J27“órþü€ NJ®ê­fdth@½~^†'3²ºœ‘ÉÉ9©Z¶µµ,S±QcÃ29¿,;|ÇB('uà%ºð±+•jfÓµU?§Rú¦9>ÐíFÚ~ÈÂçßvº÷²á]irÜî*üypL¨;±O[wRowãùucv؃žYpí «=áPpŒf<0ÛnýÖ=§"œÙéBïu\‡ÞÞ §WÔŒ»êv/+­}-»ŸÚëþî+„z¾ÎäC¡“G™3»ïw+è¸^ †ÐcÞZ7ž3ºæ=&Gnº'$cýÿ£švºîõuï=f.³å]ÇQçõcs|ÏB('u॰ëÎ,ÂÆŒ^\nU1ç>•ï¬;3ÞÖWÜÙj½³ãö¼lhwœzøŠ§ê~•WÞwXÇkݮƪ°weÙ3ñÒÚ¦§º§?ïnëwîIÁOZCÎü*|vܶð¦Æc†Î°«ÞÿЭFÆô[½ìgÙ}„ÐÞ÷w?!Ô?;nßœ[™ðÎtìÜÒŹ­Žšu÷Ö#Ùå÷ àzeº4l†Æ!usž‹5žÖÇŠ¶V¥Ï ¥³«æÿªK1+¬ž%u®ÚYŽËŸš,[ë(É€VOIŽ?ˆ„PNêÀo}þ»Àý/;],¸³ç8W3ÅúÜw¾ût~çnÛ½?7œØû²aÝq¯ŸóŒT•Áã犾I‰:ÍØê ÛG¼c,Õ}3øÚ`ßÅLŒÙpOû'@úhå±ì5+ïšo*࿳jv;þ¹dw÷½lçm¶OLÔëþvÙOu*Øžª´½ÞÿZ=ŽÞî»Þ{ˆò{p½Ò)„îl•$—[MÿY-—–ev´Ï ¡K[Ò*M?Ÿõwá8æ„Pmɪ”;+£ª‹îjY3ÝÙ‘cMB('uàåpÃîŠë¹d'ñîºAà wæÖ}Img®®›°_Ý÷U7÷³lûÅÊŽêš®êýo]U3ùޝõ´r]Nï1k¬~Î@8¿U•Ão&ôyû[¹îTUñOe8,àßÞ#Áu¨6¿ºÕ¶¯½-ëÙf ëqc¥Ò6î¶·ýí¼N7„Ý`iÑGòÑ«í“[—là8ÞñÌ®lܳ”±¡×+ݺ㶪25Üçé†ëÒC¨]åÍù{îäFO8!T_G¬ï˜ÿýGOÈðì2ß3€ÊIx}<–ª9©Îºöýs\6$Hn5‰zÖªjr §¬ª54kÊF×6|/ÖrkÕÖSŸ kr¡µòÞmÞϲÏ÷9¡•¶ë´Õ½iXZMÀ¤©ñ¯;ßó»p½Ò%„îÈÔYk¬ç©órmjV2Ëe)Í9!T[5~î›\íB­?°mUÕxtu_Ò³'œ0:¹Ê=HB('uB¨ñœ&£'ô°Ø'eÏrK£æ˜ÐÑ%ÍxÏ)£«í”œõ,KßQwLh.vJý|Tæ<=3V¯™ëâ¤!”“:!Ô®„ÆN˜Ëó±Y564#×N9UÌÙ²J­ÊæQ5æ36l†RÏÄD[öì¹Çúdr.#ó³19e„TL«|ÏB('u€Ÿl=˜dH[žò„J3XŽ^5o¹rvÒ¹×gnrÀ7zìì =ê¹ËŽÌ[“yoß›/ó=¡œÔ¸^ ÒÇsV¥º¥I«-¸.«Ày¶-PNcIÏʲwµ–f¬g+l=¡œÔ!”땽•äü³kíèlFVWs29duÙí›"l „p½ò|må®™Ýs=ŽžòWA€ ÀõÊó³#ÕRIUBKR®j„Pà§¢Y¯I½aß?³)õJEjZã'³ÿ­fSšÍÖOï3oòݸ^B('uàEÓò2Øß/ =„i’é—þ~]\´ŸÈ1(Ä¥"¿ï÷U² OŸz»ÏúþgQY‘þÁið;p½„PNêÀ‹”Ws"g>n%¢h\¯!”“:ðbº¡ö¥Ýû±©î¸Q#d5UÐ uc fåÌ Iƒ’­ÛïoÉ‚>~T½_³^ËiV…mÆ[aSÝNU€Š$ mÛ7*qVnëˆH¾a…ÑTÉYNËÅðdtü]iõÇögÔ¾F“NuRËMá²Ô´^‹¸ã#ÍÇIÙì²Ï-µ_Ɉþ:·yù^Úz㩜1ùS£V’B©x¿{|ích†É˜”õ §ª"7­À˜(¨À«‚~º`u£U7q_WárlÁØ7ÿ¾4$1¨{+è7õ@¬ã'žÇ* ˜‘àz¡œÔ tv(Iè¡Äþ¹hÎ’Û,¥Œd‡$7D&¤jH»Âf¡A7u ¡OêYc©JCU÷¬p×4ƒp²Ôt]¾s-zB¨·½aûê­ 6œÐ²N£ý ©uÙgÍ»_]ÛÜ”Ü̘S‘ì‘d®Òv\cXJyÞã¡6­zAâ#ƒþ×TðÔž÷¥aŒ;uªÐÁªªßqB(Àõ B9©/2„ú*¡a!Ô (B IžÛzä&¼•Ч¡ª˜ŠêÝ`ÕøF; 5KÆÏãYwœf—À¨wÇõ…ÐÊ÷™õ¬Sߟ¨±?á!tF6»ìsËÙ¯b÷6×ëR*U¤ÙjH¥˜Wc5#Ö±ò¼?$„Uj5Cq]_—º}L«Y“|6'e­&zèIH¡\3ªŸÆ²Öñ†P½ê„ÌJh” p½„PNêÀ‹bOLÓè!„Úc.#j’!Šj…”1fq$UöU;…ÐÁЪ&íÉÙôŒãõ.¯‹±~£+j¾Ö¦V4ÇCZ•>³›ê˜ñZ½¸`ŽßLôB÷EdA¿lj%‰GúÞ)„6ºì³½_ý±”ÔšÛ\+™c=Fõ³%¥…˜~‹MïûŸ´C­`Ž+§K*À6¥Š™UãïÖ$¦ùœÉm·AôéBhĸ=O“ß€ë „rR~xÍRÒ|ìn¥úÄ;úÏ#F¨s»·j*ðD=]@£ñE#ø˜JVVˆÓíSi‡ÐdTMnEÒ*“õø*¥Í²$F¼]MÇ¥`w‰­çÍÉ}¬Iˆ"ýn—Ø`{ÃB¨»Î )6»%ËZíï´ÏÆrV0ìQã1;¶¹)‹ñ_×Ùx¶Òöþzàêµ÷½ob¡èŸ!*ã#Fˆ/·‚ûbuÇíBëö¸Ø¿ ×+@夼šR¢ž uö¦&×Ñ4i4ŸSjY£’·PiŸ¡µ©º¬6ÍŽmhî#<¹÷muXçóÙçNmn©Ê§¦5œ‰‘zÖ²Þ× YŸÚV멽91R4Yä÷àz¡œÔǬbš³Ä¾Øm7e!fM®3’Ú8Û§B¼ß71Ÿû UP€ë „rR~ ªÛçBR²?¸ÀŠºo挺fí`­œ—|‰ xœcŸ]EŽÀõ B9©B(€ Àõ B¡@夡? 7.­Ê?_–‹·[Ý—Ýy(‡ž—‹Ëa˵äâ¯òrèÊÃgnÏîÖCùh|˽6B('u@}MìnË,ßÐÛÝ®!T“ƒj¹¾[»¡!ôÂÛy9péÙ'LË\ZVí¹'u¾‹!”“: „¾^ÖçK*ð­H߇Eõï]™Þ Ϧ:›Ÿ{(ëÕºò…Ðï¥p«.×g6åNyG.¨JèÁ.!´^Þ–súº6e~ùQhàÝÕI샻ª-ßÊ5{;¥°¬ï‹Ï×åNõqÛz§gjOoK]Û•;+º‡i„PBèá±|ôŽª€þª¢Â›Yå<|uÛ}½ºi„Î7̺+ßiíЕðš¹Zl[öà‡[!UÐw™7ïÉÆî#éûUûvì®Ãw>_k{MÓ74¾Ç!” ¡/2¨Ðv|æ‘ñøú9=À­IÁ ¨WŒY”ù-³»mìý»N]›1Ãß™9ó½kó÷ÌV UcIõ€{ðRÝynúƒe3d†ÿ+w×ê·¾ó…Î'» 9®øP­Kg=$úpÓ?ª=”ãoæÊî Y箿;® ‰'?(ï¹²ò¸mùµ¹ïœYng‹[æøQ§«pIΜVÛzÛº«n sÚZ÷›+ÆxÑ7ÞüNÖø„PB( „¾švµ–llµÂ_W]x7¶vÍÙi÷ÐP“éëÙÿ=<¿WUÐ]u™@`Ýi¨@ú­ÄËîÄD7>4gÝ­ó¹„PNꀊçJÝ®å-«²Úwµ"}VÕöÐ¥:Ç „rR„PüUÚ­‡rñƒoåê*|èoåâÌ稴 „B€ÊIB„P®W€ÊIB„P®W€ @B('u@B¸^B('u@B¸^B(!¡œÔ!@àz¡œÔ!@àz¡„P „rR„PŽB¸^B('u@B¸^B('u@B('u®W€ Àõ B9©B(€ Àõ B9©B(B9©p½„PB(B9©B(€ Àõ B9©B(€ Àõ B¡?¸É\•ákó¢^ËÍÆdxxX¦rUÿ{´U¹6<$׿K²Sž—á¡kRÚá»ò,¶ª[ÖÏ-ÉMéŸGFv:,»³ž–áHLr[­—¿VÕ÷ã|Ÿœ:uJΞ=/׿–¥Åç B(ÀOùzE“؉#räÈ1ÉhÞçKÒwD^9;å [™!ãùS×–E[V? ¼½kÉÜÀQu ‡dËúÚ7Õ1`ƒÊIB×+«×Îá`xÉ 5­Ò¤Žé“å–»|fè˜ñüT©%ZnÔ°K„Ч®DÇŽ©c|"f3ëÇFÛ*ÓÎg³U’ôü’T_êêsU†™ܘZÕÌçZ%>a~§bËŸ=¡?Õë•Öê¤ NŒæœç–`zB††û¡aË RVÍzBæK«25< çÏŸ—¡ÑIY®ú»Š–—fexÀ}}µ‡®¤å¥9²Þ›’’æo¹ù)ÕØ|}`hTf—Êî>U—drr^ÊUÕuxÈÓ®®ÛÕdiöšµÎ½6ئ²µ*“£CÆúÎ ËÜrµm=ÕÜœÚ×óî¾j« Ës×ä”^ùTÇptrNÊ-+„ž•ååyk=›Ê8¡´U]–©ÉYY}Øê½ÝmÝd3rÍÚ!cýNåµU•Ùk“²T*Éüµas™á˜,•wÇwNVW—$fßÑksRµÿX±³$§ô?`ôÍú¶«YUtï<@å¤ðS»^i­š]oU5N TãÊÕy£"zbtÉš‘cz—Ê93T!ôHˆS’Ù²º›pž?zÔ~ý¨Lv©†e†ÃÞsÂZ§&×κÛ:vÔýy`Î ¢f7á°v•ÜNxu×yÔW^µ‚ÕÎê”ûüÑ£Î:Ï^sÃûRìlH»U5°´ºÍÑcÞ¶é]¢íîÑ!ÎÏÝ¢Zû1ºãîÝîön²çÝ6;æ®ÿì¤YÕ–ŒÏØ]ÆÝ×kÖgæ?¾GÝÏà耔<ÛõÿÜ’Ø)s]×Vw8¿€ ðÓ½^iÉTŸ€¦BÈ =Ü /ÁaHÇÌ1Švøš¯úCè‰aYÝ1+”óçÌe2[²³3_?6$ËVu®œ±ÞstHª]*³GŽ 8ïY2ƒÓ±áœZ§õþ¾I§:¨ÄcN›=í:å¶ËáU¸œU¹›råè)Ïòn÷ÒÉœõþU²ÆÓÎUÕãò¬{,¬voå&Í@§}øÏ-=á_wŒ® ·1kr"µ«Zªw{~hí›Ñ®=ÛÜž=ÖWÿ#]I-ËÐ1wýNSßW;t._3®jgÕ{|Õçj‡ÎÌèYg¬pX÷ÜÑSV¨˜er"B~ê×+e«:v­¤4G­cŽ=&ó* äFO˜»­'¾°7¼äV5í ª‡ %«¢ymÕß ÖœŒçDèXÒêüb½!fnjVr%µ-YÍåT—SµNÕ}µZ.In.fVl!ÔÛ.;‡‡P3xëûv~øšd–K¢íh²³cµÛ æz[ݪJIuU-W«²äO»lý|*¶¤f»-ËTUw`s䉓7Ç€Ú!TU2=Ë™Ç=,„îÑîí•V—e¹´eüñASû²ºœ‘á³G}!ô„çC>3s+ûø^[öV4­Šú©X`a2"B¸^ñîë€[ëóÿD@ÞêeØ-Z¼aou²ÏߘóK´Ç8†…PmÉ|ÿ)oˆÒæ­8iUäT¥nÉ3[«³xÄ3ör¯vµU­q¨g'Kîó[óî8S{ìå1ÿ8ÖÕI³s,§ºÏ„ì« •FW×Î"Ù¡sç)Bèží[ë½þ×Jrþh{%TŸ¡Wk[æ¬q»{=Þï‰ÝÝùØP&ÐÕY}T`¹o)B(!ô…s*Œª›¥~Pïkö½DíÒkõUÞ†'Õñœ’kâcCŽ­ «ëí°ª¦•¦Ì`{¬oX2jlèüä°;+¬œöB©ö}àÚ”ÌÏÍ:]V튠}Ô#'Ϋ âœLžwf6¶ÓrÛ}j@Į̈[µØÝ^­ mèÄDÇÌ히©‰˜4k¢¢+¡=´ÛÇšÝøÈÑSrMÝk4—™2+ßVwÜù-ïÄDze|TæÕ~ØŸÙYkÒ!o÷äóêö9sS£ÖŒºGÛfÞÉŬ?*ä8§€ ÀõŠÇVƬ€5ïêë¦Zš4‚ÞÑ@˜rº½zÂÞŽU•´Ã^«š‘óÛŽœží>>pkIŸ£¾1•ª›«±m5[ìp`LãYuË!£âxÊ3f1Ø®X×î¸Õ¥krâh CÞvj27|Ö?ŽòØY™]ö¬o+'C§ŽúÇ©žI©KpyÒ½eÊPæ;sÜí‰@µÆÖzChlùaíöO”‰÷ïé!uÏÐ>w2(oõã9§‹¶BO=áSË”Cª¯„PB¸^ùh[[²¥h­çóžÍzí¹vól™ëÔº¬WÍ>[U3ãnmu¾ÏéŽZ‡±ŒÖêm»;;]f´}Ní샾ü–r¿N«;î‰Ø²±^MUgƒë´C~Nÿ\Ô6«j]Üv„P®W€ý³ChȘÒnݰB(×+ÀS…ÐN9!Ô˜ñ¶ÓmgB(×+À>ì¨îÁ­=ºÿêËp¬@àz¡œÔ!@àz¡„P „rR„P!€ë „rR„P!€ë „B€ÊIB„P®W€ÊIB„P®WºXÿ_ÿW)ýÛÛ“\ŽïB(×+Ogó·¿•oÿÛÿVJÿõ-¥ŸýLJ?ÿ¹”ôÇÿÝ'ßýýßËwÿæßÈwÿý/ßýâ†j_Ÿl/,ô´îf³ih½†ÇM߯ný-µþ¿‡ „rR„Ð×Oá?üåÞÿü?Kåw¤òþŸR9sFªÿïÿ+ÕsçdãŸþI6~ýkÙ8^j¿ùÔúû¥ø¯þ•Ôº®S+-J,Ò/ýý¶AŸÉŠÖc›ŠÉé&¥ñ’³Úâ¸Ú§˜TZû}oC’Ñ~‰ÎÝŸ“Eãµ–V”T*'M}¹Ú¢qÜÒ‚(¡œÔ!ôu ¡o¿-÷U—ÜÊÉ“fý¿ÿo©œ=+O­]¸`Ø+„Ö²q+xŽHj1/ÅBN’ãQó¹‘Þ‚eq:"ýƒS/gmeDíËx¶þïoÈŒ 烉‚ñsú#2‘.›ûœTÇ(áìs>®G^Þ B¸^yêúÝ[oIùøqY?qBî« zÿÿø?¤rú´Yýÿþ?ÙP]píŠhñ?ÿÏ;‡ÐfIÆô°MH-ðZy!fѱ…²ÑÝ´^.‹¦º´ÖŠ9Y\ÌJ¡T „Ðii´R.•¤Þô®«)ã¹–¯ûj½\’r½á¯ÈVÔs5ë9µ®bÞÜV¾ènëIKSÛ¨øÂ^½R–J=¼»m9¥ª´ýãR „Ë’±îEÿº­¶U yc»åZEfTõ3b„PÕ>õ¸ÞhI«Q“ôDĨ®æ+šù¾ºY M–šü>‚ÊIB_³ªÆ|ÞûŸþ'YWÝr×õ+c¢¢ûÿûÿÚ=·øŸýgCh£0‚ÓL±òº&‰APÇT—Ó†ùs¿ßÈLÁByTÏGfŠn°Ì›•Ö_WÕ¦¤¢ú:&¤î„Ë’Dí÷Öóf8öK݃s}ù†(úëñ|û>´ÊÓ×é}­Q”ñÀ¾ ƬP«Ir¤}?£3f%tÊÚN1u_LXÝ–5£jÚ?’2»è„PNê€úÚ„Ð#GäÞÿø?ʽø);æVEU½ê”Ñ=·úÿü?FU´ø·Û1„š1"…fضZ’Ž©PÑC–9R¯ü´–ÈbnsB¨zÏâ¸.kö:ÆúC»©jy3§Êfå°ž‹cQ³uë=ª{p®f¾V±º ÇÒªZœ1ÛÜðw™µ«•>‚DÔûâÍÙ§ì¸ÞvLòšÕŽBÒX÷x¶fUËgÍêh-g¶1juÇÖ·3µb~3Oµ*‰öçB('u@}åChé¿ùoÌjè›oJYƈ–õªè?þ£YÕ'-ú¿þ/£‹îê¡CC¨ü"žª¢_nbÐ UvÐs+œÅU œ1Â¥BŸX!Qï–ªÂjÓ ã‹µ=ª”-Y±«ˆï†J³;/ì+„ÚmY¬µ|Ëêaza1- iYLÏmÔÛQh ‘jùA{ÝþZ4BèŒ/\Û¡¾Óñ¡œÔ!ô• ¡kÿÕeÞ–E¿%‹ºè½£GÍ0ªwÑýwÿάŠþoÿ›Q]ýOÿÓÎÝq­– ÇX—ø  Ûƒž7„yCè“'5'DVrze1Ú¡ÒúÄ }ªjZQÝoõ 8‘«;ãTcÖ@vLZÛßW5ºº¡P_»+n$±DedDM8´P’’>ËoÜB“‘ÞCh³4C!”“: „¾~!ôÛÿò¿4ïªîjÜT¯ŠþÿƒDËzý_þ#ˆ®þÍßt™˜Èœ9¶?:ãŽÍ´T'ÌqŸ©RhÐëB­[¶¨ð9¢Wc‹÷¥UI›Û‹]dK-OøÏz–5ƒí ªVšÁÒô4cù°j¯ßójUBcY_·ã|:%‹ÅºŠcRöñþî!Ô;þ³dL‚¤ö£Éï#¡œÔ!ôu ¡ÿú_ËÚßý¬© º¦ºæêUÑïþÍ¿‘ï~ñ )ëUQk¬èº+ºúÿǽݢ%“t¾$•rQcÖs +œzoU²w}RÏužôÈ 3Qkr ‰œ§BjNü3‘.H]«È‚1m¿$òuiÕÌ`™XJ­lÍRkO Ùfwà„3&ÔȪ‹p*¯Ö]“lbÄÚ,/˜ëWëö¼æ:h 5Ú8" ùJà˜$¸M ¡œÔ!ô5 ¡ÿÅ!k‡»Aôg?“ïô ª&,Òƒèwzýå/ ºúýG]C¨QõÌ¥d$0cìX|Aj-—רgÖ[£ëªBU ‹xB¨ÞÕ˜e6xk”lM俵‰¦Â刧=ƒ*–œÊeÎÉFPŽ74„Ú3üŽ/úºö.ÆG|û›É9ÍòbÜ·]3à.úûS•5«¦Þ0 B9©Bè+oó·¿•uÛ=\êUÎÕÿä?1ÕØO}&\ý–,Åõ¯Œ ªWL+j–Üí……žÖÝlh¢i i¶žµÖäBžÐÚ1Tʼn¶îÀFwÚFÃlOØkMý5MZ{¬ßž|©Ð#l_[MãµýÜj¥i¯ÍÖù]!”“: „¾fôpKjB¢^ìä^deN¯RÆ$2hVsZ—ÐVN«1£ƒÎ­W~¸6Yã:­@¼èóàÜ÷”*(¡œÔ!/V9=¡fœ‘d®Ö½rXYT!4*±DöCÙTE#Rný0ëoÕÔ¾D'˜„PNê€ „p½„PNê€ „p½„PB(B9©B(€ Àõ B9©B(€ Àõ B¡@夡 „p½„PNê€ „p½„PNê€ „PNê\¯!€ë „rR„P!€ë „rR„P „rRàz¡„P „rR„P!€ë „rR„P!€ë „B€ÊIB„P®W€ÊIB„P®W€ @B('u@B¸^B('u@B¸^B(!¡œÔ!@àz¡œÔ!@àz¡|@B('u®W€ Àõ B9©B(€ ÀõJW—/_æ_þå_þÝ׿„P®W€J('u@B¸^B(!¡œÔ!@àz¡œÔ!@àz¡„P „rRàz¡\¯!”“: „¡\¯!”“: „!”“:ÀOøzeKfc£2<:)¥ÞÞSÎLÊÐè”T[O·Íõ´ Gb’Ûjñ¡œÔ!ô§´¿;¹˜9rÄp~¶ÜÓ{–†©åIF{ºm>\ŠÛHoñ¡œÔ!ô§´¿sç9!ôȱQÙêá=¹Ñjù²ô”!´µU’ôü’Twø¾„PNê€úÓÙß%9¥ÂçÑó“2;|¢×VwÚ–ÛZÍÈèЀœ?? ׿–dnø”B[U™½6)¹rY–¦FeàüyŠÉRUuµm•erXßy£ûnÙ ­ê²LMÎÊêC½;nK–ç&e*³*ååYRËêÛ‰MeDãûB9©Bèë£<{Þì†;§ºÅ–®?=?ç[¦šv*¥Gq«¦GN™!T[’cG¼Ï»ŽŸ;aVZ.™ëŒÝq5=þþ#çg¥Åw „rR„Ð×Á–Œž°Â¤Q¡¬Ê2=Ýl[«ÒwÄ|njU3ƒkfÔ ‰ÖrV5Õ]¦%óC'¬î½²¬™ë=e.£#}˜3×1¼d†ÐØ 3tžedGß®–“óG½m@夡¯´ViÊ Š}SfðÓÇzÆNÏõM®šËmÍUÎcCÏ{[2ÕwÔBOèË /9Ëì,›“ e܉‡–cnÞðz^JžöÙË?íäG¡„P@}‰d¬1 ¡ŽIU-£Y3çÍW}ïÍy¥BOxB¨æ„LÍ}g2£Ðª&EòŽ}ÖÉB ¡€ú²ðt³•ÑáaVFÕÏ}ÖøÌÑœ&;«“ÆÏ§bËþê ˆ!•PÍ2 ¡¡?é땭̽ÕËàkz7Ý–0œöܺ¥,GBB¸^éÅŽLž5«“¥.UÒc2¿¥O2dÞGôèÙa™ÏÌÉЩ#ÎÄD™çBG ¡!”“: „¾¦ìÙly«›~KÖxѾ)}‚¢ªLœòŒ=!§Œ.»g%·ã®ïÄhÎBcN—Þ°q¤v-?4BèµSæí[´¶q§§¡!”“: „þµv4ÙÚڭű@àz¡œÔ!@àz¡„P „rR„P!€ë „rR„P!€ë „B€ÊIB„P®W€ÊIB„P®W€ @B('u@å8!€ë „rR„P!€ë „rð!¡œÔ¸^B(×+@夡À««%ÍfSZ B¡¯œÝ†3/?ؔݶ×Ë•sËòƯîKòꊼñvYü@íhiEI¥rÒT?7K)éï‘Bãù­__ç`¿Dã¹Àk I Jÿ ¢^· FF$¾Pp‚^éË1õ|LŠÍöu—bêµ1ÿk­Š$FÌu¦Jç·åE‰ÚmŒçŸq} É¥¤Ü4NFûe$Y ]¶˜‘þÈ´4ø!„rRàzåYM ‚æÏWe~'ðÚÖ–øy^ŽŒoËÏKò7¿ÞøÁBh1¡¶„rÅõs乆Ðì„2GA²!3Ñ~c{‰dJ’ɤ’XÔ z㋳}ÓQõ8*ù6g‚¯U$1ßÏVžïq2¶5&é|^ŠíÙm1¡Ö5(+„Ψ6& ¡Ë–ÓýCšJå¤ÀõJ ,”ËróæMÉç{¯’5V**„æåäÜ#ßówÆ‹êù»2½õDv6e¥¼ëëšMoÉõ™šÜ¸ýÈ©œ–·e]ûÞzü½¬­lK¡úØy߯š ´å–¿ Ú¨Iz"bTó*X™!4*…º&¥\V³9)×›ÊiErÙEY\l­M³`TÇqãßXºâ ¡z°?š4ª°îó5‰ªçGRÆóv]éBÍ0çÐD®ÖVy,åsªÍ‹’/ÖœãX/—Ô>ø«¥ZE=Wó?×Ôj²×Ó¸kšS¥­• ’UëÌæŠ¢µžxÖ[–ºV—‚:†¹b%°M)¦Çš*”¥Ñ2Ch$‘—Z¹ Ú˜•|©æl£Õ¨K¥æ†ÞF­$ùlVm3/­ÛñoJEoŸµ¬ûYYík4¤RÈÛó†êf½"õùk•¢±o9ÕÆ&ç8B(!ôå²°° ’H$Œô»ßýN¾ÿþûÞÛ”>Õ%÷w*žJWSÎèÏÛ0ºéΨ~þùw²¡¿¦=4ºðêÁÕvà\Uêªkïýçëæ:4³’ê®wGÞR^y¨‚FÝ®°ƒ ©!´¿M²h†”z¾ýõnÇÚ¢¶rZCÒ#æ6´`C¨&‰ˆN=…PUaU!ѬªJ2_÷/×(Êø ¿Íƒ±µî¦¤Œ÷LHÝéÊ[2ÂrdÆß5¶ˆxÞQ•׆,ÄÇbDrµ–±_ ßö¢¾ p3pŒgŠ›æq×hÂücÆJ\7Ž[ٯϦR•mÕ$ û!í3ÅJ!ûjIz>7B¡?ªR©d\¨7fõLŸÑh´çcRøô[§ê©?Þµª£}·Ìªeæò]yãßêcB¿—øûz÷ݢܰ–ݸußXö¸ª¤N¨^{Ó «éï¬ú­d=댕ۃqa&â„Æ"V÷O­ cöÈVÙüyÜîÚ’\"ÒÍÖ “z…¯dÁ¨êiù¸„JMU]\ E) RÈge&fã±…²¯;nxñ‡¥H ”vÕx|ÐØF^³*…¤ÙÝ7[Sm2ÿh*›mªçâFÍÖŸt=Nf¸î—‰´ÜZõ¼qlÌê­½_1)ÔT³\o¯€f˜Õ<Ý’ÕòZËø#DzÜ ìf×·« ÕÌð8¾è«GBºñ6 qOè|b|vãÎXV÷¸4ó‹F5ܬ(ÛÇ4‘­ùþð[¬p®#„B_©”9žÑûÜêêª\½zµ·u¨n›õñŸŸšá†&¾&kÖënmÉ…·Í`yefC®|º!×?_7Þ{PU@ë·î©×–冦¯ã®ñ³<¯¬}¯º÷®ÕÔõбŽzÈ™ñŒ uC™P’3è4KI«Š8£ºp¦e!½(©¸XBªq­JÚ ´ñE©T*R.˜ :!ªZ4ÏLÖ© ÷B#ǬíåüãN#f \ÐÛ¼–ÅôŒDŒåÌ`³VÇwaÄíÜí8?[ÕI§;vjÌ r »{m±s7lߨÛöå+é˜îÝÚ”…1óøDÆÆ%•εu%öm£^S]ÄU×]Õ%853aìsÔ¬æö¢©’ç;˜3>ýs,Za»á9†zø}öɘ@àzå¹ÐÇÆb1ßs333211Ñã:¾—ëçT¸|{]UñÌn³‡®ºÝfjͦ«˃oßµ¬ÈáwVåä§Ûj¶Ým9lŒ/­ÝyõûÞÖ'7Ú” ¿R﹤u˜p'Bí1–Þ€TPÕ5»é D"Eý‘‘‘1Y™…¶àíêÛïïžšoxBè`\*MuëÞôjr³h_!4eUüÇ­1¡u·hu=5Û¬‹ª6È„¯ûé„™7‚ÚD®¾çq*%£mcYí`™o¸Çl!´è²1Ž“Bõ×ê’NŒí´çÈL{8lÕrfeÖ±ºøœP™(z>³fÑè†7BhÔûZ÷v›Þc@àzåjµZréÒ%™šš’õõuc|¨~Á¿³³Óó:ê·×.¹®–Œ f¼ú¤=„Ú•Ðs›¾{ãóŠ\¿Ý4~Ž[¶ºáªî½ª":iÅ;úÑòã®áªù$lv\7 µÊæ~Å žðÒ(É‚ºÕH±Þ ŒI4+Œý1Õu·eÞ[³©‚¦V4«©c©²gLèL×™_{Ÿ˜ÈÓ³ƒ®æ©„Ʋ¾.ºùtJ‹u_ÅvdÌœý¶Ôz²g5ƒkLÊž×óñA#ÌÖžôBÕXÑVxõ~Þî¸ÙTR²óX7´²$ÛÆÙzǰFÕ² _53â©„zg㵫ÜzÜ<¦žq²jÂ'½+/!” @}‰<~üX>ÿüs¹|ù²üþ÷¿—-u‹•ý­ã‘œ´':]õ…27„ªŸ¯®šc@Çë²¾õHâ—V1¡ú²ës%soš]oëé{V]“B§1©Ö¸Î…|¥kÕ«pƬµjÙ´šñµ^+ÈD¤?ô–.öøÏ™b°Bj­cÐ kVÕz¡½Ý¢Epf êšë5MåÕŒµ5É&Fœ1¡ÎØU«[ðàD®s;s¹ ºê–­û„¶äú‡«¾Ùqߺ²å†5¾ô5FÔÿ¸s(®eãθÊÛÆ¤=Q_Õ‹]kÕUðŒú»Ö¦ íÝWÓ±~£Kg%d{æxG}ÒœMI¸³àv Fˆ Ÿü¨d½ Á+Hãêö*#1§9_WZ{¢!wÒ¤×Sµ-gÆ8Jg6Ûñ”U=´Æ\λŒÎ;ÝeãùjÛòfµÇ„êÛ5»ã6Ji ÌÈ»Xnï ݪ«î¸ÞpG&$>6hLܤ…ÅU“"™3û†Lö¤·q±Ìï(!€úS¶»Ó’­]uk–gû UýÓÔmWZ¯R·éfCµYÝ µÕ©<˜Y·­¦¹Îfë)ÚÔ2º(?ÍûŒãßhô´\£ ÖVuÛ½Mãsl«øFÌ? èïo¶ø}#„Bç¢YV•ň9™Q,ýS¹‰ ¡z•´Ãl·…„~<Ü”ÊIBçB+‹*„F%–ÈvíüziJVݲ%™«…wÏÎ%eBÝ"§É÷ƒ ð²ãb^“ „@B „¡B(ÏÉÎC9òó¼¼áqàÍ»räýuÉT¿w–Ë\]‘7Þ.˃gØVöꪼñ«ûRy­‘¯¨m¯ÈüÃý¯·–OK¶Ü0~.%G¤?š ½çf³””þþ¨¬4øÜB(~¤ªÉ!<}pO>¿/¯®Ë™÷‹V ]‘[ærw>/Éßüzã™BhæÊ]yãÍ{¡!ôÁí²ÚÞÝý‡ÐfAûû%^0Chq&"ýƒ‰ðZY”‘è¤Ôäs¡xfårYnÞ¼)ù|~_!ô  œn?ö=__®Ê=ˆ¾_“]õx÷aSVÊ»îëåm¹1·)ñùº¶¼ï},…eMâÖkwªý!ôíu)¨÷Ægj2}«á„Űº¾¢ËÅçÊÆnxûµâ‚BÇ RךfÌHM«HnqQ²¹¢h-{ù¦Ô*5i:¶.Å|N²ÙœËõ®Ç©Q+I>›UËf¥PªIË~­¥©ã^“F£f¾ž+HÍ©´¶Ôq*K½ÑJ!'‹‹Y)V4¾« „àÕ·°° ’H$T—Ó~ùÝï~'ßÿ}Ï!´ïÖnÛkñ÷—Uåò;YW?ϨWF¿“ £*ºæë¾«»¨¿÷‘ôý*ßþÚí–BWÛ^{ãûÆ:ý!ô±Ä?\ ,[”Õ`û’ì7öWITq;ãRÓƒäÊ”ñ8¯‡D-/ÑÀr‘x.ô“cmë´—míÛëH¶ÖjkŸ-¶Pâ; B(^]¥RÉ7†Ù%UŸÑhTæççŸ)„fô1œz—\Mý|YU1ÿ­>&tWúÞ4+¤æräŒz|ð’&õ[ßùBç“݆×ǘ~X÷…Ð óŒÇkó÷ŒÇ'çùBèFÚ|þÌÜŽÕÆm9®oóô†Q•õµ³‘—ˆÚ÷DA³ºãš!4‘«˜ãE³qãñLQU]‹ÓF@ÔÇ„g¢ÆÏy«jYÐÇ’öµwÕmõGnu971htùÕôZœ1CéxÚ¬°6ŠÓÃæHJ=nH2Úo¬· ™•ØÅ‰ˆ1.µ@—`BðªJ¥R’L&}Ï­®®ÊÕ«WŸ-„¡ñn „>–+§ÍêäÁÓkòÑç[ªËmËí¦[}$wVTWÝùMùèJÉX÷¡KZ‡1¡f ÕCª7„Î_Ò« ËræÓ ‰}Z•ØÌ†B­ªlpLhÔBõ1¡3î˜PõºR½!´ž3ÃidDâÉ´ê"ìébÐjhR©T¤XÈËâBRÆôêfÄ܆B%[÷üQÀ¸ªúÚ™H¿DSžÊ§–3ºÛí¡xåèã@c±˜ï¹™™™˜˜x¦:ýêŽûó’¬=ñ†P³¢»´f¼Ïî.{øJ]vË[¾™v¾cV>ݺb¬Ï ’-¹ø¶ ¡êuoµ+¦ß¾kR³õz§(‡ßY“ŒÖB#OB1´Y(#ž®²Ñ„Ñm7Øåwa<â.‰!ÒB£RôT6+é˜ñ\¾avÇM¾ÊjÔ˜H‰ B(^Q­VK.]º$SSS²¾¾nŒÕÓÎÎNÏ!481ÑîÚ†11Ñ6ÍééŽW³èÆ×Ìñ¦õ­†\|'oT8?¿t×è¾_k9!³Ïêª^ mÈ[?7_÷UB°º*YO{ÖomÈG3Û»ãZ!s¦ØÜ_%´–™…¢yüššäS1³o¡á[¿ÝÝv,Yp*¥öäG Ïë åVHw]³:¨ÆªÚ¯™·‰é—T¹Éw„Ðnꙋrà7ä Ê‘“Iá™ï³T—‹‡ÞÃ3{.›½xXÞ8t1dZïrñoÞ¿±Ö±v#&ñ;î gÁǯ›ÇËçŸ.—/_–ßÿþ÷²µµÕÛ{­[´þ°"×?WÝ_?¯Ê…¿unÑ2mݢŠ¡M9£¿öæšL¯4e£üPÎüÊ ¡I#<®Hl¹©ÂéŽ\ùà®U õ =ôaMÖõ×ß7_¿²òØBwתæýJO¯«ûîÊô}s¦Þwª!cBÍHJ±Öì9„–’Qs¬h¶$Z£.¹sò¡ÅZË·þf9e…м4TX-e퉈Ìñ£víŒK¡Vw^7ÇÚcBe&§fÉ­äÌñ¢j¢¤:ßYB÷ ¡Œày¼ï¢|tñ¢\TÎ?lÒßñ—¨.ªPÛ·÷ÀùÌ…ƒòÆ ¡!ôê¿;,'¯ÞQ'¢y#0Ÿ™·Bgð1|!ôppÆZ5óð¹{2_öÜ^årAÝ^ÅìŽ[_Þ¼gU®¯´d·ªºã¾éù¶$gN«.½oß3fÀ5':Ê›ÒÒ7gVùûêqÁ¹EKa~Ý×Ý÷À;ßIV Û‡†¤cVwÙ±´9áPÄB£ÖÄDf2jvÇmUdf,⛵vܪŒúiþî¸êýcF°\PÕLgb¢È ;sîø‚1i‘B½3õÆ$º!´c=$™Àý™nœQ¡ðƒr£¾+ëwîÈÚ†;–`wcM²wÖ¿V5Ö RXW3’­g%~ýºÄod<÷z2CèA'„6¤ ßc©°Þ1„nX7Öî¨{5Ý1Öµ±¶"ëve#sÅǯÌËúF£í±½Íìi¹®Úr#³æncwCîÜYS3Ë­Ë|üº\OËõF—c£·u^âñ¸Ä§ox–5Çz]Ý7k^ßN\2…¶íÔëkrÃxLÕùr€WÉ÷ªÚ©®½´Vèóuíq—÷>– µLcw¯m˜Ëmt]—Õ%¹ÙTÝ’Ÿ¢+³·©iš4÷xoSMN¤i¶É‹¼cBõ Œ´FËw­¨wÇÌq´úûùÞ€º¯zPæ]oçûìZ—>½*zæ†çµêµ3F`4—ówç}ãàkPºB3Fx‹?`¼~òúŽ!TÿËÖZüŒ¹ž#WTeôµý¸ôp·q°o:ðXÝzFŽt-~ëŠQ]­Ï÷µ·S¹r'䄱»&}‡Ú—½˜©ûÔw ýµ·®dÍ㺃jüÄ._r€WˆyŸÐAçV/Á‚ÅŒ>“n<ϱ!ôi»ã^ŒÏ÷›šŸ¿!±‹ÇÍq¢ûT˜ V3ý]g3Ì®»}Óæ ì‚ /XMï¡ q¹~Æ «n¬wîŽ{è‚dn˜í9xòºÕÕâ\ø—oÈ¿4Bæ 9¨okÞª<ú«ôFÈ="76¬jêüE³«q|ÍÙO}½F—ßõrø ÿ~9ÇdþŒ'tê¡ôŽ×­ÄÍq®úvæ7ÌÐõ“j²äí™íWÁø-£kóGn×¼ôZõ¼š¨iFÊ¡÷ýlJvfB’¹Ç „Ч ¡AŸ‘ŒÑw¯ªÿÜçŽåldä íÀf:t1ÛeLèawû‡¼cC=!T=ä ¡¾Çf;ßxã-¹r=&W®Ääzì‚Rªðhïç•®ó׫‹]Æ«Ö××T·Ú¬Ü˜ŽËGNë9d,kë<û²1m„v½ævH|Ý]WöÂ!õÜIc t¾è¡FwѺ4T×Ûº®áí:ÚKõ„F zƒ¡BXó¸ÜÙíBí™z/ØA3BB¨óX¯VZÝd’ë™õýìBÍq®‡Ô†ëβz›z*¡Þ j#kvûýH/u*®wÜ ?}ò€±o|ÉB{ ¡oxK¦ï$·ºïì=„ÚmÞªvºUÎ'¡ÕÕÝ;W<Õ ¡ÿ1&Ô\÷¡“%³Öh{œ¹h®ÿøG7Ôl¹kï;Ú[5± ¡±¬ ¯¹rò U õŽ = ¦Õ,¹…isÌçs2&§{óÁã2¿¦îï³&NºÁ—ü`ÔðJà÷•êvSíÒUt#ó‘öì™^?ä ¡îÏÞqšþ‰‰ì*êšœ9hvË-„?ÏzìÀúQö¾BÿÆXG]boY³ñ‰…>¾~æ°ÖÚ ÓÆ„@fµò/„êa2´;îºêŽë÷ðI9sä€1QÓF`œ«AèÖì·ÎÄD¸Ýy_¡ ¡!”º?꾜jÌãîß–]uϧÝÝnëÏ¡­êXú:ê.Ý“õcR õú˜ÐÝú†lÔ¹5 „„PB(žš ¡ü÷Mõ…Pã>¡˜„BB(!ϧ"W·l¹8½^¥U÷=sü‚Üip¬ÀBçwÊ‘ŸçåP«2¯…­«%•—CWš?ÿc^þæªf^çl=”Æ·:Üû¼!¹Ô‚uO͆$£ý2’,þè×m/¦MíÛ‰>ãvZZQR©œ4ÕÏÍRRúû£²òœ¯/›åE‰ö÷«u÷ËÀ'êߑ美ßMBð:†PM©Àyèƒ{*<Þ—‹W]®nÈÚnx½ðv^\ÒŒŸ¯þzEN~nOÊ\ZVáõžç~îž@SL¨3(+ˆÍDúe0QøQÉ‹jSp;é?ŒÈDºüLë,&Õ:FàoVe$ú)5Ÿo»‹3Qµ1Içó’¿õ¹ú9B%„¦r¹,7oÞ”¼ û ¡U½pûñëÿ^ ·Ô3›r§¼#T%ôà%³ú¹¡¯?ü^vµGûà® ¡ßʵàœM)¦Ç –*”¥Ñ2_$‘—Z¹ ‹‹YÉ—jÒ TKùœzmQòÅZ÷ö5ëRTËf³YÉå‹¢µÜÀ\WÇ¥¦µ<Äš”Êuµ­çئ–¦ŽMšª…ì¢,fsR®7;ìûÑj©7¼mªH^µÝxŸÖô·J©`ìW6—wÖÙjÔ$=QëŒI¾¢ËÕ*5£*j¿·¦¿Oµ3›k?ZS-_ÌûX(…Û¦:N‹q}ãR¬i¢§ÛBhØ6µ²”*îœ(ÍzÅ:ÞOœ¶—ÊþãJ%„à³°° ’H$Œ®“¿ûÝïäûï¿ï9„öÝnuYÿ®\|§½»î¡+f%´Oüa]UAWÜ×ß¼ç›ù¿Yœ1Úe›)n]R½Ïé¢ +@7Š2>èm0¶ÚÍ·YNË`p]ãRn™¡1¡?Ž»Á¼`Tã*„=¿65 ‰¶÷éÊÍÐ}Ÿò´©–kïL^…¸VM!íIª uŸLHueÊø9ß0÷y!6x߈äj-óx ¶¯sd¦½ú[HD<ËD$›÷†ÐÎÛÈM˜Ç¿f…èTÔ|Þ ¯æëqÑ¡„P¼šJ¥’ ³K¬>£Ñ¨ÌÏÏ÷Ü÷7—å€ên{ºbt«]›Y3‚噹GÆ{Öæï™!ÔꎫwÍý—ÑÆkóWî¶P›ÔTѬ®¯z8ŒIÁ¨R6%=nª†Zgv|Ðè𷯤j…¤±ãÙZ[×à…3ôT¬Jœ–7C_¢ÐpºØF<]l‹3*\ ÎxÂã³·©aÍÈÄ¢”ëyéw·Üδަ©4KÆrýcI« ³ ž‘~£}›…¸:ÍjkYÆõàk…ׂ± #Ì5êa²ßYO[}Šm<,šÇ%]ÓÛ\4÷ÏùÇÃB ¡x…¤R)I&“¾çVWWåêÕ«½ =÷\¸rOú.Ù¾“¾O5ÙÕƒå¥`°TÁóM»;®?„fŒº:&Ô j)4žx¡F*é˜QM+6Í×ô ´°˜VUÞ´,¦g$¢‡ºxHWãVS굚”U×ÐÜâ‚$ÆG¬Ð£íBŸS›ìºPi9Ýh“žñ¥Áí8!´¶hTqgŠ _7ØŠu ÀF]íW¹$ù\VR3Æö¢Ö:ýûáDãù@¥±œ3&.*4Ú÷Ñ÷i­§}LèSlãaÙ¤ciÕå¶lÒÁ~k›õÅÀq"„BðÊÑÇÆb1ßs333211ñ\Æ„f¯®ªÊçw¾zñíçB .»ªZ¨BŒÝí5‰X¢22¢&óY(µ­·²÷t ”‘±g ¡ûo“¹ž¨5ñPûº:…P³B:(‹µöîЭZά.Z"##V÷àî!´”T¡2šôµ·Ÿot?½†ÐîÛhÉ¢^]U]•súrc ’O©¶Gg$· Õ ««.!” €WR«Õ’K—.ÉÔÔ”¬¯¯ãCõ°²³³ó\B¨Q U“ ÝñL–sæçÝCh£cJ±øÜ fUcY_·Û|:%‹Åz`½5™°º³ÖìXYh¡3EÿXG_}ö6ùCf§ênÇ©„Ö³F•p"§¹“ý,ª[¡ NÈŸ?ïÉVÎ:õñœ‘@m¢9–3&eÏqÊÇ­ð÷|Bh÷m¨®Ê9÷FE´’jcK%„àÕõøñcùüóÏåòåËòûßÿ^¶¶¶z»Ð·ºãþ°"×?ߘǕO7$Sý^+Uc èÁ÷«RØz$ñK«mcBÿ{L¨19Ѫ\IïtªW*+•†Öv;·’¦ÂOÒ¬ú§òRWÝS³‰‘cB­:2£f•m¨™_s³*–3ž1¡ú8Ï\¹"Ŭ5IPdÆ7¡Ð³¶iÏØŽBõú¤nM4&Y5ƒl½´hMËŠq{”¨¤K*äªÙs&"¾W0&'‘…|Å›¥”5iRJMŠ‹ÖÄG±E5#mûmhž&„v߆>‰SÁ¹¿èBå‰1öÕ®ê&K B(!?Bè៷Ï|kë»eÞjåÎÌwžç—­Ùq:!ôo.›•¼µ9{¹»rC ´AË;A$ž¯a(ê©PšANi†¸ÅøˆoöÕØLÎ×ýÓ‹è뎫*oª²€ìukÅ”1–Òžåu|<ê„ÐçÕ¦f)i¹tC¨>Sq lG¡Ñé¢5©OAÆ#žYf£RÔôçUw\ïL¶#SÕÆˆ9QP-wöévÁܾ}û”r6á›18:ž²ºH7Úö±¤‡ëŽ!Ô=Vö>î½ ³Z¾0fM|ÜzB%„à'B÷c÷±ll톆•ÞµÔ½4[½w5ViªÒÖhí±¬šœH_®Ùq¹f—õü@mÚçvjZ£ÙöýùFÛó=°ŽIcûöcmƒJ!à» B(¸ÐßMBÀ…>Àw“ t¾Ð^Vü¾B@¡„P€ B(¡ „„PB(„P!¯½‡räçyyÃãÀ›wåÈûë’©~ßÓ:ùŠzߊÌ?Ü{ÙÝ­‡òÑø–48ö!?ŪÉ!<}pO…Ãûrñ꺜y¿hÒ¹±µ÷:Ü.«eïöB3—–Õ²÷¤Î±¡xµ•Ëe¹yó¦äóù}…Ѓ*p^¸ýØ÷|}¹*ô ú~Mvç[’MoÉõ™šÜ¸ý¨k]_Ñ$®–‹Ï?”]« ª=’ØwÕ²ßʵݮˆkJ¥Tl6+Ù\^Êõ¦óZ³^‘J]­R”ìâ¢ä eiÚïkiêØÔ¤Ñ¨IÞxoAj ¾/!OmaaA$‘HH¿üîw¿“ï¿ÿ¾çÚwk·íµøûªjùæw²®?ÖÊñ7ÝvÏUЦ?„>–ø‡+¾åÞøyQnTõ*¨çù7ïÉF—eÛÚÙªI"Úoì›W²Ø0^/$"m¯õ$EÓ» í¯õG$[kñݡدR©d«Fà dzøŒF£2??ÿL!4suÕì’«}oR= ZÝs7nÝ7Bãñ¹G¾º‘¾g<fnÇZÿ¶^OoÕù+w­º÷²¾q§…¸/t>i•e\=Œ›Ußâ̈ñz"[3+¹ùãql±"¢ùsdÚã½Þe·_ŸÏ+û…ùûûÖ—?Â~vû<¶ù]ðZÑÇÆb1ßs333211ñL!tú½úY’µÝ†Ó÷àÛw-+røU9ùé¶/„šÁÕ³œši÷Ð;Eµìšd4ÝkYo[ZµœŒyºÓFFÌʧBõP9î™ð¨!ɈZN½n†Ð¨›îú*é˜ñ\ž±¡À«B©@xʼ°Ô~Šp8ÿGó½ÿø|—Åëm·,rè”ñÇ'õW¡mÛÖsÊüƒ½CèAkÙ^ŸÏ,üý}AûÙéóx1è­Õ’K—.ÉÔÔ”¬¯¯ãCõ€¶³³Ós NL´»¶aLLtà½à`UBÏy‹ßËÏ+rývÓ_ ½¢W7W%ëY×ú­ ùhæ¡ÑÅÖ¡'{/ëm9æ3*ÙJÃWéŒøBè„'„VŒîºní—…²;471hTN5¾?À+B7Òn}üȓµÖ3^˜>§eñz«ß±¾s¿~ùBhhÛöBUÕÔÊ“µG¯q}Aûúy¼¦Ç,?–Ï?ÿ\._¾,¿ÿýïekk«·÷Z·h9ü¡ ”Ÿ«n±ŸWå‡ß:·h™ÞòŽUc@Çë²¾õHâ—VCÇ„î®UÍI‹N¯K¶¼+wÒ÷ÍYvß©šcB/™ÁóJzgÏe½í4CfTÒ¥º4´Š,LD¬J¨Lh4¾(5Ïë å¦Bû#ãR¨Õ¥”5'*Š$ò|w€W"„~tѪ€+gÍŸû¾Ùã}*¤n¨¿œ­[âÙϺËý,û¬ÕÕ%o}Óô¼»bÔ¸ûÐóòª{tÜèq¹°cé}¾×ý¶ÛUôtíÝï1®ov^oã)Cè¾?çGÖòzÿ^4ö¡™Gžãþ`Ÿß·–û¹×=Ã÷qÓ\Ïî>ö?ë®·žýH»¬ïìf÷vz— ;&Oó]yžßUx•¨zøçùÀ µËrøÜ=™/?öýÿèú‡«¾åÞº²eT4y}’¢‚s‹–¼9^Ô™E÷ï$ku¯]›ûÎz^kÚ}Y_µ·®ºãzg¾ø˜ªfFÌj¦B½â‹es,©=1QdÐíÎ;¾@x5BhEä€uQ}¥$OâÃÖ…ÞÅÎŒ±qåô@¿5.Ký|èO¿lظ3½õnŽG¬°|½l]lnŠœ¹¨è*'ÿäߌ€ü©½Kò[Ö:3ÛîvëmVëíö¬÷·Ý/hç՘׃gýí8¨Ö‘ ŒµÍ|év%ôŸùJ`_­6\ÿ¬½b=­–]ÿÆý mª[Œ{,­÷õ©vì÷/wD}»*h\ü­ÿùCª²´Ñ~ÜŸ\n?Æg¾ |vÖö.Ϋm^l߿̃Àgìí þÙ¡¢ÇÏÙ9nj¿n|²ü—½{lk›'„žoÿüNþ)ä{zÖ3^Që+£íë6¾z ¯W®¶Þƶ¿ð•4¶­Ž÷•?–U¿±»áŸÙõïñ_¾#ãê»ÐêÞ·m?õϪþYõ}éÿ¬ÖU¸¶*Y™ÏB¾ÝBè>>ç^ŽÛ…;]ºœvj[ë=s«ówêú°¿ý‡Ïùþ¨`üvû}½Ðïÿ#DpÛ'ouÞÿÃýÇÏùŽ…}fzÛ~íÿÃËn—Úö»óÀ¿}ýûâý¬Ž|èbkξ+Öy©—ÏÃÙöSœöú®ò?*øQz•3|Œ§yŸÐA&!^Ézül p´ÜŠ`0$zƒá‘ÏÜ ¹ž DûÂt?Ëvrò\x0±»Ûí»è¹0­ºËÅ=Uؾ;ÏBU[¦Õº3*ÇKÚ\òìÛ¨[=Ú¸ë^ØŸ÷_xºê.W/y‚ž}ñhƒ]M-Ìû/œãVP߸ãn+¸ÏÆöíJªüžñ„ŒÃ´¶§ÚòÑoÛ/ÀãžÐì­¢y?ÏVÛ·÷ÖgnÕø†çyû;ôøuHå5`?Ÿsð¸Ý(»Õ9»ËùÁñ=ºf†µÍ»Þ³þõ ®7øÚv?ß‹ž¼îùÃÏÅ»½ýa¦ï–§ê§ßÉ_wÞ¶oÆënOU%u>_ïgvÄóû–ù¢=´÷Bc¿ ÿ¾\ö;w>Ó~ÿ˜Î¬§z}ãAoŸ‡½í§9ôò]¼pµ\R&f²¡÷ýlÕóŸ‘r“ã¼Z!´q§ýB/Xºó(¤ZÒß^°/üì Óý,Ûk•Öx~Ó Y±²øfÇ<óMçÊÑÑg ¡ÝÂ;õŒqxmzÜ|^ïê›àåýLŒJ´§ ­ú»ÛÏŸL‡ïsÛ…öoû"úޝjîvÂ'ouSÜöÙ»t?j?Æ=óÛççÜñ¸yÚwèÏ6&´ÓzªpH=ä èå» @}¼]?RA&®WùÔ¿±Ñî}žjXØÅ»Àì×ö³lGžÀi_ðßùÂ!ÚXm¿ ö*ü)Ðô)Ch¦‡‰Jz½õÌ•ßvÄÉ©D!²Sº„¡N!4XQîNÛ.öU5=½åì’Ûi{=‹°@¸ÏϹÛg×ëÄ:{NLXïÆ7Û`ïïG1¹zWÑ“ª™Ê>&eR뺡~W?RîÌp [t0žu»€‡}±²ÿ˜¼õe版ìn¬{†Pïã'ø)¨ïðuõ^P¬y+pŒöBŸö|ÐËw€ú¬tï䩌ôýºsx´» Ú¯ígÙnì*Û+àœ±º¾5ïV‡t¹­L°ª÷´!´— Ñ^õÝÝõðŸºw; †P_º„¡N!4¸Ï.ÀƒûÞn ]Ýÿ1î5„î÷sîöÙ=¯\o·ðîýNõ]ìpüÔïLa™rc£=޳ÞîrÿUýj¡}Lª‡kónżÞc%ÔþCÊ^¿7zhÜë<´Ÿúƒž¡Ï¦àsu\ͶyÆKU#Nz.”íjI·ê¦=YP/•Ðà²Ýlx&!º³êVF Ó»OYùøBh×J¨ YUíYÛtCæ¡}VB;…Ð`ÛöBƒÏ·]ì{þ`ñ‘Zçšú><Ö*–Íýwyî¹z÷é+¡/UµÃÚ‡yõÝîõO„Ó­MÎ>Zý\P½¦¿1»ðÎw†çB&;ò´Ëž|Ì>&Á®ÝÞ×:vißg%tC}g²%ã6,Æ ÆÎ˜Lu?.eÔkͧëŽû´çB( „¾v¥²ãL¯ž‹°n–a!öÛã{X¶+Ï…êÁs!mö´³ïN—Él†÷ åö€»ß QgŸC.üí W–S]Ž÷"Úóú£‡PÏ8»°2ýGó³±o{òT!´û8îós~®!ÔÛ¶g ¡jò¢·~m¾ü~ØötkS¬Ëí“ìÙ–ª¶gÛÁñ–ÞqÇmcBÛyeÏcB»!ÞvÏ>XŸ©×à¹u”]éïéóx^çB( „>_»¥ÙD÷3ªO"â Húlªö…ð/»Ï޻ײ{™¾¸Ïà–žYbuÞ™[íÛfxo¡bϪÏ.zü\Èl˜û½-{öyܽPÖg½=ä™×wl<ËygXÕƒìÆ“—$„zƱïAZH{*YOB™‚ÏîÚ¥›r/Ÿóó¡¡m{ÆêÌ’ü¥¿JÞ׿÷Œ½Ní÷Oh•ùSÈ=l½ãxíÞCS¿¦ó»è~÷¼³Äzï¡:ßeöãn³ãzÏÞÏêúU÷˜®|~»½ÞßG{»½~ûùžB!ôñ†ºB«‡Jg füjà^‚ç:ßûs?Ëv Í«þ{#Ûì ÕÆzûý“µ8æ!ãžë<íi.D}YµáH`’{¶aß=TC–s&zIB¨ ¼÷Z<øë¶{\:cðöU ½Û~ÖÝþx²×çü\*¡am{Æî¸W.>÷ÀøÐ+«Û³ö¥ÿ½Ç“ùf\»Ohà;æ½pð~™ú„I‡<Ÿï«]Ž_Ø1 |_ôÏÊwŸÐ?ùǦ˨cñVÈxY{œj¯ŸÇ~¾'„P@}Á]q÷ºO¢Î¾W§wÕøÛ&¤‘‹&¹Ùϲ]8]r;W½Šx²¿ýö­?¶ßE¿áà…®>3çÅÀD?žû:f·{?¾ój_ÿAUIÌ.fo|Ѿœ>ÖïúªÿbøpØDžÛ`Ǿٷ԰o+cßrǹ¬]•þbûÁ»Èª Õ™ ß2䎧 ¶çkóƒ“íœÛc‚¢^?çNÇ­Ë~ï9Þ¶.ëuBèE·Ù¶¬ú#ÄGWC&à9ç¯0wü#ÇC¿Ìßr¿K7ÝRö·O€¼×­7„ÿXôÖýŸ‰½¬óùv8&zE3ì³êóܶ¥¡z9rŽPݾ?n?Oõúyôú=Ùïw€úcRÓësbšzë9.»ÇxÀXy.”ÜIrݶ¥^[ß4'ÙÙxôŸ–;aÏúv˽"»n›Ÿ×±Û}dŠîŸÙÓ|Î?BÛzýýyêÏýQÇßó;“}d<àLÉëÖúëÏaŸëžïK§q¿›Vû6;WŸæóx‘ßBèk@¿Øll»“¶è•¹:ÇØ×nö3©V¯ã´@}-]øu ß7€ Bè ¡‡¹8öB÷3žÙyä Ž!ô'ÞW#¶±Í±B(€ !@BxÞþsøÓÎRé½IEND®B`‚flickcurl-1.25/docs/html/flickcurl-legacy-auth-use.html0000644000175000017500000000460612210726306020100 00000000000000 Use flickcurl

Use flickcurl

This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication

Now the configuration has been created and authentication completed, the library and the flickcurl(1) utility will work.

  $ flickcurl photos.getInfo 1234567
  flickcurl: Found photo with URI http://www.flickr.com/photos/yogi/1234567/ ID 1234567 and 1 tags
  ...
flickcurl-1.25/docs/html/flickcurl-section-photos-people.html0000644000175000017500000004216612210726306021346 00000000000000 Photos containing people.

Photos containing people.

Photos containing people. — Photos containing people.

Synopsis

int                 flickcurl_photos_people_add         (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id,
                                                         int person_x,
                                                         int person_y,
                                                         int person_w,
                                                         int person_h);
int                 flickcurl_photos_people_delete      (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id);
int                 flickcurl_photos_people_deleteCoords
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id);
int                 flickcurl_photos_people_editCoords  (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id,
                                                         int person_x,
                                                         int person_y,
                                                         int person_w,
                                                         int person_h);
flickcurl_person ** flickcurl_photos_people_getList     (flickcurl *fc,
                                                         const char *photo_id);

Description

Photos containing people.

Details

flickcurl_photos_people_add ()

int                 flickcurl_photos_people_add         (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id,
                                                         int person_x,
                                                         int person_y,
                                                         int person_w,
                                                         int person_h);

Add a person to a photo. Coordinates and sizes of boxes are optional; they are measured in pixels, based on the 500px image size shown on individual photo pages.

Implements flickr.photos.people.add (1.17)

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

photo_id :

The id of the photo to add a person to.

user_id :

The NSID of the user to add to the photo.

person_x :

The left-most pixel co-ordinate of the box around the person. (or < 0)

person_y :

The top-most pixel co-ordinate of the box around the person. (or < 0)

person_w :

The width (in pixels) of the box around the person. (or < 0)

person_h :

The height (in pixels) of the box around the person. (or < 0)

Returns :

non-0 on failure

flickcurl_photos_people_delete ()

int                 flickcurl_photos_people_delete      (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id);

Remove a person from a photo.

Implements flickr.photos.people.delete (1.17)

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

photo_id :

The id of the photo to remove a person from.

user_id :

The NSID of the person to remove from the photo.

Returns :

non-0 on failure

flickcurl_photos_people_deleteCoords ()

int                 flickcurl_photos_people_deleteCoords
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id);

Remove the bounding box from a person in a photo

Implements flickr.photos.people.deleteCoords (1.17)

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

photo_id :

The id of the photo to edit a person in.

user_id :

The NSID of the person whose bounding box you want to remove.

Returns :

non-0 on failure

flickcurl_photos_people_editCoords ()

int                 flickcurl_photos_people_editCoords  (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *user_id,
                                                         int person_x,
                                                         int person_y,
                                                         int person_w,
                                                         int person_h);

Edit the bounding box of an existing person on a photo.

Implements flickr.photos.people.editCoords (1.17)

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

photo_id :

The id of the photo to edit a person in.

user_id :

The NSID of the person to edit in a photo.

person_x :

The left-most pixel co-ordinate of the box around the person.

person_y :

The top-most pixel co-ordinate of the box around the person.

person_w :

The width (in pixels) of the box around the person.

person_h :

The height (in pixels) of the box around the person.

Returns :

non-0 on failure

flickcurl_photos_people_getList ()

flickcurl_person ** flickcurl_photos_people_getList     (flickcurl *fc,
                                                         const char *photo_id);

Get a list of people in a given photo.

Implements flickr.photos.people.getList (1.17)

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

photo_id :

The id of the photo to get a list of people for.

Returns :

list of persons or NULL on failure
flickcurl-1.25/docs/html/flickcurl-auth-authenticate.html0000644000175000017500000001725712210726306020526 00000000000000 Getting Authentication Token from Client Key and Client Secret

Getting Authentication Token from Client Key and Client Secret

If using the flickcurl command line tool, create a file ~/.flickcurl.conf with the two values found in the previous section - API becomes oauth_client_key and the Shared Secret becomes oauth_client_secret like this:

  [flickr]
  oauth_client_key=0123456789abcdef0123456789abcdef
  oauth_client_secret=fedcba9876543210

Next the Request Token, Request Token Secret need to be created and the Authentication URL generated from them.

The request token is created using the API request: flickcurl_oauth_create_request_token() which takes an optional Callback URL argument, that can be used for the browser to redirect to, if required. Otherwise use "oob" or NULL. It creates and sets the Request Token and Request Token Secret in the flickcurl object, which can be returned with: flickcurl_get_oauth_request_token() and flickcurl_get_oauth_request_token_secret().

   rc = flickcurl_oauth_create_request_token(fc, callback);
   request_token = flickcurl_get_oauth_request_token(fc);
   request_token_secret = flickcurl_get_oauth_request_token_secret(fc);
   uri = flickcurl_oauth_get_authorize_uri(fc);

The flickcurl(1) utility can also perform this sequence with:

  $ flickcurl oauth-create

which will print the request token, request token secret and Authentication URL. This command takes an optional callback URL argument.

The resulting request token and secret will look like 72157626737672178-022bbd2f4c2f3432 and fccb68c4e6103197 respectively.

The Authentication URL should then be used to prompt the user a web browser to validate the request.

Flickr will return a page that says something like:

  "[APP NAME] wants to link to your Flickr account"

with more information and two buttons. Click the button with the text:

  [OK, I'LL AUTHORIZE IT]

Flickr App Garden - Mobile Auth

Flickr will then return the 9-digit Verifier that looks like 123-456-789 In one of two ways depending if a callback URL was given:

  1. Callback URL: Returns a redirect to the Callback URL with a query parameter oauth_verifier whose value is the Verifier. The application has to extract that value and pass it to the flickcurl library.

  2. No callback URL: Will display a page that shows the Verifier. This will require the user to type it into the application.

Now the Request Token, Request Token Secret and Verifier can be used to generate the Access Token and Access Token Secret.

  /* These are required to be set for this call */
  flickcurl_set_oauth_request_token(fc, request_token);
  flickcurl_set_oauth_request_token_secret(fc, request_token_secret);

  rc = flickcurl_oauth_create_access_token(fc, verifier);

This sets the Access Token and Access Token Secret in the flickcurl object, which can be returned with: flickcurl_get_oauth_token() and flickcurl_get_oauth_token_secret(). The application should then store these values for use in making API calls along with the Client Key and Client Secret.

The flickcurl(1) utility can also perform this verification with:

  $ flickcurl oauth-verify 72157626737672178-022bbd2f4c2f3432 fccb68c4e6103197 123-456-789
  flickcurl: OAuth access token returned token '72157626737672178-022bbd2f4c2f3432' secret token 'fccb68c4e6103197'
  flickcurl: Updated configuration file /Users/NAME/.flickcurl.conf with authentication token

It writes the resulting Access Token and Access Token Secret to the ~/.flickcurl.conf configuration file as the oauth_token and oauth_token_secret fields to give something like:

  $ cat ~/.flickcurl.conf
  [flickr]
  oauth_token=12345678901234567-abcdef0123456789
  oauth_token_secret=abcdef9876543210
  oauth_client_key=0123456789abcdef0123456789abcdef
  oauth_client_secret=fedcba9876543210

At this stage, the flickcurl(1) utility or library is authenticated and ready to use.

flickcurl-1.25/docs/html/flickcurl-auth-use.html0000644000175000017500000000415512210726306016635 00000000000000 Use Flickcurl

Use Flickcurl

Now the configuration has been created and authentication completed, the library and the flickcurl(1) utility will work.

  $ flickcurl photos.getInfo 1234567
  flickcurl: Found photo with URI http://www.flickr.com/photos/yogi/1234567/ ID 1234567 and 1 tags
  ...
flickcurl-1.25/docs/html/flickcurl-auth-register.html0000644000175000017500000001500412210726306017660 00000000000000 Register application to get Client Key and Client Secret

Register application to get Client Key and Client Secret

NOTE: In the pictures below, the Flickr web site is shown in English and the screenshots are valid as of August 2012. Flickr upgrade the web site now and then so these instructions may not match the latest look. Hopefully you can figure it out!

Start by navigating to the Flickr App Garden at http://www.flickr.com/services/ and follow the link 'Create an App' taking you to http://www.flickr.com/services/apps/create/

Flickr App Garden - Get your API Key

Select the link 'Request an API Key' taking you to http://www.flickr.com/services/apps/create/apply/

Flickr App Garden - Commercial / Non-Commercial

Select either of the two buttons: 'Apply for a Non-Commercial Key' or 'Apply for a Commercial Key' as appropriate.

Flickr App Garden - Describe application

Fill in the form fields and submit it via the 'Submit' button.

Flickr App Garden - Key and Secret

Flickr will return a page containing both the API Key that looks something like:

   0123456789abcdef0123456789abcdef

and Secret which looks something like:

   fedcba9876543210

These strings should be used for the values of the Client Key (oauth_client_key) and Client Secret (oauth_client_secret) keys in either the ~/.flickcurl.conf if used with the flickcurl(1) utility or in code, with the flickcurl_set_oauth_client_key() and flickcurl_set_oauth_client_secret() functions.

You may need to change the key to be of type mobile since no callback URL is usually appropriate for a command-line application or library. This step is probably no longer needed since the callback is specified in a later step.

Click the 'Edit auth flow for this app' link below the Key and Secret

Flickr App Garden - Edit authentication flow

Change the 'App Type' to 'Mobile Application' then set the 'Mobile Permissions' to 'Read', 'Write' Or 'Delete' as appropriate.

Flickr App Garden - Edit authentication flow: mobile

This sequence will make the new key 'Auth mode Mobile' and an authentication URL will be shown on the same page something like http://www.flickr.com/auth-11111111111111111. This URL should NOT be used and is only for the legacy Flickr authentication flow.

Finish with the 'Save Changes' button to confirm and return you to the application page.

Flickr App Garden - Application page

If you ever need to alter or view the authentication, use the link 'Edit the authentication flow' on right-hand side of the application page.

All your Flickr applications are linked from http://www.flickr.com/services/apps/by/me

flickcurl-1.25/docs/html/flickcurl-section-stats.html0000644000175000017500000016333012210726306017703 00000000000000 Statistics.

Statistics.

Statistics. — Statistics.

Synopsis

                    flickcurl_stat;
                    flickcurl_view_stats;
void                flickcurl_free_stat                 (flickcurl_stat *stat);
void                flickcurl_free_stats                (flickcurl_stat **stats_object);
void                flickcurl_free_view_stats           (flickcurl_view_stats *view_stats);
int                 flickcurl_stats_getCSVFiles         (flickcurl *fc);
flickcurl_stat **   flickcurl_stats_getCollectionDomains
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *collection_id,
                                                         int per_page,
                                                         int page);
flickcurl_stat **   flickcurl_stats_getCollectionReferrers
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         const char *collection_id,
                                                         int per_page,
                                                         int page);
int                 flickcurl_stats_getCollectionStats  (flickcurl *fc,
                                                         const char *date,
                                                         const char *collection_id);
flickcurl_stat **   flickcurl_stats_getPhotoDomains     (flickcurl *fc,
                                                         const char *date,
                                                         const char *photo_id,
                                                         int per_page,
                                                         int page);
flickcurl_stat **   flickcurl_stats_getPhotoReferrers   (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         const char *photo_id,
                                                         int per_page,
                                                         int page);
flickcurl_stat *    flickcurl_stats_getPhotoStats       (flickcurl *fc,
                                                         const char *date,
                                                         const char *photo_id);
flickcurl_stat **   flickcurl_stats_getPhotosetDomains  (flickcurl *fc,
                                                         const char *date,
                                                         const char *photoset_id,
                                                         int per_page,
                                                         int page);
flickcurl_stat **   flickcurl_stats_getPhotosetReferrers
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         const char *photoset_id,
                                                         int per_page,
                                                         int page);
int                 flickcurl_stats_getPhotosetStats    (flickcurl *fc,
                                                         const char *date,
                                                         const char *photoset_id);
flickcurl_stat **   flickcurl_stats_getPhotostreamDomains
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         int per_page,
                                                         int page);
flickcurl_stat **   flickcurl_stats_getPhotostreamReferrers
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         int per_page,
                                                         int page);
int                 flickcurl_stats_getPhotostreamStats (flickcurl *fc,
                                                         const char *date);
flickcurl_photo **  flickcurl_stats_getPopularPhotos    (flickcurl *fc,
                                                         const char *date,
                                                         const char *sort,
                                                         int per_page,
                                                         int page,
                                                         const char *extras);
flickcurl_view_stats * flickcurl_stats_getTotalViews    (flickcurl *fc,
                                                         const char *date);

Description

Statistics.

Details

flickcurl_stat

typedef struct {
  int views;
  int comments;
  int favorites;
  char *name;
  char *url;
  char *searchterms;
} flickcurl_stat;

Statistics object

int views;

number of views of item

int comments;

number of comments on item

int favorites;

number of item favorites

char *name;

name assocated with stat (e.g. domain name)

char *url;

URL associated with stat (e.g. referrer URL)

char *searchterms;

search term assocated with stat

flickcurl_view_stats

typedef struct {
  int total;
  int photos;
  int photostreams;
  int sets;
  int collections;
} flickcurl_view_stats;

Total views statistics

int total;

total view

int photos;

number of photo views

int photostreams;

number of photostream views

int sets;

number of set views

int collections;

number of collection views

flickcurl_free_stat ()

void                flickcurl_free_stat                 (flickcurl_stat *stat);

Destructor for stat object

stat :

stat object

flickcurl_free_stats ()

void                flickcurl_free_stats                (flickcurl_stat **stats_object);

Destructor for array of stat objects

stats_object :

stat object array

flickcurl_free_view_stats ()

void                flickcurl_free_view_stats           (flickcurl_view_stats *view_stats);

Destructor for view stat object

view_stats :

view stat object

flickcurl_stats_getCSVFiles ()

int                 flickcurl_stats_getCSVFiles         (flickcurl *fc);

Returns a list of URLs for text files containing historic stats data (from November 26th 2007 to 1 June 2010) for the current user.

Not implemented since the files that this API call points to stop working after June 1 2010.

Implements flickr.stats.getCSVFiles (1.19)

Announced http://code.flickr.com/blog/2010/05/13/stats-api-redux/

fc :

flickcurl context

Returns :

always returns non-0 to signify failure

flickcurl_stats_getCollectionDomains ()

flickcurl_stat **   flickcurl_stats_getCollectionDomains
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *collection_id,
                                                         int per_page,
                                                         int page);

Get a list of referring domains for a collection

Implements flickr.stats.getCollectionDomains (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

collection_id :

The id of the collection to get stats for. If not provided, stats for all collections will be returned. (or NULL)

per_page :

Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getCollectionReferrers ()

flickcurl_stat **   flickcurl_stats_getCollectionReferrers
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         const char *collection_id,
                                                         int per_page,
                                                         int page);

Get a list of referrers from a given domain to a collection

Implements flickr.stats.getCollectionReferrers (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

domain :

The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.

collection_id :

The id of the collection to get stats for. If not provided, stats for all collections will be returned. (or NULL)

per_page :

Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getCollectionStats ()

int                 flickcurl_stats_getCollectionStats  (flickcurl *fc,
                                                         const char *date,
                                                         const char *collection_id);

Get the number of views on a collection for a given date.

Implements flickr.stats.getCollectionStats (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

collection_id :

The id of the collection to get stats for.

Returns :

views count or <0 on failure

flickcurl_stats_getPhotoDomains ()

flickcurl_stat **   flickcurl_stats_getPhotoDomains     (flickcurl *fc,
                                                         const char *date,
                                                         const char *photo_id,
                                                         int per_page,
                                                         int page);

Get a list of referring domains for a photo

Implements flickr.stats.getPhotoDomains (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

photo_id :

The id of the photo to get stats for. If not provided, stats for all photos will be returned. (or NULL)

per_page :

Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getPhotoReferrers ()

flickcurl_stat **   flickcurl_stats_getPhotoReferrers   (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         const char *photo_id,
                                                         int per_page,
                                                         int page);

Get a list of referrers from a given domain to a photo

Implements flickr.stats.getPhotoReferrers (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

domain :

The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.

photo_id :

The id of the photo to get stats for. If not provided, stats for all photos will be returned. (or NULL)

per_page :

Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getPhotoStats ()

flickcurl_stat *    flickcurl_stats_getPhotoStats       (flickcurl *fc,
                                                         const char *date,
                                                         const char *photo_id);

Get the number of views, comments and favorites on a photo for a given date.

Implements flickr.stats.getPhotoStats (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

photo_id :

The id of the photo to get stats for.

Returns :

non-0 on failure

flickcurl_stats_getPhotosetDomains ()

flickcurl_stat **   flickcurl_stats_getPhotosetDomains  (flickcurl *fc,
                                                         const char *date,
                                                         const char *photoset_id,
                                                         int per_page,
                                                         int page);

Get a list of referring domains for a photoset

Implements flickr.stats.getPhotosetDomains (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

photoset_id :

The id of the photoset to get stats for. If not provided, stats for all sets will be returned. (or NULL)

per_page :

Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getPhotosetReferrers ()

flickcurl_stat **   flickcurl_stats_getPhotosetReferrers
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         const char *photoset_id,
                                                         int per_page,
                                                         int page);

Get a list of referrers from a given domain to a photoset

Implements flickr.stats.getPhotosetReferrers (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

domain :

The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.

photoset_id :

The id of the photoset to get stats for. If not provided, stats for all sets will be returned. (or NULL)

per_page :

Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getPhotosetStats ()

int                 flickcurl_stats_getPhotosetStats    (flickcurl *fc,
                                                         const char *date,
                                                         const char *photoset_id);

Get the number of views on a photoset for a given date.

Implements flickr.stats.getPhotosetStats (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

photoset_id :

The id of the photoset to get stats for.

Returns :

number of views or <0 on failure

flickcurl_stats_getPhotostreamDomains ()

flickcurl_stat **   flickcurl_stats_getPhotostreamDomains
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         int per_page,
                                                         int page);

Get a list of referring domains for a photostream

Implements flickr.stats.getPhotostreamDomains (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

per_page :

Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100 (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getPhotostreamReferrers ()

flickcurl_stat **   flickcurl_stats_getPhotostreamReferrers
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         const char *domain,
                                                         int per_page,
                                                         int page);

Get a list of referrers from a given domain to a user's photostream

Implements flickr.stats.getPhotostreamReferrers (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

domain :

The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.

per_page :

Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_stats_getPhotostreamStats ()

int                 flickcurl_stats_getPhotostreamStats (flickcurl *fc,
                                                         const char *date);

Get the number of views on a user's photostream for a given date.

Implements flickr.stats.getPhotostreamStats (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.

Returns :

number of views or <0 on failure

flickcurl_stats_getPopularPhotos ()

flickcurl_photo **  flickcurl_stats_getPopularPhotos    (flickcurl *fc,
                                                         const char *date,
                                                         const char *sort,
                                                         int per_page,
                                                         int page,
                                                         const char *extras);

Get stats for popular photos

Implements flickr.stats.getPopularPhotos (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day. If no date is provided, all time view counts will be returned. (or NULL)

sort :

The order in which to sort returned photos. Defaults to views. The possible values are views, comments and favorites. Other sort options are available through search. (or NULL)

per_page :

Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o (or NULL)

Returns :

non-0 on failure

flickcurl_stats_getTotalViews ()

flickcurl_view_stats * flickcurl_stats_getTotalViews    (flickcurl *fc,
                                                         const char *date);

Get the overall view counts for an account

Implements flickr.stats.getTotalViews (1.17)

Announced 2010-03-03 http://code.flickr.com/blog/2010/03/03/flickr-stats-api/

fc :

flickcurl context

date :

Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day. If no date is provided, all time view counts will be returned. (or NULL)

Returns :

view count or <0 on failure
flickcurl-1.25/docs/html/flickcurl-section-note.html0000644000175000017500000001100412210726306017500 00000000000000 Notes.

Notes.

Notes. — Photo notes.

Synopsis

                    flickcurl_note;

Description

Photo notes.

Details

flickcurl_note

typedef struct {
  int id;
  char* author;
  char* authorname;
  unsigned int x;
  unsigned int y;
  unsigned int w;
  unsigned int h;
  char* text;
} flickcurl_note;

A note attached to a rectangular area on a photo.

A Photo Note.

int id;

note identifier (per-photo)

char *author;

author (may be NULL)

char *authorname;

author real name (may be NULL)

unsigned int x;

The left coordinate of the note

unsigned int y;

The top coordinate of the note

unsigned int w;

The width of the note

unsigned int h;

The height of the note

char *text;

The description of the note
flickcurl-1.25/docs/html/flickcurl-searching-search-results.html0000644000175000017500000000663712210726306022016 00000000000000 Handling a photos search result

Handling a photos search result

If a photos search from flickcurl_photos_search_params() returns a flickcurl_photos_list object then there will be a result available to use. This structure contains the format name of the result, the number of photos and the photos objects themselves (for a SPR) or the raw content bytes (for XML / other format results). The SPR format name is "xml".

The following code fragment takes a search result in the variable photos_list and prints it out if a standard photo list or raw content are returned. Otherwise it prints an error.

  if(photos_list->photos) {
    int i;

    /* if the result is SPR - print out the URLs of the photos */
    printf("Search returned %d photos\n", photos_list->photos_count);
    for(i = 0; i < photos_list->photos_count; ++i) {
      printf("  Result #%d has ID %s\n", i, photos_list->photos[i]->id);
    }

  } else if(photos_list->content) {

    /* if the result is raw content - print it out */
    fprintf(stderr, "Search returned %d bytes of content in format %s\n", 
            photos_list->content_length, photos_list->format);
    fwrite(photos_list->content, 1, photos_list->content_length, stdout);

  } else {

    /* if the result is something else - throw an error */
    fprintf(stderr, "Search returned neither photos nor raw content\n");
  }
flickcurl-1.25/docs/html/right.png0000644000175000017500000000073012210726306014056 00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ2 I%Á=eIDATxœ­”!oÂ@†Ÿ.'**M0$ÄÁ$¿?1~¢vIeEuLlÉ&–Ô4‚ä Í¶B»Ý›œ¹|÷>ï—ûî …$ݶ©oc<”´ÑA©¤×€X’ò Build Flickcurl library and flickcurl(1) utility

Build Flickcurl library and flickcurl(1) utility

This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication

  $ ./configure
  $ make

Add the utils directory to your shell search path:

  $ PATH=`pwd`/utils:$PATH
on bourne shells such as Bash or
  $ setenv PATH `pwd`/utils:$PATH
on c shells such as tcsh

You should get an error if you now try the utility:

  $ flickcurl photos.getInfo 1234567
  flickcurl: ERROR: No shared secret
  flickcurl: Command photos.getInfo failed

This is because there is no configuration set for the library. For the flickcurl(1) utility, it reads the configuration from a file ~/.flickcurl.conf which contains parameters used for authentication. This section describes how those parameters are obtained.

flickcurl-1.25/docs/html/flickcurl-section-gallery.html0000644000175000017500000011160112210726306020176 00000000000000 Galleries

Galleries

Galleries — Galleries of photos.

Synopsis

                    flickcurl_gallery;
void                flickcurl_free_gallery              (flickcurl_gallery *gallery);
void                flickcurl_free_galleries            (flickcurl_gallery **galleries_object);
int                 flickcurl_galleries_addPhoto        (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *photo_id,
                                                         const char *comment_text);
char *              flickcurl_galleries_create          (flickcurl *fc,
                                                         const char *title,
                                                         const char *description,
                                                         const char *primary_photo_id,
                                                         char **gallery_url_p);
int                 flickcurl_galleries_editMeta        (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *title,
                                                         const char *description);
int                 flickcurl_galleries_editPhoto       (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *photo_id,
                                                         const char *new_comment);
int                 flickcurl_galleries_editPhotos      (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *primary_photo_id,
                                                         const char **photo_ids_array);
flickcurl_gallery * flickcurl_galleries_getInfo         (flickcurl *fc,
                                                         const char *gallery_id);
flickcurl_gallery ** flickcurl_galleries_getList        (flickcurl *fc,
                                                         const char *user_id,
                                                         int per_page,
                                                         int page);
flickcurl_gallery ** flickcurl_galleries_getListForPhoto
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_galleries_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *gallery_id,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_photo **  flickcurl_galleries_getPhotos       (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Description

Galleries of photos.

Details

flickcurl_gallery

typedef struct {
  char *id;
  char *url;
  char *owner;
  int date_create;
  int date_update;
  flickcurl_photo* primary_photo;
  int count_photos;
  int count_videos;
  char *title;
  char *description;
} flickcurl_gallery;

A photo gallery.

The list of photos in the gallery is available via the API calls flickcurl_galleries_getPhotos() or flickcurl_galleries_getPhotos_params()

char *id;

gallery ID

char *url;

URL of gallery

char *owner;

owner NSID

int date_create;

creation date of gallery

int date_update;

update / last modified date of gallery

flickcurl_photo *primary_photo;

primary photo for the gallery

int count_photos;

number of photos in the gallery

int count_videos;

number of photos in the gallery

char *title;

Gallery title

char *description;

Gallery description

flickcurl_free_gallery ()

void                flickcurl_free_gallery              (flickcurl_gallery *gallery);

Destructor for gallery object

gallery :

gallery object

flickcurl_free_galleries ()

void                flickcurl_free_galleries            (flickcurl_gallery **galleries_object);

Destructor for array of gallery objects

galleries_object :

gallery object array

flickcurl_galleries_addPhoto ()

int                 flickcurl_galleries_addPhoto        (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *photo_id,
                                                         const char *comment_text);

Add a photo to a gallery.

Implements flickr.galleries.addPhoto (1.17)

fc :

flickcurl context

gallery_id :

The ID of the gallery to add a photo to as returned by flickcurl_galleries_getList() and flickcurl_galleries_getListForPhoto().

photo_id :

The photo ID to add to the gallery.

comment_text :

A short comment or story to accompany the photo (or NULL).

Returns :

non-0 on failure

flickcurl_galleries_create ()

char *              flickcurl_galleries_create          (flickcurl *fc,
                                                         const char *title,
                                                         const char *description,
                                                         const char *primary_photo_id,
                                                         char **gallery_url_p);

Create a new gallery for the calling user.

Implements flickr.galleries.create (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

title :

The name of the gallery

description :

A short description for the gallery

primary_photo_id :

The first photo to add to your gallery (or NULL)

gallery_url_p :

pointer to variable to store new gallery URL (or NULL)

Returns :

gallery ID or NULL on failure

flickcurl_galleries_editMeta ()

int                 flickcurl_galleries_editMeta        (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *title,
                                                         const char *description);

Modify the meta-data for a gallery.

Implements flickr.galleries.editMeta (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

gallery_id :

The gallery ID to update.

title :

The new title for the gallery.

description :

The new description for the gallery. (or NULL)

Returns :

non-0 on failure

flickcurl_galleries_editPhoto ()

int                 flickcurl_galleries_editPhoto       (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *photo_id,
                                                         const char *new_comment);

Edit the comment for a gallery photo.

Implements flickr.galleries.editPhoto (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

gallery_id :

The ID of the gallery to add a photo to. Note: this is the compound ID returned in methods like flickr.galleries.getList, and flickr.galleries.getListForPhoto.

photo_id :

The photo ID to add to the gallery.

new_comment :

The updated comment the photo.

Returns :

non-0 on failure

flickcurl_galleries_editPhotos ()

int                 flickcurl_galleries_editPhotos      (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *primary_photo_id,
                                                         const char **photo_ids_array);

Modify the photos in a gallery. Use this method to add, remove and re-order photos.

Implements flickr.galleries.editPhotos (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

gallery_id :

The id of the gallery to modify. The gallery must belong to the calling user.

primary_photo_id :

The id of the photo to use as the 'primary' photo for the gallery. This id must also be passed along in photo_ids list argument.

photo_ids_array :

Array of photo ids to include in the gallery. They will appear in the set in the order sent. This list MUST contain the primary photo id. This list of photos replaces the existing list.

Returns :

non-0 on failure

flickcurl_galleries_getInfo ()

flickcurl_gallery * flickcurl_galleries_getInfo         (flickcurl *fc,
                                                         const char *gallery_id);

Get information for a gallery.

Implements flickr.galleries.getInfo (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

gallery_id :

The gallery ID you are requesting information for.

Returns :

gallery or NULL on failure

flickcurl_galleries_getList ()

flickcurl_gallery ** flickcurl_galleries_getList        (flickcurl *fc,
                                                         const char *user_id,
                                                         int per_page,
                                                         int page);

Return the list of galleries created by a user.

Galleries are returned sorted from newest to oldest.

Implements flickr.galleries.getList (1.17)

fc :

flickcurl context

user_id :

The NSID of the user to get a galleries list for. If none is specified, the calling user is assumed.

per_page :

Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

array of galleries or NULL on failure

flickcurl_galleries_getListForPhoto ()

flickcurl_gallery ** flickcurl_galleries_getListForPhoto
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         int per_page,
                                                         int page);

Return the list of galleries to which a photo has been added.

Galleries are returned sorted by date which the photo was added to the gallery.

Implements flickr.galleries.getListForPhoto (1.17)

fc :

flickcurl context

photo_id :

The ID of the photo to fetch a list of galleries for.

per_page :

Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

array of galleries or NULL on failure

flickcurl_galleries_getPhotos_params ()

flickcurl_photos_list * flickcurl_galleries_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *gallery_id,
                                                         flickcurl_photos_list_params *list_params);

Return the list of photos for a gallery

Currently supported extras fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o

fc :

flickcurl context

gallery_id :

The ID of the gallery of photos to return

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

list of people public photos or NULL on failure

flickcurl_galleries_getPhotos ()

flickcurl_photo **  flickcurl_galleries_getPhotos       (flickcurl *fc,
                                                         const char *gallery_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Return the list of photos for a gallery

See flickcurl_galleries_getPhotos_params() for details of extras.

Implements flickr.galleries.getPhotos (1.18)

Announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

fc :

flickcurl context

gallery_id :

The ID of the gallery of photos to return

extras :

A comma-delimited list of extra information to fetch for each returned record.

per_page :

Number of photos to return per page (default 100, max 500)

page :

The page of results to return (default 1)

Returns :

list of photos or NULL on failure
flickcurl-1.25/docs/html/home.png0000644000175000017500000000121612210726306013671 00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ1õÚKvIDATxœÕ•±kqÅ?ßrC‡ßàpà ~C„np¼¡CAAJ .B-\'G‡]:Ü “‚ƒCÇ -(ˆ8´à Ô€!…fD°€…çÒ“klbRÛÁoyüxïûîËïwpðIJº<°of_®-@ÒððçRH•´ÏfÖŸtèÂü¤^¯×ÓÚÚš’$Q«ÕÒ|“ôpâ’¶€gív;X^^&Ïs¢(bww—Z­F£ÑÀ9Çææ&Þû3à¶™ Æ’^IRµZUE.0Z]]Uš¦ ÃPY–Mü8óHÒGIÚÙÙÑìììæeŸkqqñÒ€™!ó  $ÛÛÛ¬¯¯3Œn eýþ{-/seeeìÔÃŒãXóóóåO‡Í·$ý8==UÇS™—é½×ÑÑQòRR€¤'ã–9-sÚÛÛ+B^ éC·Û•sîŸÍËÂ+%À°<7³ŸWô˜¿ õâ:™2IEND®B`‚flickcurl-1.25/docs/html/flickcurl-section-panda.html0000644000175000017500000001500212210726306017620 00000000000000 Panda photos

Panda photos

Panda photos — Photos selected by Pandas.

Synopsis

char **             flickcurl_panda_getList             (flickcurl *fc);
flickcurl_photo **  flickcurl_panda_getPhotos           (flickcurl *fc,
                                                         const char *panda_name);

Description

Photos selected by Pandas.

Details

flickcurl_panda_getList ()

char **             flickcurl_panda_getList             (flickcurl *fc);

Get the current list of Flickr Pandas

Can be used with flickcurl_panda_getPhotos() to get photos for the given Flickr Panda

Announced 2009-03-03 http://code.flickr.com/blog/2009/03/03/panda-tuesday-the-history-of-the-panda-new-apis-explore-and-you/

Implements flickr.panda.getList (1.9)

fc :

flickcurl context

Returns :

non-0 on failure

flickcurl_panda_getPhotos ()

flickcurl_photo **  flickcurl_panda_getPhotos           (flickcurl *fc,
                                                         const char *panda_name);

Ask the Flickr Pandas for a list of recent public (and "safe") photos.

Use flickcurl_panda_getList() to get the list of Flickr Pandas

Announced 2009-03-03 http://code.flickr.com/blog/2009/03/03/panda-tuesday-the-history-of-the-panda-new-apis-explore-and-you/

Only "supports the following extras: ownername, license, date_upload, date_taken, tags, machine_tags, views, media" - Sergey M., Flickr staff 2011-09-16 http://tech.groups.yahoo.com/group/yws-flickr/message/7203

Implements flickr.panda.getPhotos (1.9)

fc :

flickcurl context

panda_name :

The name of the panda to ask for photos from.

Returns :

photos array or NULL on failure
flickcurl-1.25/docs/html/flickcurl-auth-upgrade.html0000644000175000017500000000670012210726306017466 00000000000000 Upgrading from legacy Flickr authentication

Upgrading from legacy Flickr authentication

The flickcurl_auth_oauth_getAccessToken() function turns an existing legacy-authenticated application and updates it to use OAuth. After this call, the legacy authentication tokens will expire within 24hrs (according to Flickr) so should no longer be used.

  rc = flickcurl_auth_oauth_getAccessToken(fc);

The OAuth access token and access token secret are then saved to the flickcurl object and can be read via flickcurl_get_oauth_token() and flickcurl_get_oauth_token_secret() and saved along with the Client Key (was API) and Client Secret (was Shared Secret).

The flickcurl(1) utility can also perform this upgrade with:

  $ flickcurl oauth-upgrade

It writes the resulting Access Token and Access Token Secret to the ~/.flickcurl.conf configuration file as the oauth_token and oauth_token_secret and rewrites the api_key (API Key) and secret (Shared Secret fields) as oauth_client_key (Client Key) and oauth_client_secret (Client Secret) respectively. .

flickcurl-1.25/docs/html/flickcurl-section-upload.html0000644000175000017500000004160012210726306020024 00000000000000 Uploading

Uploading

Uploading — Uploading APIs and Asynchronous upload tickets.

Description

Uploading APIs and Asynchronous upload tickets.

Details

flickcurl_ticket

typedef struct {
  int id;
  int photoid;
  int complete;
  int invalid;
} flickcurl_ticket;

An aysnchronous photo upload ticket.

int id;

ticket ID

int photoid;

photoID

int complete;

complete flag

int invalid;

invalid flag

flickcurl_free_ticket ()

void                flickcurl_free_ticket               (flickcurl_ticket *ticket);

Destructor for ticket object

ticket :

ticket object

flickcurl_free_tickets ()

void                flickcurl_free_tickets              (flickcurl_ticket **tickets_object);

Destructor for array of ticket objects

tickets_object :

ticket object array

flickcurl_upload_params

typedef struct {
  const char* photo_file;
  const char *title;
  const char *description;
  const char *tags;  
  int is_public;
  int is_friend;
  int is_family;  
  int safety_level;
  int content_type;
  /* Flickcurl 1.22+ */
  int hidden;
} flickcurl_upload_params;

Photo upload parameters

const char *photo_file;

photo filename

const char *title;

title or NULL

const char *description;

description of photo (HTML) (or NULL)

const char *tags;

space-separated list of tags (or NULL)

int is_public;

is public photo boolean (non-0 true)

int is_friend;

is friend photo boolean (non-0 true)

int is_family;

is family photo boolean (non-0 true)

int safety_level;

<=0 default, 1=safe, 2=moderate, 3=restricted

int content_type;

<=0 default, 1=photo, 2=screenshot, 3=other/artwork

int hidden;

<=0 default, 1=in global search, 2=hidden from publish searches (Flickcurl 1.22+)

flickcurl_upload_status

typedef struct {
  char *photoid;
  char *secret;
  char *originalsecret;
  char *ticketid;
} flickcurl_upload_status;

An upload response.

char *photoid;

photo ID that was uploaded/replaced (upload only)

char *secret;

secret of photo uploaded (replace only)

char *originalsecret;

secret of original photo (replace only)

char *ticketid;

ticket ID for asynchronous upload (replace only)

flickcurl_user_upload_status

typedef struct {
  char* username;
  int bandwidth_maxbytes;
  int bandwidth_maxkb;
  int bandwidth_usedbytes;
  int bandwidth_usedkb;
  int bandwidth_remainingbytes;
  int bandwidth_remainingkb;

  int filesize_maxbytes;
  int filesize_maxkb;

  int sets_created;
  char* sets_remaining;
} flickcurl_user_upload_status;

A user's upload status

char *username;

user name

int bandwidth_maxbytes;

max bytes

int bandwidth_maxkb;

max kbytes

int bandwidth_usedbytes;

used bytes

int bandwidth_usedkb;

used kbytes

int bandwidth_remainingbytes;

remaining bytes

int bandwidth_remainingkb;

remaining kbytes

int filesize_maxbytes;

max file size in bytes

int filesize_maxkb;

max file size in kbytes

int sets_created;

number of sets created

char *sets_remaining;

remaining sets: 0, 1, 2, 3 or "lots"

flickcurl_free_upload_status ()

void                flickcurl_free_upload_status        (flickcurl_upload_status *status);

Destructor - free a flickcurl_upload_status

status :

status object

flickcurl_free_user_upload_status ()

void                flickcurl_free_user_upload_status   (flickcurl_user_upload_status *u);

Destructor for user upload status object

u :

user upload status object

flickcurl_upload_status_free ()

void                flickcurl_upload_status_free        (flickcurl_upload_status *status);

flickcurl-1.25/docs/html/flickcurl-section-test.html0000644000175000017500000001534412210726306017525 00000000000000 Test

Test

Test — Test functions.

Synopsis

int                 flickcurl_test_echo                 (flickcurl *fc,
                                                         const char *key,
                                                         const char *value);
char *              flickcurl_test_login                (flickcurl *fc);
int                 flickcurl_test_null                 (flickcurl *fc);

Description

Test functions.

Details

flickcurl_test_echo ()

int                 flickcurl_test_echo                 (flickcurl *fc,
                                                         const char *key,
                                                         const char *value);

A testing method which echo's all parameters back in the response.

Actually prints the returned byte count to stderr.

Implements flickr.test.echo (0.5)

fc :

flickcurl context

key :

test key

value :

test value

Returns :

non-0 on failure

flickcurl_test_login ()

char *              flickcurl_test_login                (flickcurl *fc);

A testing method which checks if the caller is logged in then returns their username.

Implements flickr.test.login (1.0)

fc :

flickcurl context

Returns :

username or NULL on failure

flickcurl_test_null ()

int                 flickcurl_test_null                 (flickcurl *fc);

Null test

Implements flickr.test.null (1.0)

fc :

flickcurl context

Returns :

non-0 on failure
flickcurl-1.25/docs/html/flickcurl-section-place.html0000644000175000017500000024263712210726306017641 00000000000000 Place

Place

Place — Places in the real world.

Synopsis

                    flickcurl_place;
void                flickcurl_free_place                (flickcurl_place *place);
void                flickcurl_free_places               (flickcurl_place **places_object);
enum                flickcurl_place_type;
                    flickcurl_place_type_info;
int                 flickcurl_place_type_to_id          (flickcurl_place_type place_type);
void                flickcurl_free_place_type_infos     (flickcurl_place_type_info **ptis_object);
flickcurl_place_type flickcurl_get_place_type_by_label  (const char *place_label);
const char *        flickcurl_get_place_type_label      (flickcurl_place_type place_type);
flickcurl_place **  flickcurl_places_find               (flickcurl *fc,
                                                         const char *query);
flickcurl_place *   flickcurl_places_findByLatLon       (flickcurl *fc,
                                                         double lat,
                                                         double lon,
                                                         int accuracy);
flickcurl_place **  flickcurl_places_forUser            (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int threshold);
flickcurl_place **  flickcurl_places_getChildrenWithPhotosPublic
                                                        (flickcurl *fc,
                                                         const char *place_id,
                                                         const char *woe_id);
flickcurl_place **  flickcurl_places_getChildrenWithPhotosPublic2
                                                        (flickcurl *fc,
                                                         const char *place_id,
                                                         int woe_id);
flickcurl_place *   flickcurl_places_getInfo            (flickcurl *fc,
                                                         const char *place_id,
                                                         const char *woe_id);
flickcurl_place *   flickcurl_places_getInfo2           (flickcurl *fc,
                                                         const char *place_id,
                                                         const int woe_id);
flickcurl_place *   flickcurl_places_getInfoByUrl       (flickcurl *fc,
                                                         const char *url);
flickcurl_place_type_info ** flickcurl_places_getPlaceTypes
                                                        (flickcurl *fc);
flickcurl_shapedata ** flickcurl_places_getShapeHistory (flickcurl *fc,
                                                         const char *place_id,
                                                         int woe_id);
flickcurl_place **  flickcurl_places_getTopPlacesList   (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         const char *date,
                                                         int woe_id,
                                                         const char *place_id);
flickcurl_place_type flickcurl_place_id_to_type         (int place_type_id);
flickcurl_place **  flickcurl_places_placesForBoundingBox
                                                        (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         double minimum_longitude,
                                                         double minimum_latitude,
                                                         double maximum_longitude,
                                                         double maximum_latitude);
flickcurl_place **  flickcurl_places_placesForContacts  (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int threshold,
                                                         const char *contacts,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         int min_taken_date,
                                                         int max_taken_date);
flickcurl_place **  flickcurl_places_placesForUser      (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int threshold);
int                 flickcurl_places_placesForTags      (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         const char *threshold,
                                                         const char *tags,
                                                         const char *tag_mode,
                                                         const char *machine_tags,
                                                         const char *machine_tag_mode,
                                                         const char *min_upload_date,
                                                         const char *max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date);
flickcurl_place *   flickcurl_places_resolvePlaceId     (flickcurl *fc,
                                                         const char *place_id);
flickcurl_place *   flickcurl_places_resolvePlaceURL    (flickcurl *fc,
                                                         const char *url);
flickcurl_tag **    flickcurl_places_tagsForPlace       (flickcurl *fc,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         int min_taken_date,
                                                         int max_taken_date);

Description

Places in the real world.

Details

flickcurl_place

typedef struct {
  char* names[FLICKCURL_PLACE_LAST+1];
  char* ids[FLICKCURL_PLACE_LAST+1];
  char* urls[FLICKCURL_PLACE_LAST+1];
  flickcurl_place_type type;
  char* woe_ids[FLICKCURL_PLACE_LAST+1];
  flickcurl_location location;
  int count;

  /* DEPRECATED shapefile fields; now are pointers into @shape */
  char* shapedata;
  size_t shapedata_length;
  char** shapefile_urls;
  int shapefile_urls_count;

  struct flickcurl_shapedata_s* shape;
  char* timezone;
} flickcurl_place;

A Place.

Index 0 in the array is the location itself. flickcurl_get_place_type_label() can give labels for the array indexes of type flickcurl_place_type.

char *names[FLICKCURL_PLACE_LAST+1];

Array of place names

char *ids[FLICKCURL_PLACE_LAST+1];

Array of place IDs

char *urls[FLICKCURL_PLACE_LAST+1];

Array of place urls.

flickcurl_place_type type;

Location type of index 0 (the location) usually FLICKCURL_PLACE_LOCATION but may be wider

char *woe_ids[FLICKCURL_PLACE_LAST+1];

Array of WOE IDs

flickcurl_location location;

location for this place

int count;

count of photos (when used for flickcurl_places_placesForUser() )

char *shapedata;

DEPRECATED for shape->data: XML string of <shapedata> element and content elements when present (or NULL)

size_t shapedata_length;

DEPRECATED for shape->data_length: size of shapedate string

char **shapefile_urls;

DEPRECATED for shape->file_urls: NULL-terminated array of pointers to shapefile URLs when present (or NULL)

int shapefile_urls_count;

DEPRECATED for shape->file_urls_count: number of entries in shapefile_urls array

struct flickcurl_shapedata_s *shape;

shapefile data (inline data and shapefile urls)

char *timezone;

timezone of location in 'zoneinfo' format such as “Europe/Parisâ€Â.

flickcurl_free_place ()

void                flickcurl_free_place                (flickcurl_place *place);

Destructor for place object

place :

place object

flickcurl_free_places ()

void                flickcurl_free_places               (flickcurl_place **places_object);

Destructor for array of place object

places_object :

place object array

enum flickcurl_place_type

typedef enum {
  FLICKCURL_PLACE_LOCATION,
  FLICKCURL_PLACE_NEIGHBOURHOOD,
  FLICKCURL_PLACE_NEIGHBORHOOD = FLICKCURL_PLACE_NEIGHBOURHOOD,
  FLICKCURL_PLACE_LOCALITY,
  FLICKCURL_PLACE_COUNTY,
  FLICKCURL_PLACE_REGION,
  FLICKCURL_PLACE_COUNTRY,
  FLICKCURL_PLACE_CONTINENT,
  FLICKCURL_PLACE_LAST = FLICKCURL_PLACE_CONTINENT
} flickcurl_place_type;

Place type

FLICKCURL_PLACE_LOCATION

a general location

FLICKCURL_PLACE_NEIGHBOURHOOD

neighborhood (narrowest place)

FLICKCURL_PLACE_NEIGHBORHOOD

deprecated

FLICKCURL_PLACE_LOCALITY

locality

FLICKCURL_PLACE_COUNTY

county

FLICKCURL_PLACE_REGION

region

FLICKCURL_PLACE_COUNTRY

country

FLICKCURL_PLACE_CONTINENT

continent (widest place) (Flickcurl 1.8)

FLICKCURL_PLACE_LAST

internal offset to last in enum list

flickcurl_place_type_info

typedef struct {
  flickcurl_place_type type;
  int id;
  char *name;
} flickcurl_place_type_info;

Place type information

flickcurl_place_type type;

type enum ID

int id;

web service call ID

char *name;

name

flickcurl_place_type_to_id ()

int                 flickcurl_place_type_to_id          (flickcurl_place_type place_type);

Turn a place type into a place ID

place_type :

place type

Returns :

place ID for type or <0 on failure

flickcurl_free_place_type_infos ()

void                flickcurl_free_place_type_infos     (flickcurl_place_type_info **ptis_object);

Destructor for place type info list

ptis_object :

list of place type info

flickcurl_get_place_type_by_label ()

flickcurl_place_type flickcurl_get_place_type_by_label  (const char *place_label);

Get a place type by label

place_label :

place type

Returns :

place type

flickcurl_get_place_type_label ()

const char *        flickcurl_get_place_type_label      (flickcurl_place_type place_type);

Get label for a place type

place_type :

place type

Returns :

label string or NULL if none valid

flickcurl_places_find ()

flickcurl_place **  flickcurl_places_find               (flickcurl *fc,
                                                         const char *query);

Return a list of place IDs for a query string.

The flickr.places.find method is NOT a geocoder. It will round up to the nearest place type to which place IDs apply. For example, if you pass it a street level address it will return the city that contains the address rather than the street, or building, itself.

This API announced 2008-01-18 http://tech.groups.yahoo.com/group/yws-flickr/message/3716

Implements flickr.places.find (1.1)

fc :

flickcurl context

query :

The query string to use for place ID lookups

Returns :

array of places or NULL on failure

flickcurl_places_findByLatLon ()

flickcurl_place *   flickcurl_places_findByLatLon       (flickcurl *fc,
                                                         double lat,
                                                         double lon,
                                                         int accuracy);

Return a place ID for a latitude, longitude and accuracy triple.

The flickr.places.findByLatLon method is not meant to be a (reverse) geocoder in the traditional sense. It is designed to allow users to find photos for "places" and will round up to the nearest place type to which corresponding place IDs apply.

This API announced 2008-01-23 http://tech.groups.yahoo.com/group/yws-flickr/message/3735

Implements flickr.places.findByLatLon (1.1)

fc :

flickcurl context

lat :

The latitude whose valid range is -90 to 90. Anything more than 4 decimal places will be truncated.

lon :

The longitude whose valid range is -180 to 180. Anything more than 4 decimal places will be truncated.

accuracy :

Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. The default is 16.

Returns :

non-0 on failure

flickcurl_places_forUser ()

flickcurl_place **  flickcurl_places_forUser            (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int threshold);

Return a list of the top 100 unique places clustered by a given place type for a user.

deprecated: Use flickcurl_places_placesForUser()

fc :

flickcurl context

place_type :

A specific place type to cluster photos by. Valid places types are neighbourhood, locality, region or country

woe_id :

A Where on Earth ID to use to filter photo clusters. (or <0)

place_id :

A Places ID to use to filter photo clusters. (or NULL)

threshold :

The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used. (or <0)

Returns :

non-0 on failure

flickcurl_places_getChildrenWithPhotosPublic ()

flickcurl_place **  flickcurl_places_getChildrenWithPhotosPublic
                                                        (flickcurl *fc,
                                                         const char *place_id,
                                                         const char *woe_id);

Return a list of locations with public photos that are parented by a Where on Earth (WOE) or Places ID.

Implements flickr.places.getChildrenWithPhotosPublic (1.7)

deprecated: Replaced by flickcurl_places_getChildrenWithPhotosPublic2() with integer woe_id argument.

fc :

flickcurl context

place_id :

A Places ID. (While optional, you must pass either a valid Places ID or a WOE ID.) (or NULL)

woe_id :

A Where On Earth (WOE) ID. (While optional, you must pass either a valid Places ID or a WOE ID.) (or NULL)

Returns :

array of places or NULL on failure

flickcurl_places_getChildrenWithPhotosPublic2 ()

flickcurl_place **  flickcurl_places_getChildrenWithPhotosPublic2
                                                        (flickcurl *fc,
                                                         const char *place_id,
                                                         int woe_id);

Return a list of locations with public photos that are parented by a Where on Earth (WOE) or Places ID.

You must pass either a valid Places ID or a WOE ID.

Replaces flickcurl_places_getChildrenWithPhotosPublic() with integer woe_id arg.

fc :

flickcurl context

place_id :

A Places ID (or NULL)

woe_id :

A Where On Earth (WOE) ID (or <0)

Returns :

array of places or NULL on failure

flickcurl_places_getInfo ()

flickcurl_place *   flickcurl_places_getInfo            (flickcurl *fc,
                                                         const char *place_id,
                                                         const char *woe_id);

Get information about a place.

While optional, you must pass either a valid Places ID or a WOE ID.

Implements flickr.places.getInfo (1.7)

Announced 2008-10-30 http://code.flickr.com/blog/2008/10/30/the-shape-of-alpha/ and in detail 2008-11-05 http://tech.groups.yahoo.com/group/yws-flickr/message/4510

deprecated: Replaced by flickcurl_places_getInfo2() with integer woe_id argument.

fc :

flickcurl context

place_id :

A Places ID (or NULL)

woe_id :

A Where On Earth (WOE) ID. (or NULL)

Returns :

new place object or NULL on failure

flickcurl_places_getInfo2 ()

flickcurl_place *   flickcurl_places_getInfo2           (flickcurl *fc,
                                                         const char *place_id,
                                                         const int woe_id);

Get information about a place.

While optional, you must pass either a valid Places ID or a WOE ID.

Replaces flickcurl_places_getInfo() with integer woe_id argument.

fc :

flickcurl context

place_id :

A Places ID. (or NULL)

woe_id :

A Where On Earth (WOE) ID (or <0)

Returns :

new place object or NULL on failure

flickcurl_places_getInfoByUrl ()

flickcurl_place *   flickcurl_places_getInfoByUrl       (flickcurl *fc,
                                                         const char *url);

Lookup information about a place, by its flickr.com/places URL.

Implements flickr.places.getInfoByUrl (1.7)

Announced 2008-10-30 http://code.flickr.com/blog/2008/10/30/the-shape-of-alpha/ and in detail 2008-11-05 http://tech.groups.yahoo.com/group/yws-flickr/message/4510

fc :

flickcurl context

url :

A flickr.com/places URL in the form of /country/region/city. For example: /Canada/Quebec/Montreal

Returns :

new place object or NULL on failure

flickcurl_places_getPlaceTypes ()

flickcurl_place_type_info ** flickcurl_places_getPlaceTypes
                                                        (flickcurl *fc);

Get a list of available place types

Implements flickr.places.getPlaceTypes (1.8)

fc :

flickcurl context

Returns :

array of flickcurl_place_type_info or NULL on failure

flickcurl_places_getShapeHistory ()

flickcurl_shapedata ** flickcurl_places_getShapeHistory (flickcurl *fc,
                                                         const char *place_id,
                                                         int woe_id);

Return an historical list of all the shape data generated for a Places or Where on Earth (WOE) ID.

While optional, you must pass either a valid Places ID or a WOE ID.

Implements flickr.places.getShapeHistory (1.8)

Announced 2009-01-12 in http://tech.groups.yahoo.com/group/yws-flickr/message/4669

Addition of donut holes announced 2009-05-06 http://code.flickr.com/blog/2009/05/06/the-absence-and-the-anchor/

fc :

flickcurl context

place_id :

A Flickr Places ID (or NULL)

woe_id :

A Where On Earth (WOE) ID (or <0)

Returns :

NULL on failure

flickcurl_places_getTopPlacesList ()

flickcurl_place **  flickcurl_places_getTopPlacesList   (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         const char *date,
                                                         int woe_id,
                                                         const char *place_id);

Return the top 100 most geotagged places for a day.

Implements flickr.places.getTopPlacesList (1.12)

fc :

flickcurl context

place_type :

The place type to cluster photos by. Valid place types are : neighbourhood, locality, region, country and continent

date :

A valid date in YYYY-MM-DD format. The default is yesterday. (or NULL)

woe_id :

Limit your query to only those top places belonging to a specific Where on Earth (WOE) identifier. (or NULL)

place_id :

Limit your query to only those top places belonging to a specific Flickr Places identifier. (or NULL)

Returns :

array of places or NULL on failure

flickcurl_place_id_to_type ()

flickcurl_place_type flickcurl_place_id_to_type         (int place_type_id);

Turn a place type into a place ID

place_type_id :

place type ID

Returns :

place type for fID or FLICKCURL_PLACE_LOCATION on failure

flickcurl_places_placesForBoundingBox ()

flickcurl_place **  flickcurl_places_placesForBoundingBox
                                                        (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         double minimum_longitude,
                                                         double minimum_latitude,
                                                         double maximum_longitude,
                                                         double maximum_latitude);

Return all the locations of a matching place type for a bounding box.

The maximum allowable size of a bounding box (the distance between the SW and NE corners) is governed by the place type you are requesting. Allowable sizes are as follows: neighbourhood: 3km (1.8mi), locality: 7km (4.3mi), county: 50km (31mi), region: 200km (124mi), country: 500km (310mi), continent: 1500km (932mi)

Implements flickr.places.placesForBoundingBox (1.8)

fc :

flickcurl context

place_type :

The place type to cluster photos by

minimum_longitude :

Bound Box bottom-left corner longitude

minimum_latitude :

Bound Box bottom-left corner latitude

maximum_longitude :

Bound Box top-right corner longitude

maximum_latitude :

Bound Box top-right corner latitude

Returns :

non-0 on failure

flickcurl_places_placesForContacts ()

flickcurl_place **  flickcurl_places_placesForContacts  (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int threshold,
                                                         const char *contacts,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         int min_taken_date,
                                                         int max_taken_date);

Return a list of the top 100 unique places clustered by a given placetype for a user's contacts.

One of woe_id or place_id must be given.

Implements flickr.places.placesForContacts (1.8)

fc :

flickcurl context

place_type :

A specific place type to cluster photos by.

woe_id :

A Where on Earth ID to use to filter photo clusters (or NULL)

place_id :

A Places ID to use to filter photo clusters (or NULL)

threshold :

The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used.

contacts :

Search your contacts. Either 'all' or 'ff' for just friends and family. (Default is 'all') (or NULL)

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned (or <0)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned (or <0)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned (or <0)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned (or <0)

Returns :

non-0 on failure

flickcurl_places_placesForUser ()

flickcurl_place **  flickcurl_places_placesForUser      (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int threshold);

Return a list of the top 100 unique places clustered by a given place type for a user.

This API added 2008-09-04 as announced in http://code.flickr.com/blog/2008/09/04/whos-on-first/

Implements flickr.places.placesForUser (1.6)

fc :

flickcurl context

place_type :

A specific place type to cluster photos by. Valid places types are neighbourhood, locality, region or country

woe_id :

A Where on Earth ID to use to filter photo clusters. (or <0)

place_id :

A Places ID to use to filter photo clusters. (or NULL)

threshold :

The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used. (or <0)

Returns :

non-0 on failure

flickcurl_places_placesForTags ()

int                 flickcurl_places_placesForTags      (flickcurl *fc,
                                                         flickcurl_place_type place_type,
                                                         int woe_id,
                                                         const char *place_id,
                                                         const char *threshold,
                                                         const char *tags,
                                                         const char *tag_mode,
                                                         const char *machine_tags,
                                                         const char *machine_tag_mode,
                                                         const char *min_upload_date,
                                                         const char *max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date);

Return a list of the top 100 unique places clustered by a given placetype for set of tags or machine tags.

Machine tags extra information. Aside from passing in a fully formed machine tag, there is a special syntax for searching on specific properties :

  • Find photos using the 'dc' namespace : "machine_tags" => "dc:"
  • Find photos with a title in the 'dc' namespace : "machine_tags" => "dc:title = "
  • Find photos titled "mr. camera" in the 'dc' namespace : "machine_tags" => "dc:title = \"mr. camera\"
  • Find photos whose value is "mr. camera" : "machine_tags" => "*:* = \"mr. camera\""
  • Find photos that have a title, in any namespace : "machine_tags" => "*:title = "
  • Find photos that have a title, in any namespace, whose value is "mr. camera" : "machine_tags" => "*:title = \"mr. camera\""
  • Find photos, in the 'dc' namespace whose value is "mr. camera" : "machine_tags" => "dc:* = \"mr. camera\""

Implements flickr.places.placesForTags (1.8)

fc :

flickcurl context

place_type :

The place type to cluster photos by

woe_id :

A Where on Earth ID to use to filter photo clusters (or NULL)

place_id :

A Places ID to use to filter photo clusters (or NULL)

threshold :

The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used.

tags :

A comma-delimited list of tags. Photos with one or more of the tags listed will be returned. (or NULL)

tag_mode :

Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified. (or NULL)

machine_tags :

Multiple machine tags may be queried by passing a comma-separated list. The number of machine tags you can pass in a single query depends on the tag mode (AND or OR) that you are querying with. "AND" queries are limited to (16) machine tags. "OR" queries are limited to (8). See below. (or NULL)

machine_tag_mode :

Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified. (or NULL)

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned (or NULL)

Returns :

non-0 on failure

flickcurl_places_resolvePlaceId ()

flickcurl_place *   flickcurl_places_resolvePlaceId     (flickcurl *fc,
                                                         const char *place_id);

Find places information by Place ID

Implements flickr.places.resolvePlaceId (1.0)

fc :

flickcurl context

place_id :

A Places ID

Returns :

new place object or NULL on failure

flickcurl_places_resolvePlaceURL ()

flickcurl_place *   flickcurl_places_resolvePlaceURL    (flickcurl *fc,
                                                         const char *url);

Find Places information by Place URL

Implements flickr.places.resolvePlaceURL (1.0)

fc :

flickcurl context

url :

A Places URL. Place URLs are of the form /country/region/city

Returns :

non-0 on failure

flickcurl_places_tagsForPlace ()

flickcurl_tag **    flickcurl_places_tagsForPlace       (flickcurl *fc,
                                                         int woe_id,
                                                         const char *place_id,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         int min_taken_date,
                                                         int max_taken_date);

Return a list of the top 100 unique tags for a Flickr Places or Where on Earth (WOE) ID

(While optional, you must pass either a valid Places ID or a WOE ID.)

Implements flickr.places.tagsForPlace (1.8)

fc :

flickcurl context

woe_id :

A Where on Earth identifier to use to filter photo clusters (or <0)

place_id :

A Flickr Places identifier to use to filter photo clusters (or NULL)

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

Returns :

NULL on failure
flickcurl-1.25/docs/html/style.css0000644000175000017500000001205312210726306014106 00000000000000.synopsis, .classsynopsis { /* tango:aluminium 1/2 */ background: #eeeeec; border: solid 1px #d3d7cf; padding: 0.5em; } .programlisting { /* tango:sky blue 0/1 */ background: #e6f3ff; border: solid 1px #729fcf; padding: 0.5em; } .variablelist { padding: 4px; margin-left: 3em; } .variablelist td:first-child { vertical-align: top; } @media screen { sup a.footnote { position: relative; top: 0em ! important; } /* this is needed so that the local anchors are displayed below the naviagtion */ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] { display: inline-block; position: relative; top:-5em; } /* this seems to be a bug in the xsl style sheets when generating indexes */ div.index div.index { top: 0em; } /* make space for the fixed navigation bar and add space at the bottom so that * link targets appear somewhat close to top */ body { padding-top: 3.2em; padding-bottom: 20em; } /* style and size the navigation bar */ table.navigation#top { /* tango:scarlet red 0/1 */ background: #ffe6e6; border: solid 1px #ef2929; margin-top: 0; margin-bottom: 0; top: 0; left: 0; height: 3em; z-index: 10; } .navigation a, .navigation a:visited { /* tango:scarlet red 3 */ color: #a40000; } .navigation a:hover { /* tango:scarlet red 1 */ color: #ef2929; } td.shortcuts { /* tango:scarlet red 1 */ color: #ef2929; font-size: 80%; white-space: nowrap; } } @media print { table.navigation { visibility: collapse; display: none; } div.titlepage table.navigation { visibility: visible; display: table; /* tango:scarlet red 0/1 */ background: #ffe6e6; border: solid 1px #ef2929; margin-top: 0; margin-bottom: 0; top: 0; left: 0; height: 3em; } } .navigation .title { font-size: 200%; } div.gallery-float { float: left; padding: 10px; } div.gallery-float img { border-style: none; } div.gallery-spacer { clear: both; } a, a:visited { text-decoration: none; /* tango:sky blue 2 */ color: #3465a4; } a:hover { text-decoration: underline; /* tango:sky blue 1 */ color: #729fcf; } div.table table { border-collapse: collapse; border-spacing: 0px; /* tango:aluminium 3 */ border: solid 1px #babdb6; } div.table table td, div.table table th { /* tango:aluminium 3 */ border: solid 1px #babdb6; padding: 3px; vertical-align: top; } div.table table th { /* tango:aluminium 2 */ background-color: #d3d7cf; } hr { /* tango:aluminium 3 */ color: #babdb6; background: #babdb6; border: none 0px; height: 1px; clear: both; } .footer { padding-top: 3.5em; /* tango:aluminium 3 */ color: #babdb6; text-align: center; font-size: 80%; } .warning { /* tango:orange 0/1 */ background: #ffeed9; border-color: #ffb04f; } .note { /* tango:chameleon 0/0.5 */ background: #d8ffb2; border-color: #abf562; } .note, .warning { padding: 0.5em; border-width: 1px; border-style: solid; } .note h3, .warning h3 { margin-top: 0.0em } .note p, .warning p { margin-bottom: 0.0em } /* blob links */ h2 .extralinks, h3 .extralinks { float: right; /* tango:aluminium 3 */ color: #babdb6; font-size: 80%; font-weight: normal; } .annotation { /* tango:aluminium 5 */ color: #555753; font-size: 80%; font-weight: normal; } /* code listings */ .listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */ .listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */ .listing_code .programlisting .function { color: #000000; font-weight: bold; } .listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */ .listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */ .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ .listing_code .programlisting .normal { color: #000000; } .listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */ .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ .listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */ .listing_code .programlisting .type { color: #000000; } .listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */ .listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */ .listing_frame { /* tango:sky blue 1 */ border: solid 1px #729fcf; padding: 0px; } .listing_lines, .listing_code { margin-top: 0px; margin-bottom: 0px; padding: 0.5em; } .listing_lines { /* tango:sky blue 0.5 */ background: #a6c5e3; /* tango:aluminium 6 */ color: #2e3436; } .listing_code { /* tango:sky blue 0 */ background: #e6f3ff; } .listing_code .programlisting { /* override from previous */ border: none 0px; padding: 0px; } .listing_lines pre, .listing_code pre { margin: 0px; } flickcurl-1.25/docs/html/appgarden-tell-us-about-your-app.png0000644000175000017500000013330712210726306021156 00000000000000‰PNG  IHDR•  hYy¶ŽIDATxÚìýï“Ušï‹Öp#îü7FAôû(®yIèýj«wÐwS3×}ÕŽ ]Þ7ŽQŸ3·PÏêÍ`±‡‘g¼E3êêÙ»ÕØ¢ ]lµ±L—<ínX¦d—(« UQ`ÓôsWæÊLe¦R)©\þÉç‰ø„]Ê_k­\J­o>ÏzÖÔŸÿügØ S4 *Q ˆJ@T *Q ˆJ@T¢’†D% *à;!*·?“_¼ôž<}ø¬¤&äiuÜç¶Ôy¾‘3ÇŒ¿­Ï_8+§:ßÜÅö¥{Õ]gõÿW—dó~ì 7¶äÌ»§çÞ–‡;&ÿ7‡ï=~\ž|霜ZÚ¼êÔǶyÜqQ¹uU¾ï“òÐáeužrèqïç©s_Þµ v}éu™oÝO"E‰°_UÆ¿—?©È™»úE@@ûàKw\TÞ¸*?¼ QùýW¯šþ_üÄûyú.ð/¼T È/]¾O:Ŷ¡¸ƒûy\Nuï^Qy/õ1€ï”¨¼Oå÷ßìÜ[þý¶ÔoÜû¢qì¡÷ë{åû‡ÎÇ/ëˆJDåDá [7dÓÅõíƒÞ¼ÇÎÊåÛžý6{jß{lÀå]_HècÞrxwóžî Ûí‹ò½ /ì³uit]á½7¾Tsß –‡>¼qw†¿"*îNQDýÍ·}sîÎ…$²•‡–”€ÙÞ’…·ÎÉ*&O>'ÇÏ]³„èpÖ[WåWÏÊ“Ïǽ+O¾ðžüâ·—eõÆî “aùø¹OÝ7rùÃe9unYΜ»,§>X“mC”w¯É±_ý^×S•ùéWër¦ýå-8~ô<Êã/¨ß“Ç:CY=}vЛiΓõí«^44Þ¿(‡TR#}_*ê¾T$¥Êº îéævÀË U¯Sïu]6ÿ½¢îßf벤_²úƒQÏÖ–Ï“¼)§\}æ€JÌsìý53¤÷§Æ•Û_Ê¢‘˜È*ߓϾ«ú]]%#Úþ¢Á¹'Æ¿VÿTå8~LÝu¼YÖ—~¯ÊqíþLæˆÊÛ"*ŸLTþHeèfúø{²(UV֗އ„Û“CïïÜ“hxñüç{ò…w&HØsCÒyúððd8?|õ’O@ßìñ£C{4€§>â_Ê¡§ŽÉCO½+©7ÿ Çß¿*—{Þú_yÿ\ ÷Ó?ó˜¯Ý_õz»¨ÄÙ÷BŽ– ]ýàòа°Ý§ÞØæ•ë6BC¹¿7W—ËÛ£îiQÞP¢tèy«H}‹‡ *o¹¨ɳK¦—®Ž­`/b~»¶£:yÕ'Xû½¬n¯ ±á {\õt-Ï&¸zé’«ž7{|8›ž8þ¦³ðv/!(mÞ•¥í>’iýƒsÏçu‹Êõsc¯D¡÷…†»ïïs±ï ¢r‡¢Ò"ߟS¡ƒÏ™gé­€ä2½­Â+Þ«ãrfRo‘Oú=¿Òa¡§²ÁKØ3\<ï'ïÈž N€ó†ãÁ»ÙãGÌ•oËâMzÕ‚2å~ÿÙ÷$­<¬AÞ¼_¸æcŽ#*a„I« ©Ç‚<Úo›žÜ‡F‰Ê€{«=£ïɹÁò?ôêòX÷Ôè»ûîñ›nWDåH±uLæ—úcõý߇ÃMyÚ/²žmôç6Þ¸&O?æ„×&ªÏêûgÊwÜZ—ñúR}И°'X€¤N÷=§—êixe/Zž­›=>œËï&Þ95 ~¶UˆñÛòý§Þ–r\‰±‹N¦7æ¼Þ»”'üX‰ÁLJ{EåOÎJ½ó¥\Yº¤æ=ÖeuHû?ôÒR¿¿m&éŸ •É—Ô½}ãÃ~9–~ëo—w\/ ‚û®÷xÿù‹rªÇƒ•·ÖSé! XÊãÐZt^o5íg|žÂm¿n¢¥/“¼s 7ÝâÈï) LØ3Xχ†Êž9||HÛÝìñá .%äѽ1:ÌØ_÷ímYí|&KW(í*éÐ’üè±ID¥!äÇèkF­¿~‹CDå¶ÌÏùÛôêÀýž9vðž|ÿÕå‘}—̳€¨¼Å¢2íŸË·}m Dјo̧û‘ ]L½ôž 58«Bh‹d£=/ðûo^5—NÑK¨l«Øcc$ì ÈrûÁ1æ6Úa¨7{ü¤á¯Aašã‰Ê¶½±%u3ûkE~ø“âXóÇÍ ìß/Hh …Ò^Ñ€ú<þŽ ›µûŽêGêÿҵ{À=ñ/©¢ÖrET¢òv‹ÊA÷ð}‚ÌŒF ­1—©ÿêíœ?ÀÛP‡T€(ô¼ÚÛ=~òD=÷á©IDå—2ÿÒÛ;Jž3nØï…Kô±$‰2§ßìLÔwY#•÷¨,Ž™¬ç39°Aœ°g ¯–é1¬-*';~[W“çÌž¹øê°p[5ÿò…!Q+Ê“/½3±¨\£¯^ä[-*rÖâ¼¹¾ €¨¼Då@øë;²¨ÖJ¼¾¥ÃSMn+¶¿‘mÅuõ÷8Ék6?8·CAi'ìù,´Oþö³k®û“=öž\Ù•ãGÏðB!€êo•[Ëa£?zõ¢,um!üÍÀõÂDå÷†$µAa²*|úGññÂ_¬¾vh³Fõ›ºm›ýÇøûD%Àý"*·;Ksýs /« žßSÞ±>[‘ô›ãçÖÆ•ßȱg x8Ÿ>ü{5Ïîì逹wÞ„@A^±ŠgmÆà9~ÃõLvüÎEtêÝkƒí¥æIžúUehøë ¹( ¿x‚D=ßwBN½\9ý^èÒ$: Ñ»C¼¢ßÈq¿7u@”®ÉÓ?9&ýäm9ðÒïå·–d©‡¨¸oDe°Ø*ÊlšBhõÃÆ`XçSc,@ß[8®öÌ™ÃÅÉ×™|¼" K›²ÞéÈ¡¹Ápѽµ¶KÇCî'°IÿêòƱs*ñQÈÁ±Ï.¹^H *n›¨\•‡v!ƒfýWïŒ% ~tìÚuØ\{ò±³²:ò¸Á¥+‚—96–ø_º1Dœìäø Øº&©‰ìqåôÎñ<3©Øs­ÿ韫&*µB=µSQ©½?ë¸w¥qc÷û.¢ÒGã˜Oà=UõT¾ñTøœ¸ ¥,~ ˜.ŸkÈ\ßûIEŽ}¸9^ÔÚ”íHŒó7+CÂ:Q ˆJ¸yšÍ&í÷m_  *Q9 ÛrýúuÅ6‹'è Ôé;Ìöoäºbû®/ë·f9¯osÏܔS/¦¦dÊâGÈ©Öæ­+üöª˼.K×ïžÆl¼¾W×ÿ'¤~ýn½éŸÉӫ챿'—=ƒ¨òÆÜ1ù‹ÇŽy2Ì~ïñ·%õÖUg`Ø8öŽüÅzWê7Ͻùa]¾ÿ·ãŸþÕeÙ¼o¾47äÔ±†,Ýoÿ+ç.ÊBKgé­ÿêmù‹ÿíœ|~'Ëã yâÇÉŠ©¿òòÈ‘­]¾Þ×òrBwþ‹[X'}=‡{žÏO½ò‰Y§Ì…¯=uß«>{âíëÒ8ª¶'®í¨_no|!¯ÿf#0QVýèe™šýtâ{|åüº,\Öe½™² ãúÇ]yÀ¸Ç¯lÜâ>ö,–;ò¨§},æ{»XŸÝëWKÕUÙãúÓmòlGêWnÈ™·Wt9÷îï*À}&*×O=çÈ—Ï\Ñoò×-ѧ<–ÏQ"p]– ¹²¾)WgäøÂi­k±y}uIN-WŸ’¥U¯ÝÞlÉ™S jÛ‚œ:S—u˳¶^Ÿ—=Ö5_?³$›¶ÇM]§nì\‰žÆ•poÃs^×–*kkuÓÜÇ(Û©EY!^7ºÄ´bÏAYw‹‘õ+Òh,ɺ ^Um°p|A—VÇÞ¾[^„csJà=õž<ý”ú÷'n¡wC~aÈŸÔ}âoSRÆú˜Oé}mQ¹8TT—º/ŒìÌ›ïèu5ÏõÛ½59uzIŽ¿{Y–º¾Û7¤ñÁeµí’jƒ-§ì«­5¹ÒûÆuŽMi´¶ôpûKYRžñëj€¾øþ%Y8½,Wnèz?}Y.»Ž5Xm]•…w—dáýŽëþëë¬ßØ–+ÚeØt»뿭˜¢òÖœ~·Ù¹&gN×ÔûÚÒõ¦¨< <½«½mÙÞÚ’Ë/=õ¬ŸÓ×8ó¡Ë«ï®‹ÑF§ÚhÇžJ-*Gyy¶7”G¶ú™¯lÈÒÚ7ƒúÆù µí39sñ«‘׺°©¶õdéÓ’1¼ˆÎà_mûxKª=9uáKW›ß«‹WMoØÂšUö+kÚë”PBêÇ+ŽçÉôþÕ²,m[ÂmvU®õTõXXüÂWžoœ².(qd·ÁöÖWrì°:ö¯Úr&à…Ùö’ËŸö?ßüôK9c£µñMð3ôâš)*¼½%«ߌQ6Uç˪lC¶ »ç{¬˜ÿ>Qv½<ØÞ–¥Ë_ɦª—.ç–\q}·¯¯ÝÖÚ¶¬_ù¼ީ ׇ¾²Eû/}6 ÊιdÞ£þ˨àö5úÈêåëªþ$‹‹ªŸ\¼a]/¬_ ﯺü*´uíKÝ^çûíµô›OÌ2rÕ×|A¡ý:ƒ€Û)*·eá€öL>0wÊ;Pª+Ávª.«›Ûƒ‚KñÄñ+reá¹Ï.h1¸Ùx}`ÛÔÔ^9³¾.Ïù>Ÿ;³.^?#{}Ÿï9p,ðmÿðs«í›g,Áêç s0:¬Ž=¡ÛáÑsòˆuÌëK×}î 8§Ú?³8Öö]ñTö–å!%rž|wSVßÏzÇ:ßxEåã~Qù¥¤×bss,QYܶݑªk=ôê²ù÷åwÏzBd žþíšÞwëªüÈ·í¡—.©Aê I^î·é«†ô¬9Üüà÷ç4î÷sÿýŽÔ·¬~{ø¸oßwäLW·Cú±8×ß¼ª¼”ç<ŸúP‰Â_½3°ïC‡/œç¡W¯ÊâaõÿÿTÕÖîò@= oîðºü›Ì·¶wÍS¹'DT®ž_}®j ‘­/ä€/töÖ¬ïÙ¶¼üt@Xíü–¹íõgýÛ®„|§&¨ÓƆöô-þI‹GS,t¤q±k^çø§Zļn”íÙuSðÔç?(§!@MoçöWr01X—/~­úÿe×þƒâcñcÛŠùùRùÊà9.lôƒ®ö4„RhÙT=^¹ìÛ¾,gÖBBk+W´xÚøZŽ=í-÷æ…ÎàµþJ½ ùô[]S ú¶?}-PtÕçr]Œbøó–z¹£^@lh_{ç«ßëWáý5°ü³Ö‹†íod}ãkO´Æœqm%è7ÜNQ¹)/?¢ÅÏs§†{Õ6뙾Ð{bN(ê×ñõܱE©/d,1·WÍG¼.ó{-ñùò)i-’'°ö=³*‹ós}qzp^ëו¨³…äëRoœ’¹Gúû{Ëvn%N¯/Ê£Ö¹yN…9žzÝ™׃ë¸~ÊÚgœÚ¼îÚ ýWæQ§ÌÏ;%ÇÕTÛÃ{LyýÁ—VÛ©òþcN¥å1Ž¿-§:ºž—Ok¡ýäo?sêòªË¦%@÷Öýf<•Ú&qYöÌ^R|,{žíêkm_7ç>ðÒº5°þVN™BÊ›4BM?Ö"fÃzytA{§T¿²Ä‹1 ×ÞË+‹þ\M5ŸÑ³¾­ûÛ—×õœÇ‹_ïBßþ“öç¯Ì2î ÙÜÚ4çõ´gXÙÖÏw¼"ÿÆ—Zä[b9è…—*:õôš¹}ýüŠl~g/jA¶GÝïëÖKƒ'LáØÕ‘ vY¬{j 8»=aÈFˆ­O­ú•´Théõïê§2½ûáí«çKžàEµëòŸÂûUhlË–«-½/¾®Ës³ú{1ùwµ¨|`Ι÷äx/UR›ã‹JT.sD¦-ÞV—êfˆêëx…ÝvÝ~êPËí†n;7JêõEyý€öüí9ìéznGT–%B3„‹Ê%'AÏsÒRåi·á£NÂ[4î1­ó¾ì:ï¨í7ï©ÜÒa¬ñŠ,¶?“ËíŽõ÷;ÒØv‹ÊAž|ó’3PÜ©¨ü…%m/Üñ®ÛƒzYÏ=<×3…ã÷\ÞH#Dôr{S FoŒ%*±d p%ø ñšþð†÷o%ð_=n†°¦Þº(ÇÞjȱw/jQùØY%tíët\×9î»N¿ŽÛ[_ªò}&õ–åø[uù‘qžÇõ¾ÆœÊïŠÊÏäÀ€HÔžÍï¾êÔe¾ý# Œöû^ˆ¨œÄSiŠÊ"Ï©pÈç^1¸ª¾7=SD8!Œ/¬ªPÂu™/&¯[Io^¸¡ŠðÏÛÞ^—ãeèd¦WÈ#¶ÔÜ7[HY¢Òð˜=qXû¼÷7voΰ^ùc•ÜÆºÎsç·M1oz'?Sá›:$öøÚŸ]ó]Hµ‹[Øm®}¥ÂBUèª Á|}þª¹ÍNd4pl ¨üF½Œ°Äû³Wäõ²–ùu¨÷¸/*‡—mÑLËsªí½½&ÇÔ}0E¥+Ì׎{E‹÷=¯|fŠ»¥ :aÏ–ØÕ¢²:lzzM£ž£:8¿S{mí ­ÁïåÛ–çüÄó£ÚWÏ—Üs¤ïIëWáýu{°üVÿ8èñ+Ç_Ð}sþã¯Ü~QyÝ ûÜã ½rü <úÄsJ0¶ú¢ò‘Œóã~½ñr@¸§>WÆY¯?áú|ìy Hø="g6uÈê#ç2²Ñ>>:Ö¹]e=õÜžq·*Ï=0ºjzCµ<¢ò¹3!³nQ9lûM'˜iý!P0ê$<›}Q©„Õe#½¾ WÛTøÓìïHTÞè8ž¶ëJÌ›ûÜðn×â«7 ½CE¥ëÚJй½„î¿ëojïçC5åûO½#?|ª¢Âc'¹Žòb¾Pì·åãÇuö[—¨ ôT*ÏèL¯äZ°ð¶æ¦öÛèFH»ìîœÊÍ «NÆNÇ‹™øD}zYæ›[Nè«ÞfpYmûDæÞþÒš³¸âü¿<Û÷Î]ÿtSž{ö²'Ìr·ñ:ŒS ûjÇ ™´ûA«¼¬EðÑeS(­þy´¨ÜþtÃô~9!©OâÉŽ;ž¨ÔÔcG®x³‹ÎoÞ“=cŠJÛóæ´ÿ/É#êÞ<úô+´ÛŽ{är@xëGN˜ª•—=É{Zå¶³]‡´^q Vï= õ&2=•Š+—?³}mQÙ?X¿ í¯ªozy =Åú³½o_gPp§õ\q¼r{d¾¾î$ê±ç7s-Q¹§/Ôú!±¬yU*¥þë/Ëüq’ºþ‘“I5c ªc{mµé•ÚØÏ¼š©ëAÛÒÂëòòë*|ui}h–ÖÐs»D¥-ø‚Ä]_? <ú¨QyȪkßSiy_¸äñú÷ÂðÒŠóÑ¢râ9•C2gn_Ö½çÜKq(oìüoÖ¤¾f…R¾ÐóxyΔ»rü⟬ùkmYr‡¥Z×Ú^Û’—ØË5¨d,fzL=^;ôÄoYYm \Ëqlºnzæ¦,oêŸÇ•º—eáÊ×ïÜŸ¨¼>"üuá7×Ô9ôÜÄÍëz^`PجuíÌÅoF—Ínž¾{a]^¯|1þªB:ÍPÖThè¶µ£ a^¿¨½{{sÝ ¿ümÿYa„±Zå¬[^ËU_fÝ þ³nÍÏ \¶d­gÞ‡Ñí;(*CûUhýv%ìàŽ‰JCüÜãZŸrÏÐH~$*ÝâîGç乸Žé{ÿËÈËs®ù†F˜íf>æì‘—•ðèòÄ#xBdGm¿9ï”ö~ï¥ËÛ¿Ò^»7Z_è%EL9ZT†-)’:¦ÂJk„–þAžž³ÕpDå÷†‰J+|÷éc—ä,Q©„ šÛÖ8ý{'éOã†N:ô9ϳ.u5w²/*ÿl…àõ42Ã~&ó/ ¹;•“z*÷ ]ŽAÏO4„Ë1•ysõÓ-™›Õ^E£<õ£Ú«tà7êÞm|% G>qæT^·ø{^ZS™NûÛ ”‘õ‘WÖÕ¶m•ÉsM‡<Ý­5,í¹x†XreØUsç,ïª[H„{u™c«9€*«èüáKžåI­9{AK°ôE¥>S?¾"§Ô¼ÀõO¿ç/byÊ9|MêŸ~îEµÚñgW¥¡²Ì.¿¦E³5gÒ#òΙ?hßã_•?Z¢rjöŠ9‡±QíX ƒ6=ó;Qá³W\m<ïИWy©¿¤HU…D_Ø×ô½lzÃÚwp¹°~5²¿Ž#*Õ³%óÒU9Î\J€;)*7½j;—83…Ñ#OÈ‚µƒãÍ{$ãPm¯ž‘'ö¸ÃE‘×õÜÌÖñç<âô‰'±ÂltØí¾x5=ŒÊÓyÌW†'2§“W„ž;DTfü¢òzÝñÈ ÎMgýÎGԼξh|À•]öÇ»;jûÍxrl!ô‹¥€u»—´ðyó²¼ñT?ËëPQiˆ¾ÿôvàZw›¾ì¨&*´ôÀ›K¡ºÝY–»÷yÇIÌc¨ã‡ßv£(¿8§ûÑú‡0Ëj~à…㎨ÔaµÇ=¢òûV†VÿœJ31Îûç\çR"ò©³ÒØê ¸ï»<¢¦ÐµD¥‘A×ÎÚš:·î U×ú¥wÌùš:Së 9ö¬µ]%2ùÿvÎ üR޽ä®ç1%0¯éï‹¿.–yw<•_˜ÂGCÄœáUœKxC%_¿ð'G¼Å›ô‰ù Çk·TYñ,z?å„Ú~+‹¿ñfC}àÙkre7²¿:a’Ë‚çÌ+Zº½ë¦°™õŠG,¶½¦Â3ÝH•@zîY# öÞÙ‰s áâ¹RÿeKí§Ã_7?^w’"ÙkD¿üu  >ö‚•¥T%Ü +›ùüZ\õ„Ô>ðôŠÕw½˜sUèj+èh†¸~$ÿø¶%"g?*ñ¶î´Ó`&Úç*aa¢ß¨õ;}¯±©õÙ9ey&ÃÛW‹Jxöð~Þ_GµåP¡ w@TÚƒÑ뛲®–üXßœdnŠZrÄ8f}3 |KŸoèºh››×ÚÞ\7ÙµvÛˆsï6¶h|ôå†YgÿµGm¿Ùì©d-[Á¹m5·q]m¿Ð_ŒÏ7weC}®ae8¡„N?Távë½CLß6B‡”W×óÆ]y¯7•GÑXra;°N*©ÚxÌ¥¶ƒëdmÛ¼ñí]Þ?¿5뿹õÍ®œg}kôÜÑmÕ§¶·Çïƒëæyo®|î9•Û[Æù¾õÍ“4ÖÌÔáÄF=®Oð½»®ê¼ipc—Ú7¬_è¯p‰JÎâÁG|Ù]'Û¾ž¸¹ûýû6¼80çA~¼¶¤êû±¹æç:mˆÊ;Ï•3óòÜsÏÉü™+;Ú°Ûl¯©Œ¼/­ÊÒå]®,^s–›¡½Q ˆJ@T¢•ˆJ@T¢•ˆJ@T¢•€¨@T¢•€¨@T¢•€¨D%¢•€¨D%¢•€¨D% *•€¨D% *•€¨D% *Q €¨D% *Q €¨D% *à»%*[gE¦R"{^Í?™ÿd¼ó6NªóªýŸ8k}ö¥È^uŽ)ÅÒW÷^#;õ9}çËrå’*OŽw¨\üKãò܇ã·^Òûï)õEå#Ö9?¿÷y >wˆ…£“Ý€[**·•À[\êÓXRE[D¾¬ÄÔ¥þ¶3ŠÕ¯•w²ÿA—ãàîÒ9•/ÿ“.¼"F¿T³§¹~ˆÊëVyÖÕ¹·w"®•X^·ê³ùÕðúØmbï{ýëçÑN“’¹Å¢Òh?³¿Üåseµí×»s?ül~>þù'ÙQ¹áòO!^9%62o„ÅžÝ%Q©ö{4¥çy6|bbÉš×ø¨Kì®*Ïê£/Œ.Ï0Œã÷ÿ€jƒÅÞ`}¦”¨;ðOÞ}÷þF ¿(ê©2¼Ñ;n}9©)ßùÔßõ/ƒÛÐÞ7³4|~èž_¹ê§æÖî jƒîÎïMýë^”ú÷ÞàõOnþ~4ìs«üCÀýøzgûºË=•ÛˆJ›Ï•hpôÕý—ÐÙstwDå°ýÎÙõ „GþI'rÜù«%ïñ{RÞãUR¡?¯úE¥KÐíq‹¼œK,~ê=Ï/øÛ›®}Ç­ï—Þ¶·©îm6®åß6÷‚7‰Òñ_ùÚÑ'¼Ž]ÝÁ½ j3û|ŸÞ‚û¡êôè?ßIöõÌ3V×ÛäáˆÊÝ• .ñqìRÿó3ï z¡n‡¨´=PÆàßñ~íTÿîiröû'•QÕåykœí×çÌçƒÂäÑR_„Õýe—'ó˜Ë+·àJŠä„¯N(Ôœ9•#õ¬žžÛŸô?_üÒ+ä9Ú÷Úm^u‰Ø°ÄÕMˆÊ'”óŠ“óg‡ß“Þ½nïèÉþç¶—v’} ®|¨¼š*!RæìÎB©•A¢Ò%(æ. óúËÞcn‡¨tÄ‚ò<-|âšßØÓâå̈åOÞÑ«ù«£Ëà\ëŸE‘§½¾ì{%ƒ2´Úû>ð«‰Jûø‘s*¿ê‹B·ÇöÔQ¯ÓÖ;Â{Ý%8º7!*_/Œt·îÇËCúâ8û *oƒ¨4B?ä”÷É…?övˆJ·×Íñ"ª²Ì_˜, KK‰Ïã§•gJyŸðÍ—ô‹˜'æj:sð”PûÜç ¸Öé›óþ-* ù+Ÿ¨ûªŸÙ×öÌÍçBDÕת¾)×õv(*Ã>Ý’ûQò†O²/@TÞ"QyýÒ˜kY¦´Xº-s*1‹ƒ fœd=#æT^ÿÄ›@&¿ˆ ò>ºçà­Ûó)•» l·/Ý>QéÝg”À½þaÿ¥@Ë*Ûë–¨|ôtxHê͈Êq½€»u?®,zçDN²/@TÞ*OåçýÿëKz~\ËÅ•®Eï6&êq‹åÝ:¦<†Oø’Ì,[ãk×zœ†K……[T×P¡—×{ÃÃ-ƒBmOåG½âûN{*ÝIyœïωuŸÏY>æz*Ç•;½ç‡{íãIö@TÞÂð×=!YUO©Áù%`æÎô‰²ãozÏi\ó€ò¯F\kûj@vS›nÿx;É&™<—<ÇžSùÈφ ¿¬¬Ô×}o2—Æ»—öRS®Lªîì«î9•~O[ ›ÇLXÖIDånÞÿd_Då­•®ùwó.QÓre}bE¥{ÍÃÆi×¼MëœN6Z%fŸ—g¨¨ü48ó§±¾ä†g³5½~®¹yg\ŸÛ fÜÙ_\Î)ö¹ “××}oöžt%& £ç ö‰G·p|ô7ýD6Û]׺˜vvÝ Ë:‘¨¼‰û1纋ïÜܾÆZ™UHóË‹<\Q¹«¢Òð¹Êå¡{ôïÚö<‹JŸ(3׃ôÍ«³C5ÝÞ-{JOy¯7B;ÝǪ, O¼0/óÃAab¯Ñé¾ÖGƒ½nv¹I /׸õØ7dÍÇa/‚’Õ{Ó{ý½¾k¸×$e4üõ¦î‡º ¹“ìëŸ#ËQ ˆJ@T¢Q €¨DT¢•€¨¤á•ˆJD%¢•€¨D%¢Q‰¨D% *Q ˆJD%¢Q ˆJ@T¢Q €¨DT¢•€¨D%¢Q‰¨D% *Q‰¨@T"*Q ˆJ@T¢Q ßÞ}÷Ý{î! *•ˆJ@Tøév»&=D%¢•ˆJ—v­ 3Ñ)™š²‰Èlº(mD%¢•ˆJ£YLZB2.ÙBYª•’dfcú³xF:ˆJD% *•H·&Ó†xŒ¥¤éÛVÏ͘Âr:W—N³.µF«&ÛjH­ÞrÂd{¦ú»)½^[êêßn·%•bA Å’Ô[]Ïy{톔Œmß6ëØv³&ÅBQªÍ6¢Q w3JÊŽéj'`{[R%8§sòë„áÉœµ„gW²1ã﨔;zß’¹=)­óùÉÕµxl•Óےņ§,ÓyD%¢îê¹”å¤)+Ý í=ÉÏ(qMÉGÕŒ)ôòMãX•¸%üRCŒ6eVý?–©J§ªEc4QÐa³­²¹o4UQÇÕM¯hd6o…Ôö¤”Š™a·Uuýþ±yi*Oh£ÝCT *àn¦UJz<Ž~J‰ˆLERÒ¶át^…¸ÖµÀŒ˜b±ª„cA{#=Gÿß²¼š•(¢De·f7“V¡¯yÉå ’MÆ-qÚvŽÍֻ̩@TÀ=þj ¹ZkIÒg¥«¼ŠÃk9““R&f†Ä–³JÆÒRÊM«s$ÌÐX}¾˜ËóÙ‘tT{*;•´“Y6*Ô¿±¸ÄãÓ’«uŽET *à.OÔc…²*qØòmk¦Œgk:T¶”tæ;šËFÖù;–*»Dª §í ŠÊ^=§çPV\ó7;5ÉesRmõŽET *à®ÇYR$:#ùrMõªäRÓÖg©¾ØìT$f'Þis+­Ì±ŠL­3RT:žO5‡2_mH«Y‘DtÊÙQ €¨€{”F)+ñˆ7+ët2'Íž{¿®ä¦u؆ÿok?=o2æ•™˜-*Õr"-%$cîëÄ$[i 9Q €¨€{Šn§-ívGº½[<—³­¯ÓÛÁ±ˆJD%ÀŽAT *•ˆJD%¢•ˆJD% *•€¨DT¢Q €¨@T¢•ˆJD%¢•€¨D% *•ˆJD% *n ^}Oþ×—ÞˆýÝi;€»”wß}÷ž‚{ˆJ€{\Pæ+˯ß›WÊËÿçüN~–;I *•€¨DTÀwÃëhÅ·?øTŽÿû§R¬­È¯¯Ê¿ž½"‡>6yóô²¼^ùD^=yY~ñîeùûÿù¡üõÁù¯‡~;Áµ:’‰MÉÔ”E$"…ó÷T\Þy/kþ[é 9þá)y8S½‡ÛÛ]ýÿdk¾ÿ{éÖÂÚäÞ¤[˨:=Õ2êÄ2Ò ù¾=‡oésjGe½û¾þù®f~ S¼«ëƒ¨ØQyü|G~­eáý«ò/ï-Ë+J@¾÷Ç5“Sóð;-9TúHþáÄGò³ù?Èyþí EeO*ùŒ¤3Éd3’ˆGÌAD*“•LÆø¼ N§ÕgÑ¡¢2?ûùi¾~O‹Ê~:rðÁ)ùËTÅ÷ï1jX›Ü£¢²Q<<+µîè}«)£Ÿ¤v6éV$ªDeªÒÞ…ûå-ËÝ~_•·±û¨õ’cjjVê½þç­bÂ|±¿Í/ÌÜßÃNõ *ÃfvÿÿvµÓíú>UÓJ¼GRCEå°çð-}Ní¨¬wcßïH::%‘!íWÏÿTžÍ#*•p¿‹Êßœ[‘£¿¿*¿ª^‘Ü©O䟕‡Ò¶ò…Uõ÷%yéÄ’¤³$É_îDTúßÂÆÔfÚófW,bRiµ¥V*J¡X’z«ëlo7r©ÓsDj£V‘b±(¥JMÚ½°Á\Kªå’Þ·\uíÛ“V½.­NG•’ E©6ú¤ÛjHC•¥Ý¨J±PPש¾‰îuZR«5úÛÔõ굚´º}OD£V7ÿî×A`t‰Ê‡ŠÊ˜”›-© R,U¤Ùõ¿-nHIm+¼íD§Y“²j£-*µ¦ô‚¶•ÊÒhw=/ÂÚºil+e«l3ÊfœÓ¼—Î9»Òl4]mÙuÎo\Û®C¯Ó”|ÂðàÌHÙu_Bë«Ú¾R2êW•V«,±Q¹“ûå/˨¾ên»V½¦¶y½Sí†ú¬i}Öë˜ýÓèåj³¿_¯­ÊÕð ÂZºê“]WÿìH³ªŽUý¢Õ½¿DeX_5Ú¬f}g+µÖ}.¬¯êç@³Ýs£)µz˼¦nç®ú·¦u=C†õÑa´Ë)S@F“%ýY§¢…f,-í›(ãÎúwÿ{8®¨ k‹°6ÕN·ë9g µhZÍZÀ3}ð9ܪ¶õÛ;¸naÏE?ÎuT{vzÞ²6zž'ø¹9Þ}RÏôjYµeA*õ¶tÕ5œçјm=Xo-*£©²4U}Ì癫í{KªÝÛcüÞ *îiQùk%* ä/Ï´åµS—åpù’úq»!+ #$6£¼”ÿ]‰ÊƒÅ¦<¿yQ©ß¦=f=°˜ SÕ?X)ãïdYý¿-Ùiÿ~Þ·ÿÎk=/‘©aûªsF¯7“ÓáO•Tt°<ñŒ3øs®a•;[×?ŒÍÂŒù÷l¡i…véí¹ÆW&•þ2ƤØÔƒËVyp{²Ø~4=°¯=¸­çgÛÝcamÝ‘ÜLÄ·-.%«lÍRjàœérK:ýyÙ´öš’ŠÝs%´R1W¸tÊl÷Ðú¶Š¦ˆôo÷‹ÊÜ/Y.†öUïÀ/kÖ/!-GÕÌrFÓÊ3¥„ï´ÿ<ÓY³®J²ßNÖ ·ßŒþémûd¥s߈ʰ¾j1›EEsð:¬Ï…÷Uo»öÛ6iÞ‡Àç@4iÞÏ >:*b£0«Ë‘Wñ¢ùÿ¨”Z[7UÆôïÿzÆé_ãŠÊ°¶+ÿ¨vº]Ϲª‚<ì™î~w¥˜Œùö–r+È[ç¯[øsq0ôÙ¿ïŒé=,k$)Í­ðçæèûÔ–L|ð؈շÆmë zgÊKYÏ«ä”Ó_‡ÿÞ *îyQù?-/å5òÈï.Ë¿*q9¯xówËò?Þ¹$ÿý¸”¿iÊóÅ?Ê\þƒ[**£ +D¦­¿SadÆ <žÓ?t=%ÍÁãÀ\¥žäâZ5z¶§ m Žkžç´TÚú¾`¾yU(×zªØôüØÎü?°u™1~<3ZŒf¬éÙbÿ>’4tƒ…ähQK:æ\_·(žµž'Í›(ãNú÷Å!B2LT†µExùÃÛéö<çúåO—šž_ óßÿ¾ÛßYGLuk2±Ê8_¶_·QíTïYëEf·¡Ÿ¯15¯ÓßÖMW[zn†Ý§†U¾tÙþ]ËXâ¯2â^oóùdüžFfÔ3¸g æ)'„·zðA™úKcNeÈï ¢àÞ•Fèë/Õ\ÊÃJ@æO·å«¯¿õ„¿¾¨¼”ÿë?ÊÏ]”ÿï¿ÜZQi¾¥Œ3•ÆÀ|&‘–BY…d›Ÿ×ëJ«ÙTá_B”“ÔlÜ%4ô@-æNÌÐ.™žMcûàœíÙ EãÇ3j æ€n*b{§Ú¦‡ÁôJÝ„¨Ì7Ým3Ïý‡š DfTò’Ë$›ŒRFøQ[†T+*ì)—‘i£ŒQã(Afy#£Ó³’Í—úáš!mm¶ÏSRÏNkQþï³ÝB¿«ÂõŒpMÿ µÓR÷G…ˆ–Ui60…1G8õûI7´¾ç&í¢s/oþ~yËÞWý}Pò£f¿±^tÄõµg§üÇØ}¬2†¨>çê^÷Tï«Ö¼-÷wP…Â6TgçÃá}.´¯vF‰J_;[ß »_ w£Ã`#39GhÜLwÒ¿;;•ÃÛ"¼üáå½=Ϲ ïLÛõLïß+¦ŠH2——|.'yu]STF’ýˆƒ!¿g£Úaà8wƒ5Í£¥BîÚË7G|ôs3ä>yÄ}×é[Ý ÛÚ[F»öç7ò3Ž í‹ÊßD%À½/*l¯†WÒ˜Où?ÔüIÿœÊô[Mùùÿ¼(Ͻ(ó/õ[(*µ—ppíàw›eIN»Ã“¢’ ÈòÙ($]ûD$>í•Æ€"åöpZ?¾IóÇ7fz9[îì€C„C»œÔ§ŠÎbXªæÌëåË:üV‹ŠÊ¨+Òx;3Û©ôvÚ©W4U¨cq‰Ç§ÚB…dͺB¢¢1µïAKò©Ys`bïO—CÛÚœ«²vÊû›·Sf¹ !_îAk¯Yòxm¢ñxÿ­¹_ÈUBêûžöÄÒ•{4šü~‰Êa}uXØ`B œ²ÙƉRËô~L›^ɺ7¥užñDeú>•a}ux;ë°êà>ÖWËc‰ÊáƒûˆJ§oºž=7SÆôï‹Êà¶/ÿ8¢òÖ?çl¡ê¦G|ÏaÛÓ§¯§ˆD%¦®ÏJuD»Œj‡ã¢ÁmÖÖ“<7ï“Gôªý¸nƒÐglÀïk°¨¬øB±­ûïˆÊðßD%À=.*¥æ‚½®æR¾ònKþù·ƒ¢òúúœ”Ï.Êÿùæ­•ÃÑýü^«"™TΨµ‚ö6èAlJ ‡s’>4ržJw¶:ûM­1è€y–ü™§¬EÓÜWÏ7Ièy07ã©lôù깹t[šä²9©¶zç™ÎT’VáHE•‘·h]£Ó®ë97ê­¶ÖBiFê®ë”“³Íš-í%L”\‰+ ³-ΜîZõ9ŒPÆŽÇSçN]3ô6¬¾-R•(õ·Y¡dÙ_'¾_Þ²Œ|Þ«,qSœOK­§VI3 ¬èé³v›IîhÛã½_Eex_ÕíÜ3ú@YÝˈdæ‡ö¹y6¤¯Ú÷.]õ¾˜PTN´œD@fâÐïÓˆ2î¤ﶨ /x;Ýžç\§ÒŠ"ð=‡µ KÍL§’—l¡þê®Û¨vðç~èçHVeFŸV™€G·õèçfбúš3®úwÒ8¶7A[öýÁg û9éö{ÓFTÜû¢ò—g–Íu(³*©Å¡·?•Ï«ÐWÃKù³kÈÿqäΉJ#Ý{φ±d^eS¡N•œýHÉo‰ÊxZeì¨ {%™±ó¤=s*#jŽ1/­d…ŠYI8¬·ÕÆ<#_.¡ß€çêÝÀ„ vHOÌøÙ 9¢ŽØ¶ŒÈ¨%EŒ2ÍJEeΫYžW푳D‰üä«*dªY‘Dt*05·žµ[J¬tÕyŠ)'ùDMe‡LZ×(©l’ífU’1ëG>¤­õÚrF¨TVµ¯¬¬sÎÔÀËyêüEuN[Œs’®¸­UË‘W<;®6v’;XóyråÆÈú–­ÄÉB͵mØ’"“Þ/oY&•† L[I,".á[±ÊœÈ«ì­®ú§Ô÷°×Ì[ó6s*kbÝÊ´Ø÷ÆÞ¯¢2¼¯Zë÷™m¦2Z¶Ô€ÔLŠS!vÃû\'´¯ZBUÍ+ÕUØdÑúÎEÇ•Þ>ªæe'“䨥De÷&ʸ“þ½Û¢2¼üþvºÏ9ï3Ýü¾ÍºŸéƒ¿1‘é´ÔTyêjÞ¡éñŒç‚çTºê6ª|°jzÌ*Yoö¸ˆá ÈþZ÷„¿ªÁF"a†Å¬9sÙêŒA›>”}/Y>XlZëÍÙÉü{ë0ìÿ¾A’å9ÆúcJdØot ¯m"æÍ˜˜­´E',Lí—HL›‚ÚPujù¾gÃÊVX¨wF¶u] ÚÜÙuc³Ydzk”m6ê:g,!Õ¶wÑõ^«¤ç<9™*ÔVÕ5j%½(&ÛrgT}:öÃt#Ѩ¯ýoæ~yËr¢ÖW‡ô+AF¦ÖõÜ—|"î Ѷ|è$Ó¡|}Q**îíð×ð¾j´u!÷„cg¬¤#Ãúܨ¾Ú®f]¡xQ™yC&£ÞzÌ5wÓÛGÇ\ëpHhöN˸“þíþûÿÈ綯-ÂÊïÿ.߉ç\Õz!á.cªXü¾7JiOxf$ž”ZgX[{ëÖS4ÔuÜûN§Š#ûÝ¨çæ¨ûä~ÞG§gt6j«ÏŽßÖƒ}ßÌQàò¦kQiÏ©|X¦Ôá¯Ão•÷…¨Ìª$=/oÊá…äÝÿ¸æáßþHþîß>”9%*oܼ¨ÜTž¶zÜéöÆÚ¯; :Ý!eÆ>€ù.ý#xüíÅ(C»Ó¾M•¿7âÝNØ~=ëÉÚzÄ}+·ûºNw²¶Rž*¿ÿ^Þ è·ú‰ÀÁ¥]æÀuP»³}{\ë~X§2¼¯ÚmÖ§ÖçBûªµíÏï‰2îÆsùŽ=çúí8ú™®÷kwº·¶vÔf“?7µ77'Ó‘ÛðdŽ´­wNÈï ¢àÞ•oœlÉëòÜ¿]gþõ‚<§8øë=Éy~ªÂ^ªåÿþÚ¹»CTÞ4JTF¼k¿yE€ñÖüÎÏó€{c­Ôx4â,r;®y?ˆJ¸Ï£¬ãÝÌdÓ2myöƒ§u|·@TÜÿú»¦<õÊiù¥ß1…â¸üÍ«)žþð¯¿ZàZ¥bÏXk– „ö”2’H'KÀàÄ5ÔÜ>º:c…µ!*•w’¦J:4«2¡GÕsiz6¥æ6¶iD%ÀÍó³Ü)Óë8 ÷¾ @T¢Ü“÷»Ýî-L€¨¸OÌÔæSV&ºf9¯Ö›ëÜ÷õ6×Ý‹enz¾)€ïJû™Ëy<<%?ÈÖB—C˜hΑ«ív뜀¨DTÜbô‚ÎÓ’/—¥úïo™kw%+ï@½£»²ð³‘æÏš‹|ë’}WÚϽh¹§ vz>_ÛíÊ9Q‰¨Ø-ºÒ¨©Ì±Å¢Ke©·tón»©47­ž•j³-­jÎØÏæ*ÒjwñP+—¤P(H¹Úô„̶êuµ_K*¥¢”ª OÆÖn«!µzÓóY¯Ó4?³Ãl›F™Ôy‹¥ª´{Þó6ÛýµÃzmã¸ÖÐuíº•*µþyzm©×ÑØjÔ¥aÕ]¯‡™–F³f–¡T©÷Ëjk”½«ëV,*nW·…ñw¡X’†S¾®4ºžíÀö»Åía•µmÖ£hÞÇqï¿sÕšeŠqÕñ¶§Ì–ZÓ¬Ql#KT>h.ÞÝo§­ëV]ÊUïú~ªM«ª?™÷«Ü¯ç`ÛùÎÙë˜Çe ê‡m¾Ý¬êí•Z“ï<¢Q °kôš’ŠéðV7™ªH©¨ë³ÿ»üøÿÖß5ÄB§*³ïq‘™œ%Ô:’òl‹IÕåUjfô:\¾*Ìû%ÕÐÉÍD|eŠK©ÙÓçò®c©×®L¬]Ù–ì´¿n³RWB¥SIš—;}ä>o5h“©xƼF§’ܦêóÔwZªþ¾åŽ·=ÌöÛºõí1PÖéüØ÷ðjfr5ë:Ñ¡mä•ý6Ð6?ë¯ËŒéq4ÖŽŒLݯÁ¶óœ³U–iÿqÓY§Auˆ§+|÷•ˆJ€ÝÀWZD"£.³ÖüIS8Xa æ½S–¨Ú–ª´MPÑÓRn[Þ¤JÆ<×l±©çÔÅ´`¨4[ÒPž3¯˜©IÜ-®ºUsîætNyÝ ³æyy-^z¶hˆg•gª#é¨W”éPÕô`¨ªuÎxN/nßS¢Å8oZÕµSM«ÿG]sò¼çµEeÚZ/³YÒ"&¡ê¦’X¢`zÊZÖ¶ÈlÞ,C·–3ÿN–Ûj߃êÿêëxÚoë¶´‡]Öh"/Móèòh޾ÿö=œ–J[ ÂB"j èJ·ßF©¢n£VY_k¦ÐðŠJWØå™µ„i·¡ïI,û¾äâZD6lï¤u¾”òêk»þ9{’Ÿ¶E¶ö°6ŠºN3ù†·¶µÏbÝîÓ€¨DTì‚°l5UˆdMÊ*t3›N˜ƒ÷˜#®\‚MÍk‹9{-fŒÁz®—\./…|Ú<6j -vªC¯[JDLÑ4IqÖy†çɼ¦ÏóXÏNk1Ó™\TNMEd&‘–BY…¿ZÞÒÑ¢Ò?§²mz¼ ±e £L­ë¹NÊföߟ¨ô´ßíi»¬Ùzw÷_Ÿ;–­õ÷o—Lo¢Q‡Á6ê8m4LTêº$”÷µýv³¡Bl•àëu¥ÕTeQ¡¸¥BNR³–h5ÚË×výs6LìõüÚå¨öCsžpPD% 09½fÉ:ëü0Qéx‹ –VF-bWÇ'L/Ô ØHbSËZ‚§©½T*4Ó˜XËÄÌÌ«î9x¶,O"*k4Ë’œŽ¹B£’«ã©ŒùÄòx©íS$ùŽu·‹ïo¿¨Œ†ˆÊ[Ñz?íYœüþkqæˆe—`Nš¢2fŠ`E­c‡ŠÊhð½j’®û‘ø´WTz*[5³ü3ùºGTºË1ID%Lˆž“b£ãñòDCDeºÚí{*gŠž¤(å|V ÕÖX¢rk«%IãŸÖ™=ËmW™f¤îÚ·œŒ˜"¯iŸ7]õÖ!@$ôZɤr–èQ [j3ÄÔô6šsò¢®9•m³,Ã=•u™±çóݤ¨Ôíw{ÚcPlíëo¿[ßeèþÛ¢Ò…!^›=ðv“,Ô¤!*>Xõµ s-¥=u™NͲÖ=á¯êóDÂlG݇¼mç=g[½ˆ{Bgí¤FAý°fÜ[Ç“›é{Cy *ix€ÒS^*åUëŒç­é©5ÿz=÷ßiÇ÷&¿¶Né^JÃA%n1ÏÛ Ø¶Õÿš!ç±ËÞz¼>¶ÛÛE!ïk¿ÛÞcßwh­qþŽÏËiÌÌhq6i «K/¼½ÃÚ®×é˜eìò@T"*¾¨D?ɸ•@'–a~Û]ÙJTF¼k`zçcó:Yš•p‡DTJeeO'­õi»¯=ºRTKŒd¬µ:ý4KI¤‹xQ ˆJQ‰¨@T"*Q ˆJ@T"*•ˆJ@T¢•4<¢Q €¨DT¢•€¨DT *•€¨D% *Q‰¨@T"*Q ˆJ@T"*•ˆJ@T¢à.à¿þ×ÿ*sssò³Ÿý à®Â£cD%À]L.—“sçÎÉ… î*Œ1Š1VATÜÅ,,,ÈÆÆ†|õÕWwÆÅ« *îbNž<)7nÜ Ã0 ð»ÍŒ1Š1VAT *1 Ã0 ÕˆJ@Tb†a†!*•>Qyýúu~µ0 Ã0 »ëÌ£ *ðTb†a†íÈðT *1 Ã0 ÕˆJ€{—n·+½Þw¥¾=³¾Ý¢Ã0 Ã0D%¢î:’‰MI4Qô|^JÆejjJÒ•NÿónU¦Õg3¹ºÔ2j{,#\³×®J6[’®ú-û˜ºÎcRíNvŽf9/ź.ÛÍ”åÞ§)éø”y¯¦¦RÒ¾Ïë[/¦%:e×wJ≜´•†a†!*•pg½>ÅYc€ž¦óYCf­A{,Uî{Ãjó³L­+ÕtT¦"© ¹j*b ãØJêaõÿ¥Ü™àÝŠDT9’–ཙ²ÜóÊjÚ¼'‰lQ*•ºôîçú¶ ZLN§¤ÚhH9—4ÿލ"=D%†a†aˆJD%Ü9Z¥„œG¤Ø²<‰œöÅ”ø‹$O霚–zÏrÑ´4Û ) R,U¥í GìJ£V‘b±¨¶•¥Þêêswš’O¨c§f¤ÜhK£0cþ¿nÛiÖ¤lÓhwËÛ®æLQ9›«H«Ý£,ªŽuU–!ÛÜ»U¯K[…V6«%)”P«5}‚¶%ÕrɬW©ì:W¯-õzS…e¶¤RRå/–¥ÙÕž`ãïB±¤êÓÛA™lïn]JÅ‚*SÉiË­ž:wnVµ_TòÕ¦tzþºÔÔ¾oÛ5ÔgÍŽs¼Q£žåª«žF]j Ho5êÒ°®Ûm5Ôÿ;ºJêy™G´SGõ}Ÿ+ÒìxÛ¿ÕéH£¢ËUU}ÄñRfãf?-¹^@˜/D"ãyh•†a†!*•p«h—´ç¯ÔÒâѼ§¤VÍšâ²ÐÔ"1k„YNçM¯P5wB”5½½¦¤bSÛ3U%bR1×þ)ù¨–•‡Ëš¡°õüìà1•ö@¸n*ÒßMUÂË¢Ê]LÆ|Û§¥Ü vŸÛ ±LW´˜ªçÍvònŸ5q§’,ÃTLbïu«IË´¥„wrà܉|}àšÉrÛ#ê³1ívÂC{5‰m–®*¯_Ù eöœw:kгNE_¯ï=VíblOj¯uÅô4»®[ñ ×ÉÛ)*ÅfohûÏäjVù»Òn»¯Õ„±¿z¡ÐATb†a†¨DT¤%I58˜¢¡kαœJÿ¯KÜÔç /VMÿ¿Ð°BNµK•ôßÍ¢"i%mQbˆH-êf8mÄ%V¸ª×»ÔÖ‚b¶àÌ4ÊdˆÆòvÊæ¼º”%8ÃÊÒ.k“,6,ZMf#}q4¿ÔðœVÚZääflOXOrq-Ž–×­]Ö¡§)%ª:Vj,Q0r«¤¯™Í›‚§[Ë9Âo¢2u*¦4_Ëj§ÜlD ±–-Ò¢Rnxt­ëdë]Ë#´<Ò=ÉOu‰K©©·5¬6›É7¬ºD¥â•éhÿ^ôÛ»nz0Û>é8íUíÒ5ëW•£~qãÅ‚ÝþÓªýµ0.˜^í˜TüÞPÕ§’Q-:sõ.s*1 Ã0 CT"*áNSNBO%»QÉxbŽ×ËÓ6©EQÁò¦éyŒ.‘šçèzVS…9ªPVú™M'Ìm1G”øŽµ3_Ôzýpç©Ù¢gi;DÙ ©íôïM22®¨§ŒÕ~Ò¢R"bÝgÝþWûÛ‡³î×^C²É”º‹¨Ä0 Ã0 Q‰¨„»h½Jc?í?4D‚•<ł¢2_k)qØœ9/®¿<‰ÿŒK®ÜðÎë4ìÌJ©Þ’v³*ÉØTp˜¥å©Š%2Rmvý¦– ‰L§¥ÖT™GË-’㹡¢2&*ãi©«d1­zIf¬vI‰»Q9Y™¬ë^d•‰¶]1w”¨4aÚº¯‘DÉåÁŒY Œ ºý{”*·Ì æKµd£Y·²õªöNO *CÛÉH®3+•fKjÅ”•p©ìêƒI›ó5Kz¾¥?,¸ÛôlB uD%†a†aˆJD%ÜUÔÌ×ÁÄ'å¤náb ǨWÈŬä8½– ugñŒ'$9­¼QQíu´éx½aJ Õòf2 ~èd\ ‡N ÎÏD­Œ¥ùв˜á•¥´'¤6OJ­,¬Í9}骫M⎀ªû²°N'æuŒýµG-æ•î2¸CV'+“á-.ËlÔÙvZyt».Of,DTªö.Ìzç{Zb3Ÿˆ{ÂTùš3g±”šîo‹ÆLÑÛ•±ÐŒ«aíä$ê‰ö3ÈFgs–7ºÿb£_×å‘ì…†?#*1 Ã0 CT"*ᾤ§¼”*ܱÓÝÑqíÎè,=µžd¯7îyå(Œóvo®^=}žno7Úh²2uvX~í•L$&2Ö í˜ËttÛ·c–¯·‹íäžSÙëõé †›¢Þ¿|È̓¨Ä0 Ã0 Q‰¨€ 0Ö‹Œ[Ac©»'!TÄã¡öˆÊH=ÌÝQ‰a†a¢Q “ˆÊFA‰Ê˜Ì¤ŠÃ—ÿ¸ÍôTÚ䬚oÙ öÜÕò3™RQ‰a†a¢Q pwñî»ïÊõë×åÛo¿¸«0Æ(ÆXQ póöÛoËÒÒ’\¾|Y>ùä“[Žq®Åµ¸×âZ\‹kq­q0Æ(ÆXQ w5ˆJ@T¢•ˆJD%¢•€¨D% €¨DT *•€¨D% *•ˆJD% *Q ˆJ@T"*•ˆJ€‰ùÙÏ~p×ròäID%¢`g‚r{{Q p/ˆJ Ã0 ð»Í A‰¨@Tb†a†!*•€¨Ä0 Ã0 CT"*•†a†!*•ˆJ Ã0 ÕˆJ€]¤'ÝnWº=D%†a†aˆJD%ÀXt$›’h¢èù¼”ŒËÔÔ”¤+þçݪL«Ïfru©eÔöXF:;¸f¯]•l¶$Ýû°=»µ¬j·¸T:“[Íü@¦,Sø¿NÔÏš‰FdFúz›÷Æqu‹JãEA?\X Æé¨U¿˜.‡±wÈÜXD%†a†aˆJD%À¢§<Ê“ÖéÞ–c{ÝŽZCÓ½¯ö”º–q{Õ9ÚC®k_£7î<Õ¡çêŽ]VÏõ;ß²ÐU]§g¬¥Mì—vXîÍßoD%†a†aˆJD%À}O·ž—xT{gòïVý­Ì·†'3•ÉJÊò|Ú!ɈJ Ã0 ÕˆJ%*%*c2“*îŠwî^£×®J&1#1>‹ÏH¦PÛ늨Ä0 Ã0 Q‰¨¸e *1 Ã0 CT"*•†a†!*•ˆJ Ã0 Ã0D%¢Ã0 Ã0 Q‰¨D%†a†a¢Q €¨Ä0 Ã0 Q‰¨@Tb†a†¨DT *1 Ã0 ÕˆJ@Tb†a†!*•€¨DTb†a†¨DT *1 Ã0 CT"*•†a†aˆJD%†a†a¢Q ˆJ Ã0 Ã0D%¢Q‰a†a¢Q €¨Ä0 Ã0 Q‰¨¼¿Y[[£•†a†aˆJDåä´^”½{Ÿ—¥ —ȼpTöíÝ+‰ìé›;ÿÚy™S癿°|í³'ääÅÕݯÓ-:ïÄb]µãÞ½s²¸J?»X•ù§öÊSGj#úšÚ/±WææÏ#*1 Ã0 CT"*ïc,Ñ÷âÉeÏç'íSbh¯)ˆÎ¯ÝÌùe¿:Ïk‹+Û áš]Üeñw«Î»VÏQm¸QyŸ‰Ê#û÷ʾWk#úšµßk‹ˆJ Ã0 ÕˆÊû—‹Gç”èyQ–|¢,¡Êϼ–5ÿ}þÄ’ë˜ Y¾xQVT¸lëüiYX8)‹Z>Q·,‹§OÊÉ“çeyù¬yŽ Q¹r¾hÈ_,.ÊòÊš¬-/ÉÒòª>ïiõÙêŠ\¼°$«®c–—.ª}Öœ²,]XT×9)§/ÈÊFðy½×Õåo­l8Ÿm¬´äÂÅeÙp•ÿüÙÓê¼§åüÅå`±Øº(–úÛŒ²»Ï±±jœ³¥ÊbˆÊ„,.¯ÈÕ& ꜗ½eÚXY’Ó'T[z·éö0Ú傜\X“gÏ;uô¿º,T;­¹ÊñÂYv^¬©vºèü=ìzƒ·oÿœzÛÉÓgûçÙXõ]ÛÞ×ølÃw.¨ã¼bleI}ÖZuÎeÜ£=ïêc£úÅ Ë6\ÝðöU}¯UÝík\CÝ¿5£/må¹o–XüÕ}Mï·ÿµÓªþgÍsœ_Z^¶ÓÁ÷Q‰a†a¢Qy÷²qQžWâýÙ³á°ûäôʪœ˜SÞÊ}¯ÉŠk üÚ¾½–³ÏÜ˳|Ò‘þ탢Ò{žýÊ›³øÚ>Ï1ÿT8dþ{vÕuŒ±Í,ïŠ}ÆåâÆày®ëœC¦¯›Õu\9;Pþý!À§éëµ,Ñt4±×ôHÚeÕÛ³ò±)*Ûcþ¼n峃۳'—¬rí/”è]»xÂ,kPW_ ¼oE«ÏÏÿ7ɼóÁȾ6ÐNÏ/8e;™Mø¶?#g—•†a†!*•÷ «:45ë|+¦weï\ÑôºÙ‚`þšo ü¼,šÞ¾U)>o Ï5)ÎéñâŠÞ÷Ä‹û‡ˆÊ-S€¸CcÏ™Óûž¾hzž>>çµ=?‹fØ®!@æŠZm(`{Ä6CCnÝç°>;D•qßÓóuþHÂ#ççÌú\Xó ¹yóz'Z†Ò!垆—­%/óQÕ\ºUKðí?tB{ÖVM±´Ï@JÔ›ÿÑÚ¦¼w§_K8!ÇýöÐu\:™í×ÑS'ýr 1¯ÅÊÂóº,û^<Ù§û”hq=Xô°öµEݼ]uÞí:©s.¼¨Åb輮 CœîŸ÷xµØ|Í#†—OgÍ—'—­cT¹N·ÖìÓžëÕ~ýQ¿vA^4Dê3'ú^sD%†a†aˆJDåÝŒ=p^h¹BA­A÷þì‚,--ÉÅE°gß‹ ¾üy—(KX¢lY²û|ï•“æñÃæT&<¢r¿)NW‡ÎG•†yþÐY8«Â3ׂÏ;‰¨ÔÂÆAs’?!‹*rcˆ—×hÏœPÛ/jizèŒvY^p/¢áš·®¿vÁ:îyUþ…R<± G³sŽ÷·‡]ç z4„Üþ£*vɘ{÷Ù^ÀÓ‹gxÿF]/HT¶¯qo–[*<ô‚œU!½G2…UÂjS»Îó6œ9µ¶×t¸§|C‹¼9]‡œö@ïË.N$*Í6t{C ñØZR¡Õªlk²ÜRõPa¼§ŠòÚ‹ý¶°ëÐ÷®êû60?rœ¾æòÚž|ûû°h ú}’-žÅ¢œP÷Ä•û½ÑˆJ Ã0 ՈʻSTš!~û\a„[Ö@wo k¿Q¦„ˆ!´GÄÉ0Q¹@TOT^§ÖYÉ>ã.ï~)YfÃ’•æ<Ó“óòÌ~WݯY^7ï|CÓ#ø|QNÏ«2™{Æ/*ƒïÛØ‰¨ŒcöI°ZßÛ­ï…bß~I¨{17÷¢œ_ETb†a†¨DTÞØ^É#®0FÓËõ¼ ÜØ0×®\SÉUV¬PÏgŽ^!ÊVô³C®9ˆÖ5ÂDå‘ókÁ¢Ò½û]¢wÅñ„n,/ÊükEË££æ ^X0ÃÍLßyGytx¨å©\—±& ï¼Aý½ûž—Ó—äüIË{gy³.Ìëò9©Â=UVÕÓGžv—ßNêS\Ò‰flž½.g¸8±ÚU ‹ç—\í¥÷ŸHTóY­Ä: K0/X jú‰˜Â¯ç{ÃÛW µ„œ¸°,«*“lѾ/¯ó îOÞ„@G¬d6û\/#lù¡FVÕþ5^;»Ú/D«µï¾çªz¨L®EüéÊ´jŠÊ¹#rQ%¤Z¾xZž·’îqæTŽ!*Gô5=ÿxŸÌŸUí½d{xux«ÝÆûž9"Z*ÛìÙyÝfÖ|fD%†a†aˆJDå=€åY´æKžx~ïàò"v¨à‰ç­ä,—ÍÁuÂåé»`x¥ñ³"Åû!“ûöï÷&uñ ºOׇ‡µ·.ÃÊêÚD×DTb†a†¨DTÞ%¨È1ÿ£1¼ˆÏ«¤3Ú |zeø¾Æ:‘sû÷9K…Ðv[ˆJ Ã0 ÕˆÊ{cí¾ÄþCza{Ún’‹'Ô#jI–ùÓ­ýN%ÿQ¡«Ï[ᨴ¢Ã0 Ã0D%¢Q‰a†a¢Q €¨Ä0 Ã0 CT"*Q‰a†a†¨DTÀýŸàh- ƒ1¢Ã0 Ã0D%¢àF¯Í˜33pëì 9yqô22ëæOImÕøÿQõÿ9óÿ“–ïÂQµVeâÈ=’äG·åÜü¶l-˜YpO,m *1 Ã0 CT"*îQydÿ^Ù÷Úâè}×eŸEÙÅ1DåÒ;2÷Ô‹ra]­—yþˆ¹ôÈNDåù#ûeï¾{GTŽj˳Yµ¼Êþù±ëƒ¨Ä0 Ã0 Q‰¨¸+Ã0—ÏÊÂÂI¹ØZ’#Ê»¶ß%„6V–äôɵý´\\^s>_9_4Eå‹ÅEY^±>_[–ógOËÉ“'åôÙó²â,Y³.­¥–¬o‹Êå‹‹rraANžv£Ym]0·½°$g$BEå°²®-/É’ú{mYŸëäÙÁël¬\zì…¥eX\ºpÑu¼j¿óFû-ÈâÅYSe¸ØZuDåþ×ÎJKÕÏhß³Z²á.ó²öVÎ_XCTb†a†¨DTÜ‹¬ÈüÜ^SظIÑ¢rùì‘mÙ“K¦`zm_ÿ3C„®]ñ¢ñ÷kžòŸ7¯úlQ‰a†a¢Q p¯±8 h”Úgy/h´ïù#*tó„O,ÈѬ%Î !éWZØ­Ér«%/,Êé…¢¼öbßa¢rÑ~û$[SØÙå½xtn@”™!ª#ʪ…¡ë8%Xí²¯.ja»àºÎÖÊiÇ&*íóöÛoÍ y]t…¿öõ,x¾/Êí0â³Y³=ή"*1 Ã0 CT"*î1.ÌÏyC;MK­.Úá¤ûdÿþý õobNææž‘â…US\íw‰Joé>™{f´¨´=ˆúüŠ}û%¡Î?7÷¢T«†ØKÈ¢K€­7>•£Ê$ í²kAºßs·è8vµì…ù„¯ýÖä蜜gÕ%0íòkŽ *1 Ã0 CT"*îaOåÞçå¢óÙ²d­9’‹:4ÕÝuõ‚åüò†#ÌŽœ7’Ì´äB:/-[œ-G{*èÕ î¹‘‹'äèÂyY·®o†¨z<«ƒá¯£Ê&*uyT²œók®óuBwýÇ®?âò€&tû9I{t;ì"*íº/®º—I™3ç‘^XCTb†a†¨DTÜc¬Yblÿ‹EYZiÉÉ׿\s•À4“ñÌɉóK*´uQIelQdyì‡æå|ëZTΑ‹+«*›ëi=ÿÑ…!s*7,á¹ï™#r¡µ"ÕœD3ÙÏ\QeIµ¯ÿŒœ¾¸,Kö¶ÀD=áe •Ž V×YPÙYûe×bQ‹>µ¯º-µíE«^ƱÖZ“{ç^“³*ì‘göyçTú–Y ðT„æ"*1 Ã0 CT"*î%.úÂVuöW=pcY‰3OÓ„]\vBeOsèBjœkÝ 1}Ê’îÿ›a³§˜ÏÉœ:—• Ö¶ÖiyÆ•evÎmûƒ³¿†•Õô(îœi{A7ZgåÅý®c÷=#'—ìeR.JÖuÞÄóÏx<¨«N˜ …LqþÌóæyÝžJ»-û¢Ò=§R{†÷:Í’"†a†!*•÷0*ÉÎÊÊÊÐe-VÕ¶åÜskk²±á;ÏÆ¤eÐÇ­¬® ¿þêÆXç +ëXÇ)ÃÚêà6ÃÓûÌ‹G¥I¶¶–äEgI‘1<ÅV(­;¢Ã0 Ã0D%¢¾3áÃG­ð×C2ôˆ†jbAm+9u6ˆ­†ºÏó^ÕöR¥nÞƒ^«fõ»šs¯uÄ”ˆnI¥h´mEšÝ­‰®cöKu\˶̾X,–¤ê+ï ¦pÞqûm{ô÷bàe…]¶¢”Êý>4®¨¬¯¯Oß ç^µ¥«ÚÍø~õûEYÕ¥¢¿§ÎsAõïü¬9ØÏªû¤Ÿ=§?—*5__ï÷ùÁã†= FV¾Qß]WŒìãýþd< ªÔÛ]o„BÍz6z¾ãaÏÀàvï³]õoÍyÛ×õ¼˜äYvqž£N[ùÊd_+­¶ÔJV¶ºc”iH ¸Þçïe-*“å~¹GöÍ žAªïÕï{×ÿ<7>ë1¶ATÜ~<('Nœ/¿üR¾úê«@Œmo½õ–¼ð ·LTV3Ó¡”ÑdÉù±ÌÏF|Ûg̷ö¨4~ԛŤÞ6S?¼IEÃ3ãiëú­²LûÃ7§³êǾn~±’õŒg­ApCfŒ²©+¨ìTeÖw½ÈLÎ!mÉÄ˳ÊR7-þíQ)wF×Û¾îú­j:>xÞHRšæ ¤)©Ø`™2U5¸NÅ\û§Á>à¥ëŽáÁª¤ÌóèºTÚ<š(ªA“=8¯šƒ/û^' uçøþ=ʇÖÛ¹Ïñ¨çïdI µV9=°o²Ø0·URÑm‘xÜê;[ôxk½Ä¤Øìqo_N¾õ‰ íû^…äÀyùººŸãöÛrø÷Â?È­çBg¥Þ_Túëûd“ý>1仡ë¡Ã¾7JÄu}ퟮ^”ìtp9½^'ÿqáÏ‚­QÇ~4´|[#ž îïÅè>®žm¥Ô`¨y¹e¶QnÆÿlŒKÉì‡ÃŸAí0éwc*š”–é ^Lò¬»Î¨ç¨×Ké-ÓÅÀï«ñ¼k‡–)°¿¸ŸuÎ} xþffä§…†YîqúæDÏ NÙü,ê ým—õ÷*×@T"*n3=åÍ{ê©§ä³Ï>“¯¿þZ¾ùæùæÛoå[ÆgÛÛÛ²¾¾nî{KDe·*Ñ)ýÆßþ¬”ˆ8'Ü2W³BŽòz0‘­iQK+/CÚ)kmHg¤ÒîYƒ/{У„Ë´=øÒo«– É«7õɈ)¾Ú®jSÄmVÏšçÕ ­/*{R4…д”ÛÖ|%£Ë\lJ³0k КžbÌh %´ AKu¹¨z«Þ ?ï@;ª†ÑŽ©Š5P²Deª¤†¶è6FJÒ‘ÚSS—Y—(©X¡³íð×H4*Q›HD¦­¹eÁb£'…Kx5t›W³º|å™1De,­<ɨkÀÜ¿V4‘—¦ñ¿Ý œWeÜŸª!Rº5«ý¦Õ}7êÕè×Ë^³yK”÷¤d>ãRíöÛ+]nšÛŠ ]–”5°ÖO½¯]®X² ÏÕ¶³½1¯“*)k£.¿ýûXÿ%‚ÑöÆ\XUþÐH«¯‚ÇdçÌþ•bkkÌ~Ûù^l xsq=nôì«®wJ…ø+*ýõ½xº¿oÃúnè67Äx¦ÿÝ0^6eØe5^.M9!Ýz@Õß õ 1Ú&žÓ÷ªWÏŠ€-ÿq#žádž•/ü»ëm»}¼W“¸yß3Ö}W/„¢SæË´·Ú/‘×ÏÆž-Í— Ð{í©ËØ}¶ái#»}Þ“<ëîú ¸–»Lî6v_Íç¨ßÏ=‰Êð=Ýu·oŽÿ RÏS£¯M%ôKB»GïL~D%¢¾ãtÔÛÕ¹¹9S0Þ¸qÃôJþéO2Ù¶þµ=•]Beì{«<•=òÙh4¤j„6å22mƒ¨ž+i GõãÙr‡zªÐ'#ÔÏã‹¥=¡¨}ï—ýƒ³æ_j¡á ›Òoš#ÉŠ5ˆˆ˜ƒü²)r"ÎàzÖhYoèQ©¯e Þr…¼äry)äÓz ¢-æÛgÏ€KíÑ×ïTô`'ïz»Ü*%¬ù?áç šSóˆJß|SµÝ=èé´š*ìN…|©p°l:an³hasUíÚt")ɤE"!iåY.*­ùOîr«®† 3ÂÝŸX¦6p­l½:¯ªŸÕ¹Œ6K”ad ¶ŒyW:©†á-J«ð9Õžù‚d“Ö Vµ‰¿Îf±Õ:)GÚv¹òÍ-oÿRýôc]§?ÿ¬U²`4.ÉL^…€†~»½"…–ëó¶öH&Ëí1ûmØ÷" }{]i5U?Q¡{¥BNR³ýzŒ/*½õuï[#]W(ô`YùŸ°·æÉYw£Î3 Õî*L°Ýg>lø³ üذò…wƒDåÐ>Þ,˜÷Ø-Bºí¦&©ŸI˜«g§­—Rá÷Ú]—î„}Önï¡Ïš°—™£žõC®ö5ß~°»æsÂ>6¬Laó1=ýÞ÷üõ‹ÊqúæNžA™ZÏy¶ÏšŒm•·Ÿ+W®ÈßýÝßɧŸ~*Ÿþ¹|ñ妀tóÅ_Èç››²ººjî{kD¥zƒ>ë û‰Æt¸{  °Ø¢2âdm™§çúÁVÞ¬iÓQ÷z¼ìý-Ï@¢X–dDÿkx¦³EÏGT^>+ôÉñÜ©:ÄUØRByWÍ,¬ž_ÿZz0s îC¥~Þ QSTöš%OÈ_4÷¼õ-*Ç›Sé•Ñ!÷ßôøLEBܹPÝ­¢²2ü¾«Á¨~Y`‡²E¬¶TÿÆâª=§%Wë è¼»—öÿË·g$f–µôöd×1…@Q d£®·XÊò@ø3MúŽ݃û±úmÈ÷bd¸mDâÓ;•é@QYËÄ|ß®dãvò•Á²v«þAu°ßmªzOÇn¿,(4{Ù¯cf†çn@Ëð{íéÏ~7F>kB~F>ë‡\'ì9:ž¨t·qÇóò"¬L“ˆÊ@Oå}s’gá±¶_ˆ4J³#ž“€¨¸Å¢Ò˜SÙjµL¯¥!. ñèÆøleeÅÜÇØ÷VˆJÇó•©8·ÔokU8`¯®l\‡[ê7ïÆ›í¶5§eÆÚ/l@Õ2Ýöü¸­­þ´ö¤)ï–3O)*¥Ž1×¥? ÈÖº^Qi{*gŠžÐÁr>+…jËš'3#ug›ºþ”[Tê¥8üâÄñT9ï0Q™®vGŠJ]&#µãñÎD}¢²»ƒÌ§a¢rj¶à × 0jé{•VB¹UÐ/ Å1³¬Ž•KTöê9>çjë­NMrj¹€j«·Qéõ0;!s^§UÉK:§½I½n[ÊÙ'Ä4è{’©ö=ZvX«Þwœ~;‰¨lJ »t’5r»**õw{Æ5¿L_s˜¼1óåF¯U‘L*gE3¨5µ‚)°#}÷q[#Ÿadž•/ü»;(*Cúx«hŠœD©/VšÍIÈ¿<ë¶^êˆ9ލ´ÚoÂ>;LTŽZRdô³~Ô3+ø9&*»Ï‘~ÛŒ*“÷ž•éª×ã󇾟ی}Œ}oMøkÛ~¤„F"1m†bå¬90RÚ“o:Uì{1]¡±¶ É*±¤“¿T]¡bq×t[¥œ{Bûìd¶-æž»èüÝÏÊY=ø°L=h/)ÒQ)o¶Õ™t1ðº/ŒP «l*™LzÚª$f8œ,­#ÎëoãüLÔÉ éo{Î1øèµJzÞ}ÞxB…g©rEõœ%'“®/ÄÓ’:dì^Ü»8¸¿.Qɘ ):¾{Õ”dT ¡·ÂƒG‰Êþ±z~fPø«í5Hļ[³•VþRÔ-ö⺘gZ4ÖϼKäœÐ¼I®ã¹ÿ³¹! º«0ºYw˜ldÚI|4^¿íŒø^x©û²ÍN«¹³1«ï¿Ïþ²·¾þ};µ¼IF9§gty]¢Ò]V}¬9fí~ÖÖ¤€•¬7‹rÄð°…h{Žk~ =öbxùB¾»ƒm ]CÑèOžûKHµm‡N§<ÏÆØ¬ÈiĽöµÃD}Öõ,Ùx^¨gý_ªÿ''ÖºNèsÔŸ1×U¦»Ÿ#~úKð³Îÿüu{¨Ç훓<ƒœzĽ/;Q pGD¥±~šá‘4’òÙ^gŸmÆÿÏŒmF†Ø£GÞÒòtÕ›ÿ¶òˆô†í£’†´Õ›ÞÎ.®ÃÕS ãšÝÝ:_·£ËØ^~ϵºu%æfœ¥(œðµˆw!ñÐó”¡«2ŽSÞžòRªsvº·7ëp§3Ø·;IU{D_›ô\CÚp’ë8íÒ»¹kî:v¿íÝ‚ï¼ò>M;"¨Ÿ8'(4pXc?#|ÇMô,ƾ´ *•ai„¶ž={VÞ{ï½@ŒmÆ>v2D%¢Q‰¨€[JÛþ𔢯KyÄ2Cûªû9Âï#¢Q cFò³?Ÿš‹y.(îMžðSyx6¯…äÁeê/õÒ îϻՔ¹ZeÂÁãNÛMF/Ô~wSMkÛé{rSuQëçk&+÷¨¨l¨µ!£³ÖzŠ;dÂ6XØþnnŸ;ð]»¾ß»WþðçäŽÓWSCûªû9Âï#¢Q p;éµ¥^oJ»Y“b¡(ÕfÛzãÛR± ÖË,I½åKAßmIµ\’b±$Õz«?xi5¤ÑRkŠ5ªê\)UêoŒ›µŠ¹­XªJÛY3¬'­z]Új±fµ¤®Y”JÍ›9¯£ÊW.Õqei´ûåi7r©ÓsKÑTIµ²Œ²5Úý7ØKÒ°ê¦E¥öNö?W |çgÍÁWV•»µÔšjwù{¦ùYÏS'ïqöšw½v}xûmyëÝRõnT˺ýÖ¢åêoc­ÒŠ«}½m_”R¹ß†B¬Ó’Z­&ÍNϸÕÊ%óœåjxVÂà¶Öem¶{.¯€Ñ-³=ô½ïèûWª¨:mîG®vÍ'ŒÅÉg¤¬î™³¸êKµRѼ—þc2u_±ïI»š3ÕlN•¡ÝÝq{õïþè÷C¾_[½Žy¾î¹êófÃ{ÝV=è;Óo_£Ì6²êÞýö3ÎY®©ã…ÝÝ¢rXÙÆ(ϰïiÐ3§«úrÅè÷7øûü]Z>õýðì3´^aÏÿ5­>ÔVeW}³Tmè{ø½4ö­©¾á­[«Q“z³3â{9ú™8ÞwÚ_~û9Y–¦j'³-j¾>zÿ{êùZÑõ¬ÔîXßûÍé?Çûý¨dÞÚZ¯Wïß³Ee4­žC ½Ýuÿs$ì· •ˆJ€ÝöpURz=:›é¼´Êiïg†×£ØÐÇ´Ëóm‹&Kæ¶J*:pÜT<#mk”›‰ø¶Ç¥ÔÔ‚0™86ž®X^ÆÙm™J[güm.ȮúüûÍäjºlIãï¤Y·¨´?ÿ¨ê­óÓ÷êuùýNaFïÛòx¼Ç¥«i’åH¾…R︷“%KèÔó¦Xðî?+õžKTb®]‘ikͲ!;U™õ]'2“ |›?^[oY÷;â´©þ¿«ÌÊKÚ<Þ…Xå…¸X<Î,GÕz)™ئû ·=£Þ˜ñÛ»Y˜ëþê÷A߯­VÙº?îϳÖþºï”;Z“1ß¹§¥Ü²^ДR×M—/Œhƒà{ì„¿†”mTy†÷Ïœ)ï˜Ã¾?Aß5¿€ÊÏúŸ13R뎪×ðçÏà5?òí““ïû^ªg’±¾gÔ%Ø;esßX¶6â{þL÷;Tþ ç¤³þnh;µ%;üüÕ7Âs^õ<[û§z¶߉j:>¸-’”fÀs¤ò[ˆJD%À- ›T?¶‰¼4MË9sP±BBõbÎ1S!yUëaýÀ›jcŽ‹<ÔºýüTQ¿Ý¶EÅL¡¡é³ÖàP‹¼ž=x‰gÕ›~[ÎH¥Ý³¨50Psp5[°ÊÜ”dÄ,wäàƒSò õÿ´qŽÈ¬:‡Rqæ§¹…ä°ÿëÁŽª›q|¯&q÷ ¼[5(Ó¹úA’u\§¢2j Ö²b9³Q)¶æYõ®íÙ­YÅi]‡^Cf{a¶z’‹ëA\Ãz3ß¶Ú7¥œ¾qõ†¾"3S®sªãŠæõ§uùŒã*ó¸Ù¢ß ÞÖÚÃQ ›tî}Iyq†‡¥ÚümX±ÂÚÚ¾>ik‰d³Ô}ˆNiO‹}l)qŽ5íQ³MÚÁs·Æmï îX¿ø~)ï]~Ú~¡b‰¨¢Q3ù†ÇãÜ.§¼BÜ.¯¦=«|SÓ«Ÿ5%eã~„µªGÜ}_TÛÎDláÓ -[hyBûΰgNÁ²N[øþx¾kCÎ;k½H2B‰MÁ”}?´^[¡Ïÿ5]û6[Ò¨/…~/[¥„é%,´ôˉF~Æz~Žú^†•i’ïô`ùõsÒ>¯!ħ¬Òðûoâ9}ÿ{õ¼#îÃûƈߜö•þsܺÿ±dQ{€ñl=Ç猾NÓ*Ÿý‚Áý û­â·Q‰¨¸E¢2ky t¢ã­wZ…?å%—/H6iý«Aj«dyÔâÎÉL^… öC§ç»è·íÆ ÝÜfyµ‰‘ Ä,Ø‚¥ê¨Û!y]ÉYoÇ£Ó³’ÍápýÐ1¨4Αv%{hM¯€Qî±D¥/„Ô+j°h¼og=”aóí·ð·€l—ô·r{@äxëmy6%'ÔÌä9óŸz]i5›RWág¥BNR³ýûÒñx$"®ëëkƒÓœq?sy)äÓZ˜¹¼Ž¶§'¬­ÃE¥÷ÞêGaóúü}Ò(WÆuíž ‡k4R­¨Õ\F¦#.oPWJ‡‰ÊIÚ{ÜûÖï뢅«WlÙûW<}©bŠðˆ$Õ=Ëçr’Wíh°•g¦Õ,˜}Êí­ëªpd#9¬ ôù#žõlÜ*xÙBËÚw‚Ÿ9}/°¾¿F»úþ„Í·ÕϘ„Ç“l„U¶:„Ök°_¸Ÿ?þçÂà¾aßKãå„ñB$ž©™õ4¿‹¦Ðõ½ +Ó$ßéÑå×B×xÙ~ÿmQiô™„ú^«ÐÔv×öÖ‡õðß÷s¼SÑÛò®-Ì£–¨ôÍÿU}ÝýŽ=ì· •ˆJ€["*cN ûGÝ D£Q…ú7W!‚Ó’«éAb½¨òQwè\J‡™o†g]ƒˆŽ#j™˜™µ¯0Ø)wÂËÖVKò©YsðÐ+ŠÊˆïM½5Ú©¨ÔYHÁOS{#ÞºûmZLE½I=\å9•áÂM…Vê¯?,0"ñéQ‰Xa^EkÀ[wÂäôý4ˆ©û—„åÑñ2¼­G‹Êþ`oœ~.*c®6t_[ylf]ᦪ.fè¡KTFGŠÊñÚ{ÜûÖïêÒÕ"cÆíß?êñÊ8÷-•˜j¿x|VÊoëä+…f/0QOt¨¨LùÚÖNä¢D刲…•G{ŇõðgŽû>ŒúþŒ•Ñ€„C#ê5ªo‹²þ¾aßK·'½ézÉ5ú{R¦ ¿Ó£ÊßµŸÃ­Qí¤öm–%9ó„¥ßçÑ}#üþÛÏq;û±;š¡[KïHT†ýVñÛ¨DTÜ⬡½zΙçìשIN¥¤¯ª®V%/éœ~ËÝë¶¥œqB½ôàÚí)è¿ùÖóÎf¤îºv91÷o†êÚRÌf¤h½¹î¨™¸6è©´,ioYÆôŒ-*Õ€¦×XF_D Ž‚=ÞARµ× Ÿ©ö“sôêY§&9Gä4%a…;6íW#ç•)«mõŒ७¹¦Wc¦èI¶QÎg¥Pm „¿†µµßlÞÓ!¢rT?&*»Ù_ûíb·ït¦âõûDeºÚÝ‘¨¬¸Då¸÷?¬ßÖEŸsjÖ}?šNØ­ÇS™ÖáÂ5w"õý˪*|\ ”D©_¦fAyt" ©w†·}_ÜÎþ} /[hyBûΨLŃ÷wØ÷gð;ê¿*¼±×?o6Q}åxh½Æ•ö5ýû†/õ\h]þXL{¾î‚¡ß˰2MòU~÷ý¿ÿ½VE2©œÕÏÕoA­ C©GöÑ÷ß+*g—«šçŽM$*»Öõ‡ýVñÛ¨DTÜbQé zÕ!¯2¶šID§œ}L£ñ£_T¡OjRJë¤)†ÇÄ~[KÌì|¹DÔIÀa{}"3Y•¥Ry V²†™‚  @©òLé¹’%•½¯Ý¬J2fÏÒƒ‘¿´D¥žƒ‘LY•»Q²Nèð«ñçTªz¶( +a=7ã$ü¨÷“éã>ÔƒL5¸-¨¬Š­zIÏY <Þ_ï1De<­Ú¯ã:¯€yïcÓº‡3æ»j‰ÌÙlYe­lJ12ÿ*¼­Í¬š‹Uª«ÐӢ剌‹ÊQýh`N¥5ß2Wn„Š{€>QL kÅ”“Äœ+e ªX"£²Jvo¢½·Æ¾ÿaý>ȳV±Š$òFvÖþþ©r˳Ï'‘é´ÔT†Ìz9£½²ñœúδ¬D.Ój=Ê–3À7½©¡m`ß—ió7ìsZ‰zÂÊ6ª<ÃûÎø¢ÒéçC¾?AßQG|6óÎ3¦adgÍ%ô¾*ñRX½¶BŸ?þk¶}û†/í6·“îÄÒ®k„~/ÃË4þwzTùÝ#ãÝÿX2¯ÚW… WrºŸ©õ%ÃûÆx¢R?ÇÛzn°‘Y•Eº”u"•Ç•îçHØoU¯Y”™ÌH¡Þe€¨¤ávƒ ÅÖ7Ò‰˜7Ãa¶b½WÉLÒÓÞl—³ÖÛà Ì|ÉB?”ª®€;KblÖNÆ¡P1—Ì\äÚÔÕòzÀìÊ[0v׃‘‡V‘¸« J•-¯XõàÃ2õ -$ƒÿod¶µ3:^©VÁ›1ßq="6빊¨c¸ç¬_o-Œ‡…cÖ}Y1§ ÔBï¿]Ë#¥±)$½÷f&¼@øð¶6–ªÈºB£2;s‰ÊØ@èah?ò/5SL:ç=Qñ÷Iw»´½á¯j¿DbÚ|™ ³‡ªM3Ñ~¦Õ›hïqïX¿ú~uÈ'âžI;•ÀÝ(¥=ᤑxRj~ûzúY,!U;IÕÐ60ÄWIÏCµCT§#®{7¼l£ÊÖwŸ9Þûúý úŽº0Êç~ÆL§ŠcÔ+üùã½æÅ}þ—Þ—þpå°ïåˆ2MðU~;É—9 k§žT²Þ̬ÃCÛÝ7FÝÿþsÜ÷‰ésÚ^ýÏkþ°íyw?GÊíá¿U+Š%8L•°»^Lõ6º­Þ¾Í#ë©ymµ½ÛóÏiÊh!èÛæNja×éö&,OO—§3:t©×í -÷8×éºÊf‡c¹—–ç8§ý:»ü&Üj¿noòcu»´‡®ï7^[wÇ<ÇxýhÇ/C:áçì©õýz½Ýzé~ÿÇê÷C¿CïZ˜µ 9ƒºÍ‡õ¥aýlTèãzc—m¼òŒÿ=«ß ¹F7ìùòŒ ¯×dßïÛÿ½¼¹ïtw‚gnh;…>ÃÃûêHTÖèäôŒ]âÛœ&àñž¬.;»7€¨€;€^«ppÕ=‰J†‘Œ[ )b™hàþ¿ÿ»Õïë…´LÇ"C³Ì|¾w3VB*“U™tc£#EQ‰¨¸¿h–2’Hwà¸;7)•å0>´Ösãþ~×·ãÞÿÝê÷UZhdñLj´?|g鵫’IÌH,jd‘L@²@T"*Q ˆJ@T¢Q €¨DT¢•€¨DT *•€¨D% *Q‰¨@T"*Q ˆJ@T"*•ˆJ@T¢•€¨DT *•€¨øó¹t×>—mˆJ¦#™‡§äვ{ªÜ½vU²Ù’tïÁ6¯f~ Sg¤s«ÎýàAóÜî6êÖ²25—JgòöôØÐòýò²LýÕG´¤ºfloÉÔÿ~Õ,¿ùÿ'¯„¶S÷ŠyleõæÊU~E]ë¯>–ÌùMÏçóW%â+kdæ’LÿãŠ4Ö¬2|¸b~î?vkkS2\ÇÎ|¬ŽýØSçÊÚÝÝW»~*1»Þ‡¯y·¯­I\}ž¨wöo>’Ø]ž¯€¨ø®ˆÊƒNÉ_¦î-QYME”ÐIÝavËË~ðA™úË[Sözþ§òðl^‹2WuªiõÿèØÂðfŽ =ï—”@¹$©_®Hæ—WÒ¿üTZÆv%ºo›×­_V/;:¡íÔ9Å<ßM‰Êu™¶…ÞÏ;œ>ÿG2ûÊUÉZeM¦[zß¿Ñâ×Þ'µ¸1àá«7ꦎ+\•Äß|l I»îvïê¾jޯ˒¯^“ê’¯~k]‰Ö{SÒ?Q"ôD% *î(—/_–¿ÿû¿—'Ÿ|Ržxâ‰@ŒmÆ>ƾ7+* •fMÊÅ¢•ZÓדFµ,…BA*õ¶tÛ ©7;æç­z]Zmå)¥TmX^ÅŽÔÊ%sÿrµ9p­V½"Eµ­XªJ»7Ä‹ÖiJ>UBgFʶóy³6úØë”«ÒqïÛëHÕ,_Ñ[¾^[êõ¦t»º>ÅbYš]]ãïB±$vÏi³îŽ4*ú\UW9µ¨TÞDu­z­&­®»l]i˜Ÿõ?ëôÏ߬פÑêÚÛšÙî½Î%i4Ûm¤…aL*­¶Ô¬òÖ[ݱÚwœc{ê¾—ŠU×áçuDÊÌ•¡f-*µw²·ªúVË%X66¥¶xM «R¹Ð •ê˜Ú…ui®ªÍåϤ±¼)Íóê˜ßu¥5Ä+Øúݲº‡/›ÿ–VEkÕ'þʇµ8.¯†‰J/µ_Õ]Õ©jÔéS)ŸïyiëÃui­ô¤ò»U)ÿLÚV}:­u)¾û©”×ÍïboYý­Ž/V×=ÜØ¯üîªwM+Ÿ‡–­y¡«Ïñ»5i[uíªkÌz~"UuÂ_GˆÊ¨#*?—†q~U£Ìm_[¶>¼6 *•»ÀÁƒåĉòå—_ÊW_}ˆ±í­·Þ’^xá–‰ÊjfZ Š)ÑdÉÚÞ–L|j`{$Y6Ï›Š¸?©iUf#¾}grÖ@X ,“1ß¹¦¥Ü ò¢¹ö‹¤¤­®•›‰øŽK©Ù ¨SWò³þ}g¤f»VY¦}u™šÎªó«z%5PO£N±ˆ·¼ÕÎV@Ý53¹šWTvÊ1Ú3]í‹ÃrÒÜ7×p•½W7Ë¥ÛUýÝ)™ÇMų–@iÈŒužJÒ¸VR~ëk£‹¦0,S¦ÚÙ¾£Žm•·'‹›••Æ÷°m¶ÿÖj·ïM´ˆþ㪴mQiÆ{%ö”ˆª¼ò±gÿäâfà|A#TsêÀŠtVµHŠÿr}ÐꤕW&•vÝá·º&³3¾ÐÚŸÛžÙMIy¶]’W³—†#Óò†ç¦WµÇúø'ûfË·)¹Ÿ<Š\j}nÕ±ýòêNDå†dÿÖêü‰Ô7tÛûëtYÊË<ÿ•ˆJ€›Ÿ/ØëÉSO=%Ÿ}ö™|ýõ×òÍ7ßÈ7ß~+ߺ0>ÛÞÞ–õõusß["*»U‰b%Uv>+%"–Û’FaÖérÓóï˜y.5W3¦[¥Ù’F}IЦ˜SB±m ¨ŠÞ¶ØTb*å#Ýš ÓùÀ!•tÔ)GÓ*G"¯E[χŽèryo,4k ¼n#¯Ëœ}_òÓ¶Õ–FQ ¼™|Ã9.–(˜çl•ty#V¨i·–Óå/·]uŸ–J[ Ù‚éùSÞ¾®KT*caÖØ/!MËi–!:8ß²”4Ú=iÖמ¦6ê[Ïš畈îŸÛÛFvù£ ]Þ­vÅ+TCÚ7ôX[ðZí`Ô¡dŠÒ¸T»AÂJ‡ŽFrÉ!¢KöÂæ€¨ìÿÿs)ü\ ›â’ö¸U ú ÎFû7³Œvøk±µ)ÝU5ŸÑ`íóÀ2L$*7ÖÐW·×6®ÂY¿^˜—8DTºþöÎ/U^ïW>1EŸ]§øׂçy¸êý℻†¶¡ 6cìµQ™q•½Ûº&É¿õ†Òæ”gzÀk­²êÆþæ²jƒ¾·•ˆJ€›•ÆœÊV«ez- qiˆG7Æg+++æ>ƾ·BTÚªéLÅ Gs‹²j:fzëN¢›¦$¦üžÊŠ×S9Sô êËù¬ò^¨ä7i2Ys'ð¨ä%[¨†ÂÙ¢Ç ÑKé¤2uw"#\Ô +u3ÃRk½~ý³ñˆªãqS¬Mͺ˧Ÿæ9©¨4êqµ©íÑ3¼}^QiÌ[›¢-n¶Oa¨Ê;óF£RêlYÞ]-Ô³–5HTv·‚2¸Ž'*GÛ«[a¿—€ìÔ$—Í©9´½Ñó '•ýpNCÐ\SËY|,/¿bz»ÊÊûU·¼ŽiKܺ–-“¿ëIoÃZ‹Qý[²ùD>|KDeך«7Q¢ª«2SNB#±M¯YÐÇS*SjYÒÓÏœJ¿°ÒâI…wfË*+lSŠ©¸3§²×Ðâ$2–šÊ^ZWó3u2š\ðœJkÞ^®Ü°ÖQ4B0³Ro+O`Á*§hþc{ͼ³oÃÈL›Kèù˜¥–#ÒùŠ*_Cr í¥M•[‹J=§2"é’ÊÛ(™‰tìP^¿¨Üju]ù©ÕÎðŒµÅ„•ú¾÷Öt:»¾Fãç*ôuCÚ«›£÷Ua¿fÖ>ßÙµÔñÆ|SãZ½‰Ï¯·µW?çù€¨DT즨|ùå—ÍÐVgI‘ŒmÆ>ƾw¢œvxìTrdËe_ÉÓÖg{ßúÒ™o$´¨ü,@¸¥MÏ¢[TÚ_³ÂiO*—-±øá±O´÷ñ ·¼.Oç{zMnÈ ¨¬:¢òu¾­sv‘ûÆsj=NóóoIøk¯]—R± …BIê­®óy·ÕF«#ÍjI ¥Š´ºãœ¯'¯ÿŸ† üµ.mz¶ÕþÖ–??·îìÛøàc)¾ó¡O-Iý“žõù¦´mi«°Ùæ¹?ªk(•:¾°Úu©½oo[õÖçêU)½sAmû£ëœ¶¨<‹¨D%¢`2QùÀáMGÈÝX¿.ÇßZ•'ž[–'^X–>ý‰ã©œHT~Ü•GÔüÌG—eïá5ëØ?˱>•ÆçÏ)qûÖuß1HTö½«ÁåÙmQÙ($ejjÊC"_7·URÏçÉJgŒ9”mù±ŽücÀ¶®Ô?¸ªçWntäçOü›'<Öà)8×åçÿepÛ~õcËú±ü•oÛÿãà‡ÒSÛZï8îgï\ET¢Q p3s*/ÉñÕ?«~áš9¡¨ ´Íž3§R ů僷ÍM½½"¿øø[S`~ôǯÌ9•w\Tv*3ãtVZægmÉÍB2*Å–aé¸)&S¥ºòÖ¥Ýãœk-3ôõ¯Ž¶C÷ë¼Ú%"µÝoˆÑ\2Eå!Sp¾#•«›æß¯ÿLýý_ΨÐÙM)ÿ¿%ŦöBVçõÜÍÂÒ²)6øù–pÜ”Òá·Ô¶R]ûÿ·wG/UžqÇ÷ Ö"þ a÷“]ŽÁ.¢‹Õ…° ‹¢‹èfuÓ¹Y‚,&ˆ^ˆ.7ª‘kœ5N¤4#ËÔv:™i…Úž=ïûõ=ÎVžŠ„>Á‡ÈcçäÑ.¾<Ïó{D%¢RT¼Á žDç`-Ì,¬†•­Î)n7*W“á<+áÉâjx–;'9>|?ŠË¡p1}½•…çaîy6¨øéŽX©¬ŒžL£q`:÷ñòHhIV%/•cTÜ^„=ž íɪbüZ^ùú³•061._¹Îö\ mñïµwO¥Y舫ÝÓ{bîM‚0{,‹Ï­°“•0}ã÷4.[Oü·¾Ž‡Þó7ÃÙo³à­µX?Žùì?ƒzª¹×˜ ?ÌÕ£rq1žÑ\ ÅÕPˆç./.æ®1{öt/팕Êb!]©ïžÌÿR=øþ÷Leü5s¹œ Å„“¨]Þxž8l¦µçõ¶¿.½óA=“áH:„g_(M†é±‘p %ùó0V{ÚdTF³·BëçYXvÜ ¥‰é0Г宽WÓó›évÖøø¹8¹µ§µöžª¯TÞYÊÖ-£òi(õe«šGÏO‡òl9tLŸ«ø¸N¤~.ÄÕй0}o*íÈ&ÑŽV©@TŠJ€78S¹¿¯m¾òùr\Ô“†\¼'²úbÓ'ýnýò0·vyë*ãË»¥GÙ$Ù$ëAx(?}6n‡‘¹§~ÅÉÒQYêËÿ[†G Ñûn¦¿Ö&/…¯w禿¶ì ç'²•ËbáÓðÑîBSV¿nšîÚÏ:ŽUë¯;·¿æ'¼¾N‹qØ‘ ãÉ¢²½gãLe’{ׂp! ÔÏJf†Bׯ•úóÆlxÝápöZvåHñûáôžLQ €¨•M êI﬌Wˆ$׈|väÞ˯ 94“~ΗÇgâùÈ»M½Îû¶í,Ç{!+óoý{4_]å¹ùPy¼¸åVÙJòXµÖÔs×êÏ=¿Õ×?^ž[H¯ñQ)*ÞZT~(Þç÷eó=‘;‘ÿ?ˆJQ whT¢@TŠJ@TŠJ@TŠJ@TŠJ€-}üÕ”€ÜBò¾øùQ)*^¡ýtYDn!y_ü|€¨•¯p}ª>9hµ2/y?’÷ÅψJQ ðša™¬Ì}è[a“¯?y%ˆJQ €¨@T *E%€¨•ˆJD%¢Q)*D¥¨@T *•¢@TŠJD%¢Q €¨•¢RT *•ˆJQ *E%¢Q €¨@TŠJQ)*Ø‘Q À‡MT *•ˆJD%ˆJD%¢Q €¨ô& *•ˆJD%¼Ì¿t¥*Ñuj•8IEND®B`‚flickcurl-1.25/docs/html/index.html0000644000175000017500000002565712210726306014247 00000000000000 Flickcurl Flickr API Manual

Dave Beckett

Manual for Flickcurl 1.25

This documentation is Free Software / Open Source - you can redistribute it and/or modify it under the same licenses as Flickcurl. It is licensed under the following three licenses as alternatives:

  1. GNU Lesser General Public License (LGPL) V2.1 or any newer version

  2. GNU General Public License (GPL) V2 or any newer version

  3. Apache License, V2.0 or any newer version

You may not use this documentation except in compliance with at least one of the above three licenses. See the Flickcurl site for the full license terms.


Flickcurl Overview
Core — Core library functions
General — General functions.
Authenticating Flickcurl for OAuth
Introduction
Build Flickcurl library and flickcurl(1) utility
Register application to get Client Key and Client Secret
Getting Authentication Token from Client Key and Client Secret
Use Flickcurl
Upgrading from legacy Flickr authentication
Authenticating Flickcurl for Legacy Flickr Authentication
Introduction
Build Flickcurl library and flickcurl(1) utility
Register application to get API Key and Shared Secret
Getting Authentication Token from API Key and Secret
Use flickcurl
Searching for Photos with Flickcurl
Introduction
Search parameters
Result paging parameters
Extra result fields
Search result format
Run the search for photos
Handling a photos search result
Photos search example
Activity — Activity on notes and comments
Authentication — Authentication of web service requests
Blogs — Posting photos to blogs
Categories — Categories of groups
Comments — Photo comments
Flickr Commons — Flickr Commons and institutions
Collections — Collections of photos or sets.
Config — Configuration files
Contacts — A contact of a user.
Contexts — Photo contexts
EXIF — EXIF photo metadata.
Favorites — Favorite photos.
Galleries — Galleries of photos.
Groups — Groups of users.
Machine tag — Machine tags.
Miscellaneous — Miscellaneous functions.
Notes. — Photo notes.
Panda photos — Photos selected by Pandas.
People — Photos taken by people APIs.
Person class. — Person class.
Photo — Photo.
Photos containing people. — Photos containing people.
Photos List — Photos List.
Photoset — Set of Photos.
Place — Places in the real world.
Preferences — User preferences
Reflection — Flickr introspection API.
Serializer — Serialize a photo to RDF Triples.
Statistics. — Statistics.
Tags — Photo tagging.
Test — Test functions.
Uploading — Uploading APIs and Asynchronous upload tickets.
URLs — Support functions to get URLs.
Video — Video.
Index
flickcurl-1.25/docs/html/appgarden-mobile-auth-page.png0000644000175000017500000021331612210726306020026 00000000000000‰PNG  IHDRK'IÂã•IDATxÚìýí³ÝÖ}ç ®¤j^¤*SuþUMUjôbŒ«éN|§ëvM„öÜ©q»uaÇs«f«;¶ÜÛvbÆÛc»o¶ÜÝöVÛÝ’VÀ( äÈwKÝÅPl– EÜ¢è¤Ɔ¤@´A ”ƒc”@ ‡2($¾óbáyc?ò"©Ÿ«>eñì½Ö€õ]¿‡ÅŠ¢AAAÑ…Q'AAAX"‚ ‚ ‚ ±DAAAb‰ ‚ ‚ ‚ÄAAA‰%‚ ‚ ‚ KAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAAñ®K€KAAqMCb‰ ‚ ‚ ‚ÄAAA‰%‚ ‚ ‚ K—Â[o=Û¾|_ûÚíAñ®áÀ¯À¶ïÅ[o=E #‚ K Qô=|üãÄ/ÿò/1FAïZ~ù— ÿøEߣAÄ»],<ø‡$’‚ b@4<ø‡´H"‚x·Š¥ƒÿ¿ð ôB$‚ ˆ!~ñAÄ»Q,EÑ÷È¢DAX˜È% Kï2±ôñ^‚A±ÿøi±D‰¥w‹Xz뭧ȪDA»°.Q–<‚ H,½KÄ’mßK/?‚ ‚ض}/-˜‚ ±ônK|…^|A± ø -˜‚ ±ôN‹¥ žÆùóGqîÜäùœ;w.<½§ýÚ×n§AA삯}ívZ0AbéKçÏÅk¯ÎñÏÿ}ôO`}ïpęᕟ>‚óç’X"‚ ˆ«P,=};ç®ÏÒ¹S:îÛ;î»ïK ÜsÏça±€s‡`Ýw;öï¿öÉ'¸Ø>¢`ÿþÏã>óAœÛèZGñ¬ù%ìßÿyöwhqº†ëyÎ$–– ¥øgƒ‡þ#³¿†ìeo†‘üø!<ø—_ÅO·­=L$–‚ bÄҹðïûM0ö+°w®ÏÒαϯìA¹عbùoåØa.ŽíÿUþáó8½ÑµlÜ#ò2DE§Åé2ÞsŽ ±4èz—¼ö¾ûðá…£÷áô³‚ì‡Sd?œâÍ~?ñÀCÆï#þÙßà­·žBžY˹sGpþüQ\¸ð4ŠâKA±ÇbéÜ Õûôýxö:Ýåßy¶µfßÉä71—Œ~Šy8«ã#åwö—bé„ùIHy?FÊÝ8»¡XºOâeHûI,-µô½ æAbiЪôÏÿÜ¿»‡ %oŠÌ›âìó€7Ÿù<2ÿáþíŸááïÜ…ü½Žg½kyĉßÂk¯=†³gŸì&KA±;”?뉥ïàɯ—Ÿÿ ”û<öì¡úóíg5Ü£|“ÉGq‡ò%Ø'¯pu{Æ Œî³§Žvÿn(0Œ»±}¶t¿:õÌû>;&Ådò»xà±;b¤.˼·±èœ³ð˜¡À0À¹Cüßæ½8qâ~ì¿ã£˜Üñ%<{úèJ±tϳO·a@,zá^˜æ]xìÈw:®v/<¦@™|“É'¡Ü£àÙí'—Š¥ªý¦ñ˜öÁ]Õ{a îø]ÜgÞS=±sâþÖw>ëØwÜ—×¹±ö³¾å^ÎþûîÆÉ]Ž \œ°ïÆ(°OÂö³wókÞÁÇøÜsŽ ®[±”çGð裂t~éчào>§­)~ø·*žþæ§°sô³xõ[*ž}òëø‡#³µøO߇—ž=ÿ¹ñÊ+ÓIAb‰ ‚ vÇŸõ,K;G~wñ{wÜàIXwüê`£{î^ lß]GºïÁúïG”_m¬g]œ:²Ä%Nú]œ<×w›ûU©ìm7¹#‡;ÿnsϳöJ±t‡mçŽâìÙ'9çŽ.K‹nx‡pßG†ûö¾gí®Xºç!aÔþαC»ª÷ üÆp_‰ŸÇvõ㣃ß•*Müº:»À΃Ι_…ñ‚½ù˜ÀÆ~aùü“îÑWÌ9ZÈ×¹Xzûm¦ù‡øá7?†×ìßÁS½þÅ¿ÇÁ¿þ/xàk¿ƒôÈgðâ÷>†Ÿÿèþ]ó÷νxñŃx'KAqinxçN?å#¿Rïòïø]<`ÛVk.}†ùŒÅöÂ~ÈÂô$øH³˜?Àw0©ïwÜ œ¾Rk!¾ß¸ ÷ÔVáŽ{{âæ×qlg‰å§õoÆ>2þ ˆâïÖ"b©Þ‚ð¸;KÄÒ³÷¼¿ìþm³ééŽ/á1ëKM{„Û±ÓKw| û["åž²Ìë}î¡æ{ù<޼ð åýu¿ÙqÓ÷6ÂKüM˜¶ÖOkûèu~ƨUŸ;¾óOB¨ëø›xá܆cÒj?c ÒäK°í¯4í?SKæ-ä‰w…X:ø­?¨Å’û½ßÃãö×ðÃÀ·üØ9ú¼þä><ýàGðƒ¿þ(~øÍ-ðƒ¿þ(Ü¿úüoÝŠç·àü×ø{ã_ã©Çþah’X"‚ ˆ=YúR/~¤µx>Ù,âÏ=T[DeØpÊþÝzln»À‰æLÄû^x§4Ÿ'7°Ç&]ëÓàÂ|G¯ù}±ô‘{Ü{ÖÆö‰‡pbû¶Oèx %–Ží¸8ݲö¼Ô ¯+–ËY·_†uLÁHü•±äýÒ¸éµÌkßÒ:·êsÇ‘ÃKc¸6“vûKa´ØKÄ0A\ïbéܹ#xÜþsݩӯàlOâ±ÚíÒÄÒÒï®K.ì;š~¹ïØ!‡ñ@ïó~¼Ðr{ãñWßi'H_Zµ®ÎÊ‘'Ë„¿Ù–®XùÈþ{q.NÔ‚”aÿ1{}Ïlê(~ÇN= œµðÀäW[BïÉÍÆd×b©™sC‡Äuw(í¹sGð“—Æ7¯âÑ~/ü×xáà¿Áþú·ðßg·ã¥Mœ;wdPh½öÚO|ÿqü;·áøwnÃWþÓ'ðì·>†ãß¹ Îc° –lû^zñAÄ.8lß»óBOÜŒïÂÙmm0cç£8±2Îäö‹í,w_ªÍ€Ý$X‘­-c­d—W,I+ÄÒi¸8ײ¶,dŸÛ¯w¬rÒ=ziMk,(ö¡ÍëÝÉš÷«¤_éPóäQ‡»}Ý»>®¯³‹æG—ŽI•Uo£1i[%Ë>KCsîÜÀ¡Àq݉¥*v)úÇïâáчXæÁ“û'xéŃxûmgIÅŸA–=ðÅoá‰ïÿ1ìÇT=2Ãã‡ÿO|ÿqâG-¸á½õÖSøå_þ%zùAÄFüüèûïáø¯•A­Š59{ò^L>Ò—Ç·ãÄ1&'Í&6©ãÚUžÍcÜÑK‰-¼F笣8rÏotÄÁû?Y/¦ï{ÖÞeÌÒ—Z‰&–¹á=XÇ[ÝÓKùJ-øN¿p>ÒK=Rî*“4b°KÀ!ìoÇzm\ï£8ö@WÄŒîød}íʵg¿ƒ{ÆÝ4ï‚ôIi£´ºÎ¥+¤õyH½ïL冹Á˜àÉÆjÕê³:¶ªŽc˜sýO×¥Xª„ÌÎÎß"Žÿ¯¼ò7H’9²ì‰µn|Yö’dŽ×^›#}ão‘$s$É?ÿùƒ©üƒôò#‚ ˆ øøÇ?¸ZPœ>„S§í…X¤s;‡qêÔ!œÞÙÔ5ʆY»p­à?÷$vvlœ¸f}í³6NŸ:Œ«.cÚQÞ_§cçrÇÜœµqúôaìœ=º:sÞÎaœÞ9¼bœ6©óQìœ>̯wîòɲ9G×½XºRDÑ÷ȺDAkøå_þ%DÑ÷.ó{ùI= ›ÜM 4‚ H,½“<ø‡øÅ_üzAÄ¿ø‹¿€ƒÿ𠼓{™àÄâJ M‰¥«C0‘…‰ ‚ -JWF(U.c‡qòäw°}ê0¹VAbéjsÉûøÇ?H¢‰ ‚ ‘ôË¿„üƒWÀõŽ ‚ÄÒ5Å[o=Û¾|_ûÚíAñ®áÀ¯À¶ïÅ[o=E #‚ KAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAAAb‰ ‚ ‚ ‚ÄAAA‰%‚ ‚ ‚ KAAA$–H,AAAb‰ÄAAA$–.J,Ñÿèô?úýþGÿ£ÿÑÿèô?úßµý?²,AAAAAA‰%‚ ‚ ‚ KAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAAAb‰ ‚ ‚ ‚Äu,AAA$–H,AAAb‰ÄAAA$–H,AAAb‰ÄAAA‰%‚ ‚ ‚ KAAA$–â pçÏ>‰ ÔAA$–.·Xzý¾ÃÞÚ*¹OÜtcëß[øñ±GpâC[x澟Ü÷ØâíÈwqÍó/|öÖÍxõÌåëà §ÄK¾ŽópØ{Ø^ÖÑ{¼"åÍ#waû„}Nb'>¸…#÷]¾~8B½µ…ÏÚå¿ïÆÑr^>qçýWGìÁ\xýÀ‡ao}ÉY^æ+îDzöÊ·îý²êþX]¿MX^Þêûôz`U?—~?îfn¶ï¥×ïûì}yWï±k±.×ý•Ü÷Ø\ÒgÄ3[[8ñ‚}ÜK—ï™t1ë¥Ý¼‡éùBXºLb){önüøž/ãįâÇ·‹°·n„wÏ—ñÒ}_Æïù2âíCøñû¶ðÄ~}ð÷©ùI™Üµ;±ôòÝxæƒÅëg/_'ûo„½õ…zA¶wmX]ÖžrVÇ[[ð]béåÉðœyð²]#övØ[[xáØa>¦÷ˆ°·>ŒŸ¹ÉÉÃWEìÅ\xuÿͰ·~ ñçŸýì­ñêÙ+;º÷Ëòûceý6dyyWðÞz‡XÕÏÄ%n®ìfnöî¥äž÷¾é ×½Xº\÷WrϯÁ¾éóKÄ’gk Ǿ&î¥ËùLº˜õÒnÞÃô|!H,]7¼ /Ü{ë½HÎ->`ý÷ãÍ:¢G4Ä/XµÔ…3‡pf»yæÛ!~LÃöã÷ãÌé'—\ëI¼ù²Õì~œ=„äÈ×±ýØ×‘œ8´z]•ÿ˜†W[õè´cÇÂOîx/ì-ñÉûjÃùSãÌ)o>ûuDëÈÎrׯ3ÇîGôˆ†tûaüøC[p–<<ùïã­“bû‘»ñʱƒ »<ËÚпöÏ܉'¶¶à=¤#;ué •õiúñÌ !;{t൪Om¼~ä눹ñ³Vó÷s‡‘ž°ðÖöCØ~DCò²‰ô…ƒx«}Ísvý··¶Fv¦¹vvBÇö#wcûȃÈÏmp½]ˆ¥ó§-Dw¾öÖÇlîŽû9{mß\8}¯ª®qæ‘ß„½õ›HÏ=‰äÛƒ½u#^:v°×‡.Þz¶5N?90W";qož>Úª…×Oªûkèþ\¼_z÷S}¬ª_Ùß;Gë~zóÄC8ÓꃷN>„tÛ^QÞêût×σs6^?öuDhxõ…C½]é‡?¦!zìëH{Ï©z?þ`oÅ™tl?¦á•cu?ÛඬŸ—Í™þsåõVçYraÇÂë'š6¿ùÂP½WωáçÝâóºj÷öã÷/Ôq£¾ì?ÎÙHŽð±Yx½ðpg±—Éëû󪎫î>ý{)¹ç½°ßw;Þ<ý0^ûeóbUz\ÁçÔð{xƒûkÙ¸¬™G\,µ,&gáÕÇ5l?ö ²S÷ã豴깈ózÝ3kõ¼]Õ–‹x&­é³ì4ï‹Wž}yýì;ŠìäA¤'zœlžÕN?¼ö¹4ïáÍú„ H,íÑNþ{ñê΢é¾íšgomáè~îõê[°·>ƒ·à"ýöǾwbà™û<ì­-Äg\àôýµkU…sç×—˜°?¼PþÐw“ýbó›¾€·vцW÷wÝýcßʼn[~{¾ÄJðÞ…ïÚ·~omІþµÞØþÎOlmÁi¹|½uä3°·¶pòdO,­êÓáÝÔýì‰ÏÞ‰.òc_èÖíßü6ì­-<óPc=zó>ÆÑö÷ñÂÖì;ïð$~rû½vÉÜr¸âz»KÝ~}/âöݹeßœyä3 }þÜ·.Œ}»,ÿÈÐËæðʹ°ò:Cóâ}ŸAç_ø Ž|â+x»loíû¬Ý¹·úÑÙ¯ÌÕGp¼·5§Vߟ‹÷KoN—}ôóUõ;wÇÚî‘;_Ç[[°oýj¹À?(Çhyy¬¼Owõ<ØÑq¬ÿÙ.ÀÅ›aáw?>rÀ“ؾSì}öaħøØ¿ô‰~Ý>†ôÜæÏ°¡~^5g: ÆGä…{=ú,ïÇ 6N~¶ÿ}¯låófÅœXœC=«å9 ÇƤr]Õ—KŸ §î_û_Å[p‘ãýÑÜßíúwïŠgîÑq~å½³¸ß¿—’{>°xÞô¼Y.º—Ï‹åuZ¸îzN-¯~®—uó¨#–Ni ÷ƒ½D,­z.bż^÷ÌZ=o—·e×Ϥu}Ö™"Âÿ\ãð¼©ú3;rûÂgþcÎåê=¼¶O‚ÄÒåK?þÐì›d¼zúhùܪ]š‡äa~óß~wù; þMÃ~_ëg*תfñûê}€½õáE½³ÂÙâ;<Õß^¹ãÆ¥…WK·Š·vÕ·~iü ²“qú»+TVgqpt‰e©þ}ùýê¡÷ƒG^Û†þµßzýþ–ûÂQD·oÁÞúTù?ŠŸ|b öûýÄ—÷éQlß~#ÑŸ._ÖǾ {k ÞcV-Nœ;î›§Æ™ÓO•׸½îǪÀ6~$ná©ýzý;ønáÉ»xø«•×Û­^wL»;þKûfGç/îO|µ|ÆÉÛo„½õ^lŸªÜoÚ;¢úÒ]ÐJ(Î…µ×©Æ–¿ðÎ<ö™ÁE¬ï­û«¿Øj»³,Ì—zToÍ…÷nt.ïÛîý±ª~¯Üy#ì›øË¾ZÚ[2^‡‹ '¾ {k ?Ù>º¢¼Õ÷éæÏƒ£¥±}’ïÈ&x_E/ÏlmÁþÄ—Ëq²pü}[°oºgŽ|¡»(9ûúŸ¸ Î>ˆ£[[xæ!þÙ…wÕã·ñ3¬ßÏkæLwñ÷žÙjmYŸc¬çåsßæ÷ß…jWÞ§ËçÄÐêol}¦#Žpî ¼J—uêËŸ¯x&üäÕ¢÷Éνðƒo?<ðj׿ZìWóÃÆÉÏ6 Õ÷ÎÆ÷ß7[÷ç[«æÅš:]ùçÔªû|Õýutå¸`í<ªîé'qòV.&_-ïéŸÜþÞ¥biÕsqõ¼^ýÌZ9o×´eógÒú>«çÆö!œ9q¨+*ÏÅ…s|ó#.ûá¹Gn6žn¯ÜõŽâ•ý"ì­”q­ÝõYõ^÷'K—[,½o Îþf7ìÌ·åúÆí<$ËWçÃKßþ:ÒSöŠëp±”=^.ªÞ÷ø÷Ý…WO,w»¹°sgN>ŒäØýˆú2ŽÝÄòùà¯ýrÙ´ ‹¾ë¯îï?|lü¸|ùp— ¯<þul?¦!9iø¾ó¤jÇ}U~Û{!VâáÄ Gk?pï‘Eѱ¼Oy?Ø[2N>rN>t¢oßÎwÞ_—ÿÒ‰–ëTimúɶ œÖðÄÖž{üPç!Üó^Ø[Ÿ*_ò-׀ﯼÞîc–z †ïöû¦²–EíÅçé¯×»²»K«æÂf×i탃×¾‡ë64×–/Vߟ«ú¶#nVÔ÷Áˆw\Äw¾öÖõ®yz@,­ «Ê[}Ÿnþ<(ã Úsìœ3'-ä?¹OôDêùÓΜ²ñê~³é?t~òÐøÉ#wñEñMŸAVŽ—½u#~pÇ툎gÄè7ÂÞúÞ„‹ì±Õߟé,Ò†½%âÕu‹Üõ±:ù) 鉇?®á¥{>§Ú Ø^Þ—ËŸ &¼­þ&ZõŒÔ׊¥þüHî7š››ÝKÝç@%¦V΋5uºòÏ©U÷ùªûëá•ã²¹X:´¸IZ¾7†ÅÒòçâêy½ú™µrÞ®K?“6í³Ÿ¥Í&ܧ:ÖHžk O|övDÜ…“ß¾/Ýù%‚³+–Öõ AXºìbIo@ÞÞzQ·oþCøÉþÁé¸#Ü¿R,.ÒǾŒcïk™œ?ô…rç­[“··Lö﹛ϮÄÒú6ô6¯ß÷ÞÛÆ‰÷U äžÛÄ÷—»Ìk-šï¯kêvµKX=œÏ<þ1þÒXÌ<اçÖ.qÎûÞ["â™[?€çz¨—~™ñƒ­-?}Çw ˜„;–¥cwáÇ•i/ÏF|@.wPìÁ…ó±ûôú¡²ô…ÜzhœßU6ܧZFÚzùÕnÒ¹'‘ïØ5çÏU.píÕf÷i]–½8~üì“ÝÔ£["žyßìÏÞ=œápiŸ>Â-=ŸÕ:®!ñ·¿ŠèÙCK|gõ½8Ú‰Åh‹%±%¢øg/Ýz#ŽÝwÿÊëí­Xî›z'·Õ‡•KØñcöB™UìÃrÿúá¹°Ûë¬Kb/ÉÊð|X*–Z1ܶþþìÞ/ëÄÒ’úá(~RǼ¯ìTs‡/X^záÉ5å­¾O7”ÔÛïî¸]=³u#^zR-­£‡»;»7} /ÿwuy½w/½ôȃ8wJljýw–÷õQd/ÜgJ·žMŸaýçÒº93´öoÚ·~¸c}Zœ—.â;o,ݽV͉õ÷/[ÄöI»³sîì×SÚÒ¾üÇ?[öLøsø7mÁ¾][OÜyãµÓ¸•uÜÈÖ.r—ÍÍ]ÞKmËÒ=ËçÅìV,]îçÔªû|Õýuhå¸`í<ê¹ãßÑŠÙ+]0w+–VÏëÕϬ•óvM[6&mØgKÄÒ…í»¹ mÅ4óq¿s1~pç!œ¾˜úñcá­Cxåž— ŽöÎÜùj¹8ºùÙÃxý±/Ô¶ƒ±¥ïÉ#ï¢ ‹ïóåƒË¹ýNœ9ma{ÿ6ŠY:zçÝxóôÃ8yßý>yâɵmX¶{xôŽ/#)}¢«ʪ æU}Ê_Ô[ðܬ՞&fiqaz¡|ÙUíh?¤ŸØ¯ãÂö]¥ÛÀWqæô!¼úw+xîñC+¯Ç“"|Ï|övœ9wébi¸o,ƒ‹üÈêdgÖ–÷ý•÷énž¯—óî¹o?ˆ·NĉÏÞÈ@g•ÕÆö‰Cµè±?qÎäãûÄ'nÇëÛ‡‘ùr™¤âÎú³£wÞ…3§ã̱;ùXÜ÷àÆÏ°ÅçÒê93h1~H®cÁªïT§'>ûU¤§#y¤ì‹ÏÞ]/æ‡çÄ û{DØ["~òÂ!ä­çp_Ñ—+ž •€~îÛ:²V™ÇªŸ%ÎwâÌöÁ2»We©X|޹5VsóüË~pëo":1IlݽԺ?/¬˜ÖÔéÊ?§VÝç«ßƒ«ÆkçQsOÇe9þ#!ÛÖñÜû¶.J,­ž×ëžY«æíê¶ìæ™´IŸ=1$–Ê*߬#9¦#>r?â#â­s¥Ûú~òìí>²š6ïáÅçË“ˆîü0þá2ïAïb±$Š¥öÁ›ü{U¼ÏÍõ!kù wñ—e+sM4p€fçPÚsãÇŸèfÄñzp0YÇífKÄsw|öÖ­|Ëø±Ï´2§mÞ†äqÁZ•v²ÝX¾¼\)–:Yl9¸Q¯mã'Ÿ-¿ÿ‰»3ÿ­ÝÅç¢;Ôª>µÝÙ­ãîá‡Øñqȇy êû¾Ðq/ü‘¸…#e?œyüöz`omáØ~­v\v=Þ_7/= øü _½µ…=k7/À÷­r1î› Û÷Ãk»HÝôá:ðgòÅD•åè³^)DWÍ…U×Y¨{s°pÓMv¥Å¸•î|ê·žýjËýæ½ðno¾³êþìÞ/ý9ÝÜ«ëÇ-8GÛ1iõ¿¿¾Ayß]yŸîîyПwïʼn#V(®wÇéCŸBR&8óøí÷¥'ný ^ßáÖ¤Wt³Œ=ñ‰/ãÍs»y†-öóʹ9¸Ð¾{0C`úØ:÷ßÑÛ¿Zß««æÄº{ꩯóX°:³ç§àâFØïãÉu}9üL8ŒŸÜñÎ}Tñó`ö/¸W¶ÅR{~¼~ßšÅvonV.Nÿ0誶æ^êÝŸËçÅš:½Ï©å÷¹½æþZ5.ëæQëžÆaœ¼½±(?ñ¾÷v“-ôEÍŠ~_5¯W=³ÖÍÛUmÙÝ3iUŸ-öwÝO;zoŒº™^/œÒñ܇º™ô^:vhp.µßÃýuO[H‰¥=K{ÃQä§ã­ÝœyaÇÆ[§ãüŠó;‡ñÖi{åÙ+—…sOòú­=œï½u†º|I{vÛ† gŸÄ…s=·¾{¼¤>½p––ŸÛû>ÊÎ}º,×[`ußðyùäòyµóäžÌ…U×Ùô:?tvÖà|>_dy__Üý¹›ú]ÉòÖÝKõ=°«qâý7øÙª9¾á3ìRæLü½p\Àšº­ž›=ÓóõË/º¿ìÁ±©ž.i. 7má…iÄ×ßK΋«î9uñ÷ùªqÙÍ<ªÊ¹œï•K›·«Ÿ“»y&­î³KØÀ>ý­w‚Äq9yµ€“ÙE”•G0TÆè“‹'‡kΠj&¢¼ßÞ“ø†ªâ _BÙ4£ŸK.o3ž~úiÜpà ´Ð$ˆëˆn¸O?ý4-¼‚ ±t5àªÒò‡¶µ·ß½’m¿Äz¹êÍ`ìf<µse¥.DÆ (ÎU<ßSh"c"œ´ß^73†÷(O]ZÙÕø\ry›Y”H(Äõ+˜ÈÂD‰¥«O“À˜+L& ’$F8PdŒ1¨nòÖ/ÃLd`Ò¬´¦¤˜I LÔîùµvà=õwð£=þî•lû¥ÕËÓnc·Àݹˆ²2cU÷*žï 4‰1 NÚkoæâÆpóE׿7>—\ÞzöíÛG‹J‚¸ŽÙ·o-¾‚ ±tuˆ% nÚû,˜1YóPd,]‡Õs±ÊcÆL‡eK¬ !æÆ Óé“ɪfÀ‹³ÚrâÏ –‡¼õ›Ø³ 6’"‡?×! |q«sDy¹ •4ø¾ µ,wf: "r-¨Ó)&“ Í@äõgi`Ã0mø®e2¢Yˆówð þ.HP俆Ã4a¶1 ÞíïòØ…a؈âºÒ\Óo]³j¯RÖÙtø¶ cîwÚß|÷"ÚÞ«WQˆ¼9fªÂë¤ÎàÉfb©S¯»éˆ|Þg ×KmB×uÌý ÷†s,}oÏdªbîÅW@K×aw®—À6›rEcSÄÅEˆ¥•óy½XZZ÷<ÆÜÐa9a·ÝºÞi_:ÐuaÊ“9PŒA\ÿ1L”ô KW‹Xʺ»äsuTZ–R™™±z‘Ùý-ÃÌK± ©zè "„úÀwõ‹"…:àVæª"कËT…'-¤C/–‰UŠŽs¥q-„ê; ?]âz(ÂÙn¹M¥Äe/°©³àb•ºê’—Ý^ÆëdM„¦Níï ºÕ]dÛ{õŠæÓæšbs}m‰µ°#:eõë3pížXòqù1ÜŽh\&–ÖϱÄÕZýÖ´G֜宀åXV Ì Ä±‰l·biƒù¼J,­®{ˆ1c`L©Û£Ò֨Ŵ=åóØN DQD‹I‚xE-À²ÊH†, {Íû+0È£Fò¨~¿Ew6…,˘Ìd‰‘,c¤X—ëœpÊÍ«p®B–eŒ¦æeðrÙÜûd®Ž!Ë2T+¼æÆtÏÆå"ûÎ55Œ$ ¢(B’G˜õ6î K½²\/EQ„ØZÈ1qVObGÁƒ^ £SÆÀDu0®ÉUy9Ê,ËudEãÇÓB’ Þ?~œ`E ¥|^6Ïò´t«æHš»ð]Is›÷³¨]t¬sdkwg½áz eî…[¹Z¶S˜:×ܘîŸ\¬P2ÇÂà½&”©t¿‘XZ*–Q‚$qÄ–5Fsø®V^ Q±ùÂÛã`dûIÏó‘²4Aú°´q+j±ÔÿNµh#Xò›ê!¦]kO–À¿SµYuÓ΢zp±œº¥ÅƒA¯v®–ˆ¥vy•@RÝni1ÃvÊÅïR±´û¶wë•×/Œ±Óö§)Ò4ÛÌ oP,M¶¾ïÏ䯲’5ýT ¥p—sqÕËC³|)ØÝ®Ã­z#ÝF{$–v=Ÿ[åmR÷ª­+FQøµúR !ï›±Éʼn%‚ ±ôn¢ÚLcÒŒ?cS§±ö3î¢Þÿ»æ¥Í¢¼ŠÿÍ2dK6ñò,C–eÈó!œf#.4'à ýœÿ>Ûx“0ç×[÷nÌ2dÙ¢‡FèÌaš&Ü0~o­({wõ¼ˆúæùfbiƒq©úuåuóÅqê·Ìo¼<ËGVäm­öуŒî7K›ºáˆ]O¡ÊÆ–@ùb=, ØSŒ‰°“e7†©Ž».g%—,–Vü†/àåÒýmQÎü´üof˜­KyXZn¦óhéw«›Þh•ר¾>ª3°-CŠ¥UýÕ·ŽEó®€a ¢<½äÁºV,­¹v÷Zìø"vʖ̱Ê*Æ­8KK\F±´ëùÜ*o£ºç¥@šÌ‘üû³¹‰1ŒÌ tË«,O$–‚ÄÒ»‹ØVÊ>‘áåCîïÜË!«áL†›¶åLÆt"7ï±^{Å䑃‰,vÊ“&üs_w­#qíÁÂ…[žxPÇ]÷~i¤ÖÞ-Cø–Ò¼OÄ1ôÙ"cͼæ¸Cim^3ˆ²7Î ÉD†(Š˜>Š"…1Á˜ˆél†qËu~bx­ØW»õ™€©¦B0a¼°njÞU!ô©ÜjŸ€±6¯×©7ƒÀFŠ}Úôƒ8š•Þ4+ÄÒŠq)ŠFçºfvX¯‘ô‘&d¹ìKz!‹lL¤Vèƒ<­û- m(ãä‰ÑX‘òfƒrá=MXj/xtÑT© ¬óYPÆ¡Ìl›[EFÆ“esTMÒ tÓ‚ãGˇÝ*±d+â XJ6 ËÚÓþû @\X,'˜Ée\ÉÌ]Xä.Š¥nym±Ä­]}aY ƒ ÄRr‘b©Úm‰|ÆL\Å--I?~©bIb l¤Á±”z§o·æões¬êϾ%³²ÚðD$¥žæ.ÄB]šXºˆùÜ*o£º9¬ Ƙ©2ŒyÌïÁÑS¹»‹Ib‰ H,½«ˆçu,±eðJ/i¢Ö‹ÿ™Ÿ!ÔGKS³(/ã-ñÁŸÉÛcÄV|¯<óëëtãŒSž‡ æó*&Y”1ÔŠ9íœiè´„^'¶±^ùU;ëõQå†(•ïi­×,´Ê`E9Š¬ëµ ŠÝ N'vÔ–ÅK÷ÞÏ‹±â˽ÖKóÞí—©•ïÜÅzàŸnoܶû`<P¥~ß$––ˆ%/ïßY¥){Ѝ,ß6{+v¼üÌ™Òe,jÇ}h£r¢§<&Gì»v…eÇ¢XÊ6 Õb»Ù)c_¶(–Òe(‡5å»L’2L“½(–ÄNym±Y“n"‚vÀ¿´^,e%–âZŒe­‡ÞxÅa/Ä’¤ñ~¯|‚Gº¿Ë Ú%s,-ŘԑsT¹,åwÚîn•UGº$±´É|^³´IÝ‹I½sÊ_BÜõ¤yQ·û’ÄAXzwÕžÓ®ʪÁ.ß×£™ £.Õ¦Y³(—`…y'fER]ys¦b:Qá&ü=Ym”JåzÀ)“¨ØÄ•Gƒ8žÁ„ŽufÀvñ”Öå³Qy–e`*¶®Y'<âk´(Ev-tø{¶‰%–z±ÅLÒx¹-©ºIË:'Â*=amT÷Ïк ±à5aÕ¼«f~ËÕ‘‰¥ÇN£ÝÇ+ÅÒð¸ä¡ÙX‹Ê8f·Ž7בuÚ«ÀObø~Tz10¡Z»¶æ-¥Ië^›ydU"±´&fI1sF-s´Üy+0n ?_qFP9‰'3 žçtL¸ÓrÂr7+q¤Âš˜´Ô½S%xùÍ2šÎà§å¢uÕ¢½eN©lÛÄ´,·Š…Y'–£1»Ô4M…ª–Ìld»Kí›U«ÐÔ–YipãE´½/øª˜¥‰†¹cÃÔ&üá#Í-‚«Ä’¶¡Xª-8u¬—Èw´Šº¼ÉÎͲ9–×»w‚¬À²mʨù^Æ_8ÕØO4–¡Ö/ŠŽµé",Këçs¯zc±¶îmAØÚkv …NÌeÃ#ˆwÛÛÛ´«b'bý<¬­!Y¤Êü*ˆµ…¢Ú„jÇÆTï/¯\P× ù,‚¥«÷]ñÊÏëuÒàû¡›í¶ªŸÖ–÷ñŠ˜¥¡ß¤Þ¬îKI–!Ë2$¡½njoSFó;©¶.‰½äVU,cÌ ¥{ŒÄÒÙðú±-’ ÕtvE{ÚKƒ÷|s!†EÓµÒU˨3ªMÛf`qŒéHèÄùƤ±28/ówÏã•qJÕžÇNKxU¢ÇªÃoþE±$3†[4Þl´üå%ªHZßí¸á¥Å`‚‡ê¡5kù4U•/ì—º2^DÛ{õ*Rê¨ûð¤éÒTÞþ£ŽxhÊJ7¾vû¡U§.ÈŠ º´ü¼ÙK`*ݱiû"EØ™uÒ¾KScaØ ¯ßÞ[6v3ŸËÝB©+–šòÖ׽ɂ×F•¥MT:V):g‰ 蜥w•—ÆÂfcË‚Òw)kg]Kû›Äª‹"J‹2GQ1•…]ˆ%.˜\SÃH\t [týK$‰S‹¥y<°¸—´Õb©•1p& ˆ¥–@É׈¥Z|Ôñë|=3(––õñšlxC¿iÄ$È’y4Æx<*S¶wÛ6,–$H’ŒÑxŒñHÆÔð{YnyÈ»õ€!Þ}bi·Tç¿l–1$GLj“te“,M$Éò”K2Á¬MM™ðrÓüí³,´0MKÕ&~þ´êÔKhûPÿ&é;›å%Ìò ­K›cy–®iO†4M‘${½S´Ù|^%(ݳ±Ø·o-( â:fß¾}´øê½C†â{ºqGí#76X”×nfÜJUŒQו¯þþбyˆÙt‚ÑhÌ­y Ïœ®ˆj !Ná'y×Å®•¬ˆ1†‘æð÷Mêa,l憷L,5nx¥K]ØHºá‰õYVõq,ýŒƒ{(–²2ÑQ{ó0´4L¦*tËC¾N, Õc c:¢Îº‡ØÂù “ɦÓýEbi2ÑxfÚ”?¨Þѳ®=êì<âsׇïÎkË×xIðãõG†™È³½å4Çö„Üpà ´¨$ˆën¸;;;ô¬ëvbL4/]L-Þs·Z»ç›Öh‚±,´Ê±²—{ÙƒÛBMÄd:ÅHV&èXMzTâÂi_S»™f“Õ –‰¥"ïÆè°ž5nÐë£×Ó>àžÉz7‰ÆŠ¥N  ZYözŸ·ÅR{<™ ·ÆbqÖ­cѺ·H,í ®"Ô“¶}R6±™EÂÖÆ §‘f¿«NŒÎÓÕšc»çé§Ÿ&ÁDסPzúé§é·2¦uÔIu´R‰·Ó?¯ŒÑ\~ˆ¼:ꈆɤIROoY´EE»PzñNLc.÷ ˆ½ÎP+ŽUheuºq ‚ ‚ K»Iæ@1J×O Ó`҇܃È4/£— ‚¸öÉ<ŒA>È5óàÆîÈü»îÎê2ý™Ü9燸²Dމy^ù±È<ÈŒavÏsôf2Ø-3ìXºF'g‘Ð¸Žˆ¢¨'”bÌõ)Æ +3˜s¿Î®¹Ôé“ÉŠf Hòîï ½ó}‚ ‚¸:Ä’ ©<˜u¦ë˜ÍfMƒá„Øñ40v3K'-È·üü5ÞïO»ì=*‰¥k•ãǓȸŽ8~üxwŒS·{Ž‚¨!-rÌ©þ[³3'À¨vVR§ü›RžŽMAW—X’4o8»%–Š"Ct2ê0.æ–…¹ã!Í»b©zç%Qßä9â @œÄpí9l/<¬6OBØs –e#ˆOŽ,Ʋد¯™ô|ªOoì96,kÇko†ò:E­MÎ<‰à1òúš)"φe»ˆ3Þ¡ïb>Ÿcn;:E4òa[æŽ4MQg³´®£Ý¯^—k»þBÛúñÓCíI<c˜.â$ãc!jˆ’×É^Ñg½Ï†ÛÞŸ?|,çsqì@ꉥ¡²Ó(¨û·}­öß–Õ‰‹%­Ky Ε"çýž¦œùsÛE”îfžõÚÅðó¹ /ˆI,‘X"ÅRK0Uî’ÀÀD~Z™¿µòlqyÃÚ¦ Ë È²DA\•bIÜ@,í¸*cxªNæDè½;Çð³F,eEh®ðÏFÒ"…Úq÷“àõàqõm(;Q\U\|_‹å»vE}ŠØÁ¨ÿ»‘^й*c`ŠS×ÁU…zƒ“ÿw«.GC•× 3oæd`M!ÂIyÛ¬œœ¸@Q$ÐGýßM ¦¥íéö¯¨ºð4y±>‚‚¨XWŸ¶»=÷ºxέ’=øiyÙÕáÁó¸*+ƒ.³Ò¹ºNm±Zʵ§fÀY9Wûã0ò æY¯Ý‡[h§¨Ø$–H,ƒb©gbvU~CëA7;Þ|*€1 nJ/b‚ âêKrµ”$ˆ¢Q Žt¤}±ÔúïÔã‹Í‰áóÍÃÐäqNºÏÅ’¤Á+¤âÔ*-H)f1n#ìïÐçFŒA˜˜¥ÛX[•À˜ /+ê…¿jóEmX 1ÍKWÔç9˜#ÆdØQÖùÝØ Q)4‘ ‹!7Âæšâ0ÀËG•Ž8*òÆ (Š´´Ò)sÞÞÔÃD`õz qÔ΢¼È|þùÈDžyƒlðÏòÀ¬ÛÖ³|u{R§³Né÷YÔ곕õh{×"•Á¹q>¶æD¬ÅÒê¶ò~’u>VEbCd +Ú N¥X*ûšôR,'0&Dq3?ʼnYŘ10YG¶ñ<ãí~üO¥–à-àÎd06ZëŽJb‰Ä‰¥*p²¼¹º>µüF»œAŽA±gbI¡¨ E¢L1Õø‚™Xò4ŒMË…jån"Nó®5CjÇ.UÂdØŠUykc –eÂ0-èŠ\/ÀâoJQ6XŸ˜°®*J Œ ¸ˆ¥Å˜Ÿ4Ž>{]›B,“a¤._ ›a³ÛS0&ÂM« VŠaÂ4 ˜–É…€  .Û˜€ñTƒåøHãáêö”B¤K½ø±Ö:fe}ÖÆ;ÅP„^=’9„ ËžO˜ ") „ƨ^K­¯K?--GVܪSbóx-')Œв^ð5 ŒMñâ.çYl—,Q†23áöÜ*I,‘X"±4$–¼*pRcR½ÛЮVÇýÖ.I†,`øéÊ…ÿÒúd>FŒa\ºgUõ˜ÕõØD,5åæ‘Ýqe¹•9p¶àZ˜ùZ-–ª~ám! "$yYžÀK d‘e$uÜÆŒþ¦ëºöô6uW÷Ùêú¬LÔ‘y1Is;“6,»²üXQ„™ÈÀ&óÎÜY^'.–Nù3Þ¯Y1x}^~w,Bs Æ$E‘Àœ¶³Â ˜š~+ݶÞ:DÄd"µÄR÷šylcÔÎè'O¡Œ0‘ÇßymTfí$^n}Ž×±} ‰ WÙts¸z7“ž0š!ʇ­:Ëۓ—יõÙp}ú{ Ƥu|Š(v¬D«Ê®²é‰Œa¤ûrW×é°›y6¼yš"IÒÁ³Š"ÛÅ;PÕcoËÞüwéÀ÷Ú1Kyš IóKžg¼ ²whÇ®§ÇÓO?M‚éJO?ý4½ü‚ ‚Ø¥P xzj&AéPK« wÑ£þ¹’ðs–„ë*Ñ»Þiggûöí£¦k„­­-ìÛ·o­E‰ ‚ b©õ!ñ0›Ž!‰"$yŒYЀ¸¢ã;P&‚ŒÄÒ5‘ô!Š"?~œ¸ž÷Žâ±GÅ£>Û>Šç÷°ì(І“9AA‰%‚ ‚ ‚ KAAA$–‚ ‚ âú G–eEb‰ ‚ ‚¸DމyîúwþL¾è×½™\ž—³ƒÙ- òþð5ô˜¤]±s 3ÿ0&×gIuIaëÆ%' X}¿ ,HÕÙCŠs]Ï­ËÑ—Ÿ«·”g’å‰]·‘2_çuJI,AA\?d.Æ ¸»_Ðzš8p†Ðf§¸å÷b§Øv3Ã{TwÅ5®œXÚñ40vóàB<óx:j7»|×XÝßÁtxar]Ï­ËÑ{!–þžŒéÁ€‡*€1>ÿù¹N"‰%‚ ‚ ˆë‰Ä3 0†‰á"Nʃ=óžcòæp¼hµX5„‘¹eÁvƒæ€Ôö~n©s>·b‡‹‘±Õí¿J”ϼR æ&ULWîCfÍœ+2cAïzÆŒAšù-AÅ Læp…}{<ÒR,‰ÓfîŽö8¶ŒÄAAÄ;WÒ,vCLÚ‹Ë–…@PÜ b–’ò»ÎE‰%þó¸Û¤ËKâ¢xyÅhž" #lå¢Íj•S$viñV¶q¥Xjµ‰ §K¿Fl—VQ†23áö\Ä–ÅoyšØµð}Ä]ÁÒõñdÕâ~æç(2biIYÝ®dwbiOçVZÏ­þ¥q„ ðáØsèÚ"cÊëØSŒMâù¤#LÛÌ' LÔ‘!ÆŒ \LÆEµ¶ÂuÅR»/Òžuª(2ÌÄ~{I,AA\sb©ÞýÏ|ŒÃØ : Úe‹>n™¶\šøw…ZøìV,©|±Ÿõ“*,KCõÊü¿vÛ:SZÔ'¬lã¦bi/¯Ìg‰m·Cµ´ø,KþL“fxœª~NºIbŒ¨/¡=©û}e»Ü±”¶æÏžÏ­ÉÂÜê÷_Ù×>Qæ©J,ñ,u zÁØÈ£Ü Q†íò¬v¶g€1¦cB¨EÐ:±Ôž»Ëç'‰%‚ ‚ ˆkL,i^†¢ˆ¡ ¬t?j/ª‡Ü‰wÿ¹;“¨ºËZÚXaµXÊ£ŽêÄ® .úùb”M¬ŽÛ—Ì|ý Zºf5öyÀͪûâÊ6®K¼¼e™¹ÄkÄ® Í(SQg }\–‘®K<¦gŒ õ¹£µkÝ&Y½™ Æ$È"[]‹Ó`»Ò…r«xŸUbéâæV_ˆ7–©vÿñ~0ÓŽª)üº‚'G ÖÀ=™[™+Xè¿<îÎ&O¡Œ0Qmâ¹bkA@ ͧdý½¹Í•zÞýí3³:^¬î[©gIeïÁS;$–‚ ‚ ®9ò,CÞÚõÎÓI’vbb–“!IdùP¹)’$Yš´`i’ IóÍêžòkdKËÉVünÓ6µ̲|ϯQ·a·–‡œ÷}šå1î¥k›æ­ƒáveéòÏöbnñ3¼f<hm¿äH“鲺ú³…âWüþ:ùž[!‰%‚ ‚ ‚¸ Éa«cˆ·ŠØÉÕWG~N”:xÓæB2€"KuRú¶ÇŸ}¿w0 ˜%‚ ‚ ‚¸Ú Ì)DQƬ<#ëj#²g˜jó]ZýÅ’:’ ¸I~͉%‚ ‚ ‚ KAAA$–‚ ‚ ‚ H,]¤°u š¦A›Y—€“Y"ð UÅ7ÜM|ˆsx¦Uw.ͧ÷z"O7Êž;$iŠ +EOAUfðöÄŸ9‡kjÐŒK“È1 h&â|·sâJ÷÷e¨Û†cx5ÄÉåÙ‰(ÁðSº·‰Ë?¯Gn¥<ÞízÂ@]ß}”'tݾ ïÚvÿñTÓòÌÛ“²½™\¦f¿<ýpióæÊ÷ßîúƒ—%i‰¥kÿõ ¿†OýÁ?Áÿñ™ÝMöÐèä­ÎOìüdi¶ÅIàª7ƒ±›yîý§øgÓ§6º™5 * Þ2șΚlyJ·0µQv\~NÂô©dOÜšxécÂçMyòý®æÄf¯ë¶é¾ãä˜O0¦ìí½·Ðþ æhñ ‚ØKÓÜ…ÐòT0&À½ÎÅ’WffÛëljÝþãï¡<—ç’8œâ–ß;¸§b©Ý—2oÞ‰þÛ]ìíXXz…ÒúËŠßÿæ¯AýöÿÎñû6þ­Sž \!”§=S¿^†ly¨ÚÄ ø™I—¬(æ«ÀÛ÷ÔßÁv6ÞùXèÜ»E,yƒæ­>÷Á-OûvÒj§ì$žú;ñž¼ì÷fLªÉùKh7sâJ³ÇuÛp ßy2ÌDžŠ6»Üs8â‡)ŽŒ€îqâ2Š% NÃ[˜Û.¢¬ÙˆƒQËòž'ü F^dðÌ  »Ò¼»¡>‚¸»›„>‚(­­¨žcòæp¼¨÷Ûe×\ܸˆƒq–!ôÌ­9¼°BßżümgÑ|.ª¢ÀåýâGÝ6¯é³8‰áÚsØ^ˆ'£„‚aÓî< aÏ-X–ݪ{o£½×Õ¼qã¾=‡5_üíªr‡úºØE}Š]ö_^÷G,Æ)"φeWïÿ¡ëÀ²æ¢Zë@YK×of;ø­ÿø/ðŸþòWñßú5üÁÁ_ÃG¿ú<øèŸlø2öëÓ§š…cg"4eŠÉd‚éT…å† )n@™L0™L¡h¼¨7ácºZ•¡Ázš,‚¥«˜N&˜L&P4nØ{¸fe=&“)f†Ýzåé°znAyìÁ˜épËúå±CSx™Ss/î¸YºÛo×5m6å¦ Ã´á»”ÉŠf 4V‰%ÍMW,Œ[b)ñwâïÚý”'p̦SÞ~ÝòÊZ³0¯v·³Ð…aèÐMYÁÒ ¸C™b2Uû¿" 17šk¨š¯÷€Êb†¦ò±T´^ÿˆÜy=_”™‰°3§Ê6Tchº-1Áç‘ay—BìYÐ ›·-aé¼8†kjeÔfœós} 1ÈÊ æÜÞèY•ª¹pð‚|ýuv1&i9OtÝBÔ>Œ/ñaè¼8ïÌqÞwSèssUnÄRoNä± Ã°Åôª¿5~ϰ}ÿª†ƒÀw`sîÚ·ð\àívö^ޱ:«ï—¥s¾U·Ø›C×M½gIè˜Ð[×MzyïM§ f¦Sñ²1Œ½9Ôé¤nk°ÁNæêùX r-¨Ó¦ÿ‚öbfeçðç:d?;5cÞŒotŸ+~¼ÐÇ»ŸÃ9 ².—],-® æQŽ¢H¡2¦8-Ë7·ªn÷~×õRÉ K¬{gîCª@ŵÈH/ße˯™ lP©Â¢×†,w½:;^[n`NÊ™¹ ¼öó×@A•ë0óÒ]öß6ôÊ‘Ôò·ëúLèŽßƒ_aeÛ†û¨jwì,Ž¿2¬JÝ~xypÞ0̼¤vw_Vî²¾.vQŸl—ýç*M›ù´Êw_ÆLø­Fbéš#y#Æïíÿ¾xß?Ál„ÒwÿïøÙk›Å ĶRNª®B,'D×Ò7&ƒ7¨T‹Ìxpb5ˆ‰7ü|løåÝ…¼Ä=M+oš¨®oŸ1ülùb¸J2ß©g˜ù·uƒ Í #kN]/‘1­‡[‘:¿¹=ë\í2µL,­Ø)73†÷(¥[SbZ?äõÒ@Ö[˜ç¡U§jGu;Úõ‹œ"¶!Õý!6×h‰hØgS+Z°V Bë÷Iw1ÔQA˜·ò½—wExÚÒy ö?_bÙ ôÑ‚xÝqU^ÎSÉúëìrL:m¨&ÕõœêÅ ôk|Á{s¢úý"#xY±¦ÌáyÚo· 6c¬—ñ2ƒs~»©[dMž%Ü­Œ±)¢¢@hMZ×h-fF²%cèÎFma†ÙFÖó…ùXä˜+CŸ ulÐê>.]-{}šf3Z÷ÈH÷ûx7s8žO»s .ƒX’‹Ï¹Äå‹ò‘‰¼¨vëÝÖ;KÊ !Wå÷ÀÀ¡¦IùÒƒ¬µþ0óÒ½T†]nÈ„sþ®›aíµìšƒÖ|6†—¶ß7#¸ ^Oêw÷ªrþšXåg¡ù®«‰KÝ«ÓÒ•»Zûy°á5ûý—B“˜0.ÏÊ`Nø»1-Ö÷YÕn# bxÚÍ`ï)ctòyÎ7„œr]2µBy€c&fÙ·9lUcrý>ézf4ýPÍqjvæ 8kÊ]Ñ×»¬ÏæýWtú£Z›©v€8 ðOJQ•kOµZ$–®)^yõ13ÿ öí¿©Jûþø&üïÿóÆB©(2è•ÀÊݱùw-.»yi‹c˜öŠÜ¼ü­(GÔÚ¦3Ì­YkÁ­!-"Lëa:fc©^\ØIÈšÖÿ6Üqè4‹êráÙ,JÆðâþ¼YĨK¬5Ž"–‹¼j1òºˆ*â‚?8¹Ù¶\x$^}]3ÌQd.¤þMRþ­zàU7“UøqÏ -õ÷²,×H¢½|°vÄRæâÆpsy_ç¿—Õê`¶ú¨\ħøÃQÖׂG€^îêY%FE^ˆÐó-rÕK{ç¦Z ªNR?È0+û,ªëMp2(càÄ)ür!^퉪{*–bÔ®­/V¹Xå»6îkW´v[üîtE®ê&+Ñâ‚%u§|à«n²Ñu6“²-]wºîÂDu“:F…1 fPºŽÔ»jMÛÛs¢Þ–Õ2¨5«ÿý2­²ÌØ• yiØ¿¼ÓîR0ø:ÿ¨"^6çÛu«¬Ö-KgRŠ. Â²^2œÚŠA[õêa邯$µ¶&%žÁŸO­ët¬ÈkæcæÏj±^}^÷yù\ÛÇEÂ_ÊbµxŠËg©£¾ÿ(ÿÛ<¾Ä9œ:çA\±dFýçïѺÅþª¸•òYÄçwCæï«¬|wç3ß4w×b‰×kÄ“ÈÀjï.2xìɪr³Ò‚Ë Ž&ÐM»ãB¸üúeÆ‚À‡cÏ¡kSˆõb7ý×oKЗBaÓ>óZ×i‰¥Ê¢^®»äÒbR=…±Ë2a˜tEn=ëúkš~Ý1\¹'‹ª»¦Üí¥}½ÛúlÞ}±$Ö"ªÞœíˆaNnxW1õ7_Ãß>{Þøù6Ÿœ?> í¯ÿ=þÝŸÿ³Z(ýÎ]ÿþÛwþ+vÞ|có²c«Þùé|÷74Æ &ô¤ÞU-_òåK\ª0,Q–6¦N±™lÑ|†©:ÃÜ ±4–ˆ‰ ÏsdѼ±|¸ B³½Ë,C™0M«åþÕÝÁ•FÌ ¦å ÉW$°(K•,+-\##@šüz-7¬¢(–;`#Ý_F«Ä’ê¦Å,ñl¡¦mÝX.–š¢ çRhZ6Âôô‚ÉyÖvƒ¨êܶ H&!<ÏGZÈÒQèÃÒÆÍé\¨ “yϽÊÂÜñðâ÷•Ž¥¤²<ÎM ^¸]&<à–…‹ƒ¨"ÙP,-¶¥*£\4gëÄRÂë"vwûbiõu6“MÅR¹1ѽ^s,¬Kí¹W½`T7©çxß}€‹ÖåbI¸/xn9œó½ºUf˜—íh[tR„?ä>ôi#ð¨£n[Ûcè—–@yæ"‰#„aˆ8J——a÷áÊz><ÓÚB¦ù@[y=Öõñ‚ÀOyÿ1QEÄÃQÃ-ë¿ÙÜZ1‡7¼— âR<´ï'·~v]‚Xª­ëS„1÷ΘÚ1ŠŒo¬ŒÍ k!ª¯s1bÉ]òïž*n(Âb˜ê¤cá­ëŠ¥´\ ³‰Ñª=mˆ¢Q J2dy4˜…s±îR+¹GS‡õå÷õnë³qÿ¥Cb©O&÷Ü<Û}KbéêKðã£}õŸAùë÷Ä_â¥WžÁŸü"~û¿þüÙ£ïÃßü5|ñ¾‚ÿM½??{梒 TBH’¥®ÛG™è¡Z ,]Xµ,TýôjèÖÃDuQ¤î@ü¿I4;Zí†'NJ3ëð¢˜ïòŽìrÁg';™ê,YŒ¨î.Ä’°ÒhSQµ\,•;]K“¤ biÒ~YÈŠáxS·ÜïXËz—Ô/6q‰ï._|»a4;îÓ^LW{±¹¹Xê €ÞïÖŠ¥áþK˯³á˜l(–ª—W߽ʛÉkÅ’Ñš{í2«E}?ËåP]úseU=ç|¯nÕF…¤ù(r ˆQóbÎBÊHŒKÝgÖâsbH,­žÕKqÑ¥£ºÖÌO×öñBlÚ&Ï»K™Ã¹ßÚ\ ÷$q™,KaÞÚ\Ê÷rÚJ¡Ìwá» f/_–}—oÞÈ# Œàçü½  ¬³~ˆ]×–\s·bÉí‹¥ÁrÌõæe¤IÀC JkCµ¸Î– B ó:Þš[|:"f£þ[¬{#6ì³%b)J7}yÖy†TÏl¥½FIãjûb)ÊMV—/íëx—õÙ¼ÿV‹%>†íMÐ #±tÕò[ÿñ_àOùŸqïá÷C}øŸãËñ?âKÁ­Iw~ó×ð¥¿ø§ø­ÿø/.¢ìÊýl|¸±ø´wncX† Çó‘dIcñM¦‘È…aÎáNµ|þʼn]ŸA×uÌfüÿM§ j¶Í&rÕ3g‘ C›BûñSËwYƒÒb6³mÞî‘Ѻ¹c´êºæ /jÊX¨F,I½•ub)¹±Túßöݲžë!®-|2Lg^º8µ¬C¢o@@˜¥9\'ÐM Ž!,E*·, -ò d‘× ñtÙÆÆ_Z}^ð£ÒšÓɵ­<ÃbÉVÄEË’ºÁBsi*ü¤®ËZËÒÒël8&+ÄRÛB‘•/yæ/6ƒb©;÷:¬Ü™÷æø&bi´ä7|Wn`Î÷êV‹cQ…c)݉Vr™ÑTƒ9·áG1æ½qnaeš. €ïûðƒAàÃóÃAÁê­œq§MËÚº®ûÉUò°ŒW’g²ž>Ï8åû>Â8½´9\þ–MÊ\J\¾Ân”À/ïÝÊMš{Œa!¼¹Ö‰©«âû¦úáàùh¥ËjÏr]ÝÛSÓEœ„0JwmÕ‰×^suŠçõbi¸\¾8fÂv#‰<îF[ºj¹eÜŒá„K³—š~Œ´ÕžX`7ýwz!]uÛê·IŸ Cb©Œ¡bŒA»ð\ŽãÀq<$y)˜ Ó G.¦¥K±»t3Š÷Ã*±T âÁrWõõîê³›þ[%–ªw±81&Q™d‰b–®jîyä_A;ôÿĽ‡ÿ%þüð¿Ä[¿Î…Òÿ')”ºË#Õ€=ŸÃ²,Ìçs˜Ú¸Œ4>ýŒAVyœIPÇq+I‡Òı4qŒÉð_n\îF³r²…$A„,a…luTÇ#Ä¥û‘U—ËÍÎÓ2Ð|T2–MpýØ\ÞæÒul!8¿r—©¯YÅ²È â ý`¯,RR_,¥—S,U>ÔŒ–ËPdŽK7£—Ë…O_œTV8©qéY/–ÊÅ?wÜä\­•¡Jš!¶âÚŠ¬j"ì§´Ž4ïg»\<þEi…:»–uˆ‘¼1l_aG¶;±$1†±-=Çš ã¶;±´é˜ð:ùµVÚê[yázLj[ ¢rޝKâr×¾*6FTšþÌ|Œ¶V,1©½ ë@i?_2çÄR³QQmzy·ŽÝ¾çj c{Ú½ÿ«ñ „ÝgݪùhÔõë–Ö}Þˆ¥}ÜšY;±Lç)”‰rf^zis¸·YC{zVMùÎ%¡‹l4±‡žÞòB1™HÍœMš mÊ’óѪä/3?ëˆ(s*w,ÅS³Ù4ZyͱÔÊï©a7¼Õ妾ÙK:%×qŸÑ\Yš$'mŒÚ‰tä)”‘P[‚7ï¿—{m©ž;•%|UŸ¥ ¿õ´[ø!¬K“iñ¶ä±‹©ÔÝ8¯cºûcÙꇿ}fÖ{'tû~U¹«úz7õÙMÿÕýQ­ázó)°”Nßò :”ö*L·@;ô?ãnëfüÁAîzw±B©‰`K¬!U@8pŽj7¶!xìIYƒn[Íb¨Z˜.f‡ª²|EóIç¦í¤ú”f€K¾#Ajeéâ`6ió¸4ý—™°Êz ²˶a(£n†½2 c Í„e4Y+ëÊ•KEK¸J˜Yæ†Röû~Ö·rd0FÂêØ«¡óbʇÒdfÁóè­‡q“íNìôÙ¬úÎÄêX-ǪùÜÀ¸œ?ª“´bàxlS«û³ÊzÈ]%Ä‘ kn`"5sÅÙ@,%m,HPtgI ©vɼ±”ìbLÒöw3Ëjú­n{^ZЄ‘ Û™C‘{Ùw+–êx&Œ ÍÔÖKi]‚Xk;óúe5Òýås~@,µ7*¤ÞßŲ/tۅ瘘ˆM½ìd` ófnÉSŽ3‡Z¹ñ-µ²¬ž —jÀ¶Íº­Uœãú>®¾€Ñt?mⵘ49ŸÃÔ&ݬ†—0‡³2tõ3 öÀÊ”$HÒlð]‘$Iï,¥æ½šeùò³íTiÀ»:»'E’¤KÎ+[uÍK;'mU[x¤»^g¥I‚4Í.êš«úow}v‰cŸ¤{n½^^îê¾Þ¼>»ë¿Õa Y}æÕx’Xà/íQÌáSo½ø²Ú ¡Éð´®Ú,âô C‘…ÐÆ]×8AšÂi»’øfyÖH+5µb¶ˆ L¥s Ž`ÕAz9\CYH§+Ž´æ•,Äl"/Ä*LfÎÚÉœ”»ÒMºóv½FݶÉS¸-ØØ™uê%MUŒ[™Q¸Å`½Xòˬr3oùƒ×`ÔK2c¸¥µ›Ùݺ0aËç»ÛºÜsMHr¬e¸§yYòlõÎÈâM×Êx£É`§vûLÏVÂ;q1•„áÖs-œk½q–0³[ ¿Ô+MíMÆéHhvÔÊ~éîò¤u6À´Ng¿jS å†©û biæïlxÕc2“Ûš¬6çWý¢è¼/šôå1ŒÎn¡TºœŽ:m¯æDí"¶Äµ¯†Æ´ÞÐG ßé\’¡óŒhßÏuÆ¿%s~`¾6%Ì(ïüÝ™õŽ$èÚ¸µ+=0†‰×ÉÆÉƒ4iͽÁÝÆÕó1– ¯ÚjÕã»I·WàuO1ïÝ#üy×ÍNy1s¸¿FÑ»‘¸v,V ¹Üà$¡O$–öŒŸþô§øû¿ÿ{<òÈ#øoñ¿ãß)Åÿï+ÿªýIïóï|¶mÃu]üøÇ?ÆOúS¼ñÆ—ça—&HÒe;MEÕ*Ž¤Ù²]q#IÒ¥e$IÌ¿“.ÙÈR$I‚8Nm¸Ë£ÁØ…º^e™ÉŠ ´ÜÁyççF†$Ž_†]Ÿz 6(]Ÿñ e»gëÛ¥É%ïêdYŠ,_žüƒŸÃ  îr^®1ɳI#ÉÖ÷í%ï¢f>”Ñ3»ëÊÅ­´£%ç“•qi3ŸßÓiºô~¾dÖÞwÃc˜%ÉêgÄ®çãúÏ×·%[ÜÑÌÒ5Ï»]Îá*üˆâ•ˆkL,…dQÂX/M¹M‰%â ö,Ì´rW}ÉY,Ä»ØÍÄÕÖºF^Û4g‰i–ƒ ð`TÞe®k›fN$®8U¼‡æÔA$–âÒq¡v½ÊËO¼Û©2Nzg?]?$žÞIpÂÝh•a«R+ %¸ÊÈ}ÈŒAXp%&‚ H,ÄE’g  @œÒN,±lš «6ˆs¯Da†‚Q¼~Ó Ë2róºêHÑu>O ‚ KAAA$–‚ ‚ Þ¥qvމyyfÏ"Yf{ÝC‹«­2êkbqΑX"‚ ‚ ®N2cPÊ£²“ä[~oy¼äEy*‡ hΑX"‚ ‚ ö8†3BšFpæsÌmQï<¶4òùgó9\?jLŽC„qŠÈ³aÙ.~ô´1L q’¡(2D'Ûqw)|džeYp¼¨W—¡ïb>ŸÃv}$KŽ ðÌ  »Aö?OØs –e#ˆWŸG¶¬-¼/Rø® ËšÃõãnÁ‰×´)q2–ŠY/#k¼pt€5f`LA\¤0ÆB¯|v9n®Â¿WŸ’:Üã$‹c>2{:‚*±…6ÏP…îœ#±DAAìX*ˆ81¹#õøAȲŽ,óÊcšE¬=ÀIQÀÓønª $§ˆ­sìv< ŒÝ w'Ç|"p!‘”wÆ&óEæAb ²r«B`ÖbhX܉¼œ”ŸÇFzyÐxc"p±÷ݵVµ%/Eˆ„yÈ­žÎÛf|2c`£YyªÈÀ /;\4(󰼆ÏáÈD¾¢Mž&ñ6”’lU}E¸ic³ÚÂ(±k Jÿ·ËÛÂë'´,Ež" #¤'-=á–%Â8…«J`L€b˜0 ¦er±$(ˆW´)¶Kk˜(C™™pƒhéÑ öT¨ÏŒç“ZdyšØµ}Æ$¸éfbI–»­¥q„ ðáØsèÚbupy´¼?x¦¥ˆ*Eq"NO`²`ùáV!Aq7Kýyæ5ó¬7çH,AA{,–$x-qšc0&ÁIS“– ”(A`}±Ô]Z–Nµ ž(Š%dYÆ´²BD”‘Ôq:X¾-–x¶=±›ì¡½îüvU[ë]K–+Z<»±²xÔmDHò²<—®nS0Ÿa$¶ÜÊ$uð ôÌ×KaÁK«UQÀŸI`Ò¬ÏTõ3$–Òflª1_–$#ìŽËœ(óvJª»¦?Äznt­z>FŒaÜqL1«û|±´džõæ‰%‚ ‚ bÏÝðŒ _pO{¹ül4skËG{A¼l«yÙ°ei<ïõ;¦Ë‹‘Ç.fªQZ$rľ™õ,=}q—7uŸy…$¸¸P{ÙÑÒ•m)ë7±šß¤d&@âÛÃÔNZ±DS0aŠƒ*1~;¹kB·.ÒR±”Ç6çªÊ–§PF˜È{¬ëvFê¼ÎxhNÛý+ÔÉ)Š¢@âé­~1™H-±Ô›geœ›êιoV‹BKAAÄžÅ,åi‚$]´ndi‚$I—&!XXlgò|Ùg)’$éž¿S'UÈøgY¾æ9²ÞwÒ$A’®·&¬kKžòúeC}µô¼ÞƒŸ­hS}­|MýÙB ñMû,K7ë—¡>N“éŠß¦Ýæt°«~LóÝÏãUsŽÄAAqqb© ØwRê‹«Ž<€"— "¤Ùbââ]‰%‚ ‚ ˆ+L;P&‚ŒúâjKêH‚jÁE‘')Ä’;n,QµKݱ$uÄR¯ny S÷\YG,剒æ£È=n­™e¬–¼¢KA$–H,A\b©ÈaM˜0ÆL•ÁØaóؤÑS¹íZv b)/Ýçd½uS Ud`"²‘ ³¤X:L‚›6V&+ÊwaYj×-ƒYº òºiÁñ#„¶ÒKíº9–Ò¸è\UâÖ8ÃEð}~ |x~xÙ³AX¢lxAÄeb{{»KT ÆØÈ(ÝФúo#Ý´ÐìF,å‘1Hš×ÊHç@b ÂtÞ!"ì–XŠ«ºµc¦Ê$ '–RhÉj—áj£Ú°¨“]Œ[ý6)c¸ Äö”÷ËÌë^c$,X΂ KtÎAĵ|ÎRêÖÙáªx¡ÊÝ­Ž*¶B,i+ÄR%zÔVöº´³V ï݈¥¤ÈJÁÅ0™Yð<ú´q«›ZÑ‚˜c}·¾¼Œb òT‡ãÌ¡–éÌÙØ¬³A$–Ø·o-H‚ ®RöíÛ7OijൄQ%Ä&­xQ¤\¬”‚È`Ôµ,ɳ(KS¤Y~‰×É‘Ä1â$½$KP–$ˆãIšÓb† ‚ÄÒf<ýôÓ$˜‚ ®2¡ôôÓOÓ — ‚ ±tµX˜öíÛG1LAïpŒÒ¾}û® ‹A\i²ÊH†, {M<]`*G#Œä ?m^<…,˘̜=ªC Ïñ[®ŸûUd°”1ä^[ˆÕ$þÓ± I!J&ªAn¶$–._Ò‡(Špüøñ«šç½£xìÑGñè£Á¶âù=)÷yxž‡çŸ_ýç=Ï?ÿüFe{ÊÆ£>ŠG{ Oõ®ú~%âJ>sºDQ´˜Ì ˆ1o,4IAªŒ‰e,šæ.|·ùÛÅ“ÇÆcj™šÿâ¾³‰ ÓDÖKO¬ÌîcÆÚœ‹¸<(Å„3ä¢Ð×ÇåáÏ¥-BLEž]ræ-¶U,³_jʨ•aR‡ëè-ñ*uÜ%WÖ©(àc0&@’ÇËþ’gŠ"†Ñù„™ÖGÌ” dyÒɸY‰jK$–‚ ‚ Þ=Äsˆå¢Ùˆ2xªT.ÔÕZ8Ìü ¡>ª­·‚¹Õ÷d½—H#‡­4‚KRl:tšÄÒõËŽËo éSÉUUÖr¡`̦cAÄådÞ:ì¸^g’J´¬GUÜO:˜)“ž+^ùy-–¤Ú•«qã+ûÕ¿WÄ,-|'±K‹•+n¾ç–Ö°:îj­X!ø¼[€Tݤ±f íDMlê&(’*¦kÓêZŠdÍ„6ª,3ñòv–.E‘´’ix½ïHpÓb£:ÕbIlú8õfõXK² Y–›1µN"Ai‰‰¨+–Š3¹{ÉLëX˜Úý1,–ªÏ› ~UúßÙ¤NµX’†Ä$È’y4Æx<Âhjvú¯¾¦¸|ŒK—@n´=øŽ e2ÁdªÀt‚fìÍ¡N'˜L&P4AëFJ†iÃw-(“ ÍÂvìÂ0l„‘Cb2™@ÕçHÊï󲦘Y~}­<öqð‚¼~¸–U™b2™BÓ-„i[ù0g¦Ó ¦S†Ýœq°XVȵ N§MZ.zyYß( +Íwüen|yŒ¹ÎBeesÞ´cÕuŠ<ÆÜÐ;ß'‚ bÍ&hdv’)4¢¡I^¹Ã%E¿Ša‘uþ¾ÍšLy»K¢Â]ßV‰¥ê;­X¨‘æðk§^™^|½ÞÈðVÖ2&–Ö©õb©qy볚"§±UÙCcÜIxá$q-zxƒçE ‰¥~úoƒ: Y–²:vJ€ò5Thi˜LUè–×Y?å‘ e:j¸´®"±t9H»7ˆ Ö"Imss[AsM]“M¥6-·n¾Çlm8 Oþ66ÃÒuŽßTÊS|÷C  Žäm3w·Lq:(+ǼåÏÚ´A¨oÞÅÌ:ܲN¥nw'KÔnp"uÊ¿)—pAA¼ÛhÜ·ú©ÁëÔâŒATøú¥I² `4™t’9l"–:nxlyZï¡ï8íu‘ v¬6v²d=&Uíʺñ@#Yëóeb©È‚NÿtVÈzcu‰ç­Ì|-Ò^ÇM¬hµ(¬Ýë´ð êÔKÉ ¥M€~… H,íF,‰tê1AA׎Ê<ͼwò8ŽÌnaàÇ•DމyÀëãÏä=‹KΫŸÃvÚBƒ/ÊoV]$ž¡<2N2.–D Q¶,Ìíõ%ò]Ì{ßÍ’–"‚± ¼(Y†ùNŒ“PY"Œ3d±ÏË©ëš#ö ˆŒa4s'Yïí96,kÇ‹:.q Nb¸ö¶ât"ŒS¤‘ùÜ‚íÈ‹y}-¿+ —ôY¿ŸŠ"Ct2jÆiM’,CäñÏ]?Z)–n.…BD¼ÓVuùpæsÌma’ ŠÎÐ÷×qû9¢ÀGØ*' }QÚ› ž9ct7@šs!#ª¢Àåmõ£zl7ÓÅzíæ•%ÊwlX–ÕëkKAA×(t™I:Ò” /Ïü]vž Wø"6²¸ Ú¤<1óùçF˜#v´^V]e–.p&„ÞgŒMäíE¹ µ•µWT]xš¼P&DKܧŒ±Ðû¾ ;Êáªb'Ûoÿ`{Wa`LAR½ï–ˆ âÌ«Ýøx=T¤±ÓXç*FzŽ‘vÚØ„ÿp±lA–»}3™¯é³t¡Ÿv\~ÌS;Š]Õ©<ÎFs׈¥¨Œ)Oq¡½b¬s²ðÙ¬Ÿ 90j»C¦6o«¬—‚/Ę1ˆšWͶ׽¦æm·Žìie˜VÍÇtÉ|ßôEêaÒëOalìY†fKAAïñœ[&JÑcùB<\øn€1cJ!Å¿Ç ” zWÁIµø˜åB1‡­VGœä0ä²üÊ2âTg/¦ÝEyê@l3R‰%Õæ ñh®,Š,¾HŸš¼®y%ʸ[ºô%ƒ.z7ƒ½‡Ç·ô¯¶¯Ù©_sT ²¬óݱ¢9Rf 7Šq]¶æD(Šó)_Ä«¥Ððf£Íú¬×Oüˆ—›áîì¢NI^ Ìeñö]±Tÿ÷ʱN¸›Xe º~ŸÛŠÀçNQ q”RlŒáò@c f”wÆ&uU.v“ÒENb`BÕ– æ„Õn›i¯^›_#Ç|"€±Qù݉ËÉ™Ì#KAA×*ÞŒ/gŽ0 aW‹Igñ,Äù„‰:²r·Ÿ ŒM Ôr÷¿:KQk°,†iAWäÖöâ(Bà»°-ê¤õY{!ž¹:bI´ÖùŠnG$tX[긕ÖÙ• e-K½8©Ò¢¤ºI¯~!&¬/¸åFPÜ:ÞET½n[u蟙É-u¥åkUŸõú©KS'iI¿ ‹¥Õc½ cTZ¼Fè¦ N‚ÁE‰'-à("j+e K`Œ[~:bÉãýÃÏñ\lKhŽëþÜxLûõÚøü3ÆÆ0,†aÂ25ˆŒAì%!±DAqÍa:àŠÅ“&qn©puþÿžÆ˜wÓƒ ©[¹/ E¢(@”dÈò†Ÿ"´”ÖuÈ£åbI¼H±äϤú¬ËþÂ×ÙµXZrÍÎóc3è“™X‰•j¡í®KÝ·ê+û¬×µX:uéuZ'–ÖuQÄ0Õ ÄŽ›Ÿ3˜`Df Ó¹Eàÿ¯Š #}Mjê¸^,¹=7ºj¼7ÓÄÒÀ5’ vÁãý B%ȲŒ©á“X"‚ ‚¸I˸ ÅŽç?w(ÏJW*VÔϼæA®¾Ò YaRÇíLòÀàeº-+BêÃÐ xñILÍU‰!Bc¥XÒ¼l×b‰Ç¥Œ´þæ(ãuÜs±TÄP„&ƨ¢“:çRÄR´ºÏzýÔX–.½NëÄÒ걎1×g˜‡Àtå5ËþkÙ Ì©Üq—«LT¤˜Cuðgò€Xâ1V«û¬ÛOÝCiwW§~úbé–…1Z=Ö©o6–È2#¡,9¼7u µçcýo{plФÉô§8//´…÷_³´á˜öë´‹kE Kéflkö‚++‰%‚ ‚ ¢t½J$éâ!·y†$ImpkžeÈ/öÀ×ò:i–_±6çiŠ$I÷l‘¼iŸ­ê§ËV§MƺÈùgizY¬£ÙeÛÝ]#ÏR>çöøbKAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAA\. ;{~£Ab‰ ‚ ‚Ø{ξ‰ñ§O@øô °ÛºHÎ ;ñ*Øm'á¾Y ;q ì¶Ëô¾ öÅSƒi¹×sÖìÔCøb;:¿çm÷žûÜÏxj‚ ±DAAtÅÒH·ûÜ?böÝW1;xŠcÄ0~x;ÇvÛK\,mŸ†|{ÿìb¼ö鸢Ēgœ»íä{OÁ~þ æ¾ÂëwÛËðÎîmÛƒÃÛ¸åOK‰%‚ ‚ b¹X’Œ7?o‹¥¢8hû­ÎY=ñÉ3˜?~ó¾YŸ+S‰¥¤üNò³ þ‹’üâ“â7Þ†ë¾ûøÙÞ¹?9´Ïûâ«:dÇc°ÛN@ùasÖMþÆYØGNÃzü ¯5V§ìµ³_;‡èø°ÜüCðs„¯u­Rqôs?;‡üÍ·qòg­ósòsðŸÖã¯Ã}ñíÎo–]¯( ¤?û9œ#¯cî¦ßXbËA„4àÌç˜Û.¢´û4òùgó9\?êW”#ôX–7H%!‚¨upž[°,AœÑ¼&±DAAì•X7K;Ï¿vÛ p²vÓóŒ—Án;ÕÍG~ttì¶a½ÆþG°Û^‚s¦€÷—À~çgØ).Àú#.Þæel”÷]^޵ýó×˹øûÓÓeýß‚òéœYK4âÄä}‘z3&ëÈ2"cU§þ¾=ÀIQ ´&`ŒAs¢RÍÀƒ¤º(ò#Æ L̲~9lUc2¼Œæ7‰%bsòÖLƒ¦i0ݸkÞŽhªM3îâÆÊëß™ˆ.{¶šž9ƒªª0ìÍwK"Ç€ªi˜Íf‹h4Ãé¹´û,‚©iÐÔœ(«ûPU5ØaÖ3éÇ=sù•a¨}š¦a¦˜;’Ë0.WvÜ/uÞG0TuaÎ_ Y_d°ò;K»ÐÏዺï4¨úòûäÒÊß²è)¨Ê ^’Ó³þªºÿR$)É5#–>ý2”?…rÿO¡Ü¿©ñ:²bÉ3^»mq«¬äggŸ¹P vÛ °/¶Ÿç }îÄo®©×yÏ¿ŽÙmÈŸ«„ÓK°¢óÈ^<Å“>üQ ëñÆáÓÐï/ÒóyiÕz¥¹fÎÅŽ|ðç(ŠóÜÍï÷äE[,ñz ÷§—¼0z ñV]ï­ÒvâïGпàµsƒmâbIÀ6†·ÇcseÇý)ÇPèÍù]‹Ò¹Æ„«¿½+Æ«š³»#ÂVÏïK+oØq0Æ0}ŠWP 0f S‡ÆäzŠYZKŸÞDªÄ’P &­vK«ÄÒ™%óæmÌ¿û*œ×.tþž¼˜pWÁg>_¹Ä½ØXÁ¾ø2ä;~ãÅsƒÉ%ì{_ûô+ˆ^{B)ªŠ±4hZs½¢xæbË&é±$u¬=¡9cœ4…1›w·(A`XògRï9œA—ÕEêV.xDQ„( %²<‚á§4¿I,]Ÿ„ÿá?àGŸúüO~ßøàÿ‚ïßûµf5MñåÿÛ?Å?|ò“~û·ñâç?ŸÁúr3ryJª;hfL‚»±t‘¿»82̤áú¯Ìª£ÉõCd4cÜa„±b.·d.¤²ÏT7A‘PF2d©yyZùp“fË-T—‘¦}b«}£ZÔ1Æ iÞÞ.¾¯è¸_"劻˜3CðÝ? Þ5xÞGVŽ×Åî0F¾ Ç —ZN/µü=±ž%'ñÔß¹ˆÉåä*KÜ­Hó(Ðüš‰YZ"`–‹¥“`·ý~ÞXô;^Äèà›ü³O¿‚´(ÝÔnûÇò{kÄRO$H¬Üê§y\U~ò53ô|Ë‚sæç0¾û¼×. Š¥ìä«ÜEð‹/‚Ý!¬Þ¡=±Ô¸ÓñºÈ·½ˆÿöä©×{óïžÂ<ââ.}#ÃìŽ`Ÿ~eaƒ©zwA¾àj÷rùÙhæÖÏZO[–% ŒÔ}aZ¾ÛòÀàVn«ÏR†nÀ‹É²Kbé:å~ýÂÿí¿EðéOã>ùIþ|þ³xý§?Åýý?ðƒß†àÓŸFðéOCýŸþGœtŸÙ[±”ǘ ÃF”F˜ë*&“ ¦ª?Y¿hÎbæLÅt2Ád¢@Ÿ{ B"òæÐ”)/wª`f:ˆ{ ÑÀ6ê2,×…v)bIš­w“Ë㦭ŠÏŸ×}Æ‚ Ë‚iZðâ I`c* eȘü]¸å±CS0™L0™ª˜{qÇ}ÌÒ ¸C™b2UaÉÊöuú8ó0ªÓÈh}–À6´²_§Ð­öØälºnÀ "ŽeZö«nÃãžÀ1õòûL –.¼ìü¹¥¼¶¢ðz®[yìAW«y¡ ¶¹[ž Óöà;&/wªÀt‚f¬K±$©sxs½,W…åF ÇœÕý23ÝúE›6¦ÜÓ™ÇOÖþ¦²†º–U™b2™BÓ-„kÄe8ÐË9QÝIÛ•V7àÅ1\S+ûy -YkÆç±2³àXÊr1“0u½3¾•k1ÓáF; æÜoõéå'Awnû‹n‘kAò±V4AïÞ‰¼9f*/CQgpVÌ…<öqð‚¼žg¦ ò­z¾ÍLgÉÆH×2 /|žÂ1u˜v°QÓÀ†®[×ÔOÚ þðmÅÛP>ÍS‰›ÇÏ"þÙL?ÇÝôÜ3ËÒ–¿]'–ŒæÚX*φºí¦‡ßDòZ†Ù½X& Xu½·¡ÜvìÓì“o#ùÙ›P¾x¢ëØwЏQ έò¢ê ôR,9H³¤þŒ±ü¬@Yüß² Çs „Öz(†"ðuˆé…ˆ#S‘o¢ºi<šã3òg`´qAbéz²,{_»å_âèoýŸþ4~ðñÛ`Éÿ_Ü÷onŷʵPúÓ_ÿçxþ‘ï!KÓ½K-w³U™[†ͱ£ÿNR–‹_ GTU»-+ÜË.J,‰SøqŒ(Š:$Yã22–»³©î¢ž« ßÛÔå$q[™k„¦Ys\+FF¸B,isÍk«˜0-³éd¦Cm”g¥Ïy uEŒ ɸ'µ]øY-4ãÁL>Œ1Ì<>o¶òº«\3y?ŠÜm1HUlkÞ/d ²Ë|æ·Æ^¨Ë`"Ÿ³|G¯g©[ó›¢H¡>ïì öîû2€—1Al¹cTbw`N,¶¥%’…îüÔÅR9§Åîü±§B¹zŠÏ‰Ê]uƒò³ÀlÚÛúÎH÷êÅø\iúThõce±æÓV_«ÛPØ©\ŸJçE›‰5°hÏaYÙÞf1‘‡F+ÛÔú:»ª¸àªÙuQLïqÀ"Ûõ½ÛžÓÜU§J¾>øü˜Z\¬8êP]%8É&ýŸvǼvùmµoÝ\ìÞ›_ÄÕ&–Þ„|Û È‡ÝðÚÑö¥ ݸvµc·ÀèÀëÜbœì¸è¹¥[žþâÛÐ>·Üå¯6ƽ/÷2̽õñŸ·’@œÁô‹Ý¬zúóo—.€'݃Gÿ‘'zøÙ…–X [‡ÒžƒuÿËkÎ~øÖÚë¥/&Ý„·½ ëä¹å ZÏ4qb”÷YÒuÃc¦Ó¿/ËçRê›õûL;^yì–›zÍïõ2Vw§|·Rü‰¥ëŽÇÿû}øæ­2ÿˆ\ ¦ƒ¼¥JßøWÿªÿu3¡´[±Ô[`Nf&LmÜY¼åC¿Kœæ%ÏD¨† mÒz)Om¹ß”-«p|†"wyd¶cXŽ m,^šXZöb/ÅM[ÀISŽmtú@u“N¿¨n‚È10›öN6r1)'ÕìH¼zñm†yëZ" /Dèyˆ²Õí% ’$uÄí…t³€05ìzç—1†‰¡(ÒÚÕ‘?ŒUXÖ¬Õ|±Õ÷Ìk„ßx6‡ïÍ1©ú¥q‘9iõï skÖZjHK—‚jÌMÇÁl,Õ}k'KÄRYßQ%2óŠØZøÖ®”" /)E™¡»gOÅR¨ÚåÂ5…U.&%ÍmņU‹Í ~“y¼ßÆf³ØÔV܆<+“áÔ;üQÙ–þ})Â(­UºØº- ¯×¸&­yµìE9Ÿ`L€Un‚¹Ï‘4CZ͉r±»¾üªØíï"  HåFK\ÔÁÈLTà§U¢’r âZhJp³®8X{¶ÓqlæñhæÔY§&åΫ;pUu’Z™¨ªx@3Ì7¨s%ª»VötE½âȇ¦qˆÂBÚ_·L)¬: Ÿ¿gåó#*5ÁÉÒ%‡‰Óº®Ayÿ‰ª·Qÿ·Ç¼yÖH»š‹•`¢Ú»Áåò<’7r¤g/ìy¹é™sHÏœ[j™LßÈ‘¼qnO-—ù™sHÞÈ]ë—_ïÿì̹5.ìÖÄ!\l‚‡lEzä:ÆAÖ›ïEMìÅZ±$mî“_õÛÈ-N²æmœÅ­}ý¬Œ¿0Ç-!:®b4ÂV¼Òº¡c6Ó¡ë3èºÃr‘µ-@²Þ˜ñ[±ZCb)jÅÚHc–ëÁ¬¬‰m‹DË…“»¹0Ì9¼ ©ÖÉæâD«ë5›ñÿ7h¹Xê-ê*KÉÄŠ–ô〵da[ý}Ȳ´ÙoŠ¢@žÅðl Ú´Yü.r+×7Æ0šj0ç6ü(Æ\wóÕåbIê ²Õñ{T€áXƒ0±.ªüJ¨2y† àû>|?@ðÿþÿ·÷·1“›ç'zÏç[€èÃù|üíäCbŽI° 2@Lc1Ød¢¥vg±B†Ê$'[h!¥¹bI 3Δ¯è7ДÆë²} ÊvDÛ4l:²™X”eº3tdv[t‹-™­mS Ùl‰–ù?ø^Åzyž~Q·ú/à=]Eò~%ëúóºî뎒NT¬¿]Ýø¼È.V‹9ÔæåÊ–TÿWC,•‰]‹l V¿ßÇê6Rç±ë7sñp±”×bU@R§XšÜ F4â½ÛxéðüOÕÏ„åÚç8ðá‡Ém¯§s¬¹ØK>SBÅÒÕNõ›eøÐoÿ+œyïýxþýïǹ{îÁßþÛßÅ_þæoT)ÃO‹=„üÚ¯C0 ×£ÌW.’4Eäõ×æÔ‹Ïûk–¤)ü´JCÙ.h¯Ãpv­]QæÒ¢DÙÕÆjµáü\›×ë…:qäeð/ÍpQ”%bǸ²5KÒnØo~!/KØ3¹ ý«ÖZd°æêÞ0¼îús„i†,? ^ãåSôÁzWWeK,õ ›žáÝy°:ïŽPšD U†¢ª˜-ks¤Ú)<,_ùƸwžÀ&„©—ð¡‘NÛ¿Í:‹´—AEð\r§-ê6GI†ªN`EùŽ9-6ùkÖfé^vÀ¨úEªÖŠ­yÿq×µ·eß9Gõº‘ARŽÔ©wh÷¶/ü]”Ä1 Ô|´^»×JuB¡ï4Z÷˜×o¼ò0T/\MÛdÍËmáÚ:“š-µçN6z/8’vMטع*b©iÒ%ƒØ_çnÝ£ÞKß;ìûCÄR.;„xzFíõò²-}œ·÷‚ó„Q¿té͓̩Eìꀶ4/7úaŒÇ‹Ý1+æï:!„P,]]þü×~áþOˆþäOêd¿…¿úý»ñRü}üÙí¿Øz—^|è!üůÿ*Î?õäa.\{vX¨ÓŽ bUv²pc­“›õÈYÏ™öd(J?¯1š4˜{²á5õT[}k–šøá&óÕεMëû.•›™Òæµ¾»^E½¨^@Rç°«¹Ö Ö /¯L,•%ROlL%ÒA¦Biæ3³7î}Ï’(ý±“æÕÎä±5VÔÍ»ÖTÍðµÍ@ÖWÅÒ²±Ôµaâ£.ô•‚…åÂ1vŽkã,kS,hÿ9m袄ÙÒ„c[mˆÝºGqནT,¾kvI2„R%¸8 -YR«baÚXõ³ì‡ê …ÁZ¬¡7éë·k•)LÛ†iL‡ãØ÷¢é+8ŽÙfqªÂ`»ìtÊÔ€í:0i5¶xˆ×Å’q"±Ô_/¹Ö_{ëÜ{É#©XX3u-‹ßx½¶í'7]Xð}ËÞuºlwòàùÑ–5µë;'ú ¶½ÂDî½89 -M6DYÓaÙ+L{÷™›6›µUBR0_º\pN!KW—gßÿþ6ëÝ—?ö‘×iúK¿Ð ¦âG?:ÖuKY["abØÒKMzÊ.ÛY÷£×7œZ¤ˆ±š­¥—T¬Ú}\ xËéÚ:ŽÔÚÀn™—©?Hƒ)©3ÌëŒxmøIû†Uߺ^h¿Xê껋AßLôE[ÃÏi“#ºŸ¢»’Ô«,S˜óa?Iê ^³\=êÂ?8 /[d½õKê¢J¿ÙÆÚøK˜­šMð:ñ!©SLU©W7½³Þ÷"‚¡¥<z!ÒÀlǹû¹Ù{;žÂœ¯—¬ÁÚºyo›ÜïÇyå íõãpcÞú¼ž˜Ýì 'OÅ>÷:'ñ–Cá(´¹µU@»‹éZJ÷9–µi’Ulo˲½nhéa*Ë¢óJ”û…ÂÐãP¿éøû¯ŸÁÖµ‘qL±ûÓ5a®é½¾Éèkë·$eoË>fXZG]×î ¿^«³s#åVH “CTç2‡­«ƒ{k¾¬æHÕ7Y•PeOÈn?=p›¨eiTó¯Ý3-ƒµÖÇÊd¨Y ‘z]’•ûüþ÷ë}Zšñ›`¦IÝZ§ƒæb‚Eû QF³B¡X:6/¼ðΜ9ƒÏÿÍßàCÊïà/ßñïð_ ‹Å¢ÅøÈGðg·ÿ"û̧ñÔ7¾(ŠŽ]N–¦H’išm¾©í‰%#ÈQ–9Ò4=,ĬìÖdY¶=…ežtÍ,M‘íH,Tͼzo-‹i’¯­uÿ¤½l]‡Ö«¨û!Í®cF›"G’¤HÓy±E|ÔFP“†ô ðÑ4E’¤{²V™Þ’$E¶Åx*²nnZZ{²+îÇjì“­iW dY¾öÝþsÒ4E–moïØ}qÅó¡hê•_³9´÷úy¶w«ù•"Û–ô"K¯ïýÑ®[òN\ç"Ï&I·‡Û‰(ö̫ÞûêzhÿçWЧyž!/ þ¾BÅÒÕáµ×^Ã+¯¼‚—^z ñÙ³¸ø½ïáÅ_Üà¹ÿþHô#áòqRˆ3Íø É(÷ ÝMX¯«B—^ü8ëÂÞÈúÂ~9)i€Õ¨ÃÕz{NB!KdÌØWn±T¿ég½®²ø8`­Ô S_y{†4Bö´ûÝz>ÕðØ'„B(–Èžð°¢`èÄ-IµUQÜ$õ-ò½rø¼OâQÌ4ׄB(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„B¡X"„B!„Š%B!„B¡Xº)b˜†C7àDù±ÏÏÓYq£µ)EœæWåZyüôù~Z´Ÿ¥IZÿ]À7 èKù5hÇõ*çF% ,èúQ~=Ë-à™ è†‰¸8éœq Ï¯N½»9ps»+Ì Iq²gÒ£ºŽG½xë1EâÁ˜pãüooæcª(XÙ-ù’§ ²k^NËбt¢›cNBÅÒÇÙÿïñЯüøòÇ?2úýô—~ßú×ÿ¯½øâ?ôd! „ÀÜK%HœÅBHp²ÈHóVP…€4w¯Êõ޼9„˜=‘¢, Ø3 BÌ‘–%Ê2ƒ! I¯ÿ}õ öëSΧËB†{]çWCWTnæéBºÂz¯Ï[h쎞€böÄž>˜»o´˜,`N„˜ ,n½ß£Øž_…¹~Èï” YHsï&˜„B±ô†½ÿýøî»ßà]ï£wþ/xüá¿êÞîeþü×~ßy×»Þsοç=øIî¿nîA­Å’~ ±TFeÐþ c$䵡+ þU¹f‘^À_óäÕõ²€Pµ‡'ÃB²q•߬^¯rnl|C ¼ëêYJa(B('K¾!dxÙÕœ7騍Žà?ñ5ñÑvo†oû™u-(„˜Zñ-ù›Ôã|Í Šu„B±ôò—¿ùøïôGOÂwÞõ.¬þÍÿŠÏ¼ç>¼ü øÐÿü?áþðOBxêôßøqÁûæ‰ÄRèXX.Wp±oa>b:›ciû(Êea9Uj±$a¾XÁö“žwÇÄ|6Åt:Å|a"Êú¡>VË%,LJo/ëcl¤e‰" `.tL§SL§3èÆ þzHEÃê³0]¤Eõ†7°—Фª-B™be¹oå#×Âre÷ƒ2¸æ+ËïŒÒ"½\ÂöI€Çµåì%T©2¤•¸¨EŒb è³®NûDM‘Xóª3½×Å•“øvýýsc…°×÷Yè`e:¼jL熅dÃ(I`-Wðãži`6b6_ÀK ”EŒ•>«¯m"Î/»H<¬V¢8h¯¡/«qÏÂ^›¬ šc­Á­Â|,ç3L§3K{3´+ ‡}$ƒ.k¹‚úXÍg˜Ît8aŠ" `. ÌfSÌf:VNÐŽ¿;— Äl³ozýãEœe5gú^ožVbI…0ÛþZ!HŠ+˜ûÎiÄýövme¾cBŸWõœÍ X½ð·fÜâ$¬Ç nK:lKº0ê1ZÚl]Ý*–߯riæGuošÕ½™'øÚcákaÏèÍ£ö¾Ÿ/,¸Ö|Ã0Þ5ÿ!ìš ÌÚg‡·vÿdð¬eÝ3Kkðìó*Yc^¥¢.§žÓËþ³eßžäþ»Æ÷ì¶±OC3¥ú ˜-VpƒÃEJºXÖ}0›Í«çøÚ¼ ìUýÛcÀvVP„€ÒKÌ B¡XºÕ2öU{ÇÄRlM«qXõ=ß!&B@ˆâ#oo×ax¹mË|1jÃxßü+óS©{¦´sFž×s©ß½ïw…×%v6szb'Âl¬m…¼<` Orÿ]³{v÷ØW/3ú¿ ‡yó£zü«ûGî®Q÷QY°¦ÒhTÃ;xNBÅÒ-Êßý_àôï©ø»»ÕV0=vç­Pzôw~_Ò?t˜PÚ"–ú†¹2]Àq–í1BÖ‘¤>æªÔ“ÙK'B,ç¹îªçéY [7$%M†ª{õ‡J´¬\®©·?’U½Ò^½dÌW6LcÒ•·ü8‹YÏXTG˜çÁr`¨ÅölãG¶TUÖÑ ´£Ñ’õv-QS'mQ'_ÈÃÚXÚ‚aZ÷ÛÒ«ß(§~kÈUÂðåÄVÝÏzûv8õW•%WR+>TAÃ÷ÂMA×Îf˜Ux^Eò AV-¶6Ô^¨Úe·ã®•qZ„m›UÝA^–("«:§ž+m}å9Â: ÒÑÕÞø%ÐëõE+¿6òs¥úÌNú푱ò#D¾óÿPÍSu·cRõ¥Ú €ý÷‹ŒU#Ž‚e5WeI¿­Š¾Qïj=ÅIæÀþsšûïÐvåM(ídÕzXòÐ„Ü wêÆ­k‹]ÏÝKQÈiæK‰Ø5Ú{yô(‚ÊЕ;Ã=­ sm¢Ì=Ü!ÞV×Á©_pLÜk·î¥Í?g&ׯ¶Ó†¶Zu;ÃC™ûÕ¸NÌnÝU=ÿ¶y*š¾Ñ{kd‚¥ZÏi».'mEØ2<·ÜOrÿ]ó{vËØ·/`”ö%À~¢z¾¨p[ïdŒ¹ÜÍ—<\¶ÏЏhƪêWåÐ9A[B±tkãýÍÿ óï…swçM:wÏ=xôw~ _þØGðÚåˇ_o—X’æm(RûQ©ÖÍ­0êÖ,už n’£( „æ´5œÜl(––A/ĮȑÆ!‚0F‡pVóV,)†2s[!¤.ƒ6TÃÒg0–&¼¨2šº+F°¥Íµq§.Q”åà fõCœTfm°ÅÒúÚ¡¦¯&\¯QDfõ¶´ÿ6º,‘Õoçµep¢r‚eõ–X]xH“Q!IBè½õ7~küe;çÃúÚ€Æï/œê±Ên Ë^ÙN-J»5IyÛΓÚÐVȲª®BÖ¦ ¢(Bœ$ðêúè^Úµ§—ð£}c.k0V6Â8Ežç(ŠÃîedüªd òÖ¶6eê^z¢9pÈ9ÇnWž"ô}DY²ÈÄ|{©g”޵¥™º—¢LJ\ ª0'ÒÎ5K‡·†M’„Ú舥´ò²õžEeY"uº«ýó¯öÔI3ÄcÏYGZ«2¦ún!Ë3äy±#¹ÁlÍ8¿O‹Ä‡i9Ÿ>½ÜOpÿ]Ï{v0ö'Z›–! Q•0'K„ ]ëæKsß·ÞÿÚ“¤¶mÜ?'h'B(–nq.žý¬ÿ_øßÿM+–ξûÝøð¿üuœêI¼þÓŸ^±¤t º·üÆš‡¨û¡\› ùêÎS‡ ÷³úDýÓ=”EP¿‘Ü•í¨«»²c!peØj²êm½b˜Xh•žÔo\ÏÓAbi-ñÂ.¢ñléëm<Ç/gwßK=±$u¡I;Ä@¿ÿÆŒ¦ã–Ý\cd;úiØÎfÍÒÐ+Ò ªç¶†»Õaeº7Úž²H°˜Èkဠt+8X,ÍáZ!¿gˆ6m]EùH¦'šs‚vöª<nëê½­-™_å;úcWbÅÚÅûB3+Oç@,5÷ôp YÖ©{éó¯ñ@®¯Cöq`Î6Î×f«­éÏ«—C2œ´››+m{"–ƒÆð÷ßµ¾g·ýIyä‘‹¹&†k{Y‰p©„gXÈk÷ÆŽ9A;B±t óO—^À{çÀüßî¬=Jï†ÿGØŠ¦¿øõ_Å‹ß=w¸`Ú%–äÅRÞ„­ô“>,±\,°\.±X,±\Zˆ‹q‘U–9–j'ª¦ú ^àaÖÏl×x„À¬g˜…Ž ËñÆéÁb)­ßäÎU¨Ÿd—•q§Ï5!U!\;ÄRzB±Ô´¸^£ó¨†¢r¯Þtå! CA€ †ü ê‰=ÙåFÞRg#Y¦Ž[v“ô _öab©oŒVáDs©y‹êõJêaT—„ë:DI6ÚžÆû‘&!s™Ö‰ôU˜$–ÖǯiKgdÛ:ÇŸ‡s¼v%õ›x!)U’×GÖ¡“J¸ìkK^‹u3^-`d½[˜ßˆˆ5±dŒÌý~æ³ýó¯öDlˆ˜æó.%‘'ð ÆlÒz¶ecüYÒxg ?ëÒÎ+Ãðª= |ÏÇù§ÃÜ×óž½b±Ôx†…€63`Ú‚8Ýx™³N„ÅR ]êÄÒ¾9A[B±t‹’g>ôÛÿ gÞ{?žÿûqîž{ð·ÿöwñ—¿ùUÊðS§ðâCá¿ö+‡ ¦+K2Ì0E–ˆV“ÞgymPL!Ë ´‰0ß&–ê¿~8Olµ‹–ÃüÈ6qøEÒ[ЮYƒºËsi–Ž/ÒoÖ'ô<\Eo½Uô6±”ŸP,µ¢OÑoE]]½¢rgV¯iò‡oc5imAöÃæ†×!e¥ÓÞ/–Ô:áCثˢßvåa8N¸ªB?þ¸Xª¼ìž kÃwï-M¸–Ò‹¨^/¡!(ÆÛ:èÓÌÎ9n»ªãæ^ÞÛ`ÙÞçiy@[ò®^@ˆ÷¬ÛkÆi²–¤¥KÍ‹”.ÑËúz¢ýó/½FãéÚ GµèÓV½MO›Ã-/^š~èÄRíYVaWNlVíœåo÷ûuK'½g·Š¥Óû7çû´¹êºÙMÝ‚MOäs‚ö!„béåÏí—þçÿ„èOþ¤Næð[ø«ß¿/ÅßÇŸÝþ‹­wéŇÂ_üú¯âüSOVÔ7ÒŒžXJ·ˆ¥ÖÐh˜˜(úŠÖ2… ­Ê.ÖKnß³ÔK*!«ÊZ8•;x“;Æ2Ì»7Å»²½ ŒšnmR?»’Ú3 6<ÈÕ´6[ ÈÆßpî%ìz”¤Îa9Vs­Í¼äåÉÊ)šêl ×µ¡7¡.µ—àZ‰¥CÊÞ%–ܱ”®…uΖlÓ¨tg$5k_„2…iÛ0é0ÛH{Ï¢'XÙ.kQ§éî<Ї¼\&×®Ó'7k12O2öŸsÜvEµ/Ot¸¾gÕ%UiÄà!miÛKšǵ1WÅÈ=>öâ [‡8L =LðÐd!T,L«^b—*ÉÄþù—¶™Ý,,N;—êÄ.í  ³¥ ǶÚP±uOP+¶Zn¬éiʱ۵—‚ü€q¿Nbé¤÷ì¸Xµ)–NÔÝêb|û„zsY!©X:|×ÄTîæ‹“–½¤!Äc-6æÉÞ9A{B±tëòìûßßf½ûòÇ>2ð:MéZÁTüèG†áu^–*\Þ¥ÐU—í^+TÚ7ê)ª4ðÆdõÞÓµ5ÊdѦzîÄ’6X‹’…VÏÛ# ©SÌšïÖÓSÀ[Î6âÜ »3V‚Õt#~×âìNuo…ûo+Úµ6Gן»ÏUo8•5³P·¦MnBJÌùPøIê¬Úe¤—3ÈRØe%ŒòþîKêZàÆ0éÞ ¬IÙSvÒ³!–úk’šý¤*C«™sÚDŒi›I¬>ÇÖ×D´¬Á ÒA{ÔÁôŽ1ÙXS·pâƒ^.¨#)µ6ûÙx[Ûõ*­!wÜ9pÎ1Û•‡Ü¶c¹&µój¼-‹µ¶$X͆cT­ƒÒödlRDK0ãb£ïèÍÁÐÒý-ËÍ3+;hþ•e‰È6ÖRl+X8')ñ–PÖ¶MÐæÖö=Ó£^†ÝÅÎbXŽÔ›ûÆð$÷ßu¼g×Ǿ¿ƒ4ïe”õ=îš1wÓáUçXÖó¶ñ€±ƒ‰Üï£Iµ.«¹wNBÅÒ­Å /¼€3gÎàóó7øò;øËwü;üWÃÀb±h1>òüÙí¿ˆÇ>ói<õo Š¢k^¯,M¤ÙF ê,I$)Ò¬8Æõ ¤iŠ4ÝócWdõqéè^FE^}ŸåŵiwžïÌ’u(M=Ó,¿ªåäiŠ$IŽÙ÷W)Tô•§Õ|ÚºÁjžUå¦Ç0”Š i}NqŒ„(ŠPA•Í+Ëå×wì=ç˜íʳ´¾_®Î|Ίk4¿Ši’ Ió+˜Í5¶õMõ ʲÃú£ %dn; œ½cxSݳ²,oÛ,Ô.YÇŽûõögY¶õ9èœ „Š%B¹^Œe×#·.EX…ïN-öE}HB@wö!„P,BnEcp×¢rëÑd\†ôn4^&ö!„P,BnQòVó¦3ÎÙïâk=†¯…)Ê"½œAê|ÓÚ=y߆>›b:bn¬®yá’Æ»pSGB!„B±ôÆ“y{¡l}æN-òS©ù\ªŠòQQÂ7”ÁyŠá£,cèÊÈ9ŠŽ¸,Q¦”æ3IjÏ•göak•|c­¾2Ü,ÃRë>“¥îÌܪ­kÞgV•¿ s¤^ﺽz©Íz¢‘þÒ>õÿÃÛ„À[çOl~_—å-´ö3IêêlF=a”¹UŸh«ƒE#!„B¡X"׊܃Zî«Ú#”¸•`çn-&äZ08µŸÁš+µ0ªÖ yz†ç¦Õuý…Z ‰…[{V ¸F%&f„æª4\G5] ê­Mj¼uñ „B!„bé& Gš$HÒ¬ç éS Ëòµïr¤iŠ4M‘eº+2¤I‚täšEln$@8„<«ÊË® IB‘gU½³“o›çò¢~–¦H’iVl_í÷¤2!„B¡X"»…ÙBS{‹0{“Qo˜K¯!„B¡X"û½;Yvk¥²€5©ÖE…ÇB!„P,Ò­¡ŠBÄiÁ¾ „B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰H‘ÀZ0 ,j ÃÀb¹‚ã…Èy½"vaè ÃD\ïÜgÿý¿ÇC¿ò?àËÿÈè÷Ó_ú|ë_ÿk¼ö⋇]3s! ± i ?;¼~™§×çÊp=¯Há,&B‚“]Ûþ«ê'^·Ñú†˜™›Þ|s¨oiîìü£'ªñ=±õO—7þ׃y¼¤XzSÛó+¿ !„Š¥7Ñûßï¾ûÝÞõ.ô?ÿOø‡?|'ÂS§ž:ý7þG\ð¾y,±¤þ \k©I£oæcÏÄ|6Åt:Å|a"Êö‹¥­çd–S¥>GÂ|±‚í'•5R¸\Á‹"8KÓé3}/Î×ê§À‰B˜ú¬º®±B CêbÏ‚>ë¾Ó¢-Ã^Î u¾€i(öÓ|ïÛXèóê{}7Üç™Êá;&ôyuÍÙÜ€Õ†¿ìL7DX˜O§˜NgX˜îš°ÍØ«êû™ÛYAʨXÊáY+,-o~Y$°WK˜n„²HðµÇÃ×zuOCÆ|†ét†¥íÁÖÕñO|z3ŽÆ áÆ8¦pÍfm;¼µvdð¬eÝ3Kkë\H©žOË,'ÀK¡ƒ•é 𪾚’½å6} ò­ºþs¬Ü*„Ñ·˜N§˜Ît8áQ–ǰ–ËÞ¸Õ/«Å²›E`eÌÛëõﲨ®áé ¿³»n¶µ}#ýºXÖeÍfs,LéºçƳë1¹ïŠºÏfUŸ--0_®´-Eâaµr'!–óÞ=ZßOiè`¦Tã;[¬à)!„P,‘Ñ·¾‰¿ºã·ñ?ø}„§Náþð°ÔßÅ#¿ÿ{øûßS[¡ôñßü—xú‹_@žeÇKëtb·&uá£, 8º2®§ÀŽ‹-bi÷9™;ßünæTÖfˆ™7ðˆIrOìÙZýÖQá¦U}íyW®$‰VÈ­‚l£ !ÈöS–ˆkOÇz½ o›¡—a©uåÈR÷÷ÌŽQ– yKèäÔª\kÚ•%õŽQq±´R«zÛɦ– 呇· ·Î«0¼ÄÕGÚ]õg#–¼…6rŒ 3ªEl`Úë³¶žòQ±Þ½ïÅa±- p8F›sI†›ì/w[KŸË°“‘y™ûõý5ˆ—Êû&°r¤^oNJRoŒÜÁ¼–æîH8¥[·y¤}#b2²¦½6ôúI[µ‚ÇÕÇæ²RÝE„ÙXŸÕç_¶t¡¼ëhðó®ïÄèKB!„bé–æïþ¯Gpú÷TüÝÝj+˜»óŽV(=ú;¿/é:L(íKkßõ×(Ó\wM†ê­‹¥}礩¹*µÆ×d6ÇÒ‰*k{[äV¤dÁ²2èdI¿~ŠŽ0¯‚£«B`î¦]¹òAÖ$,¨Ï‘æ•Á[|z-töŸÓû ¼¼YS³¬ŒÑ¾Ñ8XsSŸ?YµmÍCrB—a¡Tý¡-ÜÊÐÍüÚøWáå%ò°*C¨Fl#ƒ5WÇÇzmÍ™¶ ÚÏì©T‹ªïoÓ½ví– ÌÚ³Ò¶»˱ÕõwÝ7©¿ª§l -K83¹6¨Ú`Ï`ÕâS1¼NpLÌNjf—nY7¥t~Y¯ªŽ ‰á{!ßWn¯'KEY" Vµ@°ô*I°šTuÙ²†Í˵`o<œf휌0]»^™ú­ˆ3£eîmzëÏšpʱöu‰êñRá¶^Ïs¹¯"\ÕsyÖÎåЬ–¬û–U9ªn×}–¶Bvž»*miïQµ»G›—Íx¯/!„B±D:Cðoþo˜|/œ»;oÒ¹{îÁ£¿ó[øòÇ>‚×._>üzÇKÝÛkn’£(ŠÖB›mŠ¥CÎ)ZaÔ­Y:ä¼±¶(B@š9ƒÏí™Ô¾ioê×_ËÒÝKÛr—a1rZäC±´ÿœæ¤îÇɦã#É2dÙŽ5OyŠÐ÷eÊ"CGðí¤vœC~Ѝ¿–c¡¶ýÓЫ¨Øðtl_³Tﵸl…Šº¬Œã¾XJJ¼ _sÒõU°ÔjϤ‡4‰E’$„®4ãX{o¤âA=j!&ëHëqBÆT_ "dy†g“jø=æmõn¶o,J­šLÛA'°çò†¸]Oµ>üð< ¥ Ÿìê’À÷|œêê´eß=J±D!„P,¿Î2|è·ÿμ÷~<ÿþ÷ãÜ=÷àoÿíïâ/ó7ª”á§NáŇÂ~íWL=±$M–ÂAàÃ^Í{ é5y‰¨6ø„aÖÆT°œB–ha¾)–ŽwŽ 3L‘eÅAçmKBéÀQ½f¢2øÇR‡÷ ±Æ¨Õþ 4­ZÔÞ‰%EL¬x`o?§öbÈF/kXÒ®3ø*ïŒÀÜëŒÖ¢~s_«ûÅR#vµž˜iB”©Ã³Ê(nI?¬ª†×öw_ðÅm»«°®ÙHßdXhR½`?òN*aöÂ/…ÐV8ªë¬­zé6!€ú1ÅRÖK ±§Üâ*Š¥2sëPB1ôÆe]ö=\®Þ[“•m†—6õTÖÅÒñÐ&êôYsÔž×ÚK6H’9Õ³@ýtåYV½Óجæÿü+{UÚ²ï=XB!K·þk¿Œð?ÿ'Dò'u2‡ßÂ_ýþÝx)þ>þìö_l½K/>ôþâ×çŸzò ±¤ìÚ”¶Í¾V½Ö¶d›š9xSÞ ‹ýç´jÃÄDqÀy»…ŸǵëÃ]‚½†Xÿí»¾‚ã˜í5š5'­á+)˜/]{Ï)`5k–¦l×iL+TYŒ¶%ª Py¢Ãõ}8+½¯J"fìK]‰a±íX+{öYŠ{YÓ^†¾X* 8uòIÓá¸6檎Ñ$0PgK¸® ½ ›˜(Êi›ýLÁÂrá˜F›qÐðÒ^F9 ³¥ ǶÚP²u/Æábé€rÇú8ÛLPpXj×rUáx­§®,ê’:‡å8X͵Çf~M ÖJoëÙxhò´4PK*–Žß51•»ñrÒÞš5!0ÑW°í&õ1z?JÝgÝK A~uÚr¸Xµ)–NÄßB!K¤âÙ÷¿¿Íz÷å}dàušþÒ/´‚©øÑ Ê’~Ú_E›ÁZÛäH¼žÕ$-XÔ©–ËvKßc²ïœ²L±P{b¨ö í?o‡Xê¯mi3wõB|²‘µµ!V$.¦ÊÚúÝꉒ¤WßêíöÞs²  M•¼tK’‚<Ü8^Ó˜kRÝ·µgDYKõú©¶ïc§5v+#v²µk^ÈC/AÓÇw´!› V3u°ö¥Zg¥uk¸» ‡QÏ+ÙÆ0%»P°èÁ‰·„"­õïÜÚºYr•X¢çõVîH×ýÒï¿õù³´ö²µ¢»úgεáÜPgðz©Èw1¨§2Ó1é…Snkߺ`sÓá}®Î±4&䩇™" Ö–ÍV^·Ÿ˜3¬‹´ÞsâÊÛ2~<±Ý iîñ·BÅÒ­Î /¼€3gÎàóó7øò;øËwü;üWÃÀb±h1>òüÙí¿ˆÇ>ói<õo Š®Ý×,I$)Ò¬¸jçdi‚$Í6R\V³bTÙ¾² Ù„édiŠ4M‘mgyž!/Šã“Uß§Y~`èe}½+ 7ʲ išŽ¤“¾:y¶³ÝeY"OS$I²cs¤ÉøhŒý4M‘eWÞÇ+÷ê®´Ñõ@ë}¸}näõ8fWV—½å2—w÷ÙõiK,˯é˜B!KäÍÃØ.„¼Á$¾……1«÷û2FzB!„P,‘k.–d±;Ó!×oÞmºÜl–L!„B±D®;yΰrcQä)¢0DrŒUB!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±t•9÷«¸óc/àçî9ñÎïrÝù¹{Îãν€s/¼ºuž¾öÚk¸též}öYœ?ž\'ž}öY\ºt ¯½ö!„rk‰¥s/¼ŠŸ?õ, vrCðó§žL¯½ö¢(¢xy‰¢ˆ‚‰B!·–Xºóc/ÐH'7w~ì…yzéÒ% –€K—.ñÇ€B!·ŽXbè¹CòÖç)Cïnœ<þB!ä–K4ÎÉÈú<¥P¹qà!„B(–¡X"K„B¡X"„b‰P,B!„b‰b‰P,Š%B!„P,]±têYÈïyò{˜âšs‹öõõKÏàìÙ³8{öì-!vžy¦jëÙg(–!„B±tÕÄ’üÐp6}ýÿ.g?Á#uû4)Ÿ9ü4Í 4ç¾ïE\xµÄO_€×0ÏîræÞk€—¾ó"Ä{^Ä>üžga]|?}ýgxò3ÆëøÉ —_/qtñeÈÇh›ôñ—q¹nÓÙ/~¼>ñ¾ÝãuH?\S±töqÌ4 šv>ûõNü<ýø#Ð4 <üxïø3xÔøNi´†Sàóë;¯}êÔ©Mêk;ŸúÀH9OãS³SÐ4 ?þôP¸<ù(î«ËþèçÏœ¨-Í¿OÍ>…§›sŸ~¼ïNÒ i€sö<Î>iâ÷ŸêÚªixà¡OáɳK„B¡Xº"±$=ôR+&c»ÿŸóÉ µXz¥úàÕWp÷;¿qê|¯µùóãû7ÀÕ¿óSÀ+ßM Þ“ 2ï_Ç#ﻀoý¸ºÒ·WÏž»QþüªGßM"§_—×uÞö_uÌþ맯›ëmûïÉO^èúïÕWj±ôÊö^ÿ1înû{ô<ò¾ÝãuH?\[±dãþF ÜgàL+0†¦i¸ß°ëc}<|O$iCq¿ñÅÍk?Ý»ö÷6øþµr*±Ô”eØþàš_üè}Ý5øΞ -Í¿µû†þ<Î?óu;,—b‰B!KÇKðdÖØË¯áÓUƺôà‹øÞ«õç¯þZßÿñäw>×  ÄW~ö òbé}ñþ€~à¾Ö£ôY§ ù{æëŸê<`³‡ðèçmxgÎÀóÎÀ÷}z–!„B±tb±Ôó6l„a½çÅú»ÊØó*ðá÷|ï„bé{ ”“‹¥gáÔâââßʪq…½†O]±´3Dí}Ý]¯ÄåW†Ë¯þlp½¯<üìV±$?üOÝé?ua‡mùcÿýx4´ñ†K÷=€Yía9õÁÏïÅB%0úaqOo\cÜ;´E,Ý7.–¶Ñ‰¥N°}àQOÛµ§Jû¾þÌqÚÒ÷õ™áñÁZ¤³xô§6Ž;uÿa~ýi®Y"„BÅÒ•‹¥ŸP,H^>8뺊¥ùKµ·¦ÄW>yÒü‡­g§Iôð‰f­Ñw®’Xzýgx)ûiÍë[ÄÒÏŽ!–Öÿûi—bL,½ïÅ.ìðõÓѱ.g~Öd?ÅKÏ'͸!ÅÒŸ‚÷ä£m˜Ù?úë+–N݇x æþM±tætXâ>ë|ô³öN¡Ôßv=žóÈl$„¯óôsãºmJóSÄ“¶¥K|jP—/ ú”sg³ûÖBþî›á4<B!„béÊÅRkÈ¿ï9Üý¾çp÷ƒÏžè|ñÎïA[½²Õ³t##¿ï”÷]€ò¾g¯SyWÞ×7#'K'á™*Å÷qSh߬<]·õé§Ïžè|þB!„béšò~à%?¹¥¹AÅ¡X"„BÅÒ#–¡X¢X"„BÅÅ!KK„B¡X¢X"„b‰b‰B!Ko ~îžó4ÎÉ ÅÏݳi?ûì³*7Ï>û, !„r눥;?ö trCqçÇ^ؘ§—.]¢X¹¸té !„r눥s/¼ŠŸ?õ,trCðó§žÅ¹^ݘ§¯½ö¢(¢`y‰¢¯½ö !„r눥F0Ýù±’GÞÐл;?ö¨Pê ¦K—.1$ï ½»té…!„BnM±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!äªS<σã8‚çÎ#7 qãõ×_çœ%„P,B!ך^xÿâ_ü ü³öÏ „ 7·Ývî½÷^qB(–®ž¡B ?[û.‡9•!„ 7½ef’€§‹µï2šÚùÖkdX(ê¿êuó„Ðàç׸ÿsªXÙÆw™¿€´åÒð2äÁ§!„ ï¨D, ÄðŽv•wíúë¦eGÿ_9GXÜ!pÇÂ_«îïã\ï¤ç½9éúöf(§H},—ÎŽgÙa BY ;Ñùœå á–gÚ[|ÿüŸÿs ›”·¼å-xê©§øl „P,]KƒQˆ¡hI세¶ÆuâÌ!„€&<Ø–Ûñ‘¶¢ª@†ˆÓ¢÷5F&(Êy!J2ľËñlüP°¦„­g«PÚ*lÅSx°m¶ã"Lòñ/ë.âЃeÙpƒÅÀ{•Áwê;?Þh÷x›:±´Ý0ÝV§ª?Ò<¯ÚlÙð‚µróžcö}$‰ e§X’á‡Ï9â q÷æºÈxMùÉZy½6¢e‘" c¤qÛ²áÇéÆ8%aˆ$ËÕ×õ£t£]¾ëÀ¶m8î°?»ïøa2lgÀ­û1Jóú³°ªWcè%Q;§Ê²D‘ÅÂn¬wÍÍ$­úÛñ£ªvöÑŽ«ãÃ6´e'‚¨ëë]‚s¤íßÝys/õliB@HsÄYPýÝ„š1teó¡VUXÙúwŠ^×%q«kõÑ–µøÛÕ¦=biOtió;Õ¨JbCùÛ%–¼|¿X:ò*±ûÄQ/„±‡<³Q´bÉGY0ëñžY!²úü®ŸÌ ¯ÔX»&« 2Cs$d°öT¦îF›QšÓÍ~ôR8³êü¸6B—Š€2ܬªOõýé¾¹9¨³ÿ¹]ýŸb©miÃà }åñ[†•1[“ÊhÅu¸\õý*z©¾7ž8X,íêÇö¼—BhB@jî¹Ì©ÎQ›Õ! þŽë5}:CÒÎëJ}Þ¶qÙ˜£có&ó1]›+Òd…lìøz\”Áñülß}vÔöíÞ{îóx³=ÿß¶œp¥A;é„ÜR’lG]}]é>“t¤e{®¬«ÁMKêfÿ©‹ö™¶íY|±ž³mo/äº(ŠŒ7Ù&&} „P,]Ãp¼¾‘=µ¢Ú¬ §™YE#BÔ%ò oE*b ëý¸ëNˆ$ ·¾Am<[ñä¤16xÊ"Ä´53Š€&ðÒ¢^c%ê0•¦ÖΕQÙÕµ&f´§M%<ýmo5p4R×}uª\S§ «Ig$­ÔÊ0òÒʸ©Ö„íÓdrƒ$A«Ã"Ç ðÖ¤êC;ªÚí/«1°â—`ÈŠaÚWån2(Kž™ˆ“híí~ÙkWS÷ÖL† ¼¼¨Û5ET4ãiÔíÊàÊ@èx Bhò´2\§V]FŒ¹TÍ¥Ü_TÂ=.QM˜hu½²Œ1ÊÂß;7Û±ˆDás»û?÷¡uUÍû"47 ËŠ! ,ª2«þ¦vm ÊÒiyãmoÓ½ÅÒî~ìŸçÌ¥ºŒ©;¯ï› ‚²D.ë¾Ëw^¯¹çÑWyt%ØÉöqÙ6G»y“×/Z´vcêUc9µãöxef!/K$Ž^÷‰¬,‘«ê¥Š›î¹Ïº¾Ý}ϕǘÇcíy©+'÷ªù±¬Æ½LȵHÞ]×^>—öžus;ªŸ»A%.5sèß!– §æqÝ3;ñŸÅ•”7ÖŸzÞ7(2ÞdÄqLcB±t­Ãñ¤Éª ïð ¹õ5Ç…K­20²}béÐûVm¸V?ü=ƒ,‰†\ÇÆÒ˜AJm$už’êØÈœ@~a*Ö ¼ê­²4÷ö´©DúÄâ­ú¨X:n|C©û#Ù4:SÒ±¤Íæ˜Ïkf3V¸C,Õë’zo—Ë"CÅÈŠ¡'®1öûe5†ó¶õNÊ2èÕÝéê^äHâaàÁ±VЧj+Bš°J!«˜/Lxmø\ŽUíÉ‘µ)–¦Ó……•÷D3caelK¢î×Ī=7Ås³‹=ý_‹%!$Lf,7@ºÅ«gO„¼D^{q„ÔxiRèµw¦<¶X*wöcÿ¼Êð•àf%ܹ !¤¶OÂ¥!æ•ÇhÇõÊ¢}òÜ턚ºD¾k\¶ÌÑnÞT}.Ä+ËÄjeÂ2 Èu9Íñ‹ o_Ð(B@oDFóïú~Ø~Ÿ ÅÒö{îxóx³=ýrêq¯EO´Òêg;gÂð™èé „0_™0W+˜–Y‰%iÞyù^³”ÖÏ4w¿Xj<ÕÙðšŽãP`¼É8wî5BÅÒµô. Œ—²D°P ”Å “SóÃë$–Œƒ$WáKð³"vÞ.YUëP;oÔ8È›z%U8ßÄ ‡o•ëãw·©Ä‘7ß0ÂOZ§¶jÏÒZ3Oºfi],Éúx’¡ˆÖ°î‡˜Ue)[Cþ¡ÙŸMÝç^ŠÈš÷~¬%¨š:ð˜…öšÜûAWô:Ä.©O!§*ãÝšˆÉ ÎBÐVp—*„bÀYib†ø¸só€þÏcs­"%c5’)¯òæ¨p¼eõU%$q«°·ÊØ>¾XÚՃ󊪘Ù.æRõ]Ж6 ¥kó¾qñtBÌ%.d!0s’VXŽËØíÍ›"lCðZo¨¬@UUÌVÁ¦Á¾ž`£÷ïÝ÷Ù˜XgoÞC±Ôˆ)+ޱDíMÜ]×qo{ç-–¡¨TuZ…îKÊ0t²~¦IôÃ6±Å!„P,]Iv°Ê š ìçÎ¥Ú`­  xü ÄÒØyU¶;ÊÆŽ¼Å8è®Qyc¦ 'jBcv·©D‘<ŧŸ ‹9nº>¨Ã›f½Ì‘¹ÍRv|±Ô…P•(3ª° .Öc´ÞifTÖX&½*]¹À2<™Ú¢^¬_¢ŒVgÉ3a¬ªùQä)Üå¤þî9ØËì:ãa–†X¨Ý›ûÔé }ÍŒQDËuiÍͶλû¿H<,ôUmˆH ªXóÒmdµX«æVµ.eV Á㊥xg?Ï+`¶kµd8Yã±¨ê° ò½×+ËEÝ~USªÐÈ¢ê§]ã²{ŽÖóob¼Æ®¹„å'ÇK»ï³“‹¥íó8iÏP,5}*)Ê ìnw]»úäe ÏP „Š ŸÔ3±´üÂðÖ=Kµw°ß[žÅ\ùÇ1Æ›Œ‹/ÒX#„P,]O±”Ë:4o‰0Má[õú¢‰Õ& ÒNÁ·ë…ÄòÕKÕ›Tf K#¬frÏXÞ4|úÞ¡Æxœ™’Þ¹º›ìiS‰ ¶÷θo{»{xú}àÖuš[’ØÃLWY,Õ{±™é#MB,&Re$åúyÍú‡öún±´¨½R†"‰œ:ülޤ1ÊUaš! L¤n?¨`QµÙ°¤YÇÐê·ó1BšÂ ¤±¹":c0óÚd «¨ò¦4oï›}‘™›ý±ØÕÿE-$”¹‰(My«*”j4u~ª¦ÔÆi“ EnÅUeh¿õ¸biK?®Ÿ×¤öo·²vÝßÑ×k¤Q‡fJ­ˆLv˾{¶žÓ¥‹$aëêÚš¥ÃÄÒîû¬ëÛ}÷Üáó¸Ü*–ÞÚ»vs5/Vö?šg‘Š•µóLÒ qŠÐ­÷SSW(Ê¡¥CûcŠík–”¹U=ÓêÐåU˜wBu˳¸I^1[Úˆ²nMâ믿ŽÛ~þç(2˜àB(–ކ·f¼‡¶>Ȫ¥L—m(Hê/{á:2¦S¥'–º¿KÊÀð*Z?{•:Ã\“ di³þ ÷&µºF³Ž …9SaHM"€}mÚ• ï¸u jÏpK±švI–‡ Ã÷ôÇ0l±Ûˆv¸)mk®BÉn·¼«[Œ¹\×ç‚ÅβF3J“6{`8÷Ðf3(("š<ø~Z{š²Àì<4u&;+ÌÖIcü÷þ]277Çbwÿð–Ã,p’¶@¼% 2®ÅJ3vëÿn í; ÇX ÙÕçeU–ÁVœµÿvº^ÛŽ:IF»Žh︬ÏÁõy³>ÿ&Fµ!ëÆñuÒcdÍÒîû¬ëÛrï=wø<ÞlO¿œ²Íh) ­·îiw]KÄö¼½ݬDäƒGI#ÈšgÏÛ Ä[G÷xk„h¾ëvj¼ëY\¦]vй;|¾ß{ï=LN!KWL‘#MSdy1ú¦=MÓý;®VZó,M‘eù‰Î/² iš ÖµÖ¦k_§k9^Uéx»M?Ä'¯{Ý—y±§>Åx_¦Yvææ1ûÿÄsâêÞgyq}®Wy=f#É®l\Š<» Ï„+»ÏN4¯[]«qI׎/.<ºe<6ÏÓ]Ïâùȼ>::Â[Þ½–¸)-!„P,rr#SîáBnnòЄ*Km:}Îãƒ`ñÇxïcáu/÷©§ž¢`ºÉ…ÒSO=Åg!„b‰7†¶1ÃÂáþo±YPeÝ>(L–óøÍÏÑÑî½÷^ÜvÛm 7Ñ¥{ï½—%BÅ!„r=xýõ×Ç1Î;Gn`â8f2BÅ!„B!„P,ñ"!|óJ!„B±ÄXuBÓO!„B±tCóÔSãÿùsÿÖ„Ù¢và/Tˆ·8jþ¾c£ò‹;ÔO› ‚%„Pwì]u}²¿9˼ú{¡¨£›ìÞ,Tý}Ç´¡?Ž×£ÎÝ\9¼ìØ5a‡'Kk,5Å8vÒŽ`¡B(‹›6ÙG‘úX.ûûyU{’õûŸ !„P,È£ô–·ü¿hLîC²‡ð±îxïc•Ñk¼ â­:ŽêMKߪ{ÇW› Ëo¨XÊ}BHðj±dÈÒH]o&±ôØ{UÌ® µv¯‹XjçÊeç$!0÷²–'oÙ÷óô›V,ùº!ªúç,¨w¼A>ì0„B±tlî½÷^ÑäÞá>GH²f£Îq JºBÓ(@g(Ž\ˆÓžl´bém[Å’/I86,ÛA˜¬mXš'ð]¶mÃq}¤EU‡d­eY"©ëÑxŒ×eYpými°søæBHXz!²¢ÞUw‡,ˆÄ(ÖI™a5‘ÖÊSáÔó»?Žýûsî¦4’!äÍ$–â8¦ñLnIâ¸óš8s Bª ŸÔm  ‚²D.!„€£ë8bIž™•ášz=aV`¥VvTØimTê^†Ä™A VRg‘92ܬ€=•*c9­ÏóB`jÇ[D\›ÁP„4—(ËæTÔ¡WǼnÓ¶©Y‰ÊÌǤ™Öí. 8º!Tøyg”ëNˆ$ ‘Y-â&ð³eÔ¢Mƒ—–(‹Ó¶ßzýûP„€ºª ï"4kQ˜Á7”º¿j£{¡B­–eà(ó*A¥-‘”%Ê2Åj*U¢/éŸUµ#q¡6fGÙ»ÄR÷wZ‰¢©Uc.Õ×Î\ÈB@÷Òz^èCÑôf¢È}¨ý¾N=L¤5¡ÝzÚ|È¢ò,¶s&AHzý £Þ°7vªrgvŒrg_0µªÌ´ìÖÆ2ÖÅRåùôFC »ySõCdÏ}îÕa„iYâÈ7 ÄÛª5K[ÄRYÝxÖý£m¶bofVk‹Ä…Ö{‰²ê˜WýÓŒ!„P,½IrîÜ9Îä–äܹsk‚B‚›•pç2„Ú7ÎáR©ß4—'KË0oÃâ}c°È‘Ä1ÂÀƒc­ OkcÐKQ4! .”eC®ãÚ b‚•ebµ2a™Fe÷Þȯ›jŒÑ.9B%ÂTøùI®+ÁNz  BÌp>XÔ^)–ebeZXλ¶m®Y¯WíY›9mx–©5k­6Å’&3–´a_‰S‹^YÅ|a ûáfÕØ½P{¬^ÊÔi=Íøuž‡jü¤=e&–r¬jÏ”¬M±4„I6jx{º!$ÌW&ÌÕ ¦eVbIšãüÈ8„KuëÚ£"KE|Ï…µZ@ë «Íq©4w[/Û¶¾Jëï͸D™Ú„ÀÌIêD ÛçÂñÄÒZýê1h®Ó?ö ±ÔˆE1E\–Hìi+°}CzŽÊáR«Âj3Š%B¡X"äKÍæ™íb.Uÿ×emiÃP:ãídbI©“+lƒÃ°& ª64"›·þqRŸ•ˆ ÛP9Y–k¨ªŠÙ*8P,yk¡z2Üô$×UÞJx)øŠc´mª®#AVT¨ª†U$ X¯×ˆÑ¬Ëækb©,‘Ç.æš2\•èí4¹š¦#îÝ‚EÕ7ùÐûÒ½ûÆoWÙûÅR‰²L`êSÈýÐCÃE™{ÏRãQiÇE’¡¨Tu ÷ }­ŽMR1±”a5í…²ÉJÚŠ¥Jì&½ãq˜ï髲 1ê2@hj•¯(‘y»çÂñÅÒP ÈW(–ªŒ•Ë0®<½š‰¢,,e1XÏÔÜKî˜Xʆu!„Š%Š%BÞ4 Ï^.`×^«, ±P«È´F]/ϨÂÖ‚~²ÏÄÒò‘×}Ýÿóôñlx͘i o#©Ã¸g©@²îµçnë«Î&Cé­ƒ*öÌ…Q±dø£m9T,åÇKe™`. Hª6XsT­š ìëÎ%1«÷°.Íú@Š%Báš%BÞ\¼xq˜iΞՋë»ÌÕÛEûÑN£÷8©ÃGÄ’j L3$¡S­5FkX&íbÅð†ûöéÒE’ưuuÏš%ÙÒF”½´‘:|ð¶ü8×m’GÈSxq‚ÀÖë„nk€ ¡Âô#$±‡™,Ú¾Ø&–¤cˆ¥·êŠZ\*sQš"òV…€²ð+Ï€0ìi–À1´6á@7võ V÷Æ`‚°Ø=~»Ê>L,%˜ !Má„ ÒØÇ\©×Õ^ e¶€çmY’f ˆS„î¢NB²BÑöµ'L5ß$xhÄ·¶p‘åi;fÝZ.µn“…$Z/T•Ðbw_•e‰"2×’`”{ç˜XÒNÁ·›9v˜XòêµP+7:†X*®&í:Ŧ-ÇIš,¦)|«î«‰Uyž–µØò‡Në•¥X"„fÃ#äÍ• ¯—ÍJé¯ÏiÿíôŒÞ;ºMiÛ¿+ãýà ñY´kÊÞÂ÷F„kÙÅ´Ù ŠPzת 9 V\ ŒJk>Ì\61œ4ÏÕº’zaº˜»ÏÁ‡×¯A³Øþðë¶Éä.c˜<]µk<ŠÄÃlyOÁÒKê~TÖdkõöÓX^Õß¼å0œ¤-URCfO›Öž¦þ8±‹i?TOÒ`Gùã·£ì ±46oJd u-Ûšf(Ë æ¤®»fV!ŽŽ1דÔ9‚º^EìTkšP>MOðP¦Ã0<¡`6Ó „„U˜·b¹Ÿ¡Q·» w»úª¹þB²Þ åÛ=ÖIýe¯2¦Se&(o®j¼j±=oÏûê7{›Òöú|ô·0±†Y!›{ÏÖ}¡L—]»ò°·Íwmk‚B¡Xâ>K„ÜÄû,½Á9Ò4E~‚ýYŠSúá±÷ª˜=¾ñm?á3ìªz]Ï«ÃûæJÄÒIËÖõêü¦B¡XÚC$ ‘¤ <džãGõF”×eYpý¸=>‹Ca2Ø/#O¢î³"ƒï:°,{p^óÃÖm6™# Q·Aaz°- ¶ã#ݺÏFŽøBŒ¼,‘ú+HB`ºò¤y]¿®mÃv\Di¾W,õ¯W)Â0Fž'ðl –í Lòƒëß|î›S!aé…í~!E±-XVÿšk†@!ãÁF E#ã¶¿ã`¼ò$Z«K†(«cêv¥qÛ²áÇéh¿F»î»õ:i×¶«>Yë×vÜ\¸?ʶ¹P¤ƒh`€&Qˆ¨.3O"DIŽ< Úë6mó]„KBLõÄSµQkóYs"êÍ_wÕÎ>+¿ÈxUû½`8OÚyjÛð‚n|wµ}óúããZ¤Ñfý‹a"͇õë¶­Ý`h6MãA¯Ý£åmaôþÜ3¶÷esOºˆC¯šg½¾Ko«ïß4¾€ä¨hŸiž#ö›ëǶ½hïÇ v<³J”yßuªc9Ÿ·Í•]Ï«Cž%ÛžWë}“ä9"ß­æXToë»°, ^˜l<'™ ‡öÿîgë!ã?þ;F!„béXogui¸ÃºÿSi˜ULš¬•%ÂUµ[¹t?`KUTo_·6D{hËÚÐh~ØüÊ@VoøgVˆ²ÌaÏ•µLfÜdDèx:„xâhXoY÷šÓlh /Ý)–ºë5ûÇlfT[…ùžú÷ß|ƒs ?CdÍ7®93Ñp±ÉƉÖD@ˆ9’2êöŠt¨pâêXo^—¶Þ·zcí¦›íÒÌ5£;†®l¶»ñ¾ÄÎf¿n‚²ÌÛ~è˜T^ºs!óªþèöéÉ  1w«¶èòæ8ÈU¬ùι]„˜¹¾nk¨¹U{Ô…¤î›I=»ÆjWo”yí—g6в„¿Ð6ÊëÐÀím1¢GÆ5qóçv„2±«6¯ÂµðD+.v¶» yY"¶ëã´êy°µ¼1áºåþÜ7¶÷e†µ~MEw÷ˆ¥£úúOŒ<ÿ*TÃÛÓöKmý¼)ÂÁ”‡&$1vìþù¼k®ìz^í~–ìz^]Üß7êpŽÎJ0>ïÿrO]w޶ýwŒÆ !„P,;î_ˆ ¼8A^„=•*±’ÖÆ¥Wír>µc”¹E¨Ë :?u ©u¦ÖðÕŨ6.&fÔŠ ŰaÍåžÁݯíkT?rš¹ñ–xàÊ\ÈB@÷R”eZýèN­úØsi܈¥ÞßYýc,Ϭê5q¡¶FÌöú±rÕYÕ_B[ÖFJŠÕT‚rOp6Æ}Ð+¯ò‚(B@[…­a;3«~/1¢.‘… Õã¤{i¯]&â$B´¶¯Hc¬¶¡iEˆ©æn['¡-êúÇÐåJ_¬¯;]UuÊ#³2V–ÿ¸s.Tõ‘áeã^GßP!„€îDƒs ?[ó=s;ó ùƱ¬¾È«ûpßXíêãëOªvTµß_Vm²ÎŸ,ª·áÍñÎL‚t¤ûÚ¾>ÏÖÇ59 MHS³®cGW „ ?/ª1‘öåÅB©Û~H»¾ÛÝy=O¶—·>ÛïÏÝóaG_Æ/ÁP„4©÷ÊÉaN„¤ÄC±ÔýÝ{þ¥Ê2Ãj"zã±¥íõ½©®ªq*BsË8X©µ'³ñ&Õ×Ò½=ó9÷wΕϫÏ’Ï«-}ãg½ç²Ðà¥%Ê"ê='Ž3ïÿÝuÍvŒ±ûwŒÆ !„P,7î¿ò˜tÿb‚•ebµ2a™Fõ£]¿éµ§ÝY´ÒêÄê‡s(Nª·†Ò¼ÿ£X¿ý[íqž®@ ó• sµ‚i™Õ²´ùF} –ÆjŽUý¦WÖ¦XšÂ$Û†7&–º·±9mLüöú±•ñ×¼ýµúÂ(u¶z$œ™!¦ˆË‰=­ ƒ¬6Úú^²D¸Ô „/;L,-Ãía1Y# ¸Ž¥1ƒ,ÝC[ÖŒÀ<%Y]§Ù`ŒÒ8B’}oç\Ø/–ä¡Á[zº—î(åV1aÅŨ!ªÕ޹ƣ±o¬KõZоG«ÈE1²¢D‘¥ˆ¢¾çÂZ- I•ˆÉöµ}Kûšq­’•H–ebeZXÎkñå¥Hëö™q‰2µ! ™“Ðnµ–J×þ}å­‡Pm»?wχ]}¹þì*™“ ô¡±¾~ ßPÚqÞÖöf\„0™°Ü`â8x ’#‰c„ÇZAŸöúhÏ|Þ5Wv?¯¶?Kv=¯v÷M†…, fN+M­*ïxsáðþß]×]ã¿ÿwŒBÅÒ1Å’×yêÐY–k¨ªŠYíAèŒÐ¸úñœÚ(óZ/œ©ÿãÚ=Je\¬‡¬4I[ž$CQ5¨ê´z£¹C, ßÊ&0õ)äA8‡{L±¤ô3¬m[ê¿ë½2"äa²‡p,k8®ÞH×Þµ`¡@(‹Á„¦wL,e]ßl¶kÍ ‹A˜“¬ªu8‹WÒÒ¨àð ¹5܆Bd÷\8L, E‰Ü3.õ,5u3[ñ+/ÖŒÿícµ«wÞSkß­¦½0&Y©B´biKÛGçY7®™×„)Iõ½$AVT¨ª†U¡,«°Du 45¡!(iw5šP2£®ËþòÖÛ>~"–¶õåúwyïž8žXòF“:lk{Y–Ècs­>,¶{â(AÕ†biû|Þ=Wv?¯¶?KŽ/–¼­ýíërõäXsáðþ?L,ŒºÿwŒBÅÒÉÄRãYšØƒP×\Âò“6„f&$Eé…o%˜KµpjÏ‹»0¦#@™X•2«ŽõŒ*\#è/ðöL,-w^mh~޲La/°ë·¬Yb¡Ž‡sìK{Œ¶‘úo3bý¢– ¿óêá² Ã1(ç’€¤jïSµ–e‚°w¬;— Ä ñˆÑÄ÷wb©ß®!ÕµØQ6ðɺ‡2i<io­Ë BšásWZƒ»9o©JÐïœ m(MÖ…hõC&K†¿?¹C™[CØ:±Ô•³o¬võñØ=Õ…œU!£ªðÿy¬òâh ¯Û}Ñy|±Ôk®ªpÖþ¼Ê¬–+øIÑóâÊPúk_ö¶[©½]u(˜ (+¯†·íþ|nç|ØÞ—Ëà↱¼}®ŸT,mi{âa¡¯j¯j$° Š5XïY)´âFÔD« ±46Ÿ›qÙ6Wö½tØö,Ùõ¼:®Xòj±t¼¹p¥b©©k¶cüù#„B±tÂô»þ¢zó9]ºHÒ¶®nÄz‹&<¥2Ö;CL`fzHÒ«YõVTw“r¼ú­á¥(jãAÒ qŠÐ]ToPÕÕž5K•¡¡Ìðãç0BšÂ ¤±¹2¾~áJÄÒXý·-¼Ÿ-mDÙ…ÊX¬ F:˜ÔF×6ÏT¸š´Éšcš·ÄÒd‰0Má[õâî‰Uyžêuºå#ö­ê!bÉ7¡À d½q«J'µ‘¨Á“Ö(š‰<6Û:Eio5«Úí$;çBQŸ'ÏVˆâfSžq€XŒyŽ"¶ñÇêà 1ÜóÖÞPúkxz†í–±ÚÕÇë×oî™é#MB,&„PðÔÓËÚv‘å)[ošù•‰¥ö……Paú’ØÃLCAU È.qÉþv÷ëÔÅÕ‹‚ýå ^l¹?Ó=óa[_6¡VÒˆ±¼Í³ôÖžXzëÈ}½)–ÆÛÞ<³”¹‰(My«j^nìùS÷­j L³^ß ^¶1Ÿ‡‰!vÏ•ýbiüY²ûyõÒŽ¾Ù.–Ž7ïÿ½uÝ1þ‡üŽB¡X:X,)†?øÌš«ƒ,BÄ€•‰ YhË`ðöØœ©ƒ“&!Áf91ær—Â9rŒAxޤÎŒ÷ÃMd3˜¹Í–feÈ÷²ÅY#›=ö¯±ù·20>Êz‚‡ñúÊH»Lps7E»˜Ê½zIZ»X}”ÚsµžÕ+´õAV-eºìÖ åae|6ßM´Ö«²Ù®5LâTk!Ú„3Ì5 B®¼rEâ ë¯Ìà׋¦#ÇÔIÓíÚÈÙ5 8º¶^Ô‰%eÞW¯ë¨©û‚ðYB!„P,‘›ÙÀÑ5ª6¯÷ aŸ\ òÈ„"϶®Ù „ÏB!„b‰B!„B(–!„B!„b‰B!„B(–¹×PäW-Û¹Æk¼Ì4ØPä9Ó1B!äÍ*– ¬fŸÃmï0qÛ]§7øð·²÷ñ™s°£ËW½nùÜöÏTûüõ—pÛ»Ïàè*—áÿõWFÛ}Û]_‚ùUÜïïñ\¾ˆÛï:~ûê‹%ÿ³ŸÃmï¨ÄRøå' üŸç®¾Xú¬5Þö¿‘¯Âx÷iÜþÉ‹(ËWaþŸ_ƒ_þÑÎëegÏà¶»>wÈ%_— „ެ,‘_° Þñ^ùõ¬CCª×ó‘2#ÝñÈ=HB`î]{±”û„˜-mx^xŒ}r"L„€¶ 9^„BÅÒ›O,=òOã¶{ü­¡4Å+‚ðGH.wŸ%ßÿ‚è$gÜ~×iL¿pÉËE{ÍàÌX_ ážíyÅOFò˯ÀûzëëþpmãÖK?€ýÕnøÜÏZ­X*^y.U^®ü‡/á ä?¬ŽµÏ\Z3Â_Ç…³ÏÃúj/ú ò—_BxéòNA6ÞöJ,ÉŸ¼ˆ²,‘^z É+¯wýòòKp¿þlÕŽºíbé•W„?@üÊëu½/#>{ÖSýÙ¶?àÚ6lÇE”æk^¢ŽmÁ²„ÉÚÆ¡E†Às`Y6¼ ©ŽÏb˜3BLàF)Ê2G|!´5<Ø–Ûé ™I"ÍsÄ~sÍxO˜]ß­Žuý¸»Ž¿‚,´…‹d­=y!‡õ)²A·†ú®úŽ”ÈE#“ê¼"EÆHã¶eÃÓQ캯×û³H#¸¶ Ëv®Õ; ë:¹þp£ËÑ>¨ëDƒ½n’(DT—™'¢$Gžíu›¶¦þ ’˜®¼þkú!É2DõØûQ:èß(ɪ1t<$ùZýû}ZdðVS!Ãôãº]EÛGŽìº•wi‚ˆ?„BÅÒ›S,ÙºqaUhÚìвDz書í®Óxû'ÏãÃïèB×ÞþÉ‹(_¹„é;†!m·ÿ—YY"ûö7GCÞšÝåÃ/ÿÝæ÷už÷ðiÜö<‰´,á}òs›ÇÝó: è'xäO7˸ýáç¯P,½ ýÿ8ÛêëÄOm¶åg^éÄÒååËñvî˯Ãûä0ÔqÝšÓ6\­aáUÆoâßÍí¨:7ó ­}'ÏlœÑ•î3IÇóž!ž8*Q–Viíš*œ¸@YfÐ%±Qžjxãs(q7ÊÚiîCé&éƒ9[Ux^3þeYšˆ:¤kOý„€˜»íyž.Aˆ9Ò²DV·³«‹¹&ìbèÊfûuˆ`ìèßn‚²ÌaN×ë4©›»ç±ÔÖ¯=ݾWUbW^)'á!„B±ô&KwÆíïøn‡ÙrÛ]__{HÂ/|·Ýu~á+ð§~eø¾ò<ÞÞ®mzöCÕyîËõ›ñoû¸í®Ó˜~=«…Äi¼ýãauîŸÇÝȺ| wßu·?t®úî勸ïˆó?ó9ÜöÕš%ÿ³_ªÖS=õʲą¯£+g/ãÂWÿ®.•ᛜ©Ê¿³ömŠ¥êZo¿çs-·ßõ9|:¼¼!–Ú¿‹àî»Nã¶™_ ´ ¾ç4n{Ç\<{·Ýõ%¸ß¿ˆûî:ÛîújÛ‡]½„äû?Z{SŸV†ïÔj×Ì¥Ú@.BhB@ššµØ(àè „PáçE-0ØQ^¯R!„€ð BªÖŸù„x¼£±U ³™YÖEcì«Käe†…R jCË «‰h¯³îÝ0µFÈTåGv%&f„2s! ÝñîÔ¾¨Å•¶ ÷ÖχâÁ7dɨDyN&ÏLÄI„hmSÎF¼4â¨,BL…€4wÛ: mQm ]’‹õu§µÉ#B(ËÜÙU}dx=±Ô¯¿oTã¥;Ñà\ÃÏv÷_;N¼´ò–Y3B(ðòþuC$Qˆó¯Ev`*Ub²hE¦ 7íÆB]UÇ¡¹gÍY Ct?„BÅÒ›Q,}~ò >üÉo¶|ð“ÿˆ Ewܧggä+]˜Ù勸³K—ñ‰{*°úê9¬¾pÖ—ÏàíwÆÛ~¾K«ï¿ÞÚÜS­ ª¾3aÿ°ïiùn{Ç7GÄÒçÚÏ«:\jëÐ|—öŒùOÜS ²­k–>‡éÃßÀküø7`¿Ø.–.…¸½g­÷íå ~x¹mc… ë‡ë^¬onñàåXÕoòemŠ¥é L*ôJÌ M X–‰•ia9¯ aï9rmè÷ÂÁ¢¨ ¥ê‹ˆ¾Xò ¹õÄt¡TZehg1ï÷ĈÒ^g}½ÊtÃëQy<¤¹‡2÷ l5öK83 BL—%» s³Cë·[,-Ã|ûÚ²$FpKcY(º‡2¶ ­‰‚<%Y]§Ù ‘AGH²ïíìƒýbIzÝj¡¢{éžþ«®£,ƒî³ÔT¿~]OW „„ùÊ„¹ZÁ´ÌJ,IUr†A=[¯ „ÉÌ€åHw®u«ê"ÍþPB!K·Öš¥ÖXýëÊ32#—/vž¥âGm^穱p÷Ÿ~ ~áµ°ªµ&¹D-d²³ß\û®D~ö›¸í®mb©6Ø«Cð×n»ë±ôé?m’4\Y^ówNhºôú–§Ûì‚oøÙÑ„ã}œÀÔ§¡o.2¯ Á“ Ë2dY‚¬¨PU «àâ†p´o‹X  „²´»1–Ý=bd˜€ €&&f8ôx4ççÞÏH‰~&–z×í÷ÙÎþ«™Þ÷öÔ"gÞŠ¥îº§©šC2dI†¢jPÕ)ü¬Ü¨g»˜ký°=«`»gI—„bì˜ß„B¡Xz“Š¥¢ö¦Ü~Oµ^èî&…v-T>q¶è‹»°¶=b©9_Rµ*ë››öÖñ쩟á÷Ö,­‹¥¾8R][eÑ!ëÊĆ$fNÚ[[5ƒføÜÇ¡!èÍ­¥*A[<¾³Úð¶¬ë6Äò@±døùvoNoœ/ä2Ì7®ëUèfÐO4á™XZ~†×ë·"ñ°ÐWµ­@XPÅšs=$p‡h'„BÅÒM+–šÔá|ùÌ«/°¾¡,3|ð§qÛ]‡ e ÷áÏu‰^©„Ê÷á_*ªýî:©ù<’—3ØŸüÒÚš¥q±T–¯Ôe|Nô .œñq{/Ááb©¸Vž?ý&ܳÏãuèàW –nÛëº~¸®«½‚$ ë5LçðÒ M¿}A±¯¬s! ¤)œ0Aû˜+MR„Z¦!‰=ÌdѶÁB­×÷øH“‹‰!øyz¥båF±Ôxt¤ÉašÂ·êþ ň¾],5eÌLIa5«èn‚2Û'–J„«I›,¡¹‡ÔOH8aß®=oòabÉ7¡À d½ú*º‹²Lê¤ ì0iE‚ÐLä±ÙÖ)Jx«Y›Ô`Wõyòl…(ë …Šq€XªûO™-àÇù–5K 'D9˜ˆ.¬nýºET‰nI3Ä)BwIuµ)–êc•¹‰(MyUVCeáWk£ææ…ƒù;JOÀB!„béM!–>ý§§·lÌzoøbµ9ì]§ñHãõiÂíîù’ò2Ìÿò¹6[^Y^†õð—׸ﳪMQC¿ µ{eèÕj¼>Å¥ ø½LzwÏÌ^‚«Ý”Öÿ¬5ÌÞW¯›j¼RYx®/wÆÛg_ÅwíY³tÏn±¤|æÒÚß%Š^Äôž~Ö¾'à¿¼ÙÆ&“àŸ½¸§¬Y`V†y/û›UoFZ$fƒ n –^ÒÍV½†© —Z¸Uêê¸N „Œ¯~s¸)mh땱\£L—m C¾ÁBÝ*–Ê2…9ë—/µ‰Ê܇ºG,•‰Õ+=µµ~%RÙ W”1*­Xª¼+ÊV±T$´~9u†¹&AÈU‹"ñ0•{ß+3øiunäƒ:iº]÷ÉŽ>( 8ºÖËt§@ˆ%eÞW¯SªÖMe0'òxV¿V,õ3NêŒ#×­ëßó”Ô9‚¬æØô[o9ÌÎ(i ÄE‰²<‚ñ6·öÄtQ{?¹é0!„B±ÄŽ3@/(Šþ¿/#}ù'Ã}h${ù'H_yýDõÈ£ÿá¡ì- ө®ÅU¼f,M‘fãFg–¦HÓltÃÐ"˦éÞµgÃŒt9Ò4E–_yªò³ã•ß ë§?¬~õwÅÉû9Ëv$HS¤cßï¨Ó®>(òj|Š“ômžî¯ÁÚ'ïûâP¡RÕ?ÝÑöãÎg&¯ç"„BÅÒÍÎ6¯¹öÜÒ7Tb®Ö ” íc“Á†ûM½!¤îFAB!„P,‘”øÛç0} o¿ÇÂxè›p¢Ÿ°_nP±¤k Tm^ïçÄ>99lc†…¿¡õW(sûD3B!„P,B!„BÅ!„B!„P,B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„Byƒøÿ£“«NdIEND®B`‚flickcurl-1.25/docs/html/flickcurl-section-group.html0000644000175000017500000014503512210726306017703 00000000000000 Groups

Groups

Groups — Groups of users.

Synopsis

                    flickcurl_group;
void                flickcurl_free_group                (flickcurl_group *group);
void                flickcurl_free_groups               (flickcurl_group **groups_object);
flickcurl_category * flickcurl_groups_browse            (flickcurl *fc,
                                                         int cat_id);
flickcurl_group *   flickcurl_groups_getInfo            (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *lang);
int                 flickcurl_groups_join               (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *accept_rules);
int                 flickcurl_groups_joinRequest        (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *message,
                                                         const char *accept_rules);
int                 flickcurl_groups_leave              (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *delete_photos);
                    flickcurl_member;
void                flickcurl_free_member               (flickcurl_member *member_object);
void                flickcurl_free_members              (flickcurl_member **members_object);
flickcurl_member ** flickcurl_groups_members_getList    (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *membertypes,
                                                         int per_page,
                                                         int page);
int                 flickcurl_groups_pools_add          (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *group_id);
flickcurl_context ** flickcurl_groups_pools_getContext  (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *group_id);
flickcurl_group **  flickcurl_groups_pools_getGroups    (flickcurl *fc,
                                                         int page,
                                                         int per_page);
flickcurl_photo **  flickcurl_groups_pools_getPhotos    (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *tags,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_groups_pools_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *tags,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);
int                 flickcurl_groups_pools_remove       (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *group_id);
flickcurl_group **  flickcurl_groups_search             (flickcurl *fc,
                                                         const char *text,
                                                         int per_page,
                                                         int page);

Description

Groups of users.

Details

flickcurl_group

typedef struct {
  char* nsid;
  char* name;
  char* description;
  char* lang;
  int is_admin;
  int is_pool_moderated;
  int is_eighteenplus;
  int privacy;
  int photos;
  int iconserver;
  int members;
  int throttle_count;
  char* throttle_mode;
  int throttle_remaining;
  int iconfarm;
  int is_moderator;
  int is_member;
  char* rules;
  int pool_count;
  int topic_count;
  int photos_ok;
  int videos_ok;
  int images_ok;
  int screens_ok;
  int art_ok;
  int safe_ok;
  int moderate_ok;
  int restricted_ok;
  int has_geo;
} flickcurl_group;

A group.

char *nsid;

NSID

char *name;

Group Name

char *description;

Description

char *lang;

Language

int is_admin;

user is a group admin

int is_pool_moderated;

is the pool moderated

int is_eighteenplus;

NOT USED (will always be 0)

int privacy;

privacy level

int photos;

photos in group count

int iconserver;

icon server ID

int members;

member count

int throttle_count;

throttle count

char *throttle_mode;

throttle mode (day, ...)

int throttle_remaining;

throttle remaining

int iconfarm;

icon farm ID

int is_moderator;

user is a moderator

int is_member;

user is a member

char *rules;

group rules

int pool_count;

pool count

int topic_count;

topic count

int photos_ok;

photos are ok

int videos_ok;

videos are ok

int images_ok;

images are ok

int screens_ok;

screens are ok

int art_ok;

art is ok

int safe_ok;

safe content is ok

int moderate_ok;

moderate content is ok

int restricted_ok;

restricted content is ok

int has_geo;

has geolocation

flickcurl_free_group ()

void                flickcurl_free_group                (flickcurl_group *group);

Destructor for group object

group :

group object

flickcurl_free_groups ()

void                flickcurl_free_groups               (flickcurl_group **groups_object);

Destructor for array of group object

groups_object :

group object array

flickcurl_groups_browse ()

flickcurl_category * flickcurl_groups_browse            (flickcurl *fc,
                                                         int cat_id);

Browse the group category tree, finding groups and sub-categories.

Implements flickr.groups.browse (0.13)

fc :

flickcurl context

cat_id :

The category id to fetch a list of groups and sub-categories for. If not specified, it defaults to zero, the root of the category tree. (or NULL)

Returns :

non-0 on failure

flickcurl_groups_getInfo ()

flickcurl_group *   flickcurl_groups_getInfo            (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *lang);

Get information about a group.

Implements flickr.groups.getInfo (0.13)

fc :

flickcurl context

group_id :

The NSID of the group to fetch information for.

lang :

The language of the group name and description to fetch. If the language is not found, the primary language of the group will be returned (or NULL)

Returns :

non-0 on failure

flickcurl_groups_join ()

int                 flickcurl_groups_join               (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *accept_rules);

Join a public group as a member.

Implements flickr.groups.join (1.25)

fc :

flickcurl context

group_id :

The NSID of the Group in question

accept_rules :

If the group has rules, they must be displayed to the user prior to joining. Passing a true value for this argument specifies that the application has displayed the group rules to the user, and that the user has agreed to them. (See flickr.groups.getInfo). Probably takes a '1' or '0' value (or NULL)

Returns :

non-0 on failure

flickcurl_groups_joinRequest ()

int                 flickcurl_groups_joinRequest        (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *message,
                                                         const char *accept_rules);

Request to join a group that is invitation-only.

Implements flickr.groups.joinRequest (1.25)

fc :

flickcurl context

group_id :

The NSID of the group to request joining.

message :

Message to the administrators.

accept_rules :

If the group has rules, they must be displayed to the user prior to joining. Passing a true value for this argument specifies that the application has displayed the group rules to the user, and that the user has agreed to them. (See flickr.groups.getInfo). Probably takes a '1' or '0' value.

Returns :

non-0 on failure

flickcurl_groups_leave ()

int                 flickcurl_groups_leave              (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *delete_photos);

Leave a group.

If the user is the only administrator left, and there are other members, the oldest member will be promoted to administrator.

If the user is the last person in the group, the group will be deleted.

Implements flickr.groups.leave (1.25)

fc :

flickcurl context

group_id :

The NSID of the Group to leave

delete_photos :

Delete all photos by this user from the group. Probably takes a '1' or '0' value (or NULL)

Returns :

non-0 on failure

flickcurl_member

typedef struct {
  char *nsid;
  char *username;
  int iconserver;
  int iconfarm;
  int member_type;
} flickcurl_member;

Member in a group

char *nsid;

NSID

char *username;

User name

int iconserver;

icon server

int iconfarm;

icon farm

int member_type;

member type - 1: narwhal, 2: member, 3: moderator 4: admin

flickcurl_free_member ()

void                flickcurl_free_member               (flickcurl_member *member_object);

Destructor for member object

member_object :

member object

flickcurl_free_members ()

void                flickcurl_free_members              (flickcurl_member **members_object);

Destructor for array of member object

members_object :

member object array

flickcurl_groups_members_getList ()

flickcurl_member ** flickcurl_groups_members_getList    (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *membertypes,
                                                         int per_page,
                                                         int page);

Get a list of the members of a group.

The call must be signed on behalf of a Flickr member, and the ability to see the group membership will be determined by the Flickr member's group privileges.

Implements flickr.groups.members.getList (1.9) as announced as an experimental API on 2009-02-24: http://tech.groups.yahoo.com/group/yws-flickr/message/4749

fc :

flickcurl context

group_id :

Return a list of members for this group. The group must be viewable by the Flickr member on whose behalf the API call is made.

membertypes :

Comma separated list of member types: 2: member, 3: moderator 4: admin. By default returns all types. (Returning super rare member type "1: narwhal" isn't supported by this API method) (or NULL)

per_page :

Number of members to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1 (or < 0)

Returns :

list of members or NULL on failure

flickcurl_groups_pools_add ()

int                 flickcurl_groups_pools_add          (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *group_id);

Add a photo to a group's pool.

Implements flickr.groups.pools.add (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to add to the group pool.

group_id :

The NSID of the group who's pool the photo is to be added to.

Returns :

non-0 on failure

flickcurl_groups_pools_getContext ()

flickcurl_context ** flickcurl_groups_pools_getContext  (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *group_id);

Get next and previous photos for a photo in a group pool.

Implements flickr.groups.pools.getContext (0.7)

fc :

flickcurl context

photo_id :

photo ID

group_id :

group ID

Returns :

an array of size 3 [prev, next, NULL] flickcurl_context* or NULL on error

flickcurl_groups_pools_getGroups ()

flickcurl_group **  flickcurl_groups_pools_getGroups    (flickcurl *fc,
                                                         int page,
                                                         int per_page);

Returns a list of groups to which you can add photos.

Implements flickr.groups.pools.getGroups (0.12)

fc :

flickcurl context

page :

The page of results to return (default 1)

per_page :

Number of groups to return per page (default 400, max 400)

Returns :

non-0 on failure

flickcurl_groups_pools_getPhotos ()

flickcurl_photo **  flickcurl_groups_pools_getPhotos    (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *tags,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of pool photos for a given group.

See flickcurl_groups_pools_getPhotos_params() for details of the fields.

Implements flickr.groups.pools.getPhotos (0.12)

fc :

flickcurl context

group_id :

The id of the group who's pool you which to get the photo list for.

tags :

A tag to filter the pool with. At the moment only one tag at a time is supported. (or NULL)

user_id :

The nsid of a user (or NULL). If given, retrieves only photos that the user has contributed to the group pool.

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

per_page :

Number of photos to return per page (default 100, max 500)

page :

The page of results to return (default 1)

Returns :

non-0 on failure

flickcurl_groups_pools_getPhotos_params ()

flickcurl_photos_list * flickcurl_groups_pools_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *group_id,
                                                         const char *tags,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of pool photos for a given group.

Currently supported extra fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

group_id :

The id of the group who's pool you which to get the photo list for.

tags :

A tag to filter the pool with. At the moment only one tag at a time is supported. (or NULL)

user_id :

The nsid of a user (or NULL). If given, retrieves only photos that the user has contributed to the group pool.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_groups_pools_remove ()

int                 flickcurl_groups_pools_remove       (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *group_id);

Remove a photo from a group pool.

Implements flickr.groups.pools.remove (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to remove from the group pool.

group_id :

The NSID of the group who's pool the photo is to removed from.

Returns :

non-0 on failure

flickcurl_groups_search ()

flickcurl_group **  flickcurl_groups_search             (flickcurl *fc,
                                                         const char *text,
                                                         int per_page,
                                                         int page);

Search for groups. 18+ groups will only be returned for authenticated calls where the authenticated user is over 18.

Implements flickr.groups.search (0.13)

fc :

flickcurl context

text :

The text to search for.

per_page :

Number of groups to return per page, default 100, max 500 (or NULL)

page :

The page of results to return, default 1 (or NULL)

Returns :

non-0 on failure
flickcurl-1.25/docs/html/flickcurl-section-person.html0000644000175000017500000003164012210726306020051 00000000000000 Person class.

Person class.

Person class. — Person class.

Description

Person class.

Details

flickcurl_free_person ()

void                flickcurl_free_person               (flickcurl_person *person);

Destructor for person object

person :

person object

flickcurl_free_persons ()

void                flickcurl_free_persons              (flickcurl_person **persons);

Destructor for array of person object

persons :

person object array

flickcurl_get_person_field_label ()

const char *        flickcurl_get_person_field_label    (flickcurl_person_field_type field);

Get label for person field

field :

field enum

Returns :

label string or NULL if none valid

flickcurl_person

typedef struct {
  char *nsid;

  flickcurl_person_field fields[PERSON_FIELD_LAST + 1];
} flickcurl_person;

A user.

char *nsid;

user NSID

flickcurl_person_field fields[PERSON_FIELD_LAST + 1];

person fields

flickcurl_person_field

typedef struct {
  char* string;
  flickcurl_person_field_type integer;
  flickcurl_field_value_type type;
} flickcurl_person_field;

Field of a person structure

char *string;

string field value

flickcurl_person_field_type integer;

integer field value

flickcurl_field_value_type type;

field type

enum flickcurl_person_field_type

typedef enum {
  PERSON_FIELD_none,
  PERSON_FIELD_isadmin,               /* boolean */
  PERSON_FIELD_ispro,                 /* boolean */
  PERSON_FIELD_iconserver,            /* integer */
  PERSON_FIELD_iconfarm,              /* integer - not in API docs */
  PERSON_FIELD_username,              /* string */
  PERSON_FIELD_realname,              /* string */
  PERSON_FIELD_mbox_sha1sum,          /* string */
  PERSON_FIELD_location,              /* string */
  PERSON_FIELD_photosurl,             /* string */
  PERSON_FIELD_profileurl,            /* string */
  PERSON_FIELD_mobileurl,             /* string - not in API docs */
  PERSON_FIELD_photos_firstdate,      /* dateTime */
  PERSON_FIELD_photos_firstdatetaken, /* dateTime */
  PERSON_FIELD_photos_count,          /* integer */
  PERSON_FIELD_photos_views,          /* integer - not in API docs */
  PERSON_FIELD_favedate,              /* dateTime - flickr.photos.getFavorites() */
  PERSON_FIELD_FIRST = PERSON_FIELD_isadmin,
  PERSON_FIELD_LAST = PERSON_FIELD_favedate
} flickcurl_person_field_type;

Fields of a flickcurl_person*

PERSON_FIELD_none

internal

PERSON_FIELD_isadmin

is admin field boolean

PERSON_FIELD_ispro

is pro field boolean

PERSON_FIELD_iconserver

icon server integer

PERSON_FIELD_iconfarm

icon farm integer

PERSON_FIELD_username

username

PERSON_FIELD_realname

real name

PERSON_FIELD_mbox_sha1sum

Email SHA1 sum

PERSON_FIELD_location

location

PERSON_FIELD_photosurl

photos URL

PERSON_FIELD_profileurl

profile URL

PERSON_FIELD_mobileurl

mobile URL

PERSON_FIELD_photos_firstdate

photos first date

PERSON_FIELD_photos_firstdatetaken

photos first date taken

PERSON_FIELD_photos_count

photos count

PERSON_FIELD_photos_views

photos views

PERSON_FIELD_favedate

favorite date

PERSON_FIELD_FIRST

internal offset to first in enum list

PERSON_FIELD_LAST

internal offset to last in enum list
flickcurl-1.25/docs/html/flickcurl-section-contact.html0000644000175000017500000004671612210726306020210 00000000000000 Contacts

Contacts

Contacts — A contact of a user.

Synopsis

                    flickcurl_contact;
flickcurl_contact ** flickcurl_contacts_getList         (flickcurl *fc,
                                                         const char *filter,
                                                         int page,
                                                         int per_page);
flickcurl_contact ** flickcurl_contacts_getListRecentlyUploaded
                                                        (flickcurl *fc,
                                                         int date_lastupload,
                                                         const char *filter);
flickcurl_contact ** flickcurl_contacts_getPublicList   (flickcurl *fc,
                                                         const char *user_id,
                                                         int page,
                                                         int per_page);
flickcurl_contact ** flickcurl_contacts_getTaggingSuggestions
                                                        (flickcurl *fc,
                                                         const char *include_self,
                                                         const char *include_address_book,
                                                         int page,
                                                         int per_page);
void                flickcurl_free_contact              (flickcurl_contact *contact_object);
void                flickcurl_free_contacts             (flickcurl_contact **contacts_object);

Description

A contact of a user.

Details

flickcurl_contact

typedef struct {
  char *nsid;
  char *username;
  int iconserver;
  char *realname;
  int is_friend;
  int is_family;
  int ignored;
  int uploaded;
} flickcurl_contact;

A contact.

char *nsid;

NSID

char *username;

user name

int iconserver;

icon server

char *realname;

real name

int is_friend;

is friend boolean

int is_family;

is family boolean

int ignored;

ignored

int uploaded;

count of number of photos uploaded (for flickcurl_contacts_getListRecentlyUploaded() )

flickcurl_contacts_getList ()

flickcurl_contact ** flickcurl_contacts_getList         (flickcurl *fc,
                                                         const char *filter,
                                                         int page,
                                                         int per_page);

Get a list of contacts for the calling user.

Implements flickr.contacts.getList (0.11)

fc :

flickcurl context

filter :

An optional filter of the results. The following values are valid: friends, family, both or neither (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. (or NULL)

Returns :

NULL on failure

flickcurl_contacts_getListRecentlyUploaded ()

flickcurl_contact ** flickcurl_contacts_getListRecentlyUploaded
                                                        (flickcurl *fc,
                                                         int date_lastupload,
                                                         const char *filter);

Return a list of contacts for a user who have recently uploaded photos along with the total count of photos uploaded.

This API added 2009-01-14 as announced in http://tech.groups.yahoo.com/group/yws-flickr/message/4668

Implements flickr.contacts.getListRecentlyUploaded (1.8)

fc :

flickcurl context

date_lastupload :

Limits the results to contacts that have uploaded photos since this date (in the form of a Unix timestamp). The default, and maximum, offset is 1 hour. (or < 0)

filter :

Limit the result set to all contacts or only those who are friends or family. Valid options are: ff: friends and family, all: all your contacts. Default value is "all". (or NULL)

Returns :

NULL on failure

flickcurl_contacts_getPublicList ()

flickcurl_contact ** flickcurl_contacts_getPublicList   (flickcurl *fc,
                                                         const char *user_id,
                                                         int page,
                                                         int per_page);

Get the contact list for a user.

Implements flickr.contacts.getPublicList (0.11)

fc :

flickcurl context

user_id :

The NSID of the user to fetch the contact list for.

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. (or NULL)

Returns :

list of contacts or NULL on failure

flickcurl_contacts_getTaggingSuggestions ()

flickcurl_contact ** flickcurl_contacts_getTaggingSuggestions
                                                        (flickcurl *fc,
                                                         const char *include_self,
                                                         const char *include_address_book,
                                                         int page,
                                                         int per_page);

Get suggestions for tagging people in photos based on the calling user's contacts.

Implements flickr.contacts.getTaggingSuggestions (1.25)

NOTE: Parameter order is page, per_page like all other flickr.contacts.* calls, NOT per_page, page like in the API docs.

fc :

flickcurl context

include_self :

Return calling user in the list of suggestions. Default: true. (or NULL)

include_address_book :

Include suggestions from the user's address book. Default: false (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

per_page :

Number of contacts to return per page. If this argument is omitted, all contacts will be returned. (or < 0)

Returns :

list of contacts or NULL on failure

flickcurl_free_contact ()

void                flickcurl_free_contact              (flickcurl_contact *contact_object);

Destructor for contact object

contact_object :

contact object

flickcurl_free_contacts ()

void                flickcurl_free_contacts             (flickcurl_contact **contacts_object);

Destructor for array of contact object

contacts_object :

contact object array
flickcurl-1.25/docs/html/flickcurl-section-config.html0000644000175000017500000002303612210726306020010 00000000000000 Config

Config

Config — Configuration files

Synopsis

int                 flickcurl_config_read_ini           (flickcurl *fc,
                                                         const char *filename,
                                                         const char *section,
                                                         void *user_data,
                                                         set_config_var_handler handler);
void                flickcurl_config_var_handler        (void *userdata,
                                                         const char *key,
                                                         const char *value);
int                 flickcurl_config_write_ini          (flickcurl *fc,
                                                         const char *filename,
                                                         const char *section);

Description

Configuration files

Details

flickcurl_config_read_ini ()

int                 flickcurl_config_read_ini           (flickcurl *fc,
                                                         const char *filename,
                                                         const char *section,
                                                         void *user_data,
                                                         set_config_var_handler handler);

Read flickcurl library configuration in .INI format from a filename

fc :

flickcurl config

filename :

filename

section :

section name to use

user_data :

user data pointer for handler (usually the fc )

handler :

config variable handler function (usually flickcurl_config_var_handler() )

Returns :

non-0 on failure

flickcurl_config_var_handler ()

void                flickcurl_config_var_handler        (void *userdata,
                                                         const char *key,
                                                         const char *value);

Standard handler for flickcurl_config_read_ini()

userdata :

user data pointing to flickcurl object

key :

var key

value :

var value

flickcurl_config_write_ini ()

int                 flickcurl_config_write_ini          (flickcurl *fc,
                                                         const char *filename,
                                                         const char *section);

Write flickcurl library configuration in INI file format to the given file

fc :

flickcurl object

filename :

filename

section :

section name to use

Returns :

non-0 on failure
flickcurl-1.25/docs/html/indexes.html0000644000175000017500000020510212210726306014560 00000000000000 Index

Index

F

flickcurl, flickcurl
flickcurl_activity, flickcurl_activity
flickcurl_activity_event, flickcurl_activity_event
flickcurl_activity_userComments, flickcurl_activity_userComments ()
flickcurl_activity_userPhotos, flickcurl_activity_userPhotos ()
flickcurl_arg, flickcurl_arg
flickcurl_array_free, flickcurl_array_free ()
flickcurl_array_join, flickcurl_array_join ()
flickcurl_array_split, flickcurl_array_split ()
flickcurl_auth_checkToken, flickcurl_auth_checkToken ()
flickcurl_auth_getFrob, flickcurl_auth_getFrob ()
flickcurl_auth_getFullToken, flickcurl_auth_getFullToken ()
flickcurl_auth_getToken, flickcurl_auth_getToken ()
flickcurl_auth_oauth_getAccessToken, flickcurl_auth_oauth_getAccessToken ()
flickcurl_blog, flickcurl_blog
flickcurl_blogs_getList, flickcurl_blogs_getList ()
flickcurl_blogs_getServices, flickcurl_blogs_getServices ()
flickcurl_blogs_postPhoto, flickcurl_blogs_postPhoto ()
flickcurl_blog_service, flickcurl_blog_service
flickcurl_category, flickcurl_category
flickcurl_collection, flickcurl_collection
flickcurl_collections_getInfo, flickcurl_collections_getInfo ()
flickcurl_collections_getTree, flickcurl_collections_getTree ()
flickcurl_comment, flickcurl_comment
flickcurl_commons_getInstitutions, flickcurl_commons_getInstitutions ()
flickcurl_config_read_ini, flickcurl_config_read_ini ()
flickcurl_config_var_handler, flickcurl_config_var_handler ()
flickcurl_config_write_ini, flickcurl_config_write_ini ()
flickcurl_contact, flickcurl_contact
flickcurl_contacts_getList, flickcurl_contacts_getList ()
flickcurl_contacts_getListRecentlyUploaded, flickcurl_contacts_getListRecentlyUploaded ()
flickcurl_contacts_getPublicList, flickcurl_contacts_getPublicList ()
flickcurl_contacts_getTaggingSuggestions, flickcurl_contacts_getTaggingSuggestions ()
flickcurl_context, flickcurl_context
flickcurl_context_type, enum flickcurl_context_type
flickcurl_copyright_string, flickcurl_copyright_string
flickcurl_curl_setopt_handler, flickcurl_curl_setopt_handler ()
FLICKCURL_DEPRECATED, FLICKCURL_DEPRECATED
flickcurl_exif, flickcurl_exif
flickcurl_favorites_add, flickcurl_favorites_add ()
flickcurl_favorites_getContext, flickcurl_favorites_getContext ()
flickcurl_favorites_getList, flickcurl_favorites_getList ()
flickcurl_favorites_getList_params, flickcurl_favorites_getList_params ()
flickcurl_favorites_getPublicList, flickcurl_favorites_getPublicList ()
flickcurl_favorites_getPublicList_params, flickcurl_favorites_getPublicList_params ()
flickcurl_favorites_remove, flickcurl_favorites_remove ()
flickcurl_field_value_type, enum flickcurl_field_value_type
flickcurl_finish, flickcurl_finish ()
flickcurl_flickr_oauth_access_token_uri, flickcurl_flickr_oauth_access_token_uri
flickcurl_flickr_oauth_authorize_uri, flickcurl_flickr_oauth_authorize_uri
flickcurl_flickr_oauth_request_token_uri, flickcurl_flickr_oauth_request_token_uri
flickcurl_flickr_replace_service_uri, flickcurl_flickr_replace_service_uri
flickcurl_flickr_service_uri, flickcurl_flickr_service_uri
flickcurl_flickr_upload_service_uri, flickcurl_flickr_upload_service_uri
flickcurl_free, flickcurl_free ()
flickcurl_free_activities, flickcurl_free_activities ()
flickcurl_free_blogs, flickcurl_free_blogs ()
flickcurl_free_blog_services, flickcurl_free_blog_services ()
flickcurl_free_categories, flickcurl_free_categories ()
flickcurl_free_category, flickcurl_free_category ()
flickcurl_free_collection, flickcurl_free_collection ()
flickcurl_free_collections, flickcurl_free_collections ()
flickcurl_free_comment, flickcurl_free_comment ()
flickcurl_free_comments, flickcurl_free_comments ()
flickcurl_free_contact, flickcurl_free_contact ()
flickcurl_free_contacts, flickcurl_free_contacts ()
flickcurl_free_context, flickcurl_free_context ()
flickcurl_free_contexts, flickcurl_free_contexts ()
flickcurl_free_exif, flickcurl_free_exif ()
flickcurl_free_exifs, flickcurl_free_exifs ()
flickcurl_free_galleries, flickcurl_free_galleries ()
flickcurl_free_gallery, flickcurl_free_gallery ()
flickcurl_free_group, flickcurl_free_group ()
flickcurl_free_groups, flickcurl_free_groups ()
flickcurl_free_institution, flickcurl_free_institution ()
flickcurl_free_institutions, flickcurl_free_institutions ()
flickcurl_free_location, flickcurl_free_location ()
flickcurl_free_member, flickcurl_free_member ()
flickcurl_free_members, flickcurl_free_members ()
flickcurl_free_method, flickcurl_free_method ()
flickcurl_free_perms, flickcurl_free_perms ()
flickcurl_free_person, flickcurl_free_person ()
flickcurl_free_persons, flickcurl_free_persons ()
flickcurl_free_photo, flickcurl_free_photo ()
flickcurl_free_photos, flickcurl_free_photos ()
flickcurl_free_photoset, flickcurl_free_photoset ()
flickcurl_free_photosets, flickcurl_free_photosets ()
flickcurl_free_photos_list, flickcurl_free_photos_list ()
flickcurl_free_place, flickcurl_free_place ()
flickcurl_free_places, flickcurl_free_places ()
flickcurl_free_place_type_infos, flickcurl_free_place_type_infos ()
flickcurl_free_serializer, flickcurl_free_serializer ()
flickcurl_free_size, flickcurl_free_size ()
flickcurl_free_sizes, flickcurl_free_sizes ()
flickcurl_free_stat, flickcurl_free_stat ()
flickcurl_free_stats, flickcurl_free_stats ()
flickcurl_free_tag, flickcurl_free_tag ()
flickcurl_free_tags, flickcurl_free_tags ()
flickcurl_free_tag_clusters, flickcurl_free_tag_clusters ()
flickcurl_free_tag_namespace, flickcurl_free_tag_namespace ()
flickcurl_free_tag_namespaces, flickcurl_free_tag_namespaces ()
flickcurl_free_tag_predicate_value, flickcurl_free_tag_predicate_value ()
flickcurl_free_tag_predicate_values, flickcurl_free_tag_predicate_values ()
flickcurl_free_ticket, flickcurl_free_ticket ()
flickcurl_free_tickets, flickcurl_free_tickets ()
flickcurl_free_upload_status, flickcurl_free_upload_status ()
flickcurl_free_user_upload_status, flickcurl_free_user_upload_status ()
flickcurl_free_video, flickcurl_free_video ()
flickcurl_free_view_stats, flickcurl_free_view_stats ()
flickcurl_galleries_addPhoto, flickcurl_galleries_addPhoto ()
flickcurl_galleries_create, flickcurl_galleries_create ()
flickcurl_galleries_editMeta, flickcurl_galleries_editMeta ()
flickcurl_galleries_editPhoto, flickcurl_galleries_editPhoto ()
flickcurl_galleries_editPhotos, flickcurl_galleries_editPhotos ()
flickcurl_galleries_getInfo, flickcurl_galleries_getInfo ()
flickcurl_galleries_getList, flickcurl_galleries_getList ()
flickcurl_galleries_getListForPhoto, flickcurl_galleries_getListForPhoto ()
flickcurl_galleries_getPhotos, flickcurl_galleries_getPhotos ()
flickcurl_galleries_getPhotos_params, flickcurl_galleries_getPhotos_params ()
flickcurl_gallery, flickcurl_gallery
flickcurl_get_api_key, flickcurl_get_api_key ()
flickcurl_get_auth_token, flickcurl_get_auth_token ()
flickcurl_get_content_type_from_string, flickcurl_get_content_type_from_string ()
flickcurl_get_content_type_label, flickcurl_get_content_type_label ()
flickcurl_get_context_type_field_label, flickcurl_get_context_type_field_label ()
flickcurl_get_current_request_wait, flickcurl_get_current_request_wait ()
flickcurl_get_extras_format_info, flickcurl_get_extras_format_info ()
flickcurl_get_feed_format_info, flickcurl_get_feed_format_info ()
flickcurl_get_field_value_type_label, flickcurl_get_field_value_type_label ()
flickcurl_get_hidden_from_string, flickcurl_get_hidden_from_string ()
flickcurl_get_hidden_label, flickcurl_get_hidden_label ()
flickcurl_get_institution_url_type_label, flickcurl_get_institution_url_type_label ()
flickcurl_get_location_accuracy_label, flickcurl_get_location_accuracy_label ()
flickcurl_get_oauth_client_key, flickcurl_get_oauth_client_key ()
flickcurl_get_oauth_client_secret, flickcurl_get_oauth_client_secret ()
flickcurl_get_oauth_request_token, flickcurl_get_oauth_request_token ()
flickcurl_get_oauth_request_token_secret, flickcurl_get_oauth_request_token_secret ()
flickcurl_get_oauth_token, flickcurl_get_oauth_token ()
flickcurl_get_oauth_token_secret, flickcurl_get_oauth_token_secret ()
flickcurl_get_oauth_username, flickcurl_get_oauth_username ()
flickcurl_get_oauth_user_nsid, flickcurl_get_oauth_user_nsid ()
flickcurl_get_person_field_label, flickcurl_get_person_field_label ()
flickcurl_get_photo_field_label, flickcurl_get_photo_field_label ()
flickcurl_get_place_type_by_label, flickcurl_get_place_type_by_label ()
flickcurl_get_place_type_label, flickcurl_get_place_type_label ()
flickcurl_get_safety_level_from_string, flickcurl_get_safety_level_from_string ()
flickcurl_get_safety_level_label, flickcurl_get_safety_level_label ()
flickcurl_get_shared_secret, flickcurl_get_shared_secret ()
flickcurl_group, flickcurl_group
flickcurl_groups_browse, flickcurl_groups_browse ()
flickcurl_groups_getInfo, flickcurl_groups_getInfo ()
flickcurl_groups_join, flickcurl_groups_join ()
flickcurl_groups_joinRequest, flickcurl_groups_joinRequest ()
flickcurl_groups_leave, flickcurl_groups_leave ()
flickcurl_groups_members_getList, flickcurl_groups_members_getList ()
flickcurl_groups_pools_add, flickcurl_groups_pools_add ()
flickcurl_groups_pools_getContext, flickcurl_groups_pools_getContext ()
flickcurl_groups_pools_getGroups, flickcurl_groups_pools_getGroups ()
flickcurl_groups_pools_getPhotos, flickcurl_groups_pools_getPhotos ()
flickcurl_groups_pools_getPhotos_params, flickcurl_groups_pools_getPhotos_params ()
flickcurl_groups_pools_remove, flickcurl_groups_pools_remove ()
flickcurl_groups_search, flickcurl_groups_search ()
flickcurl_home_url_string, flickcurl_home_url_string
flickcurl_init, flickcurl_init ()
flickcurl_institution, flickcurl_institution
flickcurl_institution_url_type, enum flickcurl_institution_url_type
flickcurl_interestingness_getList, flickcurl_interestingness_getList ()
flickcurl_interestingness_getList_params, flickcurl_interestingness_getList_params ()
flickcurl_license, flickcurl_license
flickcurl_license_string, flickcurl_license_string
flickcurl_location, flickcurl_location
flickcurl_machinetags_getNamespaces, flickcurl_machinetags_getNamespaces ()
flickcurl_machinetags_getPairs, flickcurl_machinetags_getPairs ()
flickcurl_machinetags_getPredicates, flickcurl_machinetags_getPredicates ()
flickcurl_machinetags_getRecentValues, flickcurl_machinetags_getRecentValues ()
flickcurl_machinetags_getValues, flickcurl_machinetags_getValues ()
FLICKCURL_MAX_ACTIVITY_EVENTS, FLICKCURL_MAX_ACTIVITY_EVENTS
flickcurl_member, flickcurl_member
flickcurl_message_handler, flickcurl_message_handler ()
flickcurl_method, flickcurl_method
flickcurl_new, flickcurl_new ()
flickcurl_new_serializer, flickcurl_new_serializer ()
flickcurl_new_with_handle, flickcurl_new_with_handle ()
flickcurl_note, flickcurl_note
flickcurl_oauth_create_access_token, flickcurl_oauth_create_access_token ()
flickcurl_oauth_create_request_token, flickcurl_oauth_create_request_token ()
flickcurl_oauth_get_authorize_uri, flickcurl_oauth_get_authorize_uri ()
flickcurl_panda_getList, flickcurl_panda_getList ()
flickcurl_panda_getPhotos, flickcurl_panda_getPhotos ()
flickcurl_people_findByEmail, flickcurl_people_findByEmail ()
flickcurl_people_findByUsername, flickcurl_people_findByUsername ()
flickcurl_people_getGroups, flickcurl_people_getGroups ()
flickcurl_people_getInfo, flickcurl_people_getInfo ()
flickcurl_people_getPhotos, flickcurl_people_getPhotos ()
flickcurl_people_getPhotosOf, flickcurl_people_getPhotosOf ()
flickcurl_people_getPhotosOf_params, flickcurl_people_getPhotosOf_params ()
flickcurl_people_getPhotos_params, flickcurl_people_getPhotos_params ()
flickcurl_people_getPublicGroups, flickcurl_people_getPublicGroups ()
flickcurl_people_getPublicPhotos, flickcurl_people_getPublicPhotos ()
flickcurl_people_getPublicPhotos_params, flickcurl_people_getPublicPhotos_params ()
flickcurl_people_getUploadStatus, flickcurl_people_getUploadStatus ()
flickcurl_perms, flickcurl_perms
flickcurl_person, flickcurl_person
flickcurl_person_field, flickcurl_person_field
flickcurl_person_field_type, enum flickcurl_person_field_type
flickcurl_photo, flickcurl_photo
flickcurl_photoset, flickcurl_photoset
flickcurl_photosets_addPhoto, flickcurl_photosets_addPhoto ()
flickcurl_photosets_comments_addComment, flickcurl_photosets_comments_addComment ()
flickcurl_photosets_comments_deleteComment, flickcurl_photosets_comments_deleteComment ()
flickcurl_photosets_comments_editComment, flickcurl_photosets_comments_editComment ()
flickcurl_photosets_comments_getList, flickcurl_photosets_comments_getList ()
flickcurl_photosets_create, flickcurl_photosets_create ()
flickcurl_photosets_delete, flickcurl_photosets_delete ()
flickcurl_photosets_editMeta, flickcurl_photosets_editMeta ()
flickcurl_photosets_editPhotos, flickcurl_photosets_editPhotos ()
flickcurl_photosets_getContext, flickcurl_photosets_getContext ()
flickcurl_photosets_getInfo, flickcurl_photosets_getInfo ()
flickcurl_photosets_getList, flickcurl_photosets_getList ()
flickcurl_photosets_getPhotos, flickcurl_photosets_getPhotos ()
flickcurl_photosets_getPhotos_params, flickcurl_photosets_getPhotos_params ()
flickcurl_photosets_orderSets, flickcurl_photosets_orderSets ()
flickcurl_photosets_removePhoto, flickcurl_photosets_removePhoto ()
flickcurl_photosets_removePhotos, flickcurl_photosets_removePhotos ()
flickcurl_photosets_reorderPhotos, flickcurl_photosets_reorderPhotos ()
flickcurl_photosets_setPrimaryPhoto, flickcurl_photosets_setPrimaryPhoto ()
flickcurl_photos_addTags, flickcurl_photos_addTags ()
flickcurl_photos_comments_addComment, flickcurl_photos_comments_addComment ()
flickcurl_photos_comments_deleteComment, flickcurl_photos_comments_deleteComment ()
flickcurl_photos_comments_editComment, flickcurl_photos_comments_editComment ()
flickcurl_photos_comments_getList, flickcurl_photos_comments_getList ()
flickcurl_photos_comments_getRecentForContacts_params, flickcurl_photos_comments_getRecentForContacts_params ()
flickcurl_photos_delete, flickcurl_photos_delete ()
flickcurl_photos_geo_batchCorrectLocation, flickcurl_photos_geo_batchCorrectLocation ()
flickcurl_photos_geo_correctLocation, flickcurl_photos_geo_correctLocation ()
flickcurl_photos_geo_getLocation, flickcurl_photos_geo_getLocation ()
flickcurl_photos_geo_getPerms, flickcurl_photos_geo_getPerms ()
flickcurl_photos_geo_photosForLocation, flickcurl_photos_geo_photosForLocation ()
flickcurl_photos_geo_photosForLocation_params, flickcurl_photos_geo_photosForLocation_params ()
flickcurl_photos_geo_removeLocation, flickcurl_photos_geo_removeLocation ()
flickcurl_photos_geo_setContext, flickcurl_photos_geo_setContext ()
flickcurl_photos_geo_setLocation, flickcurl_photos_geo_setLocation ()
flickcurl_photos_geo_setPerms, flickcurl_photos_geo_setPerms ()
flickcurl_photos_getAllContexts, flickcurl_photos_getAllContexts ()
flickcurl_photos_getContactsPhotos, flickcurl_photos_getContactsPhotos ()
flickcurl_photos_getContactsPhotos_params, flickcurl_photos_getContactsPhotos_params ()
flickcurl_photos_getContactsPublicPhotos, flickcurl_photos_getContactsPublicPhotos ()
flickcurl_photos_getContactsPublicPhotos_params, flickcurl_photos_getContactsPublicPhotos_params ()
flickcurl_photos_getContext, flickcurl_photos_getContext ()
flickcurl_photos_getCounts, flickcurl_photos_getCounts ()
flickcurl_photos_getExif, flickcurl_photos_getExif ()
flickcurl_photos_getFavorites, flickcurl_photos_getFavorites ()
flickcurl_photos_getInfo, flickcurl_photos_getInfo ()
flickcurl_photos_getInfo2, flickcurl_photos_getInfo2 ()
flickcurl_photos_getNotInSet, flickcurl_photos_getNotInSet ()
flickcurl_photos_getNotInSet_params, flickcurl_photos_getNotInSet_params ()
flickcurl_photos_getPerms, flickcurl_photos_getPerms ()
flickcurl_photos_getRecent, flickcurl_photos_getRecent ()
flickcurl_photos_getRecent_params, flickcurl_photos_getRecent_params ()
flickcurl_photos_getSizes, flickcurl_photos_getSizes ()
flickcurl_photos_getUntagged, flickcurl_photos_getUntagged ()
flickcurl_photos_getUntagged_params, flickcurl_photos_getUntagged_params ()
flickcurl_photos_getWithGeoData, flickcurl_photos_getWithGeoData ()
flickcurl_photos_getWithGeoData_params, flickcurl_photos_getWithGeoData_params ()
flickcurl_photos_getWithoutGeoData, flickcurl_photos_getWithoutGeoData ()
flickcurl_photos_getWithoutGeoData_params, flickcurl_photos_getWithoutGeoData_params ()
flickcurl_photos_licenses_getInfo, flickcurl_photos_licenses_getInfo ()
flickcurl_photos_licenses_getInfo_by_id, flickcurl_photos_licenses_getInfo_by_id ()
flickcurl_photos_licenses_setLicense, flickcurl_photos_licenses_setLicense ()
flickcurl_photos_list, flickcurl_photos_list
flickcurl_photos_list_params, flickcurl_photos_list_params
flickcurl_photos_list_params_init, flickcurl_photos_list_params_init ()
flickcurl_photos_notes_add, flickcurl_photos_notes_add ()
flickcurl_photos_notes_delete, flickcurl_photos_notes_delete ()
flickcurl_photos_notes_edit, flickcurl_photos_notes_edit ()
flickcurl_photos_people_add, flickcurl_photos_people_add ()
flickcurl_photos_people_delete, flickcurl_photos_people_delete ()
flickcurl_photos_people_deleteCoords, flickcurl_photos_people_deleteCoords ()
flickcurl_photos_people_editCoords, flickcurl_photos_people_editCoords ()
flickcurl_photos_people_getList, flickcurl_photos_people_getList ()
flickcurl_photos_recentlyUpdated, flickcurl_photos_recentlyUpdated ()
flickcurl_photos_recentlyUpdated_params, flickcurl_photos_recentlyUpdated_params ()
flickcurl_photos_removeTag, flickcurl_photos_removeTag ()
flickcurl_photos_replace, flickcurl_photos_replace ()
flickcurl_photos_search, flickcurl_photos_search ()
flickcurl_photos_search_params, flickcurl_photos_search_params ()
flickcurl_photos_setContentType, flickcurl_photos_setContentType ()
flickcurl_photos_setDates, flickcurl_photos_setDates ()
flickcurl_photos_setMeta, flickcurl_photos_setMeta ()
flickcurl_photos_setPerms, flickcurl_photos_setPerms ()
flickcurl_photos_setSafetyLevel, flickcurl_photos_setSafetyLevel ()
flickcurl_photos_setTags, flickcurl_photos_setTags ()
flickcurl_photos_transform_rotate, flickcurl_photos_transform_rotate ()
flickcurl_photos_upload_checkTickets, flickcurl_photos_upload_checkTickets ()
flickcurl_photos_upload_params, flickcurl_photos_upload_params ()
flickcurl_photo_as_page_uri, flickcurl_photo_as_page_uri ()
flickcurl_photo_as_short_uri, flickcurl_photo_as_short_uri ()
flickcurl_photo_as_source_uri, flickcurl_photo_as_source_uri ()
flickcurl_photo_as_user_icon_uri, flickcurl_photo_as_user_icon_uri ()
flickcurl_photo_field, flickcurl_photo_field
flickcurl_photo_field_type, enum flickcurl_photo_field_type
flickcurl_photo_id_as_short_uri, flickcurl_photo_id_as_short_uri ()
flickcurl_place, flickcurl_place
flickcurl_places_find, flickcurl_places_find ()
flickcurl_places_findByLatLon, flickcurl_places_findByLatLon ()
flickcurl_places_forUser, flickcurl_places_forUser ()
flickcurl_places_getChildrenWithPhotosPublic, flickcurl_places_getChildrenWithPhotosPublic ()
flickcurl_places_getChildrenWithPhotosPublic2, flickcurl_places_getChildrenWithPhotosPublic2 ()
flickcurl_places_getInfo, flickcurl_places_getInfo ()
flickcurl_places_getInfo2, flickcurl_places_getInfo2 ()
flickcurl_places_getInfoByUrl, flickcurl_places_getInfoByUrl ()
flickcurl_places_getPlaceTypes, flickcurl_places_getPlaceTypes ()
flickcurl_places_getShapeHistory, flickcurl_places_getShapeHistory ()
flickcurl_places_getTopPlacesList, flickcurl_places_getTopPlacesList ()
flickcurl_places_placesForBoundingBox, flickcurl_places_placesForBoundingBox ()
flickcurl_places_placesForContacts, flickcurl_places_placesForContacts ()
flickcurl_places_placesForTags, flickcurl_places_placesForTags ()
flickcurl_places_placesForUser, flickcurl_places_placesForUser ()
flickcurl_places_resolvePlaceId, flickcurl_places_resolvePlaceId ()
flickcurl_places_resolvePlaceURL, flickcurl_places_resolvePlaceURL ()
flickcurl_places_tagsForPlace, flickcurl_places_tagsForPlace ()
flickcurl_place_id_to_type, flickcurl_place_id_to_type ()
flickcurl_place_type, enum flickcurl_place_type
flickcurl_place_type_info, flickcurl_place_type_info
flickcurl_place_type_to_id, flickcurl_place_type_to_id ()
flickcurl_prefs_getContentType, flickcurl_prefs_getContentType ()
flickcurl_prefs_getGeoPerms, flickcurl_prefs_getGeoPerms ()
flickcurl_prefs_getHidden, flickcurl_prefs_getHidden ()
flickcurl_prefs_getPrivacy, flickcurl_prefs_getPrivacy ()
flickcurl_prefs_getSafetyLevel, flickcurl_prefs_getSafetyLevel ()
flickcurl_reflection_getMethodInfo, flickcurl_reflection_getMethodInfo ()
flickcurl_reflection_getMethods, flickcurl_reflection_getMethods ()
flickcurl_search_params, flickcurl_search_params
flickcurl_search_params_init, flickcurl_search_params_init ()
flickcurl_serializer, flickcurl_serializer
flickcurl_serializer_factory, flickcurl_serializer_factory
flickcurl_serialize_photo, flickcurl_serialize_photo ()
flickcurl_set_api_key, flickcurl_set_api_key ()
flickcurl_set_auth_token, flickcurl_set_auth_token ()
flickcurl_set_curl_setopt_handler, flickcurl_set_curl_setopt_handler ()
flickcurl_set_data, flickcurl_set_data ()
flickcurl_set_error_handler, flickcurl_set_error_handler ()
flickcurl_set_http_accept, flickcurl_set_http_accept ()
flickcurl_set_oauth_client_key, flickcurl_set_oauth_client_key ()
flickcurl_set_oauth_client_secret, flickcurl_set_oauth_client_secret ()
flickcurl_set_oauth_request_token, flickcurl_set_oauth_request_token ()
flickcurl_set_oauth_request_token_secret, flickcurl_set_oauth_request_token_secret ()
flickcurl_set_oauth_token, flickcurl_set_oauth_token ()
flickcurl_set_oauth_token_secret, flickcurl_set_oauth_token_secret ()
flickcurl_set_proxy, flickcurl_set_proxy ()
flickcurl_set_replace_service_uri, flickcurl_set_replace_service_uri ()
flickcurl_set_request_delay, flickcurl_set_request_delay ()
flickcurl_set_service_uri, flickcurl_set_service_uri ()
flickcurl_set_shared_secret, flickcurl_set_shared_secret ()
flickcurl_set_sign, flickcurl_set_sign ()
flickcurl_set_tag_handler, flickcurl_set_tag_handler ()
flickcurl_set_upload_service_uri, flickcurl_set_upload_service_uri ()
flickcurl_set_user_agent, flickcurl_set_user_agent ()
flickcurl_set_write, flickcurl_set_write ()
flickcurl_set_xml_data, flickcurl_set_xml_data ()
flickcurl_short_copyright_string, flickcurl_short_copyright_string
flickcurl_size, flickcurl_size
flickcurl_source_uri_as_photo_id, flickcurl_source_uri_as_photo_id ()
flickcurl_stat, flickcurl_stat
flickcurl_stats_getCollectionDomains, flickcurl_stats_getCollectionDomains ()
flickcurl_stats_getCollectionReferrers, flickcurl_stats_getCollectionReferrers ()
flickcurl_stats_getCollectionStats, flickcurl_stats_getCollectionStats ()
flickcurl_stats_getCSVFiles, flickcurl_stats_getCSVFiles ()
flickcurl_stats_getPhotoDomains, flickcurl_stats_getPhotoDomains ()
flickcurl_stats_getPhotoReferrers, flickcurl_stats_getPhotoReferrers ()
flickcurl_stats_getPhotosetDomains, flickcurl_stats_getPhotosetDomains ()
flickcurl_stats_getPhotosetReferrers, flickcurl_stats_getPhotosetReferrers ()
flickcurl_stats_getPhotosetStats, flickcurl_stats_getPhotosetStats ()
flickcurl_stats_getPhotoStats, flickcurl_stats_getPhotoStats ()
flickcurl_stats_getPhotostreamDomains, flickcurl_stats_getPhotostreamDomains ()
flickcurl_stats_getPhotostreamReferrers, flickcurl_stats_getPhotostreamReferrers ()
flickcurl_stats_getPhotostreamStats, flickcurl_stats_getPhotostreamStats ()
flickcurl_stats_getPopularPhotos, flickcurl_stats_getPopularPhotos ()
flickcurl_stats_getTotalViews, flickcurl_stats_getTotalViews ()
flickcurl_tag, flickcurl_tag
flickcurl_tags_getClusterPhotos, flickcurl_tags_getClusterPhotos ()
flickcurl_tags_getClusters, flickcurl_tags_getClusters ()
flickcurl_tags_getHotList, flickcurl_tags_getHotList ()
flickcurl_tags_getListPhoto, flickcurl_tags_getListPhoto ()
flickcurl_tags_getListUser, flickcurl_tags_getListUser ()
flickcurl_tags_getListUserPopular, flickcurl_tags_getListUserPopular ()
flickcurl_tags_getListUserRaw, flickcurl_tags_getListUserRaw ()
flickcurl_tags_getMostFrequentlyUsed, flickcurl_tags_getMostFrequentlyUsed ()
flickcurl_tags_getRelated, flickcurl_tags_getRelated ()
flickcurl_tag_cluster, flickcurl_tag_cluster
flickcurl_tag_clusters, flickcurl_tag_clusters
flickcurl_tag_handler, flickcurl_tag_handler ()
flickcurl_tag_namespace, flickcurl_tag_namespace
flickcurl_tag_predicate_value, flickcurl_tag_predicate_value
flickcurl_term_type, enum flickcurl_term_type
flickcurl_test_echo, flickcurl_test_echo ()
flickcurl_test_login, flickcurl_test_login ()
flickcurl_test_null, flickcurl_test_null ()
flickcurl_ticket, flickcurl_ticket
flickcurl_upload_params, flickcurl_upload_params
flickcurl_upload_status, flickcurl_upload_status
flickcurl_upload_status_free, flickcurl_upload_status_free ()
flickcurl_urls_getGroup, flickcurl_urls_getGroup ()
flickcurl_urls_getUserPhotos, flickcurl_urls_getUserPhotos ()
flickcurl_urls_getUserProfile, flickcurl_urls_getUserProfile ()
flickcurl_urls_lookupGallery, flickcurl_urls_lookupGallery ()
flickcurl_urls_lookupGroup, flickcurl_urls_lookupGroup ()
flickcurl_urls_lookupUser, flickcurl_urls_lookupUser ()
flickcurl_user_icon_uri, flickcurl_user_icon_uri ()
flickcurl_user_upload_status, flickcurl_user_upload_status
flickcurl_version_string, flickcurl_version_string
flickcurl_video, flickcurl_video
flickcurl_view_stats, flickcurl_view_stats
flickcurl-1.25/docs/html/flickcurl-section-context.html0000644000175000017500000002407512210726306020233 00000000000000 Contexts

Contexts

Contexts — Photo contexts

Description

Photo contexts

Details

flickcurl_context

typedef struct {
  flickcurl_context_type type;
  char* id;
  char* secret; /* may be NULL */
  int server;   /* may be 0 */
  int farm;     /* may be 0 */
  char* title;  /* may be NULL */
  char* url;    /* may be NULL */
  char* thumb;  /* may be NULL */
} flickcurl_context;

Photo use context.

flickcurl_context_type type;

Type of context

char *id;

ID

char *secret;

secret

int server;

server

int farm;

farm

char *title;

use title

char *url;

url

char *thumb;

thumbnail

enum flickcurl_context_type

typedef enum {
  FLICKCURL_CONTEXT_NONE,
  FLICKCURL_CONTEXT_SET,  /* other thing is a set */
  FLICKCURL_CONTEXT_POOL, /* other thing is a pool */
  FLICKCURL_CONTEXT_PREV, /* other thing is a previous photo */
  FLICKCURL_CONTEXT_NEXT, /* other thing is a next photo */
  FLICKCURL_CONTEXT_LAST = FLICKCURL_CONTEXT_NEXT
} flickcurl_context_type;

Types of photo context: relationship between photo and another item

FLICKCURL_CONTEXT_NONE

internal

FLICKCURL_CONTEXT_SET

context is a set

FLICKCURL_CONTEXT_POOL

context is a pool

FLICKCURL_CONTEXT_PREV

context is a previous photo

FLICKCURL_CONTEXT_NEXT

context is a next photo

FLICKCURL_CONTEXT_LAST

internal offset to last in enum list

flickcurl_get_context_type_field_label ()

const char *        flickcurl_get_context_type_field_label
                                                        (flickcurl_context_type type);

Get label for context type

type :

context type

Returns :

label string or NULL if none valid

flickcurl_free_context ()

void                flickcurl_free_context              (flickcurl_context *context);

Destructor for context object

context :

context object

flickcurl_free_contexts ()

void                flickcurl_free_contexts             (flickcurl_context **contexts);

Destructor for array of context object

contexts :

context object array
flickcurl-1.25/docs/html/flickcurl-section-photoset.html0000644000175000017500000015060612210726306020414 00000000000000 Photoset

Photoset

Photoset — Set of Photos.

Synopsis

                    flickcurl_photoset;
void                flickcurl_free_photoset             (flickcurl_photoset *photoset);
void                flickcurl_free_photosets            (flickcurl_photoset **photosets_object);
int                 flickcurl_photosets_addPhoto        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *photo_id);
char *              flickcurl_photosets_comments_addComment
                                                        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *comment_text);
int                 flickcurl_photosets_comments_deleteComment
                                                        (flickcurl *fc,
                                                         const char *comment_id);
int                 flickcurl_photosets_comments_editComment
                                                        (flickcurl *fc,
                                                         const char *comment_id,
                                                         const char *comment_text);
flickcurl_comment ** flickcurl_photosets_comments_getList
                                                        (flickcurl *fc,
                                                         const char *photoset_id);
char *              flickcurl_photosets_create          (flickcurl *fc,
                                                         const char *title,
                                                         const char *description,
                                                         const char *primary_photo_id,
                                                         char **photoset_url_p);
int                 flickcurl_photosets_delete          (flickcurl *fc,
                                                         const char *photoset_id);
int                 flickcurl_photosets_editMeta        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *title,
                                                         const char *description);
int                 flickcurl_photosets_editPhotos      (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *primary_photo_id,
                                                         const char **photo_ids_array);
flickcurl_context ** flickcurl_photosets_getContext     (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *photoset_id);
flickcurl_photoset * flickcurl_photosets_getInfo        (flickcurl *fc,
                                                         const char *photoset_id);
flickcurl_photoset ** flickcurl_photosets_getList       (flickcurl *fc,
                                                         const char *user_id);
flickcurl_photo **  flickcurl_photosets_getPhotos       (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *extras,
                                                         int privacy_filter,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photosets_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);
int                 flickcurl_photosets_orderSets       (flickcurl *fc,
                                                         const char **photoset_ids_array);
int                 flickcurl_photosets_removePhoto     (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *photo_id);
int                 flickcurl_photosets_removePhotos    (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char **photo_ids_array);
int                 flickcurl_photosets_reorderPhotos   (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char **photo_ids_array);
int                 flickcurl_photosets_setPrimaryPhoto (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *photo_id);

Description

Set of Photos.

Details

flickcurl_photoset

typedef struct {
  char *id;
  char *primary;
  char *secret;
  int server;
  int farm;
  int photos_count;
  char* title;
  char *description;
  struct flickcurl_photo_s** photos;
  char *owner; 
} flickcurl_photoset;

A photoset.

char *id;

photoset ID

char *primary;

primary photo ID

char *secret;

secret

int server;

server

int farm;

farm

int photos_count;

count of photos in set

char *title;

title of photoset

char *description;

description of photoset (may be NULL)

struct flickcurl_photo_s **photos;

photos in a photoset (may be NULL)

char *owner;

owner NSID

flickcurl_free_photoset ()

void                flickcurl_free_photoset             (flickcurl_photoset *photoset);

Destructor for photoset object

photoset :

photoset object

flickcurl_free_photosets ()

void                flickcurl_free_photosets            (flickcurl_photoset **photosets_object);

Destructor for array of photoset object

photosets_object :

photoset object array

flickcurl_photosets_addPhoto ()

int                 flickcurl_photosets_addPhoto        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *photo_id);

Add a photo to the end of an existing photoset.

Implements flickr.photosets.addPhoto (0.13)

fc :

flickcurl context

photoset_id :

The id of the photoset to add a photo to.

photo_id :

The id of the photo to add to the set.

Returns :

non-0 on failure

flickcurl_photosets_comments_addComment ()

char *              flickcurl_photosets_comments_addComment
                                                        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *comment_text);

Add a comment to a photoset.

Implements flickr.photosets.comments.addComment (0.10)

fc :

flickcurl context

photoset_id :

The id of the photoset to add a comment to.

comment_text :

Text of the comment

Returns :

new comment ID or non-NULL on failure

flickcurl_photosets_comments_deleteComment ()

int                 flickcurl_photosets_comments_deleteComment
                                                        (flickcurl *fc,
                                                         const char *comment_id);

Delete a photoset comment as the currently authenticated user.

Implements flickr.photosets.comments.deleteComment (0.10)

fc :

flickcurl context

comment_id :

The id of the comment to delete from a photoset.

Returns :

non-0 on failure

flickcurl_photosets_comments_editComment ()

int                 flickcurl_photosets_comments_editComment
                                                        (flickcurl *fc,
                                                         const char *comment_id,
                                                         const char *comment_text);

Edit the text of a comment as the currently authenticated user.

Implements flickr.photosets.comments.editComment (0.10)

fc :

flickcurl context

comment_id :

The id of the comment to edit.

comment_text :

Update the comment to this text.

Returns :

non-0 on failure

flickcurl_photosets_comments_getList ()

flickcurl_comment ** flickcurl_photosets_comments_getList
                                                        (flickcurl *fc,
                                                         const char *photoset_id);

Returns the comments for a photoset.

Implements flickr.photosets.comments.getList (0.10)

fc :

flickcurl context

photoset_id :

The id of the photoset to fetch comments for.

Returns :

array of comments or NULL on failure

flickcurl_photosets_create ()

char *              flickcurl_photosets_create          (flickcurl *fc,
                                                         const char *title,
                                                         const char *description,
                                                         const char *primary_photo_id,
                                                         char **photoset_url_p);

Create a new photoset for the calling user.

Implements flickr.photosets.create (0.13)

fc :

flickcurl context

title :

A title for the photoset.

description :

A description of the photoset which may contain limited html (or NULL)

primary_photo_id :

The id of the photo to represent this set. The photo must belong to the calling user.

photoset_url_p :

pointer to variable to store new photoset URL (or NULL)

Returns :

photoset ID or NULL on failure

flickcurl_photosets_delete ()

int                 flickcurl_photosets_delete          (flickcurl *fc,
                                                         const char *photoset_id);

Delete a photoset.

Implements flickr.photosets.delete (0.13)

fc :

flickcurl context

photoset_id :

The id of the photoset to delete. Must be owned by the calling user.

Returns :

non-0 on failure

flickcurl_photosets_editMeta ()

int                 flickcurl_photosets_editMeta        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *title,
                                                         const char *description);

Modify the meta-data for a photoset.

Implements flickr.photosets.editMeta (0.13)

fc :

flickcurl context

photoset_id :

The id of the photoset to modify.

title :

The new title for the photoset.

description :

A description of the photoset which may contain limited html (or NULL)

Returns :

non-0 on failure

flickcurl_photosets_editPhotos ()

int                 flickcurl_photosets_editPhotos      (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *primary_photo_id,
                                                         const char **photo_ids_array);

Modify the photos in a photoset.

Use this method to add, remove and re-order photos.

Implements flickr.photosets.editPhotos (0.13)

fc :

flickcurl context

photoset_id :

The id of the photoset to modify. Must belong to the calling user.

primary_photo_id :

The id of the photo to use as the 'primary' photo for the set. This id must also be passed along in photo_ids list argument.

photo_ids_array :

Array of photo ids to include in the set. They will appear in the set in the order sent. This list MUST contain the primary photo id. All photos must belong to the owner of the set. This list of photos replaces the existing list. Call flickr.photosets.addPhoto to append a photo to a set.

Returns :

non-0 on failure

flickcurl_photosets_getContext ()

flickcurl_context ** flickcurl_photosets_getContext     (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *photoset_id);

Get next and previous photos for a photo in a set.

Implements flickr.photosets.getContext (0.7)

fc :

flickcurl context

photo_id :

photo ID

photoset_id :

photoset ID

Returns :

an array of size 3 [prev, next, NULL] flickcurl_context* or NULL on error

flickcurl_photosets_getInfo ()

flickcurl_photoset * flickcurl_photosets_getInfo        (flickcurl *fc,
                                                         const char *photoset_id);

Gets information about a photoset.

Implements flickr.photosets.getInfo (0.13)

fc :

flickcurl context

photoset_id :

The ID of the photoset to fetch information for.

Returns :

non-0 on failure

flickcurl_photosets_getList ()

flickcurl_photoset ** flickcurl_photosets_getList       (flickcurl *fc,
                                                         const char *user_id);

Returns the photosets belonging to the specified user.

Implements flickr.photosets.getList (0.13)

fc :

flickcurl context

user_id :

The NSID of the user to get a photoset list for. If none is specified, the calling user is assumed (or NULL)

Returns :

array of photoset IDs or NULL on failure

flickcurl_photosets_getPhotos ()

flickcurl_photo **  flickcurl_photosets_getPhotos       (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *extras,
                                                         int privacy_filter,
                                                         int per_page,
                                                         int page);

Get the list of photos in a set.

See flickcurl_photosets_getPhotos_params() for details of parameters.

Implements flickr.photosets.getPhotos (0.13)

fc :

flickcurl context

photoset_id :

The id of the photoset to return the photos for.

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

privacy_filter :

Return photos only matching a certain privacy level 1-5 (or <0)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 500. The maximum allowed value is 500. (or <0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or <0)

Returns :

list of photos or NULL on failure

flickcurl_photosets_getPhotos_params ()

flickcurl_photos_list * flickcurl_photosets_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *photoset_id,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);

Get the list of photos in a set.

Currently supported extra fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

photoset_id :

The id of the photoset to return the photos for.

privacy_filter :

Return photos only matching a certain privacy level 1-5 (or <0)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

list of photos or NULL on failure

flickcurl_photosets_orderSets ()

int                 flickcurl_photosets_orderSets       (flickcurl *fc,
                                                         const char **photoset_ids_array);

Set the order of photosets for the calling user.

Implements flickr.photosets.orderSets (0.13)

fc :

flickcurl context

photoset_ids_array :

Array of photoset IDs, ordered with the set to show first, first in the list. Any set IDs not given in the list will be set to appear at the end of the list, ordered by their IDs.

Returns :

non-0 on failure

flickcurl_photosets_removePhoto ()

int                 flickcurl_photosets_removePhoto     (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *photo_id);

Remove a photo from a photoset.

Implements flickr.photosets.removePhoto (0.13)

fc :

flickcurl context

photoset_id :

The id of the photoset to remove a photo from.

photo_id :

The id of the photo to remove from the set.

Returns :

non-0 on failure

flickcurl_photosets_removePhotos ()

int                 flickcurl_photosets_removePhotos    (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char **photo_ids_array);

Remove multiple photos from a photoset.

Implements flickr.photosets.removePhotos (1.19)

fc :

flickcurl context

photoset_id :

The id of the photoset to remove photos from.

photo_ids_array :

Array of photo ids to remove from the photoset.

Returns :

non-0 on failure

flickcurl_photosets_reorderPhotos ()

int                 flickcurl_photosets_reorderPhotos   (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char **photo_ids_array);

(null)

Implements flickr.photosets.reorderPhotos (1.19)

fc :

flickcurl context

photoset_id :

The id of the photoset to reorder. The photoset must belong to the calling user.

photo_ids_array :

Array of Ordered list of photo ids. Photos that are not in the list will keep their original order

Returns :

non-0 on failure

flickcurl_photosets_setPrimaryPhoto ()

int                 flickcurl_photosets_setPrimaryPhoto (flickcurl *fc,
                                                         const char *photoset_id,
                                                         const char *photo_id);

Set photoset primary photo

Implements flickr.photosets.setPrimaryPhoto (1.19)

fc :

flickcurl context

photoset_id :

The id of the photoset to set primary photo to.

photo_id :

The id of the photo to set as primary.

Returns :

non-0 on failure
flickcurl-1.25/docs/html/index.sgml0000644000175000017500000023467412210726306014246 00000000000000 flickcurl-1.25/docs/html/appgarden-get-your-api-key.png0000644000175000017500000061626512210726306020030 00000000000000‰PNG  IHDR†Ôfª6Ø|IDATxÚì½y|÷}çlÚíf÷i×ÛÝîvw»}úlçi»fœl7=vÛ†ÞôL]ºi¶Î†N[¯9uÔ†¶r˜vÒ„´c‹jѱeÚ‘CË1-Ù¦,‹¶dØ$K¤Hˆ$D<À ’q×à˜æø}ž?f̃‹’ßñëý²ˆ¹ó›™ßg¾—…1‚ ‚ ‚ ⽋… ‚ ‚ ‚„!5AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„a³ˆ <}p½‡&±¿EzN๙ “a™DïAí÷“ ÉoãÌaäý9O ÷7¸wcg2°ŸŸGoÏiÜ|Çn¸íx‰›î²âîƒ3usï€s1ëc"= ‚ ‚ †×„L·êÄB«Ü|hŒ xâ.ãïûgroÛÆãÝó¦ç2ì{7 öccÍ_Ë{Æ`[‹y“>6—£‡AAAÂðÚX”‚¸ý*„á­ÏÁ˜€§ï1þþÈÛxÐn;xÒ\äô¿K:ˆë“;¸žVŒn¿}…á;©AAÄ;N^ÅðÖ£¡wÖ ]Õ§áÞùÃ5r¶æõºé®“¸õ®:¢ñ®iÄIAAÄ{L2>#€ÓÁ‹BµUíŽIøѰ—À¿Ãíóî•w»û<÷Žîâæ2n2³†îsµ­s•r°L˜ŠÃ'–„·§+) C‚ ‚ ‚¸~ÂÐ çÑÓ1h3u’³T Ã'Ü"˜˜íµtC÷1ôšu&ª‰ÉÚÄ}A<÷Ì$îÞ7†îçq÷ <}ƈpíÅE•8¼k¦ŽÅL†i£3°Ïø1:ƒÈøí(FŽM«ç¹o ½Ï8aßÌ]‡õÇZŒTßÝ#¡šëDÆ'«­Š‡6ª—¸¦–ñÄ¡ íºŒáîcØÿŒ¶™(8ÑäƒÃv£S°Ïl`tjóùñÈA­?<ã„Ý—©°èrÕõ™îƒ“™Š1ÏÝׄ0spœŸG¯v|wï;ÞCNŒº3µ?”®ÉF‹ýSà`™F÷¾ó걜ÆÈTôÝ™ ˆ ‚ ‚ aØ´0¼«5axç¡ÉÚ.›wMÀm*òr9h­ãº:‚'¦vnÑ7—«¶w÷³-$¡ðÈÆõ{ÕNðrû3Þ |µë7v“½³*©Œ³Á6rxâ¾Ü|ßyì?:ëTþ¤ñüS3¦VÈÊøÄ‘ŠvsÓäúwŒU|”Ð÷Ý‘æ¶ÑãjúšAAÄ{ZÅÄ­=cèÝgm˜èÅýšI”;N£÷à˜‰É {«V1†»+-rÇTËѪ,¥µ’ÐÔÀ7ÝswÞgžÔå¹’%íj×o+Z% OÃq•Ö-³ ®·î›À#‡ÆL­jOë⛆O»E0–Áþ;Ì,˧Ñ{h¬¦±$ M®­j¡œ@wOõñßüÌFS×ôÖž1t›ö]ëU·+AAA¼G,†#v—EBdjºŽ¸ãÐ[)”ö¹Ê±~B½wTŠºhK癚¬:>«V·w;«­’¦IhÌEÄþñ²Ó_užÇqþeÍÂtµë×Ǿ:™Ìh•€1rð4n½ï4n7ÅŠÛ,—’ =×c´¢í7¸òf°ÿ®ÚV&+Ó$4Õçyó¡j·Sû!k¶»ÚõëS]¦Â̲*4vÙ­wEï¡bß™ÀþCUî¨åv7¹&•å:„ C‚ ‚ ‚„ᎄaÕÀ¹ö2fISsŽ&ËW8ÞÁöM¬ž&ç°ßDØU[@‹–»«]¿õä3¦×á¾V„aÃOï(!L³}¨j¹ÞúØÝv· µÔw©†"AAAÂðm) O6™€&îˆBó$4MX—¿älZ¶¶~2Áê„0=ãÏÔr]1r F¦Î;Nâîƒg[†ñ&úÚ­Gƒ×]Þ\ªÕxu}— ‚ ‚ H^+aXåJzޤ>£ºzrœ ‚ψàE¢(ƒĦ²ps3;…Å$4‰ºçp÷™DÕ>㕉nî˜@àš¬ß8–rØÄøDãZÝ^B£ÇÆjº’V[rOÂUim!ùÌ­%÷M#ñ‰ºe/ÔÄ:çkX'eX+­šUÂ2†Þ{Fpó=§Ñ}pϽæ†;I ‚ ‚ aø¶†æ‚é$ž›ã 2†È’«ÚEò¾&ŠŒ'7ªÖ+»šc?t²õ:„wÁææ…ðDOµëå¯Å®ÑúÍ`&†ËIY96çFfл¯NÜ &†«Eæ™J”DåðÁêOÔ©cxë3Áæ]`oÁÓS1p™âµ+òÍ\dd01ƒ“ã¬wMIAA$ (Â!>7Ý‚‹çFBrÃsp¿v¶åbñbUâ}šÄ³…Kd×hý&cWWy·òª¢;³aZÄþ¦»jg%½s$Öº04s'm)ÑMOÜÕºûܺ $ ‚ ‚ †- ÃxaøÄ5Èìèg]‹aeù§«²mV—IxÚDôøg\¸ó.sÑtÓ=cYâš;‡mou┦%ƒÿÌX IËÑøž;`bA»gö*«æÕ®ß:·ûë¹Þ6‚Û÷Mbd&Zãúа×på¼óÐ2!E¿rÍÅʸÀÛ¯ÛÑóæ‚u&WÅu©®7˜Àð¡³UñªÅó¼û¨ñúõ]‚ ‚ ‚x× Ã6|2¿/—; —;†@R|—™K¡¨/·; —; (wÖ¿ D‘P.wn_._ íøfÝT…ü¾¨¶>N¸Ží¬Û—?”i*û¬Ù¹ÛÓ½É5žAAAÂh]æÞÂõ ‚ ‚ ‚ H’0$‚ ‚ ‚ aH ‚ ‚ ‚„áQ>RUÐ]x ×'‚ ‚ ‚ aøC'JÀ¿Y„ÿ¯OAAA ‚ ‚ ‚ aønbuu•Úx×öêßAA$ ‚ ‚ ‚ ˆw¦0Áó6»µÚ‰ÝçêÀ÷ˆ7ü…öŒ™0T·ÝýŒÏsâé£Ó¸û>MhöÌ¿+²¨òKÓ¸á¶8š†B7Ývûµ²"î3èøÎòu†M÷!ƒŽ]XönbðÔ6ODU†#ž®¹hØëAÛgsç¤ÀvÐË® º¾Ü]»œNEaÙåÁàš ç°–=¡‰ç‘5Xv™¯ë>Ä-Å[»ÆBm»<èÓDìÕ[-l‡Ö4ñ³núQçZ1zØË.ÚzƒqppÌ&1pPûí`òY¯®_•ˆ%Ô6Ù‚3 À~zK=ÎCÉw€•“ ‚ Þ†Â0>ÚWƒö€úE=îЄ›m}v01·Ë…@œCÀe‡Õf‡/® F>âÆ¨Í «mîˆQDŠœöQ¬6FíNÄ5 WÜ9ŒvmŸCv7¸¢åKŒÃ9jƒÕj…ݨÿտƶãàs¹à‹p9FmVØFˆ4 œ£_'ˆ-°´÷#®ñ\.7⼈ˆË›Õ‡;Òôükõ5¤ç8n¸o½÷Ç ÷èÅš€§ï9ŽîqV8ûï8ŽîS—- CGMah…³Â%Ë~ô¬Zwq¦<“1ŒŽ»a=ï‡{»âã(À5ç‡õ¼w¦tì_ ¤¬Û—/£âÄÜ>¼cÊ Ûø‚z^Ž)/¬ã~øuë2Æña;ï†m*¤»þê~₈ÀRñ¸’«´óÌn¸mÏÍÅJýŽ Ea÷Â6®.[TÆ—\¸é¶ãè~-ˆHR„˜ÉÀÊÎÓ9£îþ¤³®ëÏeÜ ë¸IíØb¨ ÃFÖ1%`ôRÖ±Ü1¹j`îšMÁ:–€}9_%Ô| ¬cI¸Ãî÷ ½4€Wà[ËÀv)‰Ñ…œ®Í¯Žˆ#Ë®5ØbÚ±bªõçþ5Xöl•,@®ë°ìÚ€[ÔÄ×Þ)£c ØÙŠã‘KÇjsp¥63yŒò²kv“^b¶¸ü;ÎÁ®m×’ÍŸ¡Ë1´íò ût‘”Üı1DüØjÌ«uÍwÙBÇ.ºÎé>ˆ"Üþ<¸L^;Î º{› ðÅDÄYØÆ]àk~à) ﶃ‰*ae?â…eךyû2¦ âçIàp$1º,hû«×¯j÷Wõøeð±œÚ^³åörŸZ‡e×Fuçk;èeOÈðì&‚ †MÆÚºU a[Ϩq°ã´Á:êD„«E“Å‚.k[_Õïý6UÐq®¡ªyËnØãqôUüÞcƒÅíØ]ñ{{÷ˆéW÷ÚÛf`œ]•tÁ-Ön‡‘.µ:»{С­3äæKË8úÛM¶iA瀣©ù×Äb˜ÜÀÍ·ÇÝç9D¦&pÃmÇ1’Âð®Ja˜Ã#w©‚‘kJž¬ž'†pûmÇqó3`ŒÁ~ÒànzÃmÇÑ{&¦.› âΊy7ôBd¹í8n8´QnÓgFpÃm“ˆ3nnºj›7ÜfÅ­wèÿ> gFë·‡¬Ëž…}[m‡Gî8^µ­ÛÁ/Í~{bI€óØÙªeo>ä¯ÚÎÍÏá8t7üÅ%uй½Quž7ôÌ×9—ãö‰×ÌbØ^GFf#Un¦}—41‘É¢»Â µí@L»ÏD öš¸¨gÀ˜ˆ¡}•óuî©Î)•R-nŽ‚*O­Ã²+×ò6,»<°†U!2Ôëe_"cp¯W§eÏ–juóè¿¿ú<—%8øuËW Ça,»¶g îsêm,ˆU"»_מíG2õɰöWÌ߀=VÇMu,   ”„‘^ãqs ¡ê}íòÂVÔó9â­žß5NÎa?,»ü¦Þ,#À±œ×>âÔnßÊö°ìòÃ)ÔëWõû«éñïÕ>ˆ2â)Éà5ѳÇËÞÈ»Èõ ‚ Þ2aÈa°C0}£µ­[œs ,ÖºzÐÝÕgÔQP}#8mš Û 'Ïcx·& Gás¢«M[Öc¸§,0û‡áŠóé*ŠÁ!8]£èé(/o<žzÛŽƒñtjÛîèct¨$ûqósŒjË´c”ãubÙV4 t–޹odÖÁî’¥u$ 6œ-®—ûµ³¸á6Í ´(ÖJBK†·…u.Ç\Ž/žØ§ ¨;_‹\I[†LÀw©âˆe‚¸UAMxÁ ·„m[†uŸ*èl›ê9;GNã†ÛŽÃâËÛ(¶éÑ“¸áŽp:7Ö[ºÁ3†È”*®n:° Ž1ðn—ê>;“C|F·<¡‰¥(ºï8Žz–!–Úá<IŒ Þw7Ü1­m'aO20!„›u‚—1†Ñƒ#¥eYFâÌå´¶;‰þzé¢åö¶Ó ©çéWÅòÝg¥s¹ù [ nohÂ:xM,†Er¿í{½hß»†ö}Ûê¾D»wyÐv0® ŽŒñk.ˆ l×T!’Ò>-¨V¢îKyM€xÐwIµ"¡rì¢EÇ.:O«vÑWc—¥kз èÛãAÛaŒÉ¼ßË!ŒñèÜåA×¹<Ë©ÿÓâ=5ñÕïPÿ\Ú*·°¥*j›tï*nŸÁ¡¹zšŠ£½°|>Œ4UsPëc,¾=F+WY4qhßåA¿&ë[|6dêBNêšà5ûh5°×Ko "cˆÏn•Üicà–UQÕ~0®~ÊdѵËKï¶ê!P<íšEX± .½‡ÖªDU<œ‡/ Î#.€YƒöUã-»6áàóê÷«ºýµº-}º¶4~¼âÑ·W½/†ý2 ‚ †×]¶õ”â€JVĶ.X8#%¡X`·öQ†ú»âLtjâ­Su[]%×ÕžáQ8 u«¸ö~s‹[Ím—„a7|šè¨/ Ý¥¤3}ð‰ >kQÔu–’Ð…_{Ÿ½$PuÛm4ÿê-†Õ%ô¶186ðo†´¿ÏÂ%ê…a5wõ–{;†Ok¢®h ³në-™~5o&‰'î:Ž›tVA& ðoràD¡)aø´[ÑB·Þv, Æ¿çrpUaè7$¤ñÛ,ÍWÝC:Ñi¼¦Õ®¤Æä6ñp¾p¢Éö- Ãòöëõ«ºýuMjø@µØª¿í>ÍÓ ‚ ax5JÖ±v ;ã¥ä3Åx¿¶žÑ²0l/‹­²{i·g‡mhÃÖQøâžR†ÏMì.Š$Î U‹\9#è€Sx¹mCï™=´î¶u°(ÚÌZYà¶¡£³íÆ$4%WÑÝCÚv#èk¯¶Öšµ•у#¸á¶Óp$Eð‚Š˜‰¢[2ñRŒáLÝøš$Ÿ)Æá=1—+[ö–Ê3Q­Ìqxâ®ã¸á€[7hÛÀí·à9·:ïæ£!]Œá΄¡ã¨7Üv.½ynÏAlJ€ªçX<—;•Ëy8ž¬†OhçZ¶jÖÛ^ƒõ½û6ÕZZ-° Öc kdtýªe­O_æ!“Ãð©œ1Í-ñ@Ò`m±ŸÛ†u¹ Åsm­wñÔö%Æ2AÄ5÷òˆqè;»Fé€#Z*eBíEA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!ñnA/Èà…Ú‚ Þqˆàyñ]q."σ§kJA×^ò®!´Y,èè­˜—Æà-t>çªøwõ6öØÜcp vÂÒ1î]ÐØÎÁNX>:€tËër†›Wÿ=ØaAç óš›ýÈ:,»Ö0¸,]ßvÈð:¼‰¶]XŠì]ÇC¸vû²èÜåÁàšD7ùÑ߃­öÕÁ :œ¦Ï‹¥î*w¢«Í‚¶6 ,#ýð®çÔý¤x× ,–[àH×ßæ;í9sÍÚrGðê´ ­Ï^³­¸Çרÿ¸Ðe± m÷8Æàê„ÅÒ‡È5¿FÍõ½–…l܉¡¡Qð׸pËQãsYÇÀ‚ç ?,÷E‘fLý÷Þpƒw™„Áû=è<‘½>ï&!‹ÝUǺ†ŽÞ¬kbùîóà–ÓM=W:- 8¹ªgÚP§ŽkÞ]Ïí†Å²N¾…uÞEc"‚ ÞÂÐÖÓ¦ Ò:+vi |Ô‚ûÿ®|8;Ðf± Ï¡>œí°´õ¿+‚î=¸åÞ- CÞÙ‹¥ M´[ÐÖ _Rb®ü‚=‡x½Ú@äÑ­í§ëÈ6F2°_Š¡k¯ú[ÿÂ5²@´_Ëí½×¨¸[†µú'ç€ÅÒ~ „¡ ,í]Âàà ÊÀ†í>¤°X>ª ¿·Ü Wƒ—úœxÇBš1¸ÏqËcñ†Âp`¯mG2×çÝ$dб˃ŽC! ÒŽ÷Hí»<°ìòÂSJÇpãs馞+í úñ¦ŸiW‹£ÿX,ÅD ÞMc"‚ ÞíÂP°íîïC‡Å‚®_•0ü¨N~ÔäAw£ÍbA÷°‘8¯>Ûˆû0jµÂ6êD\4®q;`«1¯òK·Ïå€ÍfƒmÔw„/¿Ä#>ø"qÄ}NجVŒ:Üe÷"1·;Ž Àn³Á6ê@€3ºU·;êpÕ<1?×íq©Çn¯uì<œ#ݰXÚ0äpƒÕ—T{¿·V« vW JÌ5ß& G–]~ôÞ€e—£)ý‹Y„ÛŸ—ÉÃ~) ›#ƒ@¦ìñóˆd$øR°Ž%á Ôc£‡½ªœ-TÌTÁ¸7R~Ù 8gS°]Jbt6[>íxâálcI8Ãbiy‡# Û¥,"1Â0âÏÀ6–€Í¡Û–vüqAF`Y=~ÇZÞ|ÐpÃå‹ú‹Ë)µ»Èàr—¯C­öW¯;‡€sÖQ"ü®WqY»œxÛå#pÚGÕ~«ë•÷`qpä²ÂjµÂî T¹úvX­6¸> tXÐ^SvÀˆÀa³ª÷QqÐ,rp»\¥ã.߯.D*]µçŒ™U’1£XaŒGÀ0¸ šµ_QƋϡ€.—qQDÄíF$cÔ†Q§¯ÂíP›Ïóð9í°YmpúTApÚaµZápG*,>>ŒÚ¬°ZG Ï âs†çÕ}Ùlv­}88Fm°ÚFá‹‹Û²Á~ÌûJsÏ0ÆâèoS­…õÚºJ°p¸\.8±‰þÔ|Ÿãîšç¨¿_ãàs¹ÕóâØm±ÀÒ9Tº–ªÕ° >ÓãˆÃíò⟾Òþjµ®ïé¯­Í «­âÚ3.àRßqv8N]¾ò¹.rŒô´Ãbé‚Ý/õG$—ÖG*·ÛT[—„¡Î×^†ª•PÌàëîKQ‚k¡ø -„a{IÊð­åà j?Ç[y7i–å A¾ Ë.úfÅÒ1|ôCã3­F›j×9p©Ïí}_ë^ô[¿‹å p‹Í߃͌‰®êç¾ÈEàréž_|¤âþâás¹áEDü.¸#i$ ët?³ªf4Îa¤ÓK[i Õœ0äЯskïwÀ9ÐYå.fiëC@{Ùú:*æï†=bör ¿£ÚõlPsqô·Wï§sqÆÀ9ú«çYÚa ˆ`,Ž¡Ý•óºµ}Å×Á> ,–>Äkí¯½Ú‰w–p1ØaæBg/=Ü›níe=ÔëåþmpõEÛy"W,,„L\‹¼°…Õ¯±ý{ªÝŽºNçLc’ú÷x`90µHr,\aI{±ÇM\šp‹&dz/K¢ÃÄýI†2l‡ýó6`±šÇß9\ý…{´G½®Å~7Ô¡ö;§Ÿß‡xƒöwô·æõ9"-\/#ÝmËvÁÅ·¾]Þ=‚6‹Y¿­¾çDw…Ûf[×°6PŽc°Ó¤?Ô†•Ëv¨÷gG›Å‚vØS-S ûÌ…a{Â0­Ý»éúíW†{\uwn· ½_×"6uýÑHu¿u¨û±sºkn±ÀÒg¯ûü7´‡éµµ`Ø­¶£{¤Ûôcç*­…º{º­ë¦ýÀ‚A§&nšmk0t…¡ã°–][jûf2U.퇒KÂ0 ÆŒ\ƒe—=c¼ùs¼ÅwSÉ3¤B²p\÷üoMvX,è·ëŽETŸqaX§M«®ó÷"ïz·ì~| ãˆúc"Ã]•ϸNŒÄÒXbHësk, º­íX´{+‚>‹–{/Ð ™ H^ êÃÓÒ9 Q÷/ šµ2ÎnøjW|öªÒâ mÀÉ!nï7ÝyULúÕAB\ûzÙa¥­ ޏ¨ v-%×’VÚ„1K¢m—Ýcª¥Ìz@a¾ ÷¢öƒqõÜ3YtíòÀÒ» ^‹!±ìÚ€#¥¾È­‡¼°ìòW.´¸¿v½èDø<á1"S0Ü«CÑ‚5Ñ^ôRùxň ð¥$mùâ1H9è- â³ê¤ï’Ã(äнGˆˆ¥ãß„#¥ ÝáXö„t4Š}‹#&ª±(‹ýŒÐm± cÐÙ°ýË×݈ϵ‹-ôa­v«±¹¼OíkC®·+b¸Sx”ÚXëïý®âaënSEe\[Ö¡¶E·- } ² O»o£ý¥X¿Z°£ÏªL‹‚A;&k·K6À1²ÛK»I, ï(µ{GÚÛÛÑÞÞ†v-fÌ Vtÿ®ß~í°t À©µC{Uû²ÎibºàDàsGLc*-–.89];[vÃg`¢¯üœÝØm± ­{D;'£ý%·ûRûhûŽhmY\žw «mm×oËû©ì+ñtóÏ0÷ÐnÕ²&šˆðª¶î„ÝçPŸ•ÅöiП*?&ÕìEwÐÝCÚÇ´8†»ÛÔv×àâ ß¯aŠc ­YhÝúužÿf}¯½G»^;:K^4 xŸ­ô~QûP‡©‹¨Cs%Œ3ývG ý@}¯µÒÖåg}Û^/Ú‹ìYÃn-FP/ ËÿV´w†¶€*М§ÖaÙå5,b`¯ÃIX5o‘Í[¤ú9®´ün*º’vH¹c!ƒÑ±mìÞ«ÆZÃJ˰ÓDdëã—µ©þz">ø"KuïE}|cóãˆÚc¢âó¸gD}Ɖ»Î:îF—Å‚ŽAužµKµÝ¶òÇñ¶>Ä™÷„ î8 ’ ‚„áUÄkƒ¬ö>+|>Ü5 M[·µ5ahx›¿à‹ƒVG,–6ô `dx#Öõ…ÚfžH€‹àv»`µah íºlµß>Wr™Röm°é¬8®uÀ¢=Ð-–6tõ Àjw!Î×rÑ ÃŠýiÛ©vc©˜%å¯Ý¾‘®Ò‹¦Õ6qžP_⃳9øF‡×5wOQ÷_ƒ-¦;÷a?,»‚h/ÝŽSº¯¸©ÚÌâû´—x».Þ„[ت²DÚ3 L” çá^Ë`t,†þƒë%¡WP ù‹_‰ èÛcÜ.K%KÇà8â‡e×úNÇ1r:†‘±¸* ÷l!bø¢­µÇ°–=‘j1¢ ¶w ºÕ@›E»kɊѨý+¯{+×Ë9Ћ¥Çð{<àC„[ß®È#Àír`Ô:Œþnm°áˆ›¢-–. [G0<<ëÈÚ-´÷ÙµÁ„Þ3€Ã@[=WRM\—Ω£4ð/Ît‰¥û¼ø5Ût×Ö‰¾þ>ôõõ¡¯¯=êÀº–X©ß~º¯ð†ç@åýfîfæ, Åv ,=£%q3²[j2 Úº`µŽ`xÄŠ¡¾r»—ÏŸ7>ŠƒCÝ3¢^[®5ØO­gOsÏ0ÕcÍÃâ º Öˆ±½jõ§Z}¦²O-3V½e=>Z² 6†m´õ9ªãÈzFw$ ÍÚά=ÊÖoƒZÜçЮ¥Î2í©;¨?7®Â TÜ®zÿµØÖÚ³u÷¡-ôÖ8ÄÀ_Gjq„‡9ƒ[©/'?¼©tè=Qªžã­¿›˜A§Y²œ=~ Íæ X ;û‡`µŽ`dDÅjÂnKsmZy=Ýól§÷`1‘úŒë3|ØT?æ¨lÝXÚ‡Àkqµ–6‹öLŒ£¿ŽA$ wDÝQãK[‡æÓ¼0loRsªÅ ímíèèÜÎÎníë´N¸F5w&ÍÒÐÙi°l¨ƒªnÝ ‘+½`‹qú/|ªSÏØÑ·»Ãà4ì⚆æçÕœ0tT¸›ªnG­´ cyôì1ÏBg驱BËXvùáÔY}ç6aÙå‡=£ºböë³Å Ytìò ¯*ñ‹*à,“†D ËkV>?ߨ–!Ë\ç¾Ja¨³Hj™é: –Èl)ÆÐ© &Ê_À½èèÝ@goÎLe ƒsØk. ™¨~aíÆè`,»‡aê„¥c£Ã»Kâ¦QûW^÷V®Wå ¼Þ`¡ÑvnxmèÜm†¥¾(ºKnS¥mµw ³³=Ã.5Cža Â馿ýXïçèÐYFTËk{¿¾Ñnõw¾ö®™Ã*aX³ý:Kbßb±` tšY—êÅU/ïìoG[_YX,me+gG':;wcØÅU Êg‚îïzm9:Z?f‰vš†×m( ÛÚ´†¶²§FþTݾæ}Bp·û‡N8W#glK[WÙ:SŠl¯ü(Є0¬ÓvÕí¡ïÏåm¨çb|¿¨n}Í Cóí¶ÚÖ­ÄV ÃvÓ3îWŸáúp¦{¯Ôr[mæÝTüØØçÈCdp \Fªð´ØAŒ¡“¯rá/ŠøFmZy=Ýóì܃úç‚k°–ŽAC´þY¡zrubÔ¡f³uÃbiÈ] -(` ‚„áUe›T],]#àD<σçEÄ5÷»ÝCî–…á€öp®k1P]2\†`õ YUnxjL_l>Î`l7C½5ÁW”¾öºE]ÌY,mýˆDìÖÖqYÑ©sQ½v°C{aW<õ—VÚ¤øÕ¶Ï‘‡(Êà¢(cT³²YÃåe†ýeWŸÑCkš»euÖ9~-ZãK°«c2`’-TµìùaÏäѳË˾(ÅAC V! ½pd*b¥ÊÛ ”cLÃ~Xv­Ûc!Ž¡±¬.¦aÈ-‹©Ý#ˆ¾¡ªÏFí_yÝ[¹^jÝ —¨O£Þ†ÝƒÎ·@ÅËîÁrÂßp•0TïAí y—Í ’í#C°:#Ú}ÕwižŸR×b諾8}IK:Û-°tYë~Ù¯%Öj ÃzíסG\‹ìÒ–»zaèЄ¡èÖ\AõÙ^9†‡†áŒˆ;†æmo°ŸÊ¾"¶ð «´×†m°ó îÁNخߟj–ù©è%K¢n/º‡JîЕçXŒ¯*¶eÀ>‚QC¢¬:4Š®ü\YDöiïŽzmWÝæâ²hUÐ]/ãsaÀ7­­µuõ³µyah9˜Ð•$âйk Ckyõù:œ‹%T7ÕCɦöÕÌ»©œ}Zj˜õÚ%Ÿ©ß¦•×£Ñ=ÏvpÖ÷¢ª|3ØûÚÊîØ|9 Bê‡õ#NÑe› †×$}¹™?|}mÅN“å*´/»=ƒpøºAQ̶í€+‡Û>¨~ñ×â«ÕqEÀÅ}îi7 苃Ž>+ºùÃn¾üõ»½Ž@.[¿–˜Ã^:†Ž¾øâqøÃêñ›Ôܱ0Ôܦz†lðq‰ªÔÙú/‚Í·I16d³*À]Ô„UÇ‘LémÙ€#\€ë’³×~„+Õ©²ìZÀƒG$Rã÷l™×rêü]ì>¬•«pÄÑ·Ï«} Þ„KЄaoˆ?…®=åZZf û5¹LßX‘p=ºò¢&*ÛöEà ‹pÏjµºzc%aØÖ¤0,¥¹·X0ìc`¢«d…Ô¾ì6jÿªAy }X ŒhnICðÅ#p ÷”f´¶]MvÀçq¢«ÍRœVÞƒÚÀ¾{ÈŽH<[g)¦†×>íÝÃðéæÕ‹1´´uÈåY- ‰j"¶²ÕÎÉ]SaØlûsm=¶&RÕWί- KÏCK'Fœ>Dô´[JÉC󶬿ŸZ}¥™g˜ú¬/[êê Ãö’%¸O'¶ëõ'Ó66íZ¶ì†ÕÐõá.¸E×f·:p–¬TëU g5‹¤¿b@!bø`9óhÛ^Uh "û­¶•6¿w ®LyÐÐ1\Ž1tX¯- K/Õb_×ý­»Þõڿ꺷Ї‹Ë곉îî·ÛÁvÝw÷ôèÜ3÷ c¬}Æû£k`´œê¿Â-Õb©Uà~PKS¾:z†+ýpZ–Sóç Ó}õî4w%5Z7o¶ýÚó`È­ºßÌåùj23WÒ¢e §Ãèj?äˆèŽ»Ã Ï«d£¶¬·Ÿê¾Òü3¬K^tµ­ÕÖ•çRü€  ×úýɬÍú„°£»]Ÿ™q7l¾b|¦}ºóïèÚ­–\U¢™âÇó"Fûwë²Gw ­t.µÛ®^{TõчÝÚ=×Ö¡Þ·¥L“Ù¿‹Ys-í8?Ý`»-´uɽ³¦0ô•ŠÚëÿ͘ëáuC¬øàlÞäùšGß^õ½²lúoíÝäÓ\I[†iÍ‹Éìlí8ÿJkrí6­¾ÎõïE¶ƒ{°ÑØÁmë7<ã:º‡ j¶C"¾Ê¿ë~¸'‚„á ‘ç!ŠÍ.Ï##Î5òÁÅãàL–SãÔ ˆ\<^4qåäD.Ž8gò"ÕcàøëUT]ßÒ¶›m“fŠ«1†bFD<£T½tÛ‡³`LF<%µà~,ƒK‰ˆWÅ„”çÇS¢á:4ì3©Î1¨Û‹gä·¨·Úþ-,ßR_«³]m;µÚ¸òyNݯXû˜øfûUÍsÕ\¸¯g„ë~¯6yþqμïïd[5úMKûiª]´X[‹vëÏø:ý©…>Qïüy®¹{j´§­füiåñŠ×ºOñnôíî*•)¹ÿ]Ã"æÍ·õUì##©Ïì÷Èà©Õ6mê^¼VϦ·Á3Ž †ïhÔÚ^ýUe Ê®œm¦n=ïvÔzSkj¶P³¯±{<°æ¨Wýác´¿ ímª%d4Nmò¶k®•Ã>þÝÑ'âjÚ®Ë×›bŒ¾¥ýƒCèïMKA$ ßR£ƒ¥t÷Õn¨vôuÀÍ¿1}#p æV8ÛpƒŽ<õ!âªqô ½½ƒ£j·9ÎÁ.t¾Âå­èîá.tôÙ®‰õvÇÏÙ¸ƒ=]èhoGGgM’OA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚x»Cšh¢‰&šh¢é­›hCA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0|›O<Ï#ŸÏA¼£¼ ÐC„!AA¦V'I’ðÊ«§0>q©!ãSŸ¸„‹ãvŒOØqqü’ÊÄ%ŒÛÕ¿Çí·O`Ì®®sqbB]vb'ì¸81‹ã—0fŸÀø„º½‰‰‹Ÿ˜Ô–·ãℽæ1¨û´c|ÜÞðx‹Ë^œ¸T:Þòñ—Ï£™s7l¯Ä¥¦×-oÃnØïÅÒo Ö3Y Ôßµ¿M¶§?nã9W·Ëc»Ö¦òº]ÔPÏÃnzÇ/éú‹ñ|õmR}}kƒ]w=šXÎÐÖöŠëgo­m.N¨ŒÏcÌ~©ÌÄÆíã·Ûëžoõý=YÑÆµÚ¯úz˜SÙç[¼Kç1®=GjßKÅv>a gΜÕT =ßIA$ i2yƒ›ÿ¬( ì¼Í¯ «/.ùµµ5êÏ$ ‚ †4µ:°T®å•&×WJzÐàFZ%ÕÓ‹É"&Âèó>M4]••íDè²··"f­/GC†A CzC73p2†²‚¥¥s#C•Ñ!šað'Dl¥Èæ"iÛyQMA“+(àE@)Æ=± a¨!) ‘ŒŒpZ/2(¬†…àZk°]\§ckvŸ¨6Õ ål¦=Qc·¨qÞõú8k`iCöiFK]‹kÙèºhƒïš×·¼Pù[ kdí¯cÕoÔ.’ÞÔ<¾&Û Qÿ®÷¹\Žb IA$ iÚ±0\^m8 •dàMOw<ƒ;žIà¾S¸" ÞX*àžiô¾žÁ|PÂzRÁ׬¾q&‹@RRÅž¢s;-`C$£àžW8|þ¥4¦üäDF„áÕ CŤ­L\•eI1 ®w0äs2EƒUª‘*áRê—¬!VÏÊg"ê " D(êXÚXŸ¢±ê|Ñ‚å³Yëh3.  t!ŸGÀçÅââ"üëˆE¢ˆl…ÛN ²E<‘@<žÀöö6É$<«$“9dSq„¢!„#ÛÈç%ÉDÑØ6Éb±$ ‹xöüœþ ÜÁ4f½)¬ÒÅsðo¥qi!‚W.mÁéNÀ1¿+¾8–æ½ ,orXÝLcÁËai+‹9_Ê^Æb±Ün7VWWáñx°¼¼ —k ²$«}W†y.ˆÔ¦œÿ ÄØ$²›¯!|ù0X>‡lf³Î |iOŸÛ‚o[D2™…c5‰õˆûj ¾-þ`þ°o Šèv…¼}â©W§r˜ðJxe6I¯ˆY¿„‹+"ÞtåqÙ'b3-éÚ_ƒ„TRÂ'gÆs°-æqÙ/`~]Âìz“k"V·äy\y›æñꬻ[D$©À±"`vS®éK„!AAÂÞÐWm1Ô%ŒÑUÌK «!†ÒxßW"°|iÎçqe“!Ä)ø¦Ã¿¼w ¿üÍ(Ž- ààÍ<"’¼Æ€‚l$dX— Nåpx2 ¿ˆÕ˜„y–½a<7Ã#–aðÄœ^qnµ÷¶Äò`§ýÀ•°™^XÎú X޽¹ø8È•n„ŨÂÊ‚·B0(Œ½ê*|꘶®öo™ËB³ø)Y¨Š‚ToÉbæ–¬*¡Çšpýd¥)‹âÕ¸³²&D^£}Öú»(Ðë `T´]ƒc ylmnhbÊ…Ù+³X^\Âå™ËXZ]ÁÒò._¾Œ©é)\™ÅÒâÉ bÛ[pÎÍaii‰$‡íX‹.'¦S˜Å•¹E°<0xnÇ.ø°ïÄ"¾u|Oœ\àՋ§Oy1tfÏœñâûg61òº}/,á;/-á©7ü¾°‰‘± ^¸ÀS6<ºŒgΧ¡#Ïó…BX^^†ÇãÓé„Ë5Y‘t]GÈG8‘öFríe$ÝG°ízLàˆnÂ>åÇþ¡E|÷Ô:®¬ç0·Å‘s~|ÿ¥U<||ƒ'½Ø74þ—=xcjpÉŒj™Ôä†ÎrãðÝS)<4’Â?žLá±3½ÉáÈÅ,Ž/*ê½StéC".þ”ÃðxG/äðÈ™~p1ƒo½ÊáÙó^+ “a[0ëqf>þÓiœ)àç8ÌúEÔ*sCÂð½) ë>‹$ø’ÀøÂ)à÷¾|øÐöM íaà·þôÀ—ßžŸ6¹ºÏ.¸A0|︒*F µž”ñ¥W9X>Äûï áGï‹À²g¿ØÅéUœÍâ'î ãWŽáåù&ÖþÉ=AüؽaLoHà©IÿóÉ~to–»Bø‘Ïmá¿|;WP¿úzï»'ˆWæ¼±,¡óÙþÉÞ >x ŠQŸØÖ€øõç€?<| ¸õ8ðüpt ìË€cnè …%‹ ¢½Ä¡b° ÆM 2Íb¨¾UËF±=d((™> jš˜†RW ÅaöfE\³–·¸Õbë6²ò5+›šÜJì[EDÂ[p»ÝX__‡gÕÉÉI¸–—‹Ç±Û†×çƒÛëÁúæVWW‘ã%p©[$Iäøñ8<îU,--ÃçóbÕíƒ$J˜YKau=W&ƒ8éãU{'/ñú•(NN…ðòts¾4V—¢xi,€—&C˜ZMcÙŸ„g#÷‡OG.¬ãÍ%®úƒ8ŽƒÏçÃÜÜæçç±°°€D*©ûœ£þ/Ïm!éCtþ(b Cˆ->‹ð•#`…âÑf]›>ïÃW¢Äó„³ð3¸|e GFC˜q'pz*€3ÎÖBØŽE‘Ì †ö¿è–ã%L¯åñÊe¯8r8u9‡ç'2xäl—C²v?•r#“b˜Z‘ðÒt§œYœ¼ÂãÑSiÜw"_P†/$A*3nÇ/çpr‘Ç…ÕŽNdqÁ)a~C4ÞÈ:H¾G…¡™W®„ýcÀŸ< |dðᇀ›>øÐÖ«þÿƒ7=|øaà×÷·<<6 øª¨¬áñ–ÂçÀ8 8A„á[ãJ*—-dZ\`.¯`Ò/ã‹#¼ï+aX¾Âçsx~6µ„ŒϦñ/ï ãWŠá¸+ñµ<,{·ðϺC˜ ËxeQÀ¯>¼ K×ھŞIúD7ÜÁï ¤pt¦%/VðoBþ7O?ûð¿_;4,Ä€µ`ßókC½5Ð$ ‰Áͪ!Ãð»Þ"XtETEg-TÀŠV¦Ö1ZUÖ¬ÆÖ]ÏXÇ$üiVÜ­'cidY¬'  Ûò@RÈñØÜÜD¾P(Ï2µv²Úîµ([ÃŒþÇ ÛÉ<‰< ªr» ²?ê,Ý5êÀ H%SX]]Åää$B¡ÆÇDZ¹áWŸ…ŠÁïL*@Ê¥¡d9H9ЍöÛB!!Ÿ‡$ËÆã¨ÌtZl§¼!/“ù0˜Ö>ÌK ’9 ÛYflŸÒŸ¬ä¹­àEà’«€•¨¤Ý”5,ózq¦”ãk•« é½e1Ôß+þ$pðpûQà7÷7=´=И>ÜôMà·þØ}x}Hå·ã[u^ñ 0p h{°èÙts§¯~/˜+ùîlÚßPÛͲ°×9ß¡g¶ý@ûj:ºŽ£ëëå®êµ Ö?÷¤º\Û³`¼Ù2Xÿ Цm¯ßMB aHÂð‡h1dª¬r VGá}_Áò¥ίŠÈ€dNƶ ~¢;‚_y(Šó.ú$X¾ÄÝÅ|ˆá Ç9ü»û#ø™¯Gñø^b(ȯÅþ‹¯Gðþ{#ø÷Äñ/‡ðÿ=Ŧdùðºø·7fm^+,ŠW™•­yLQÅmUü`åI› Æ+ÇÌ`dREÖGºšŽ&®µb Ñ 6¯UÍf\BŲ&·â[†Mc3w\SAØÐmV1Ãó£¦Àgæ×Í`~Ö,ËйccwõBG‘+ö£”U’R잊Q]’‹Ï<…A–d0Vü¿b¶¥Ëe±UycW4R±[ÚH³ˆ+ÐÊÉÎ…7ãE»fLw"L;w%€¬¨s&VÍQ˜öѪ,DtmM„¡~š ßþø{Àënì5½&÷çýú·ÛžŽÎ©®¨o¥ÅÐþF…¬A#!RÛ u}KïòfØ­k³Î µ—x¬¹vïžÔ­—:lNÈ9Š×õ10ÎL>YÞGÇ)0‘DA„áMªÎ^2Ãà’A(3L®ó°hÃ3+yäe5ûàƒg³øñî0~åá(Ž»ÔDïûb¸?‚…ˆÝÃIüTw¿ð@Ï:Ý~5ax_?ÒÂÿópøJ?ÛÁ9‚ ¼îûɃÀÏ> L‡Õ„3Ú€Q–ò/Vþe`óbÓß]‚kØ„‡C`b[³I@6šE&Ê#º”Bh6ÄZé ™õ i ãÛXYÇÖLS¯bkjbV* CÝ@_QL\Gu_—A@¶2k$ZoÍXÒ®Vî4Ž‘­G¥˜@³C®ˆ©¼*Kh³î®¬{o¿ Ç\K€+e·e˜Ò•``ºL¼êRÅq© R q­hϦb=+?6TZÀý¶•š×Íà†­·ÊÕ̹$WXöÌë•ÂÐ6E×m£Å±´-ËXIÚ¯ Y IßÿëIà;ÿõàÃûT‘wãÍY Íøµos x~ˆóoÍ9F24 Iƒ‰—³]0ZÒÎöÓÿØ{Ã*Ÿ­¶¸Öj³M˜usyÁî2Ö Fë­=ݺ0tÖ†•¢ð  C†?da¨˜¸{iVQ&×EMnáÌŠˆ¼$ƒ<`ËâÇïàW¿¹‹yŒy%X¾ÆuG°Vðí üÜ×Ãø_ã3GRxe1‹ÕXÎ@®°Œ¿?Š÷ßÀW^Éá¿ØÆ¿þjOÅ1<«Y­^à†Çÿç{€3HJÉÁ¥9¸ÝnŒ_‡ßçÃòò2––ᘚ†g̓øF ‹/l`ô\~Â+Oùà|΋Ùç½]‰Ãþí%Ì|߃ÉþeÌ zà±…à~m cÎÁþl/s˜üÎ2N}ÎÈ\² 0Ëš×m7Q(ä ‚˜°OàÊìÌ/.À½æÁf0€X<Žt6ƒ‚$©‰pP#‰ÊÕ–Þj×ÿkV4Ö³Ú5[†ƒ5á"ÚŠP­ñ·YÉŠš5Vû<+„¡^1û%;Þ<{3³—‘沈,¤p¡w¯wÍÀýj“.â̽W°t|o~Õ‰éï¹1úyLô-bqx‹Ç61Ú3‡©GW±åH`ú±\x`±å4䂬µ‹6Øge·¿Z.¢ª0 `aa^Ÿž5/<Þ">¬y½ðú|ðû×±¾±‰ÐVñxÙl¢(V7o)>h>®°Y œb6oȸ›¶àNÚ”[ªÒœ5´äq©;¢›f1qQ•ø€ÞU³lÑ‚VÛz×`Ë%cŠæ[‰Rß©év[% `.  Å„JÚŒbù•J‹§Þ$Xj¿ i]L 1 dQÔ1ƒ€S÷§”\J+Ï»ÂB };1£’UºÇÛY÷¼ÒM$ ߣÂp†€Ï>ÒWáZ)özËÿo( µe»øö(°묅#áúË>iâÖÈÀܳe¡R¤mp&ËBf÷þj+š³†Ðp-”ƒ&îºmYµã“@ß`µûeϸÑ5ÒyVý}÷¸IÌž¶Íâ1—í{ÃxnCë Út»lå‚ÙŽ–ÏE¬# k ¼Ð^)¯FJeË­åA`w7×V®ë€»öul?F⃠aHS3®¤úÁ¥QŠ °–ñ±Çc¸ù`—6Dˆ€ÃS<þp ¿z6Qo A =¸ß{"…¥° ^dxcYÀW_Kã÷Oà#ߎá7‰ã3ÏqX ð‡ßOàæG⸰VÀô¦„}¶,~ï±>ýl ÇçE`j ìCùóWÀV“Z<¡:rE Ç! ‹Ãëõa}c~ÿB[AÄømWžòàͯÍ!4“ÀêÉuÌò`åÄü"Í&±~>‚õ Ql9Ï&q&™K!²À!êJ!8à!‹Šq,Ïtu a´`ûe>/`s#€T*¥–î(ˆÈdsH$SˆD¢·°¾¾ŸÏÇ g ÏÖÖ|ðx½ðúüXß  !ºG*ÉÏòE±Ú$g–=¥YÑV\3 ÂU»Vĺ•s©0ã â§X>„U»BVÕ­c&.hA@…]aK‚ÕžJ…0d&ÂÐÐV0ÆÂÖŠ_jÇÖÕa¨obEg3ì:Õ§?¿Zµ3¡sU*.{Ihêú…^–úB¥0,/[_êD63ÿAÂð=* e¦fýý ’Ë<üÆ?ÿ³øƒïë~}_mQ¨OüÔ€g®€I×ñ\†Ÿ­/\ ¹|µ%ÎqÖ(:*bælÛVIµ„!ï-/c­«‘Ù²°ôI`,lt·l;PR–ËÑòyERûÕâ«(€é AUcÙ@<»Î–¬¯,ÂÀ¸¥Š¶hUê„æU Ã'U×`½(쯛ØÌuÕ},°­ÞFÏÍMv’ÄA¦æ„a­˜*…Ûi†¡Ë<~p™G0©@a@Aæ·D½œÇ‰9  Ûœ„×ynQ'vk]7¥ÖÅEãr%EaHÉgÞ›ÂpÈ |äáH5aø?IÞøì3†µ²˜ö³^Çd-EaÒþ†¹+`Û“2 ÇT+\It0qù ê„AºIëXËc`,Y,#a£›¥YÜcqmÇ®B6¯È»MÅèÜR-î¼ù16 *w( +i;Ñ`f®k¾l î™-/7z¢¶%‘ HÒT[ªÂ¡”5°˜ð¨vñce·J r±®_ÑuL7•M¬?ÕzS)¹ï) +Y™ KVÎgȤX% Š -”êA©\£.AÈ*Æ Œ& 1JÙ‹‹ê252EA:Ââʲ–\ÆL%Uùê™—G0ht¹äž˜ÉòˆÅXßXÇâÒ2fff1aŸÄØÄ%اgpŹ·Ç‹P$ ŽãP(H$²,CÖþÏÌèÔ•ÉXXé7­­ÅÐæêõQŒî¢LV¿ÜÖ¨¨f¨d5­nQTÃÂW7M3"h>ÉŽ¡~¦¢¶m=$³ß%íwI÷ïz˛̫»ŽÔø¸šAÒm[û¿¢(&±€JùÃJñƒär2³:ˆŠ‰Õ“„! ÃfÞÿJ-^_·>á·Õƒ>:L¬XßbxcoE)‹^àwúÁ¾3~ý…¡™5Ëqª†¨ÐâÕô¢£óY KÎ:5šl]êE`1®Ï}Á¸¾UÊ7n~¼­ÃŽ³Í·¥õ¨1³«m°Í‚ÓÅ=.´( ƒ µ·Ua8°6¢;N½˜3[§™ë:z¬BDëÊu P]D‚„!M-¹’êc `P}VE¥ÒŽkÃéGnJµð)YAô›5ù±²¥ÐhÍT´ë®Û«p©S¤:>púÿËÕ®•ⲎŪ$š•j#Š2ñ$VJUf´xê¨>!¥k!S+Y]£ŠñEVÉdŽF°æób~~öKSxsô"F'&0épÀµì‚oÝhlY>WÊŒZ÷h`­Ó]b»²…K©( T‡@–º«²•Ë©)GÍeÍÖm4zz“““p8¸téÖÖÖ IR!-£\Qÿ!G©è+:ñ¨4¸V5® Ã÷¨0üýAÕU´Qñú?ü>ðë}ÀË‹@2o†7šÔ6¼±"‰Í¯íûûW®ß¹”\1Mb ãa0û’ŠÃ ”DŒ&´Jñ‰ èYÚ0Ô¹-[}š{i—CsW,ÆÖ(!z¯^¶7ëb›®NÔbÊ“F d±MzfÁøX<­Iª%Cj%¤Ù‰0ì_0¯³XxUq§M^W½Û¨=Æ/UÄ’ð HÒÔ¬0T`êªY(S y,‡ x}.•$—+’YTjf"´ôiñeõG—qè‡Iw/ÏäàÜuVBÉ Tªµ«p5-/MÊxÌ–Á—‡9¼0“G(Ë4k–jÔ+»Ãê]g’ ]9ð•û)Ʊ)Ju"T[ªB±,æW#ØÜ ­#&% ¤ó þSËe™em¬r5„‰of…;ªÉøØ_]Gw<÷xíD/5Ý;5¡U*žþ,X`ÌÖ± ÙVçw& ãºD3îõ²±(ÞôIjZ±v\aè›Ô%u9ôé9ô š'°iµM®&+)_ÃíÕòX\o)nñºêcB»gÁlÇZÕA„¡Và^Ÿ,B?æâó NœOã+Ã>õl‡Æ³Ø÷jOeñƒ‹|ûT ÷Kâ^åp|&þS)|ýõ "†pŽŠºj­à‹c)|âP l<¾{6ƒ§9ÏâÓ9Œ/ðsÈ´Qe>ŸG&“A.ËC.ÈêØR«àøh ߟÌâ…Ë9>ÇCUk¯,Éà2i$ „äÓ9är9ð|‚ N#ã’à2iÈ’Œl–G!/"ŸÏ£P¡(oÁƒ\1 úPÃSø›¡=ŸÁ+Ÿ!sK°r8p6‹þ3óƒüœR/cÕ.— ªûYh[Âç^æ0p!ƒGϦñÕ—SøÊKIì~!ožàðì”@V-G Èd2ØÜ\G8´…B^³&I0$µ9içñÝsY<öf¿ÊáÞãËâûg8|ýd?œÂ7ŽrøÌS |}„Ã#odqðõ ú­zG’ø›§ÕZ‹_yqŸx<†#WòØÎJšÅ!_È#X‡gm LªÌ²¢NËþm¼9]ÌHÊJÅÀõª-”•ñ­Ñ ~ëÀ6þÕÝ!üÜ×Bøûc)ŒoH¸ûXÿýÛ1|ÏžÅ\P„Ý#à¨#‡ÓË$r5„a)Eª\1K©åuZ5ÐSd’$AEDùB9žG"•@0²Ÿ_͘zùÊ .M^Â%Ç .;g±¼ºŠõ "Ñ\î8ny"þó9\ZÉãû·ñÕ×rè;Eïñ$¾ñR_|!Ï>Å×OfÑûrŸ|6Ž'Æyìy!…O?À÷/ ed±P†n·@²$7vv–T§acB™‹c°äšÇêÒ2\®%8s˜››ƒËå‚ÓéÄêê*á÷ûá^ucqq ‘H —†ßçÃì•+X^ZÁÚÚæççáYóann KX^^…×ëƒÇãÆÂÂ<ææÔøÑ×Ö|^,-©Ë¸Ýn,,,Àëõ!É^'E ïZÆ/I'&3øÒóI|îpw=—À'ŸÚÆ×_åðÇñ©§¸û…¾w.'ÎgðÅ—S86ÁãÞ—ÓxäµN¸ à%¹´Ýd2 ¿ßÍÍMó¬¯$ I~ðá„áÀñ ¥†½uÏ],ZѰ(‚v_ã›t1,%1©!„ôYIm:!b×%|é[¨°„=Ø5÷I1 t¨N”ÓŠ0ƒµ¯V ¢+÷Æz÷\}¶ØV¯k1&´Ý$•DA¦–c MТ8× peX—yØ\yÍâ%G§Œ­æ1¾ZÀØJ§œß8Þ5!›)ÍÑJVRM./¹à^]ÅÊÊ \.W §Ó ǃ`0ßš^Ïâ±’É$|>®\™ÁüÜ–––°¸¸ˆÅÅe¸Ý«ðx|Xó¬Á»æÁÊŠ N¸\ËðúÖ±â^ÆÊšn·[[ª{éêê*¼~?RéÌõ‰‚Riwý6C—s8íâqàl6W_Èà©Ñ^¾œÇº„9_çÒ8½$àÌR+fà bùC†$i÷»¯-JI¾·…áo>ªÖ(¼ÞÂðCûÀ>;|ýÏiôTsqe–Àh¸¶pë¬H¦Òí0qÍZ”ô"Å,fM/Ê,Oºúrz×SƒòÁ«†ú6¨S§wß,ÆIþ°…aeÈb6ÕV®«Yl"Õ.$HÒ´#aXÃ’¢(@"£ [`edlg,DøbœŒí´Œí´‚í´‚pJÁF´€åS]kÅxé,‰²Ì°É1d†­„Œ•ˆŒ`Ša+®àòºˆXV”ú¥ÜJÉ‹±†2à‰H¸(ÀŸÁåÄ8àŠ'ÞãŽ/æá ‰X ËðÇeD8±´‚0§À¿-cj½€ù‚`BÁ\@D&ȲRΖYGDûd8Æšg bÑÝRQJ‰û¹<Ãó3>w”ÃîÝÆ?ýR?õÜ÷j¡4ÃY·„Ÿëàwo¡ÿ|—6DŸk^Üž5xÖ¼XózáõyáóùàßXÇf0ˆH4Šx"l6«Æá)JóÂPy‹…¡öï¹¹9d³¹rò””’1fø˜À± B’$Õ· 6'€•Æó eI åcŒ}W<†c«|æ2saxÕ‚³xÍ\C0$aÈ€/½ü×q†7êÑ×’Ïø“À½#M¸> &´ùÝ~°Ç.½Åç'©Y1}a5É—oRXjIIIsY„Ë©ˆ-ZÇY¹tyÿu]Uµó „ Tˆ«»®%ë$Õ.$HÒÔ²0\2¾äµZqfI&J¿+&ËÕ[G©ñ[½ß•Ší*õ`˜‹ÁЇâo LQ ÈuŽUiÐuÎ òƒØØØ¨Ð*r¢‚éÍî}-…ÿð>ðånüö6þÏP #‹<Ù3øÀ=QÜøpo¬˜Xñà«|å‡7– (È ò2ƒ?!Ã0æ•0’N+˜\/à+/§ð}6„ÿò@Ž Ùx¦ƒør¡t¥yAÞª°.ö;ÆÀç$’I„Â!x}^,.¹0ëœÅ•9'æç±´º‚5ïÖ„"aÄcq¤R)¤Óiär<„¼Q!ËŠVû²|=Yiîº5ÙO ý¨X?QAUßÜÞÞF>_(eq­…,ÉåÿKåä?Ь€Éå}4ÚN+÷YIݱ^a)1‘TM±Y1mË¢nø<©q¿)²¢ºn+ ž º¿s9†ïIaxt^-CñÁ&„aÑbX++é5DâþtìŒç½7Xójù†á£å2³öö„ËE¼ek0Õ.$H¾WßÐ-àYY..¹Ô„#¢„BAD¡ B,HÄæ åõ Ñ0¯òïF¿ë·W¹l½u̶_(ˆE ’$B’ d…‚ EÊCÌKD¥éóheŸ’$!Í¥±¹¹‰P(d¸>úŽÑœ‚;_ìÝÆ¿ïÞÆÞWrpEøS ¾|2ƒû»þp ‹þŽ\æñá¯GñßFï™,ò"0Ì£ëxŸˆãÖ'Ø;œÀ±¯. øÛçãø±Ïná‹#œf(ȪU1/ëU lp…”+cµ² cÆÒŽìÚöSýO…Bé¬Zƒq}c®•%Ì\¹‚KS“°OMbæÊ,­,Áë÷!ÚB<™—NƒK§‘Ëæ ðj<š¨ë7b¡º_™ö=±úúçó…’*ý®Yô*ûeñ>ª·ßzÇ ‹ê~$Q*ý_ß'õÛÛÉ}шâyšßKïeQT—ÓŸGÓ÷MÅ¿ÍîËZm(Šê}—Ig°ººJïƒ÷š0Üä€[ž>ôÍæ¬U°·±8üÀçGÀ"Ù÷Þ`mొ¤3K4€};b({AIg†ïM1x•Ë(Š‚åååÅo½•4p55$¡0ÄÊ15.PWÎBF1<¯Ž­Õ²‚'•J!¨ÕÔk­RoËQÿ`ÍâßßÅî‰áÉK900„Ó úý$~äs!Üy$…‰ ß½Àãº#øÿîàûó!†?y2Žºg¸;Œÿt_¿ÒÆ_%ðóYìâð/ÿ6Œ½ÇSd`lMÄñ+\ô(ØN¯œ¤e@fP Z ƒP¬z]ÜŽ›èÇ|>D*‰À&VVWáœwªå4&.Â>9‰Yç¬Zƒq+ˆx2!ŸW\Ñ"§³@Õuo®èS¦ý«¢_Ö͘Éê»@ÖÜw«å4®¦ÇÕÜÿ¸Êý6:îŠí›¶5Y ߫½üÖ?6! {MÊR4°0¶=|fx~þ½9XÓ ÃNª‡÷ކ£ÛÔ& CšÇ}j Ê5’Ï Î Á­ DVgàΘ.I +ZguâÕбÀ|0DZµµ…L&£;ffH 3±.âóÃ~òÞ~µo#ó9( XŽˆø1¼ÿïBxð4‡‹ë"¾þ‡_úÚ>v`/Í Ø÷fïßÂøR÷Z9¼¼ áø"SË9ŸÃŸ<žÀ¿ÙÂC¶άæqã7#øWwmáÎWÓXZÏA>çþqpSa°óÏû,–æx(°RŽš‹ùf>`°ög}?VxžG,‡có‹ ˜rLcôâ.ŒÂ>y s sXu»‡‘N«uÿê >4ñaÂL¨ Åþ}|'"«Ù{¨QŸG“ûnæy¡/ñQ§XÓ¢ÜìóC›(+é{T2¨Ö¿Ï¾ üÆ·ˆÁ&b+çµ?<1ߣI<ļÏÑÀõmïJšV¯OmA0$ka=Ë cÈ Hg³G£Xß\ÇŠ{³Îù†YIkî³ ÁÖ¨\@e ´f¶¥¯¦…jQj¿ËÖ¯fÄ- œ#‘A(/§ãù^_Îã/¾ŸÀîá×Ä`÷Ke`Ì«àgz"xßßñü”Ûj{$_øjñý$N¹Üu,Ë_ñW‡SHèJÕ…8ß<Åoã÷láwOàƒ}Qü³=aüùá$ì ¹µðÍ àÿþõw~êðçÇÀœQà˜ì™E`S3ÛÔHèÂÐÄ‚«†×àÖ.D¤ÓilmmÁëõb~q“ÓS8?z£Çà˜¹ ×’ þÍ DcÛàAMƒ«°â×Ίw½¬ï¬IVç¾®Ù&5οjùzÏ4¹¾îo>ÇcmmÛ{QJ °ºÛž~­‘å°·ù ¦¿Þ|ñ°d´A0|B¦0òd2Äb1lll`eesss˜rLãÒä%LÏ\Æìü–WWàõy± `;ƒki¥¾Å°ÙÌ¢Mfmh©Cc MSÖ°êBäR¥5ëh“âY–eDÂD"‘êì”:‹áâ–ŒG/ä°ëh Mcƒ“ ) ' øéî0~âžl+áñ'ßág¾Æ_?›Âì–ˆ»^â`ùÜ&þÇ#qÌòÈK ˜ xc î>‘Æüz–{Bxÿ—‚ø‘φñ™ç’XÚVP`0î~øÉGqʇþ ppð¦ÁޏÁŸ…¼² Æ‹&¶[äNEP3ý½™åXý¬¢”“½dyÛñÖ77°¼º‚Ù¹9\šœÄÅ‹a·Ûqåʬ®®" "•JA¥ª uÅN#aêkñ5e•kÖ¢¾«=pý…k£ëÇZ¶··±±±ÕÕU8ç0se—g®`vv ‹‹X^qÃç÷# a{;ŽÇA  -“£:0–$ KK«WïN 4k¦w»kFP4è¢I—5¥®ºÃÕ ÁJ …B¡¶··M ”Þ¢ $yþ„„Í” QVÃ!Â"î?™ÅFÒX3¼<ÏãöÁ8~k_;Å!œŽ:ütw?¶g Ÿx*…ï\Èâ‚§€7V øô`?õ¥0þ߇£øÍï&ðOö„ñ©ç’ØH*Pg7€¿´?ý8ðÛG€ãn°­,€œld€µ”ƒ¨Z}yT íYU~(Pꈮ«µªëÎ¥(%©˜|¦žç‘J§ގ·îÇÒÊ2®ÌÎâÒÔ%LNOcfv®å%x}>D¢pkj³î” «Û÷ª¶ÕH4¶r5!¦›¾Фûðµ²–ÖÙ& Ã÷°Å°Ø7ü)à…9௎¿Ýß\b™R¬¡nÞG¾xR…Ñ\Õ;… ‚x/ Ã&Öh¡ö[¡ "“É # ÂëõcyÅ…æç°èZÆòŠkk>¬¯o ÜB8A<–@*™B:A6›E.'@ò(ˆ"$Y®Û>¦îk¿¢×UJU4Uˆßˆá»c9üÔýüÔ½a¼º’‡ xqøøKÀ/~ØcB9«(D((êÕr¹Õ_Ûâz†Zˆ0–€ñZ¨¢G.·s½Ø¾f„;Z°:·0è•$ ù|¹\ét©T ñX¡H뛬y½X^YÅüÂ"fgç0ëœÃòò*üþ „#jAû¼‡,ËÍO«dZucmUü5cáßi,p#/…f>(T¬GÉgHâ<`[¾}øß‡_?ÐÀ:¨‰Â>üf¿šhæ‰i`!’éÇF‚ âÝ. ¯v`YgY¦0ˆ¢žç‘N§‘H$‰D°µµ…ÍÍMlll`}}ØØØ€ßï‡ßï‡Ïï‡ß¿ŽõÍ’ŒÅâà8µ–[>¯:wÚŠ¢ÀÕ(ÆÐt&‹£—ô3ˆfTaºù¬ô’--©˜YòtJP©2U ¶¯h¿…™º˜2£ˆ4«ë· G"‘(¹V4¶ºšÂ ÉP­wuú\±mr È)ð&dlçÈP…ä倈‡ÎäÐù‡?;œÄ·Îg0ä°ûîÙÆÝ'8\Høèc üè[Ø{*PJ†rð ð߇€¿ö /—Ã/e†x üÑãÀ'žþæ%à›€W—­tÝþH7‚ ˆw’0d×` X#y…¢(ªkY!^Íf‘N§ÁqR©b±8Âá0667áõy±â^ÅÂâ"æç籸¸ˆ••ø|>ƒAD£Q¤R)är9 âõ«ÿÖ„0\jFȧSxóÌØÎÅÛLL]ÆÊò–\‹pÎ- ¶¹qû ¢ncš…`ks ‹.lF:Ë6SÖÜ,ÁŠG1;} 6› glç`;kÛç. ')%ýW€PŒ®Ÿ2tÛ3Z*¹TÓ“ÄÒ&çÆ*\w8°Öæonn" ªI+Ý/pq.‹3sY¼¾ÀcÒ/b=®€däE^D±,;5¤7úÅÊ``È€í,Ê©®«î˜ˆ§&³xjFÄZ@ÿÂ2Ø=6 û<ð†O4>+À15ñ‰q\¾|33—159©I[OÀÑïÁÙîY¦’X;»°+…ÜvbZ†Qà$‰<ä‚¢ Fíø™É0&³©!ÄkºˆÕ°B5ï¸ÔŠXª¥sC^Á¥ÓˆDÕ¸ÅåÕ8çç0ëœÅìü——à^óÀ¿îÇVh Ñx ÉT \&\.!/@E(²Ò0>±¥ø@ ©Œ¢-•‘Ùi)“fÝVA„a÷3ÐÄ}PçÙDA¼Ý…áUº‚2V‘ˆ¢ Z¹Ô#Éd Ñh`ïæ03{Ó3Ì\™Áüâ–WWá[_G0Äv<†t6£f2¼Ï Ü:´¦„!¦ÈØrNàæ?àwþÇïâãðG¸sÏ=øö?î׿üEìÞóœõþâö;‘ÌG"ž@ŠKC’%¼üƒ§qï—îÇ ¯O€çÓà2H¢ŽK#™J‚ `ŒÁíœÀ׿ô9üöoÿ~þ~¿ú‘àOÿüS؈qH%Sà2 "ø\ÉD™LV ‹“D¤S¤Rq¤RIHŠjQÌ <¸dãcgqë-ÃðØ D^@2‘@2™R³yÝX+Ä…i<óèwÑuçßá±§_Àð‘A<6ø,Ü‹—ñÐï`o÷—`›t‚Ë (9DÃA¼vò8~ç#¿ˆ»{¿ÍÀ=5€Þ‡ÆÃÂ>} />ÿ ºï¿ŸúÂñ8ÜóÓØ·ï1ì{ð>|ùþ¯cÑF*™WŽ¡÷«ÝØóÙÿƒÿúá_ÅÎ:1~ò%|é+{ñµžátû!¤ê~¢°Æq†&ƒY’á]ó" ›g•OÉxn”Óç3øÊ+iÜõ| _=ÎáÞ—8|óÕ¾ó{%ðĹ,ιœ^Ìc|­€PFFeÅ ýΙÈCAbݰÊÌ;:wß’~d‰cÔÄ>y¡€t:ƒD* 1_@Ò“Å_pblÿ\'‚ý‡EŒ~cãÿ¸ˆ Ìc¼wç¾æ„ãñ5xÏEàziKÛX|É•Wðœ Ásr þ³aHiÖ¸Þa«Yb›±´šs' ­ˆÌ?$ ©T ÐV×üáÇ? ›}™\¡tÎË“è¸ù×ðð“G|ø¿ü$~æÚÐóÍ}øôŸ}¿÷{¿öÿùQüÞÇþþæî¼1<€÷½ï}ø»=wãg~âŸá+=Š»¿€[þàcøƒý>>ÝñqüÛŸþÏ8<Œ_úñ ãöÏ¢ãO>†ïy‘XR—‹†é2e*-§ÍÏçóðz}Õ¥*t­|Q„ ÇzÃÓYz3ƒžSö½šÅÁsY|ã¥Iâ/Ÿ‰á–ƒqÜõbg×Dd  s*j5ÆÒæ6 ˜ñ‹ð„E¤Rn‡5:+fš5˜€ªÏ•ÉÀ¶ŸÃâóëX9Dx&…Åc›p<åÁ•ø°8¼‰…#>\øÆ.îwaå…MœÿƬ{®`îÅ ¸Nlàìý3xõs—°xd2¯4»×Œ»cSî¤;$î$ÞôzÅ2¢\·4™L"Àµ¼ÇÌe\Å…±QŒÛ'pÅyK«ËØÜ ™J]Ö¯…%u'Éq€ÚåHšù ÐàxIRŒaK±Êh¢,†Aïlah’ÂüØñ—àœŸÃÒÊ2|ë~„"a$¹r‚ &6iÖ:·AØLL¤r¯÷¥¿FZøš®yºåE)¸¯+ %l:Îá'ß÷/ðÅûûðôžÅôÌ.œy ·ç³ø‹ÎÏà•§Ç/ßt3ž|øüü/·#Î@äsÈåûÞ>üsÿ?òÏm7²XÀùÅÏþâ—Ψñqºº³—'ðGí¿†o>>ø_ýyxöu¤3›øäïý>ò_ÿ>ýWwà¯>óüï¿üŽþàQüì/ý2À€»nû|áK_Â'ÿ䣸ÜßíÅèŒSvüƇ>„Ã/¿‰oüÕ_àçá—ð‘ß¾O>ÿ"q®JÀ1}Ŭ¶ÉdH&’æߊR’d @$ ¬Ddlg6“ ³Æ× xâÍ,¾øB½žÁå€ Q1xö•ôk)#*Çpô"/>ŸÄC§8¼6_€+¬ ¯Å_Ê¥Ø>EKÞ£ï4F·A0/åQœdV s„¨ˆ'ƒi(øTqWá+I§ðŸ Âg `å• Ì>µ†¹ïû¹œ„ÖtlOS®­Ä6›ÐÆÌ=M®ÛLìÒ5¢,#Ëçَ¿±×’ ÓšKðØØ&''±°°¿ßH$‚L6‹|¡Pÿ¹ÕŒ¶KàÕP§ÝI’+i+ý¥aI— “‚ ˆwZò½{‘ à³6(ŠêBú–Õ>lÖµµøâjfÐYË5L©ãJZg§º’¾µü(lv²9²,áÊÄø›]·£ã“·áå'ÁúÅßÄñc‡ñO?ð“xê¹£¸ãSÿ x÷víEçŸ}ŸøÔ_á~äC¸ïÀ.¼ü$þÓ/ý>¸t¶B„1\™¾ˆýæøúwŸÀð¡ŸÿÏøÁ2™mt~âÐÞþ1üýÞ¯àëßø<øí'qâp?~ògð™?ý-|þÞ¯ào?óçødÇ'qß½=xø«÷âßü»ŸÆw¾Š/wÝ…ýÅoûwøè-Ù…e½(×6lÆ%°b^8F Çqj“Õ­O’!K Ь@ar•hg`PdõÿL+e‘/ÑŒ OT?® “×€£ØÔgNPðòå¾ðb{^Lá;g²øæ©ŽLeñærk[¢i¹‚¬f ­¬úÓ¬¨Sij-™õéFÕ9ŠÄç%0™A¤¬ 1'#Î!îN"ÍëNb"ÍÅž5ª¯×tQxÔ‰¹Û‰l”Mõ*;E ¸ÞmžD$)l¶°êöb~~“SŒOØ1>q —/_†Ë¥º¦&“Ið¼`þám'Ç«ˆÍÄ‹‘+)Y ›}¿6c'‹!AÄ»3ÆPØÎ7f‰lÙDˆîx¬b®¯Õ§ŽªóÀ³-㪀µXyI1)`þf*·YU2N£°¨Ð×°z0¥ø¹äJêZ^nøU•)2Â®ËøÝÿö»¸4·Q3]¹§Ñ×׃{¿ú5¼9r ·~êssÛøúïÄÍííøý߆WÎ\À ?xßýΣxé” ÇŸ~~Ç]8õꋸíÓw#›S¯‹ÂÊå-V—æñ÷Ÿû ž¶îøÔÿÂðk“à…οq_¹çó¸ùæßǧÿúoñ²mös/áOoýsÀ÷~ßz|ãgOãÀ_Å-ôǸõÏ>…O|ú/ñÊ…ËøÇ¯uáoýSüþÿž}ñDã©r¤þZ¶jÑaÀúú:"‘ø_ЬŠÃâÿK1`&”2NjûU +*¬ÒmÒ¤«æE΀€c³<ž¾$àÀé º_äð…á$þþù¾÷fW6D$yõ\Y‚ äKrý¥ÜŸyžÁ”asIˆe•Šþ¢SÅfDÑ5UwœJñcƒ,ÊóŠIûÖŠk+Ö¦Tt»RÊu++Ɔª€IÊf½šMÞÒj&PVÃV¹Ž.©•îãZYI–µR3‚€l&‹íí866ƒXYõ`vv—¦¸ti ÓŽ,,¸àöx …J¥Ï 8êy<˜ºù6ëÎÛLÛÖ³^§v¤émcجlE(‚,†Aïa˜Ç…Ñ‹H$M›ø3Š6VJ\Y™ £ì†g6Hb ðÇ%ì:’Á‡z£xd4ƒ0§˜€ÉÚ`9/C‰ó`™*þ4°š eë3s7Õ)c’ÎvÃÌ­¬Y W–¿$ òY8¯Ì!•̓) 3ðÙ467×áóû‘ŠÅ°¸ä†ÌÖ=¸ìp`vÞ…mŽC4ÅV0„xŠC2Ƽk±ø6–—=PÙ`4>—ƒÇ½Œð¶zÍV\KØN¤¡H .ßÚ*f.Ï`qqñTéd‹‹.0(X÷¹Ø #›áØôavvNç\+ËH¤2ØôzpÅ9 çü¶ãI$©ZVÆ6âñx‹ÅÔŒ¤&Ë3Y³JFdIVÅ’lD‘E)¹W%Ñ{wÊ )^A“áŽ1L¸ó™ËáÔ|¿–ÆÓã–¢ ²µ³(Š‚L&¿ß¯ÆE²j³a*'Á¹‘ÇÓã|çÍ4Fœ¤xµsdÅØë²* ‹¦‰JóR"€¡:IéßúíéS·?¾4²8¶jÍ2@šZ›-:qP­$ß¹J3£$Ë( àyéL©”V“5ÅF ïº+îUÌ»qÅ9‹Ù9§š1Õ»†`h ñd¼ @’dó~Z«‰Y|tû­Ö=ËåŒÂ! C†A$ õS>_À¥KSc—tŠ‹Ë+Ȉ yIAFPà‰J˜ßâd¤ó o, xÚžÃü– ±FüŸÂw¬€}7‰ù\]'Rð%d-ˆ!“WÎ’È€­,0|)àu?ØÓóÀùu`!¼îŽ.qA7ÂFK¥\rQ4Za´Á³(yUp,.¯4% ¢¹XHž™ Ô²Y‡é *è,?0MžÂ´ÿJ…Ñu‚ÂX£ÐXœ¾*V®"k'3¬£_O·?E)šštƒVf^„Û¤­˜Â°¼¼ŒT*¥fª­ãÚkè¿ + Æ*á(+e¨“ŠN,ꎑiFIx ˆ¥l$%„9 £î<&}2¶sL+ç¡ CA°½½T*erÍb"¬³ö½žÂÁÑ ¾mÍáøŒ€KÞ®là‹Êˆ¦dij2R‚R _„Ì!Ï *®OQ­™‰?ïçJ³š¶ +[%+F¨:ã=SÝd‹YVµõJ׺‘ûh½8ߊ¾`pcSê ´רl—fm³±‰¬¾…Q”$är9¤8ÑØ6¶B[ð¯¯cÍçƒÇ»÷ÚÜÞ5¬ùÖ°æóÂëóÁï÷c3°‰H4Šd*…œÀC”$(¨ïúΫŽï­<'ÅüÜsÙ¹’¾×…a3Öüf¼jÜc4p#‚x‡ CQáœ[([ÆÃtžáõå<œÉàà…¦ÖEœsçqï±þÏ`C3IŸ~&†Šâéé‚j)jàE†dàò@€“ð¿søÑ»‚è|.‰•m [œŒ—çx<6šÅðlRBÎÿëeàËon~øö40^ó?˜¶óÚXš•„™^…2Iý¿˜•¡Ôß%AD äÁ­gÙÌ!³É#±–Ææ¥—š†ŒU æËZ‹U[~ŠÊe‘huKƒ{£û™Q2£0dŠÁ½±JÖyÁW C†ŠRL1Ô2Ô €f…a!_ÀÊÊ ²ÙìÎ’é:ë`QÅa¥ëi&³2†êÎI/ Ó»`ªH’I’L?ã2NϰïT‡Æ³ø‡—8|m„ÃÀ…,{3‹Áq/Nñ8v™ÇˆS€s]¯g@†; aiCA,ÃÀ‹ 23 Ã’¬[ÕÅôîÄÌ­“ºûA='ÅØGñCÖ¢0dï aXe1Ñ[¨B>.“A<G8Æææ&|~¼>/Ükx¼kðx½šhôÁç÷c}s[á-lǶ‘âRj™ Y6¶©‚Ö2É2€ÏQŒá{:ưֽت»xw! ܈w."xž/R[¼®£HÂpçÂP’$¬¬zpùÊLÕ̀™­>9˜Ä¿Å'OâØl‡.ñø#øé/„pÏÉ4B)†;ŽÄñ±GcxÁY¯yæ%†õ„„K¾FæD¼¾(b!$ãž‘ ~ìïøãC \ ˆxcYÀ'žŠá·¿EÏWÌII瀡¨C4k8³ø9C©kóh¨ó,fmkà×ðš«4°`e׬Ÿwpí<êì_³Õ"¬Bšõ±fYu^ç­ê*þ¼h]í×X»˜†+Oá5>Ÿhm¤Ù#Íx>ÔþU44œG[öÓ¿¦§y%óËæÔ¢eˆVogzY6¯†ùKñTƒG©Å 4,^‹z*Ç v±¨¡•]YÔþu44,¢-+*~þG»&ùc[Õ/}ªý¨ýkÝ÷"ýúŽUõ4±  ÿâÖ{Oy~”ÏÁßI`hÛþ‰‡™¾ÈžÜ#ÑðË ~ÿž(OíÎÑ´ØÜ£ògâœqK„Kß“°,ØãÑÙÔ®Ñ00m0MAØâ‰Ý2¾žâKFùÛÇâ¼Ð"óòa…ys€¯<Ÿds·É-9~ïŽ0_Ycÿ°mœ;À¿^¿÷2<Ð ˆ`Ǯ±P< p×êV82fpÜgstÔ¦ËoqÂkÐÒoðÆÞ¿X“æ¶­׿—ââ7RܵMá€×γ®Sn:&NcèFEÏÈS„¶£1ƒu‡sì6Q´Òc“ôTçGN#å¬ççzÌgf*>ëÉ]œN7ƒXû< ¶³&[ÎgÈ:Nñ|ÇvÈf³D"Ƽcô Ðv²#­­´´áÄÉ6zúzñŽûˆ$bÈrÓ0±, Û¶Éæd<##Ÿ_Ñ0<½€a=‹3ÝG3,„üúá|ºªÙšh3óXÚä-þÍLz9ØÜDSÓA<Ñ*À¨Féj=Hss3[»Hš•24o[+MMÍx^V.h`þŠ6Ô¨—~O ‚ 2¥ýž@xPéj\JCÃ<Ö¶y û6%ºZÒÔÔLkW`z`8%Þ@?ÍMMló”^ÓLâé÷V€¤¨×ƒ7ÿþ’ѬY†ß*†R~­ý^ZW.˜šxûÛÜsÓÖ_unþ6š›šh>X~ÞL¢QUÅÛÕJsS3]^·¨tµÒÔÔD›': t÷·¤©©©â|$»6¸×rCѤZ<¤—ƒ“^W%àË_3‰Ç@U£´57ÑÔ<ùºK~w­ýH’»½)žµ‹hh˜ÇÁ2ÀÒ¼´†y+HÖ8?MKçÑÐÐÀª.©,.Þà™þZOwý²³†jÔ‹7ª¢FÝkÛ{@;÷ïôg ©“ ¤Ž…ñyKIkÃdÛ*XvÐÑÖ•“ä¦Ë›½y©Yc 9jA˜dÕ¢ÉRÕ+Û4-qYÉ2F¨iI Ë+$‡jWåk¯ì’ÑVWfX>¯­:]+Mzý†E«H ÔæV©®V44а¼!²ùŸL†žÆ¥“÷YSJšdíâ©ÎĆ%óª[ÄÁ€éǼÉçmÑ¢ù•× }„ÔÅÒªíç-Ù€TµŸù+ÚjŸyË A¶m É ¤üÏÕ£À"×< óÝsiª$“å £ <«]îõœ·œ€Ôïþ\»Ns­§½~¦åçÝ4 N ÛVÌŸüžææ£JóòU/¦5*f¼GD´¹È—šÀÐ °bÁäm  ¹&0T"™—Þ6, 5iN3'TÖ.h ¡aYé>3ûYÐÐÀü*‰wåù˜ÏžƒÓÌÅ5çζñIsðwZ–Åö»\ƒƒ) ©PÖá¯_Lðï–Fù§wÆøçwG9ë•ëÛuš\»^â÷îŠð‡Fñ¥/·(ü‹›üÙ“i:&Wn’øÃû¢üÝSq^;’«øF9ì±ø³Çbü»û"|iEŠ?}"ÎïßáïžJð~§–ƒØ9ÿíUø÷/â¬ïG¤ôbÁmš&á`„ÞÞnGFéïïgll„p(„”‘0M-¡mO0øQ€ñ£Q,ÅFÏ:XJ ûÐü¡Ù–] ¸¯CŽöúŽ»¹fÅ·¹ö¹EÜöê­,ó^^xñY~7=s7?yR2…kz“åãÆÍï좳»‡®®n|ºªÐÙ~œ¶Î:N¶ÓÝÝKûñc ‰ÆèïëaÏž=t÷ô2êó1 06¸es†Û5VÈòö¡,¯7gyf{–5‡^ÝŸe[—Ék;³líÖ]ÀP€ªƒÔ+MKD»Yá8“aAÙßÈf³®$òÓ÷3I™ øM]ð¥±u2–®Sªƒ°œ|ÿ¢°ÓưJ9Œ „#ì¢KjÖ*Ĭ¼cªÇ.™ÝX¦aØ5œj– £ã&÷lL³ö„ÊG9^ß“á©2ï´(lk×ØÒ¦ñq‡ÎÆ“:{ú&¤J¹©n d] Y³>ÌÌU÷ÖÓ·4[føTMff·N—A8k&ûT$¬§*[î—¦Ä)üA=œlïàÐá#ì?x€#G[éèîddt„`8DV–1MkÕý6ö¬ ¥f\Àáó† ,Z²”¥Kݱdñ‚bÑÛ& „éaqCó–6æ‹z“ƒ+Ðаˆ.ÕdÃ"ìxóà2™/W´Iš–æ d—­ä Ë+Úf?‹Ê Eµ‹å,Qùq¶­pAGÒ}ýÆÅå‚o³ –4z§†+Vòæ@ )ž+uu© –ýœï+ždK¦=ù÷´hƒ{\¦§±n çfY£Û·hТµ¨ù^̆†%tI¡öç‹üÅ´%ÝÞ¼¥ Ì[ÞŠ&ÍKç¹ %Y ì—6Rk…l±p>Vt)?w+»¤ ÐT˜ó—5ZñzIm,hh`Áòf—=*‚“e¦‡åóg–&'[ËÆÖq­§¿~¥}× «Ï·ìÜޝö ×dq#æ´÷ˆš¿Gò×NH4.?%0,€Ý"4=e׺Öý»ˆVoKÊæË s¢ð^Öæ¯‡ËÐΣ9Z,ç¥ÇɪóXš¢^¼É¨ —6åŸ`ù¼Â|iýL¤³¿Àpï¾}¤2éÚ΄€iC[Àà®Oþõí1þ¿÷ÄXס•þ”ÃÒ$þÛ}aþwÇ8:aÐØ§òïï óG&Ø=lpï®,_|<Îÿº7ÆUïe92a¢; pxÔæïŸOñoo‹pæËvfùúò8ÿï_øã¢¼ÒmB[¾´þÛëðv?$´JæÄ.Åã ÊsönY^X»§Rœ®«`…”tš¢ÓAðöÁÇøåSßäÒG¿Ì½Ï_ÃËO-å•Û~ÉÝ??‡ûun¿û—d3 `3>Ô˃ØñÉö8Dgw?þ±qRéŸ|´•Í[¶rààšw7±§y-G;õúîãàÁ}´ke÷îxÆ“‚sWÅy¤1ÍÍëÒÜ·)ÃË;eVîy®)Ã/ßNsû{IÞܧðö9]ÔUÄ×õ33³)¶ãÐ×ׇ®éÓô¹ÇôûóŒ‹EQr2¶e{.E58ª6Y©r­å–Q áÌR‚8%°qŽ]d§“¥©³(ü«ŽIÕlÞm‘Y±WfÃñO|œá¶Ín_ŸáMj”x`C†¥[2<¶]båž,kÛvôêœÕÙÙ­òq§ÆI¿MLrÐí¼ñM¥¹-µ"2ÊW œê9áTtfxNmeëh­ìÞEi¶¨ÅÏôºõÊIg%IÛ"‹DÉf³†1ùóXœjû¢¨½2ÕŠrs&˲±t“L&C8atlœ¾AN´µs¤õ8-GŽrüÄIºûz÷»ŒªöùÈPÅ0ü\r ëùü®S^ýyÄUŠ»‹³xñ¢ó·¨Ä¾¹†$ Ì[²’¦¦F646±vù¢RakªD<ýmlÚÀŠ¥¥ÇÚV̯’J¬œW*Ü.›GCÃRBm^Zbœ¦•̹ ¨²øw™±yËÛêè1Læ·m=%`è>§²ˆö¬]T»o/ æ±dÙJšZûIªeÇÕ°¼‚åô¬]œW…ãè*™öÌo aÙÁ¢°qq¡WÓݶ¡a šÙ°¡‘¦F×øeþòV„ÚV![œÔYÖïV«ð/1º*«òý¡R›ûXyÿ_ôà²ýnfžžÇ†VLšò€iYs È4Nw­?{`X5Wò×ÏË hh˜Çò 4nØ@cS£ ç-g|Ú{d¨ ûMºRí©€’ àñôÓz°™µ+—1¿°˜2ÅýÛŸcMÑÊó0åœ0=,)ü,ò‹;‹j›ü”Ï—Zócmì«lȳãó/emãÁ’\µjþÎCÛ¶i=~”ñ åI•Û¦fB“Gã¿Þå_Üam‡BJuˆåk–ùóG#ü§Ûƒlê6i›0ù÷Ç9ci„õ=*[ût.?ÍïÝâ?ÞæïW$ùÑk .Yä•V…ËVKüÇ%AîÜše÷Ék‡Î-Åüç39§ŠÇó21âø±£de•‘„Ã+ûe^Ù—ãá¦,OïÍòfKŽ7)¼|@å¾2<½GfÕ‘,[;tTã{M˜žÑ™ÊOÓu1 sà%0s9^}ø~.8÷<-ú)×]#«Þy—c'OÒu⾉ b¡0©¤TÖCGÍ~9gÒõ.µ._å¦h`4%»Uã¼LkÆ2UáTˆÙ°©c™4u’‰J­þRÂiÁ¡1‹pÊæøˆÎ–.mÝͽ&ÛÚ ÖíÏòž,wlLséª —¾‘äžMoì‘yè£ wl–xb‡Ì²O²3ÁXVÉe§¼VféMò;*;Ï%c&'o‚T«ø5f]2Ð’Mn™d·Òdé”LêÿÓ,¬º†Ï;Â@o?c£c„B!RÉ$™´ë.ªªjé¼llgjðXáL[K]œZã ”ß7NÞÍ8ïØk†®£é:ªª’H¥˜†ðŒÒ“7À9zü'Nž »·‡á‘aÁ©LÚ5•ªG²xª±Þðõ9`8ûCQǼ®~Þ=†¦‡eó]ÙX£WÍ3+‹…çüùó™?ó,bÑ¢Ålè—ð6-¯(N-.ÃþU‹ªÀ p E²ëªØÀZOÀ-N7ִįª+5\Òè©t;_[¦æšg”ÉæòÛÎ[ÑvŠÀp… ÞÔjsœ) ]­,_¼ B’·¡_¢Õ¬ª(Æ ÇÓ*UœÉ€§kÅ|›ž¢dн>ó™?‹-bÙ†þIF'³†åï³t îbÁºÊÏA #ÉÝw-¸¶Ëf™4RÌ|­=À°ö¹)°‰Ås -fÑ¢¥´œæé8Ââ¼|ZÔœÕÇ`VHgç/ZTbÙ§†óæå |šK,ãts¢(]†7ê²yÙøì€á‚*C¨(+–VºÑ®lýÌÌv~ã¡ã8tuw104Xr?¬aXa 8â·øóGãüÓ%!ž9¨‘$ÕáÕà _{:Îï]ä‘=2¾¤à<çŸ_àñ=2ƒ1›íý¯Nó…Çbüñƒ1þô¡8ç¿• yHcíq•;¶fØÒmàM:øÓ6-^‹]:ýq]u ©"¢*¨&Âv¦Îòª®ú µ¬%Pu&€Ø#ÛÍ€DVж šôÔ-±Ùz`7O}ø¯î|€‡Ÿ»«q1×;Ÿ;Ïý.þ»¿àêË ;;ßkg›†;ò`achš¦!IY ]'›•Ñ G8Ø–‰®ëºI"™Â±mÒ: G,Ã}a‹˜Í`Ìb0j2u#A¢Cq‹ñ”kV2ù߬Ý«F:+1:6V»¿°¬°úFøÕÙgñµ¿þ&=ü/¿öo¿»†·×¼É·ÝÄš÷>äãõ²uG –iWìÇ6 4%GNUÂ*¹¶ÉTïÃ] p„˜ºÇ®"‚šÑ “A¤˜¹Øupc3òÿ¶p³«£6ÊÀbE.cX³›¬FÞTÌ RŠ % b)ðFmÚ¼ëÛd^ÙŸå /íαú`ŽÍ2lÏpÿ–—¼•àÕCª{¨ùìFEQÒ䬜Ïs•çn º¼ͽ]¦¹1‰•/“ÒV÷6ö4óª,O“É.‹NÍ&I¤?í\¯4í™yº–clÔCOW7}}} 2<<Œgx˜‘‘Á ¡PˆX,F:™"q c\‡Q Ý0pÊŠ™Ì°‹|MYüeÙ!׊¢>NÛ±1tUÓÈærd¤ éL†X"N dÜ?Žgl„þÁºzzèèꤧ¯‘ÑQÁ ñxœ\.‡ašŸY/匽osÀð·Vó&—9Ì÷™ž ®„®ÜQPêgÃÚ tE},kh añ*…Ñ»¡’1lX‚§¬p\^ÁEY>¯y‹»®…­ÉiŽsAÀºÏiXÚ\¶M`J¹ÝdÆ0Ï–¬h+IT¥›XbwjÃÂùXYÖóå2£“¥¤f´U+ 1 &Ñþ&W†º¼µÆ¹´.ŸGCÃ2bf`ØV†vhIsûÖÚ¸–¦®h±(_Ù¥ž0¬ º ,òʲ9ѶrÁd)©éeíòEèìçãô×zúë÷ÙC÷ý-¢¿Üˆ¦­‘µM]¨ÓÞ#y‰å²2×Uoã”RRw^, Ù+U0¤ó§†óhUžUyÉt[ræ9!fþ-v]GûMq À°üZ%i^»Šæ<‹,%=nñ¼$«æàï40ò ÓÑÕíØS~q;:C‚/.óO9Á-ÉøR9Ýaí •s^JòŸo sGS†´g¿šâ Ë"¼Ø¢‘’Ͷ>gä¸e«Ì9Þ:¦HÛŒÅmNøu|)ANË‚œU Ù¢,Þ™¹¸«:nÕôN˜ìêÑÙ?l’–þ”ÅX¢}\Ç—09áÓ9äÑiÖØÝ­ñúA•íÊôæ3Uÿ6ÚÅê]kØÒü*¯¾þ8wÝq-7.ü7~ÿkœýWÂÅ矇e5\>Å” %ÿm[±MáaÓr+`Ëqߣjº}bšéF‹(¦@3]i f TK ÛUúÀz €™ áiÎO$Åï÷cÛö4ý‚Ñî“\ò÷_ã/ÿò+,½ÿaÞyÿC?ÚÊÊ—žåÂóÏâɧŸgÍ+/³ö£=˜†JÀç#‰’•²D}#tÞÇž½û±Ë˜ªŠâ¸šcEDYñ] {ŸäüêÔì§©8.f׳#ÊLoì«XˆÂvf @±KÒi+ŸI蔢,„Ía[ šÊ Æâ:ý!“M«Çà°G§y@ck‡Êê–˶eØÐ¥¹Ï·]¦]’d¡‰D³Pä—¡1GÀXÌà…Õ‡>éÖYdM䌲áªyí0Ý}]Žøª#•9ŒåÀ°V¯éL½©Ó1•Î,zÓ4ˆ„Cø¼>ÆFF »«‹îîn<##øÆ}ô÷÷Ó?ÐÏèè^¯T*C&" 'Pá8hªŒaZn¸#ÐMÍp0mÇ=w“³7'Ÿ¨-±35QWþfÙ6Ц‘ÍfI$S„#üx}^F¼£ŒŒ2ê+ ŸŸÏ‡b‚p$B*&§¸€±üûé·Í÷æ´ ¸¯W&Z/€ÿ\¥¤“íîû×.v‹ÆU]¥â¼a]^¢¶"«Ø&\`¸h%ž¤DÔsÐí·Ëƒ†BÁ<é¼ÉÍ+&³ž KòìÂ’ÉYv=† ,[ÛŒW2ó²¾–5¶MzÙ°,ß³Õ²olÁò&wÛ¼\qƒGÅ 4æû¤6à xhÌïÇewÊ#*Ê.œÅôDñ¶æ³ k˜Ï˜y¼`y#ÞdoÛW¸ª«È–Î[²O2IWS¾ÇnIæ¤X逡 + –®m%ZvžÝC·(_°l]õ3†B$Y1ßí\{°ƒk—{+¤Àª—•K—ÑäQOy>Nw­§¿~Ÿ-0,\Ëy‹WÒHâ)\÷E0§½G­ù÷°¼©¿ì±ÚÀ°+°û£HeïwÁŠÖÎW  Kè7g˜y ·2or3¯´ž20t}æ-å 'J2ÐÅò.0”ªæ *M˳|«çw  !†Cj9\*Þ«Wáóu…/-øáiþè–K¶fð&m KÐê5xºYæª5iÖžT°ØÜ¥óöq•îjºœm ²:ø26¡ŒCV/?Fg àPÖáTÕ78=0t¿C&ïSYy@åÙ9Ö¶*¼Ú’cMKŽgvK¼{Dá‘­K7fxt›ÄsMžÙ)ñÎ!™ÁY÷w~̪¦lÙð&+¹…{¯¿ŒÿüíÿùüÏßÿOœwö÷0-m€¼r`1 0Uu`…Ò¯|{1©0Ÿ30ôù}D£ÑJ6º0<º½‘³¾ü×|ù+ÇU×ßÄ[k׳s×N^~~9_|.-{˜'—=ʪ6sdÿ.–ßϾð*»÷ìçà¶-¼¼ì>î}à1r–` ˆ¦i躆cÛ¥>8Ë"—•÷Ž1âñÉdÒX–S:åÀPL «çg §)Òª‹;èU2†EѲ0-cÛ®1ŽCþ1DZ±ŠàÁ޶ã.HºMFuˆe¼ ›¡¨E0ã‚'¿ˆ é©T 9›uMu*î3ÂæÞwnÍðü®,/ï•y³%ÇÖ.…}:=Þ¸I0ã`Ó²&P ÷ó À‹™Š“h *o‚òç͆Õþ5C!º®£©²$ …ñàó“N§I&SŒŒŒ004ÀÀÐ ãþét–h$ŠÇ3ŒgdŒx\"'gñŽáŸÇPs*ÁxŽ>¿ÌXTARMrºbæ{£m0,§â#d20œ"çQ[æ[‡ÜSnȹ©tšX7B¼WVÈ$ç-ZN¿Tb‡§ºG„H²aiINÕëwjý^IIÝ=Röf~ )™D’Ô_ëœpÙØeñ0Ÿ~˜ùûBúõÎÁßD` h*;víœ «¾¼I›Þ°I,†m—ÉU¦9V¥ÎkŠŠÍ0 ’µOØŒFmÆ“¶Ë.Š!È*EͲ‹õ©eÙ¨ªŠ,ËèºQÙ ”ÿwrÔ`õÁ«È¼Òœáé&™c^“Æ# —½çÚõVRØÒ¥qÜk2³‰K)ç088XøAL› ¤ôãÏ °ïèfÞ~íqn¹v1]²ˆ .ú1>x?% !*˜(§è9™q*Ú«ÜkjU0+ްkö¹=Hy6Ì®ÜM'Í¥Ö°jß}ýȲ<Ù8£ª¨x÷Ñ{ùÚ¿Ë÷âóG‘²9>Þú>×_»ˆ«®ùÜ~?½ø žw^x>ôËŸ™·Þ^ÃKË—sÝO/ãÌïÌ碟_Å‹«Þa×®¸çÞÛ¸öæ›XÿÑ|ab!?¯_Ãæ¿ùÊWY°àÇ\{ó´õ¢k:†¡cZVmS™ê¸Šüb„`Š>0q ìëlVíkUè¶[`;…¼E7FÃ1mlÇÁ0t7VÃq°LÛ*¾BlGÑ(¦¸[«Ò ¦Yö~q‹Õ‡³<¿7ÇÓûd^<¢ðúQ—vå¸gcš%›Ò,Ù$³öPŽ'¶eX¶=Í3»³¬:¤°îXŽ{4Rš¶(.pÁä6§Ô;(ËèºË’ §Ã7`¯wqd¦ç0¹»6p)4Ö˜…ÏÓ0QTUWÑ4›T*ÅÐÐýà {†£ ŽKìn±j÷¯îæõ¦6·8ÒåPG--öwÇèI2:‘%œÐIfM$E'«X–Ûkìœ\«U…êZ‘3õ¨Í< G`èétšp$˜wŒÞþ>Nœl£õØQNœl£»·Ïè(þ‰ â‰Y)ëöaê:¦iÁ¢˜ë1œYJz*¹ 3¹—~N=†ÿ¨Ãô°|QžE)dÖÍߘk·$ÏŠ­Xµ–y6lZÖwnœ6Cõ4²hþ¼)#^~ׯç !رc†nÔ½*.j° Å¢²Jžä”n¢Ê¸£ÀF¢&ÛNª¼°Kæ…f™wŽæxûˆÊ‡m9>ìÈñ^K–##&•¢)ƒªª„Ãa<™L¦f/“¦;´©¬?‘eS‡†?åÈHÈæÕ½2;zU¢²ãš²ˆÊUî¡‘JÆ N_ùɸW”|7ÊLOÊ¿Lk7žåsö**7QÅ8–©pJ6¥Ø;çLÓs5ËÂwƹŠbס§¯Ë´¦JÀ¡6²lÙ zúGÑ47§rû¦õ\wÕϹå®ûxxÉ \tÉUüêò_ð³ñaã't02Ðë/ã¾ôþå¿ùw|õ¬Ë8>èá­g—ñßÿËðÍï^Àº;ñŒ÷ðÖ‹2ï Ê/~y ;wïeßá£Ä’~Ï0'¡¿€lN-ößš¦Y–ñ)Èe’Ä#A¡±xYV+%Ø¢N`8Coìl²ú¦#‚Òõ¶{tÇËemËv™EËemËD·mK[T:VÇ}”Ü)Ùa,iãO9dALÕØÐ®ÒØã¹YžÚžãê÷Rür}š›×g¸îí4—½–æºõ}Ñà´-›\NC–³èzULBì© † ÚFM¼qYõ™œœŠ”´^§ÍzYáZ®·bêÛ²Ñ4l6‹¢hH9›PLåh‚­GìÝ7Á;»}¼½ÃÇ;;}¬ÚãcÍn?î彦Öîö±¥%ÈÁžížÃã9F‘ŒMZ¶\ÚªÏá9G:.Iˆgê9;U÷ÑÓ×YÉKÄñùÇâd{;GåÈ‘#;vŒîînFGG‰D"ÈrÓ4‹¦MÅØ"GÌÃz"Zfú̪c‘ë·\¬X¼€E‹—Ó–4ç öß°a&»Xµl æÏgÁ¢%¬jêúœ»¹ñ©¡·‰Eó°dEóÜ‚Ìç ÐÜÜL*•šÚ]¸lC•\s¦ð±¼sž([’® ËÙ®.™{·¦¸îÃ4~$sϦ ·®ÏðÓu¿z'Á»Ç ªƒ“—Ž9¶ãµS2—v» À:d0ÍB=$Š=–pƒÅû†êïAšé‹¶¬°§P¶^ÅÈTäÈ/UtÊ,:槨°ÿ/læLfPDýÀ¥.WƪÇUU¥o ¿”YÞ›WÅ®8B éV‘`v“¾N>þx ïØÅ¦·^ãñ—Þ¤åð>Î9ëøÆßÿ—\y=?þ47þâ*þfÞ—8ó¬ï1ﯿ‡×æŽk~ÂY?úǺÈ)Žã0Ü{œOÜÍŸÿÙÿæ{g~îx€áñ0­{¶rë5—qîÎæ—×,aÏ¡c$3iúû;Ø´e=û!£¸«ûwleÉõ‹¹ô’‹¹öšëyò©;ÞŽaÖò˜Åï§bQn¼ãTõéN*òœ2)sž1´ó–+Eµ ,Zùì;Û²]¹ªŽmåŸS)¯èÑD [.ˆ ¥lNøT^:(óÄ…um*›NäxaW–§÷犗¥4ÍÄç›`bÂO&“ÂqìŠÇužÝ–aÙæ4[;uÆN^IPºO, Þ¾º­—É…™U .ÇÓê{ILµmÏÖr]†#TÝd<‘£u0Áñ¡íc)š:bLs´3Êæ½^žÛ<̳£¬Ûïç£#ã|ÒâçÃý^^ß1ʶcü)Ý®¬¶%˜˜˜ ³³“H$âöþ™VíÏSƒŸâŸ#ÙœL$edl”Îî.ZåàáCj9̉“'èéëeÌç%–ˆ—¢A~—¥¤õ²åõ2çœcHCÃܘŸz̦¹1 ÍÀ ¥õÁ@m÷È2 ‘”,r†ÃXÌÄŸ±È®3¦bB\´{Mvöœ7ilÏñâþÇý6)­J¢VqhO´Žh|Ø¡òÁI…w[d^? ÓîµYsD¦eÌF·Dí¼¯:Wì än<ÅL¹À, Ó0KÀ°Ț˻GZUQ3…žÛ–…m™Åc+üײm¬ü>MÛÆ(î¯Ü¹Whçeƒù×µó³-Ç,^ÏŸ˪]w%fŽËðØ$[`Yn¡ˆ™_Žûú¥}—…·[6¶í²‰DŠÑÑÑR_P]…bíejM3ˆ¥$,Ó ùãõÜróm<¿j-»š÷°æµ×yì‘'8tx/žùyy5·^×Þô‰Tº¸ËC{>æú«.áOç}…‡–=ÉŠ×ße`¸ƒKÎ?“‹/»Ž›nº‰ýèB®½a ¯¿ú WýüBþËù#n¼÷q|á$B8¿+2«ª çtLËÁ.`LË’lŒBÞa~{EVÉJº®ÕĶGM.}-Ám[$6×ÙrBgó }}&G‡,ZGtÚ<úüI Û™‚”›%;[WDB-XçgÔ¤…“™z»pªfæ³'óÒ|Çu.§t'²ôNHŒEƆÇ%öõFybSïìg8’Ï7-[ðslA$¡··—±±1FFF%–Üi óYW°rl5¥+ËÌë{ RU›IÎÀ0墢˜„„íªR»¶AŽpR©,¡P„‘±Qº:ûh9rœ½[8Øz„ööN††G˜˜ÉdÜ FQ'h­ ¶RÒ™.fbÐgXTœ†scιñ[ ;º:ô Oê3,'…Òþ@¯ÎÚƒYÛ!óòÕ‡UÞ<(±r¯ÄóMn/Ã-dxèã4ç¾’âÂ×Ó¬=aáMMWt¹{×MH(‚°,ˆÉN9ij.ð1-*3ø¦ù‚.€?Û¬|†abæ¤"¶ÖmÙ ×U$_Ïr“U ë–U*¶«‹oÓ²1- ÛrŠ Î6)Œ¶7Lw[Û²°,#üŒ2Ðé›À²l ÛB·, ËBϯnÛÇá›é޲÷dÙåû·];ý2€kZÁ@`r¯ØŒÅ1“R (öœ ,ÓDU4tÃÄ2MR‰áp5§°¿¹‰5ë7Ѹell"—Óò=¬:Û7¯ãêËrÁÏçóâtcmüíÿ˜[x™£GZxþÉùáùçrÉO/ç‚ó.äòëîd÷þã(†§ ÛýƒCuI/kÃ|¡<pX 2ÙÊÇ\`hX–m»Žƒ–‰nc™yðg¹@Ò,Hø Ó5±ò¦ ¶%°Í’ƒ¥cÚX†+£ÕmeÚ8†ûº–Ux½üûËïË1íüólÓqAgþñ‘‘‰ÄÌŽŽ.µbR.`±€¬)·u¥vž¡Ð5•T:…¢¨È9µ¸jnš&=]m|øá»¬þ`cñå2ñ·ÿêç|ë»?àªÅWò³Ÿ]ÆÏñ ®¹ñ&^ô36moE×t%'qå¥çñµùßãçW]Ãå—^Âü¿ÿ&·Üû8-;>æÇgžEó‰A¶¿õ*w=°œmÛ¶ñѦyö©'xá¥Whmë ™```躉aªÅ4—J2ÚÝÉîí±{÷Nzúz+1 ßÅ+*™Á²†_!¨ìI¥ž\Ê2A©Î¥~ÀRoaYpBuå©fqnÛùydÛŽcº÷¾“×D;e}µÓì?ìÖø¸G£©_cS§Âª–Ïí¹a]ŠG?ÎðÈV™ëÖ%¹{K†›ßÏpë¦ ÷~$±tsŠ;6%yõHŽ`¶LVë Ür±¨.p6Óy™ \Ì6X\Ô^hv•éMuÿ±#°ì|ou –ÚÔ,ioo§££ƒööv&&&³rIŽ£Äz‘|;‘ýMd<ï“ØD6xKK#K2'º'Ø~\·šûﻟ;n¿ƒ¥Kïç‰'_¦ñ“=ìØü|ÿû\|Ù•œ}æøÉ¯nçù^féí·0ÿ[Ï·¾ón¿ÿ!޵æüïýgžs—^r)÷<úþ šª°Ó{ÜpÑùüïÿõ—¼ðÒ‹\õ³ó'õUv9ÎÎÖ³bÅ Þýp#ã0²QrYz;öŒaåûöÓªx/–iˆG˜ðûÑM»RZ÷¹Ã ±ìzîÅBÏcA.^ÿŒ–,ÇÂr°"?ßÜE¤ÒönkféóϱÁ°@·º-HæüI›˜ ±pl—a¶, I’PÓ4§Í³ü\€¡3 ž©6a€X‹žüe ÛYy){-Õ15ô\#DMŽad#Xz%' Å8Øåã’9‡®ÑÇ»£|¸ËËêfëöóîN/ïìòr¸+„w<ˆ¦Å—PrÝ>‹v¯ÉpØÂŸtHk.[,« [N•: ?Ÿ*²8˿êoü:ÁbCÃÚ:ÚÉfåÓNç¨;›LJñéú*ç ü¹1 çÆÜø †¶m³kÏnr¹Ü´1å ´¢‚}±] X”‚‰¼´À8¹Ð X¬Muo•yiL‡#¦‘Ä1ûPß_~E`XGsþgc>S9iy¢®kLLøéî饻§Îî~F|yù…픵ÂëÛ¶ëi[¥‘ïS´,ŸÏKgg7éT¶ê¬RŸ ‘˜åïÉ,º•^K™Ç3i™éŒDßàÐŒ’;Çvèóòðûïóć›xvëvV|ô Ï7nã¡7V±xéÝ,¸ôBÖm\W܇¢æeÓ4ó Uî—Ž¨ÏìÙ!_B”ËV]™c<£«£‹½û÷±kßÚº‡HçLÆ»xà¶›¹xÑOY´øZyñMÞXõÎñ#ûyö©å¬|ãm&"iT9KÀ7J`ÂO$#§¨dÒIZìæÃ? ‘ÉUGŒÖ$õê‘OO}?ˆ)â1Ê:Å4òµ*s§ª÷W¸óZØ®ÜÑ,‹Òp ¥ìbŸ¢Èa—« Æ7;aË}ÎÅï”2NN ðÕ]ŒW;šŠÒçtAòó½ §<ä´xˆê…GTõö‰º„#\¥‡í.L8B`X:9E%•µˆ¦U [˨Äâ9ŽõÄiîŒÓÜcÃþ ÞÙåãPwˆñ‰ ª®wŸJ|rRcý1…ÚUvöê·è7˜°™HY¥Æô0ttËAÖ¦Sb7K=ÍNå}^·Æ·´Iww/ýƒ(åRÒÓ,ì½®ú™@c=ß§¿f`( tñÅ…›9£j|û–=¬k—NãbNã`c?íó ïá‹ 7sþ¾IDZnY#g\ÑXqþ¾xí.žü$XÌõëoÜÃï§«Æñö²Ÿ3î©|ÌLñüÝî>×y´9`87æÆo0Øw`?©TªÂ\ â Äv¿ð]·A‘79É÷·™…LA#Ù7Apì|ŽáTÌ^mA™äÌÕ·’É)jÔx®ã8•®¤ÓGŸ04ÌR¼D¹<!H$ã¬|ã .¼ôrξèrλø ®»ïä\Žd:M*%¡©9Y&‘H’J¥Ý~9K"™"‹“͹YdrV&™àå_æŠÅ·ÑÞ9LÓ‘Œ„Œ‘Îáh&NVÇŠç°2VFw~VÇŠÊX) ÃбÓ*fNÃRt„¤c*áp€ßèô3`ÇFGxø½u<¾z5+?æå]{xáãO¸áÁùæ÷çógÿû?³úí×lÛdl¸þþ!¢ñ8¹\®èxéšœ¸,µ(“+V_4§xgRU^%MsŠ "¶7KÁ):ŠÚBà÷OpìdOœ¤ß3Êž=;yñùg¸qÉÍÜýУ|Ü|„d,ÂM—žÇ¿ú×ÿ§^y¸¬ ¤C~^yà>Îúë¯ñ­ïžÃíwßË ¯¾ÅηrËñWùùêßÿ=ß=ëSñeæTHE…3ø«×’{*s‡²í*ÃÏ#®Âžüܒ˪…¢féíïæµ7Vñwß:ëïy‰CÇ;y}õ[\uÓÝÜ~ïs456ñæÊ7¹ê—7p˲eçaÞ~óu®¸þN\|Ï®ÚH0ᥗ^æÊknâ«ß»ˆ\| ';=€@3ìöa_·gYvS/Îk-8Wˆý«±Þ‡K!^:€}ÙZÌ;¶ãA<±ëƒ˜Nâ<±£y_ÓQð”S¡/LVTö õ³låKÜÿÀ¼ºéCÖ´åÕ]Í\ÿà=|oÁYœùýo²mûÇ€ ŒÐ²moâèñctvu˜‘“5’ñ(>¯d2I6›Á0M[‹êb AÍëhWõßUµ.Õ*€ÅTŠ¥2©4`ŒXF!™Nóþ[/ð×þ'œ÷ãŸq¼×ƒ™‡IúGYqïý,ÆË€3â`‹‡¦ý><ñ*À¨É´£i¿Ÿ€¬ð&Hša*x<)¤²m£ |eÏŸi¿]í>š[|tyåüßMºv⌅¬ëN ™µÞ›‰Ï¤¹eŒæãþ²ýÚD½ ’šI`ÀGÓþ1Ú<30£Zónæê5Ç8áfnÞª†«oÙÌ·t¡VLŒs`ÿ^:;:Æãñs;::бtww388ÈØØ¡PˆD"A.—s×l¾f“o7Óu˜){q†>?ÇÃd‹šlï280b!™•¤²i8cÛŽ«¼´#Çë{3¼Ù"±é˜ÁæV™;uº‚&¤Iç˜ÉÖ#cŠî~\e5»VphÙŠ¢³gï~$)[ósà´g gã>Zç<ùdžÉî.ÎX¸™‡Ž»`,ÚÞ>InZd³âcE†±âñn©ûg,Ü\Ɔi<¿p3g¼áŸy¿iÿ¤ý~û ê@ås^¨@¦Äó·L>žÕšûúWL~ì²÷ƒSž£À~„Lk4Þ½™3®8A²^[ ž¿ÖŒR]Àp]i)Ï>6²º]®ÜN³´ê¸¿øD?’0YwËfÎXx„hñýÇ8áf¾ý~xιqºCÇCWOw©ÏpŠâ¦È&ˆR¥™Vç²c¯ÂE°W‘»æT„{:E*¤Å4ŒBib†Â§΢Çð×5\GVƒ®¶£üðœ³bÕV~qõ \pïóÄR–Þ³Œoœw?[ò/¾ò/?÷¿üéϹã‰Un\Ï7Ϲ’Ÿy‘oÿøZîzü–.{”s.æDûŽX©,ö£ÛáÂwùÖCÛ±nlÄYyçðÖw^Ç^qþøeÌÞ æ%oÁÓ­X+áüh-ÎÙocݺó¼7ÚÚJV“§du ¦"ñD”÷>ÙÀ%‹Îæ?ÿ»ÿ—]öž÷MÞød3Ëß_̓o½Äk[?$‹»O·-š¢’Éd²YE!HÐÛÕÎÇogwó^öíÙËG[9ÑÖÁøøƒý:t€C‡3Ð7@4&ž5èò ŽxŽix"‚”ìš•”¦•(†È[Ñf’?–÷o:ª(tvv242QãÞªÜSVÔ…üüôüsÜqß#¬þðc‡ØÓ´• Î=›/ùK|看Y÷îV~±ð"\r=ñ7Ýr?¼à<~tñB®¼òçÜwϾò·ÅÙ .âœï|›¿ùÖ™¬^ÿ1þp|v,Âl )¦côÅ,G­…ªÙ0ru¹¥ÜEQŠÓ(05lœ¢k²˜|\õÔÒ5¶¯–j>ÛÁ;6Âñc­ ‰DÈår(Š‚$I®cf$‚ßïÇçóáñx¢¯¯ŽŽNž•Z³lëÔòšèQ‰¦ul{j€‰EÙ·ÿà”.Þ§]\E=ÌßlCñ#%½ì‰C,}Î7/kʃ=.1\½p3_|n0ÏüÙ\“3šÉº»Ë¶&M/»Ï¾[)϶2`øêµ›ùöšà û-¦mEPÙ¶qg,ÜC¿&ºO¸¥k¼§<]]Œf‚¥ 7óÅ7ü% ·p?mi!46ឃ«?ITHIkÃ]•@õÚ%—?/ÍÏ5rÆÂ=Å÷[îK[$’í'Ü^ļì7züg,l¤9>'%sãô†‚Á GC’¤iÙ±ZîkE9Q¹ Í©áCQ+Âîk»Wda.Yc»V¢Tt—ƒTY–AX´ÚËkkÞ# —t•Å: \Çvèš~õôó†–ƒ°L<}ÝÜvÝM|øQ3BÀc.ãÎgß •–éîhã‰åϲpÑU\wã<ñÔ[,ðAž}óCÚ÷|Ä/¯»›ÞÎvî¸ó>~¼è—\p鯸ñÖ‡€°±ìÖã\ñ.ö]MØ›Žã<¿çÜã#87¬GGš?zç§`ö„±†ØË÷â,ß½gýáíôï(öûMU\ضÉÐP÷Ü{%ñ~öOøò—ÿŠ«oú7Ü~%çýh>ßýÁ×¹÷¡;H$Ó“ªÃ’ëžÀ¶ r²D8aÌ;ÎЇ“';L&ñûÇiï8ÁáÃûinÞÍèØ(ƒ~‹7IÜò^š{¶dxvw†5‡e¶œTØÙ§1vHÊ‚hFM[h6µã1j¹JR%.Ü…¸…IRºÚ± IIT%‡aZ8ŽƒœIqôð^zåšvF û¹ø»ßà _þ¾þÇE—^ƲǞ`ùò‡ùÅå—ðòKOñÝo|?þ —ÿü'\qÍÍì:p”xZ*ÝGõÈÇêÍ/¬µ˜t*lÒ©öøqŠÇ>ƒD´œ9tl§"{´4–e«ÖUTO*†É@/ÇŽµ2ÐßÏÐЃƒƒ 3>>N8&‘HÉdH¥RD""‘Ñh”h4B0èÇçóâõzñx< ÐÓÓCgg'ÝÝÝtww¥©###øý~b±’$¡ëF}’Ä™fË,Ö‰Îôó¦ÜxØq–#È*{:U>ë†ÛxòýEf´¢ñZÌnØ?ȆOiÚÝηnæÛoøf‚› ? › w—$¬sÀpnÌÓ”1L§Ó<|ˆt:]ÿuE»ˆNOµÙL•ä´$Ë+ww&Ê® UԎΚ˜`°¯Eͱ{ËÛ,}øY¢Ã|ã«_àï¾{ë6}Ìx(Šc$"~>iÚ/ŸÙ &¿B_pÿÌâ+4E! “–$lKLFI&Ó˜ºŽ©ëH™4¡`P(L:%“L¤I¦$”\šh8†i˜¤“¢ááP„X,¦ê®õ¿ibG3˜Á,FJÅPUÌT3­bät¬XÃÔ02º?†Í¢[&–aa§ÌLMQI ôNv ­šC¶eâó{x󕇸ì¢ïòå/ÿ?<ï,î¹ÿVî¹ÿf~vÅXôó yáå§KùiÔ^™/üì8NÞ ×ÂÐ LÃÂ4LrrŽx,Æ„œ¡¡$)CτŭÒ,Ù˜æž-/íÉñúž,mNrë‡)žÞcS›Æ{‡s¬Ø-qØg¢Ûu0c•YôeJN ùª¨tëN>tÊ ^³€†B` S×Èdd4Ý 9ÖÍÏ:‹g__ÖwpøhCžaÚN´ðÆ›+ééíä–sî¾Ï÷Îù/½¶–@ Šc‰Ê˜‚™˜ÂÙš¯ˆ:@^=Æ-3G½/õ>^§4µba¬h¬Ê!-ߦ¼7»&{Xö7Y–éè8Iwg££#ŒŽŽ200@oo/tttÐßßÏÈÈ>ŸŸÏÇèè¡PUU1t…t:M:!™L“H$ˆÅbƒAÆÇÇcdd„¡¡¡â~{zzŠ`q`` ¸ïp8œïãͺ q6 c=,ÕŒ½œNÞDÊ.÷°-– !òÃNñë"£ âY0ìàX¦ «üi7eÓá3iÐÚä§<õe²#i_]Ý}•ŸK§#0¬W^=ÓÂÉéÖch&xèZ¤4N˜y® ÝläÛ×nãÛ×6òí[vqÙÝ{ØÐçç²…›9㉱²ž¼0ç× §ÝoÞ‰ÓÓÒÅÕ×–®[N˜šaW—ËOïvW%0 –³mSö5M5A_É,& ¯8†O³Qe IÖP«¤¹õÃuy†³é¹Æ|¡\b<ó2R÷ÜÞÎçš`™`Yf1¼¾›aº±–©aÛ%wXh†N4™`tttj°QÖ̧k9ü>Ǧqóf>Ú²‘ƒ÷°wÿ.Öo^Ǻ os¨õÀdÀ5“áG•6ÙqÜó£ë:99‡iZx“›º >ì0XsTfs‡ÊºcïÌrçÖ4K·fyb[†Û?Lrãº4[LR:•ã‘Å–)æºÜ)+œ$Ž“wܯ`ÚÝÞÛt,À–M›ð†‰§$rŠŠaää,ÁpUSްöí5¼úæ*:º†PU­äË*œSï/£N`8çN1éÍLûŸ TÎðŠYÑjp`‹ŠQÈo-‚FÛ®øoµ4µ|®d2z{{ ƒär94MC’$âñ8¡P¯×‹ßï' ¥¤ÏÁ`˜L&M,ahhÑQ@ˆp8L,#‰DˆÅbÄãqb±‘H¤¸Ÿ±±1†‡‡‹½ŒýýýÅQ`,GGG™˜˜ ’J¥Èf³¨ª†m;³“¦Öq½ÊÄ"“î?÷»Ä©t$Î÷ ;Âu%-Ü›n°;íM LËA1YÕA3,gú…„Ö£ÇÃÊ›Gö®¤¿%À°°„=.sxÅ1B`zûó=ƒe½|rŒ ýtÅU—Íz¹ †KRÒ‚äS.I3ŸÌ3ŒÓï×&Ú=È«Ÿ¸Ìž©)´6îÏïWËwÓdÓœ"Hj¢yB+õ5YÍYÃ<wƃH¦ª™¨šMrÀe:¯nL”õÖ–õÃró·GðæøL—1†åà[Ø´îî¡i@®`6/[ÖäÊmÍ9WÒ¹17Nk)©m;ì?°ŸX"Qƒá•r7§œ5íÊE¨Z®°tÿfYv¾¯LC' 3>tIHáÐÝyœ6²ïH;]Ý<ñà-ÌÿÆW¸úÖ{xë­—¹ýÎ;¸ëŽ_ñW_ø ~rùU\vÉB®¾özzøQî½ã6.¸ðR¤˜O0M1è2†CuÉ¥>/`X‡¦ca›¢˜QhÚ"2ŸÏ?ÌÝ›–…m;n¶ -\&-Ÿ7XìŸ*ÕÛ8y hÛ–á¡m9Eàg™Ët–i ;ÜcSUP$ÌøøÄŒÅ´pÈ3|ªªŒÅˆ„C$Q¢ñã^Æü"±5ƒ÷fëSÇqÙ€´î0š GAƒ¶€E˘ÉÇ}ëÚ5ÞlÕxõ Ìýe¸{«ÌÞQ‹¬Q9Ý'¹’Vƒºrʰ:?°ÖßËØÏŠÌ½vs˜L.hªJ(FÑlìIòU÷Û6ðŒâñŒ’Éä°l§,`Þ©ÉÆÎªwìT€WËRW |=¯]/3u*LhÝÌVÕpJ=’n£û_ÇrJ2T»$Eu§ø_EQÈY¹è®k[6¦a¢iÙlY–Q…T2E4#KÉd‘$‰`0HOO7]]=x<£ âõzqÙÇññq¢Ñ(ñxœp8L8& ‰FŠ²Ô‰‰‰"»X0¾éë룷··=cccŒ …ˆÅbùx ²,£ëú§êeé‹TADÕ"d™vþ5ݯ«/¢3íœsl‡…°çô†õHAëeêg¸¯>w`XÈÝ[¸™Ë6†Bv6î¢q E4,²Šm² £Ëx=¹;\ö˜ ÍÀ›k×ðøC·sþ9ßág¿ºMëWñãŸÇ}ßËu¿¼Š›n˜÷ß^ÅSß˙ߙÏW¿ö\{óýÄ3J¥Lï7æŸ%°M—á3-'Pï·±,3ÿÓt‹OÃÎç%æ‡Y`!3¿O»ø<Ó´0,öòûµ0m Ç.Ãh¹ÀÒÊï¿ÀfÊ9ŸœX´J²ëL6í4t,ëätÍrP Åè¶ƒé¸ Ž(1ÒŸ–‡®êÙΛUhHº ­ ª ”…±”CoØdÿˆÉža_ÊÆªGJZNkVCQ?0tJÏqªØø2+Þ !j/â”÷ä–±8¢¬)«¢éT€¡S'0tf ëe9NG`8ƒµXLWIK €°œ],°Ývþ^.ÊRí’¹ð™ïMÛ½omÓ4‘e™H$‚×ë#KGGG.2‰j8ú&Æ G„#ኾÅDB×=µÜgιqÚJIŽ;†wÜGNQjVÕ_4Y)IWûIvlobýÖ9t¬ IÖ°òaÒ–aÍÊÈŠF&+1îeß¡ÃìiÞCww?©DŠÍï¿ËC-ãö;îàñç^äýÍ[xãµ—¸ð¼³8ççpÃm÷òÒ‹Oqö·¿Æÿ÷Eκð~êY^}õn¿õznºýºNââÍ“/¾ÄKÏ<É·=Á@w?û¶mä{ßø[þÛý1K|¡ôVœ\Ië‘’~†ÀÐsÖ´?»ÌŸ•k®DÔ²t,ÛF·E^B*°,‘g Ñ-. l³ ­üpH#ÿ\3ôÌü6fu΢eaXf)kÑ.RËrÈæd†ÇFȤ3Uý¢¢Êz^SL¢±,áŒAB1ÉÅ$‘3ɪ6ºî`é¶é¸v9QíÌ¢ˆ)%NÙÏöÔ B€é¸=I’ÍAÖJra&£”j \a1™¸”ç‚:ÂÎ÷"–[ö:UNUÒ:§Jº]>ç+a 9ûPz1…œvºí¨sÿ3ý­^÷ÔSuBΤ£–p6òÙ)>ƒ ì¢c;yæÉÔÃXmS+³S8"/óT‰F£$“I’É$ñx¼èh:22BoooÑ„¦xÏèÇŠ>_‘]4òy·Fžµ”e™T*E4% ÙÅááaúûû+ú{{{`xx˜±±1ü~1‡QÎʨªŠ¦iE©féû,¿šS}/;SŸü¶pí†Eeïïd¦±¶<²üú˲LÓîfÔrGÒß)i=®½õHÇÅç g;¤´B2­M`*™¬”m„Yê1,>¦i$ÓJÍçͼ_÷¹ê$y¤ªÙS«”Vd󷪀-œGÉœªòH•£é0œsãô†:º:&IW~a8eßùŸM5Å=qÙ%ðþ'üé_ü%WÞp3í½‚ã!BÁ± Ÿû÷säx;­G³zåó\ú³ËYtÙåÜtÇR¶nÝÂg~› Î[À·þîoùæ7¿ËÂE—sÉ%ñ'öøÉO.äÜóÏã¹×WqÛ5¿àk_ù gžù=®¼öVV¬|'Ÿ~”œ!»öìgñ¢ÜzßC|°êe.¾ôº{™é纟]Ÿýï?åÑW6T5«ÌÀNpϯæåd¥`{»”«VÜÖ²MtË)À²>?Û²1-<ÚŽ…aºìƒn»Û–\íüï¶aA¥n98–é2’ùQ}–í‚EÇ´K Ô6±-Ëe/M‹l6ËÐв¦OaVT5:¤%@8K(¥Î(xR})O\e"®MèÄ é¤L&£Õlr&(š…ª9˜f¾Ö+zv=Ì’˜L_£¶"*¥LÍ”*œSË1¢SæÖ›vÕ½ˆÕfM“ ^·Ê©6¨©6õ-“x€¢¨66™­‰KQu[㟠@£–éÕ YˆœâëÔ OõøgctS#{±È,TùÏŒZŸ!†±È,ò«æƒi˜¨ªZd‰ã Æ|^ÆÆÆƒŒÑÓÓÃàÐ9U¾5ÁrÐuÓI§‹f7>Ÿ‘‘èë룧§‡îîn:;;éêꢧ§‡FGGI$®Áˬ¼(6µ;5îáJ§¬1ÑÅ’å,bÉÀFLÕæž?wáh”Ýû`™öÔoÿt«¨§·p¶™•Ÿ0¬m¬27~[Æ0œsã4f =##ôö÷Åjô RŒŽ@ÀHÏ ¸ó&ÎZð#îzøiÖ¯]Íu×ÝÆþGXõÌc<ý›ôÝËÍWþ’Ÿ_~=¿ºj1—œs&ç\r%·Ü|_þÊ<î`)ß™ÿ}º‡ÆiÝ·…›o¼š³Îÿ1?¾tÿýý/¿ö wÞtïmÞÁ+O?ÉÒÛnã¬ùßà»g_Äó¯¿Ãûï¾ÅþäOXxí]<ÿä2V¼º†®£¬{o ãc#Þýç|ï[üõWÿC¥¢…éÛ²+s §]Ù·Ê€™À6M,ËĶ-Ë•{VôË fÕYiµ¢* LAÉ8¦ö(g¦ÛßLûq‡UdmËÎ;—ÚØ–eáþlçY ËíqLIú†±McJFMЇ¨¬ŒæH'uâI_ÒÀ›²ðFdÆÃ2a…`X&IŒËD²:!YÇSðuBq“¸l‘Ñ,$ÅBÑl4ÝÆ¶ò³ŠŽ¤ü ;µ«ä˜…ûÆ.Ì•*FÚÁöbš"KÔšGÎ,Y+18«—©ª7[îÓ˜‚zòg’³Qç¾§Û³|Ÿ§Z@Ïôžf+Q“™æ gԪσ`,_Ì*æ0N!åul§ø¼\.G$!ŽÔŽj`æcŽÀ0Ìbc"‘ ã÷ûuû{zzèèèÀï÷£©ZÅw™cƒ«83 íRûBÅBLñ»r}§ZjY眵‡Ñ1/­G»½’§;0¬‡äSÌãÏÉ|æ×2´¯>wŒƒas®èü†:áá²k›¸yÍØ´rÖ9`87æÆi '‚Ú;;_ް+¥;@,0Ƈo®àkù'üÞ¿=ƒ¯Ïÿ6>û ZŽòÔ‹9ÿÒkð ðÐ5×pÉ~Ê]ÆÏ~ö Vo;IÇ‘=üéÿúxaåó|éÏþ·=ðwÝvgžu.—_{++ž†¯}éÿò­ï|›ùó¿COÿ(¯?~œw.×]{ï¬[?%ÓvôþPÛ±* wCM²uÃjnºù&^Yµ.Pž—"ÍÄ:30†f®,³ ËÆ±íâ ¼®+¦‚¢J¦‚näŠCÕ²ä”Ìé9r²ìþ7§Èdsrr%—&'Kî6Ù,jNB“3d3)ÂÑ#Þʘ¾ pä/Ó´I¤" 9k ¥âHN0UñOäõË úeüYF‘´B8¥â äÏá¨Ó&‘ŒA8‘#•ˆ&e’9‡¤*É&aÅ&­Ú(ºƒaº„¢¢h•@Í™¹§´b»©òú¦7NEŸ¡S´Ô¯)cƒÙgòÍX~§ÑSu0 Øb–€±ÉçL t6à¬^@+긳)Æë¸¢6ÛX±Tf~T->•÷?Θ_øYüh*•"—Ë•±›9ͦmT°£K%”)cà«Wh*ûÜKë1í÷ëipOŸõ.vLqŸÌøscιñ[ M¥õX+žÑ‘*½Ørû“lš¶¼ÏÂK/áò›ïeßžÝ\òƒ¯ò ¯fèð.þì¿ýO¾sÖ9üÍ_ÏãüŸÿ’uŸ°åƒ5|íë_åœ^À?û'ÿ„wæ‘;®ãìœÃ¢‹ðƒ³Àòß –Õ\'LÓÄqìb¿V¥2ÐÁÆ®ì/)ë!qk§(+,Èê‘ÑTÜ…#0LÇe M E‘áèÑ£œ_(G(mÍ™$³©TŽLFER,²¦CV· ÅtÐ-iç3YJCO:ŸŠßa`è|†Àß `(ê†3 Äd£«‚éM‘94ËÀ£“ïU, GäûÆ+ß³a ÃA1 S è “þ°‰/fÓ´é [¨º(CMÓŠÀÐ0Œï/Ó´è ­½mÎù1 çÆÜøÝ†c>/}ý}Äʳ ©ÕßWÎÜUO¢Vý/¦4ŠÉëBàÛ±ŠácÛ™t†h4N*•A’ddY!™Öè3yó€Â3»džÛ•aÍ¡/îÈð@c–'wʬl–yz»Ä]Ó<øQ–¸=c!åØýƒC3÷ Ígò«Þ`huohºN"•"•IŸz¡økb mª’ÁpxB&ÿã?ß}6ÂhÔÁ¶Á4,¡ã~¥7MY¨˜J¾çÔ+U7Âq#SLÛÆ6Á2l7<[Õs:YY#“щ¦u‚IxJ!•ÌH(xÒ*ž´N c• "iHT"Íâ g ¹½Šãñþ„ËF‘„B$­’ÊèÄ3:aÙb"©3Tðús ú²ôû$†Ç3„2±¬Š7¦0äW åkR*¡D–p4C8–%œ1©6AÉÀ›Ue Ò²ENqÐTC³± Óq°…ÀqÜ[CÔkRm2x›U0üLÎzH=Æ5‚úeŽõ‚§S‘¼NcÆ2£duæì”cgãHÊ,¯G€ºžžÀY÷ŸÖè!ލ)1-Žb®«V 0–úÊ+¿‹®¤[7A5lœ²÷a[ºn ªjÉ]uš¹f˜ô Ìù17æÆÜ˜¿;À0ÓÛß;)ËpÒŠy­ÕkÇ5°±,òР“œª hV1X l]7ejÅžA]W‘²Ò™ÑH„H$ÌÈÈ(’¦3:ØÃþýéhï «» ¯ÏÏDXeã¡?{3Ã=Û3,û(ÃÇs<º5Åõf¸usšû?Js×– ·lÈðhS–ñ´ps§(h † Ã3‹`˜—B¹=†YLSŸŠÓ\Jšv·ppÊØ]Iq¸íƒÿæZ/í2šéZŠj E ‡ÃߌòÔzmöÅÔXÁ-Ñ1–n»}«ŠIVÖHK I#–QˆæG$)Že D²xƒi¼¡þx–PZ%’RI§42iPBÅ“²KXD.詌5F ýþ,Ýãƒ~‰t&‡$åð¦zRÃÑc¡ Þ°Äx4ËD4K8*Nëø%‹Ñ¤NoBf,ª‰™Äâ&±¸J<.“Ê(ÄT‹”a#ç,r²ƒ¦;X¶ÀvJýµ¢ÐåPu;¸ž½N%(¢v„H›8éòUÑ– N9{¶îõô9Ö›ÿWö7G”÷yÖbÊš}“b7˜åÏuûŒ}ˆ3ÅŒœ óZc¿ÇñY;ØÎN+˜E«,{1? ΨE j=n¨Sœ£jÛò}èºNË‘cŒOøç€áܘscnÌß`˜Ê¤éíïÃëóVÖU6ßå¿;Žƒª$¤ÞX„ñ ÚZáØÑ6Ž´´²wÏ~:ÀÈx˜ ß(-GŽqüH+ûöîe``ˆxÆ`Ëq‰k6dyá`†'šU>î3x¿MaK·ÆŽ~Ã#:mã&=A‹@F ©Ž3=CàØýu0†ùÂ¥àHªëFjÓËïªz Ëe»§MaÕ×-ÁŽ®ÿäZ׬‹¢šÂ]ޤ¬L0"‹×>Y³unü´RBJß¶¶)Ð YÓɪ™¬J2“#šÈŽeÇeÂq™hB!‘TH¦düñý ‹„I"mIÛx6ƒ ‡¡¸ÉXBÇs£4â ‰xBb,™s{c¼a×E5P§ubILÚ"Ð ¥t|)_Ä`"è²ãA (C0ž#Ñ Ka¿O&S‰åL’ªE:§!É YÍ@¶Á[ØávíóYÐf×`ó jp3E¾ SÉÆÌ&ľ^ð6Ýóœ)ÎÙº‚Ö定wWʿߚc62ÊYíT¼GA]Ÿ³ŽÐ˜ ÓûiÌkf#žm¿eqÕà±Ü µ& ŸùȲÊþI¦SsÀpn̹17æÆï0TuþÁ<##3~Á iIæDß O}°•—6nã¹Í³bÓvVlÙÆ¯½Á׿÷u.þéùj=˜ïÕÐén?ÌÚ7qèÐZaÜ$òqâØa6oÚʶí;9xè»wîbwó^Ò%+áñŒ ‡™˜ðK$ÐLÁp NúM£6QÉ!,ÙH&h¶kFcå# KáÆöŒ U]®¤T2†… hEÉ"g3®¡C±0Ñ4EQeÓ0Ñ4\.G*•:íC‡rS·X%m¾þDß¿}œPÆ)>î`“H% Cd2Y*"Dê-©£ð  ¬£(vl°L]·Ðt›œb‘ͤe•¤¤M«L$uÆã9â± ÉDO\¡/a2”2Ê&±œM0¥ŽI#c!‰‘P†ñpŽñX®,cQ#šPɤL2)“˜bQlüÑþ€Ì˜_f`,Kÿ˜ÄH G$­IëxC*_oX! Y3&á˜L8’!ÏÎDTŸl2‘ÕIÊ:Šj£º)°mpì"&¬<§N…~W”±…5ûéN%COÔZh¨¼Õ­1Ë8I€ ªçUàP¦ip??§Ø~J :[Ye=ìæTùzõÃSaãë‰í¨7(þ™ÌãIêÅÅ¡B_zYcÁø¦8š.îIˆÅ‚TUŸ;Y?;9‹mfèYª«h­ñ 6–ccÚ¸½Œº®ê(ŠNFVIf¢HZ!–ÎM)LD³L„ÓŒSŒSŒ…2â*á´A4¥‘J«¤Ó®qÍ`Êa4fKéDR¾ê‚?¿Bï˜D7Ãh0K:'“r ¦u—ŒfñF²ùÜÆ,¡XŽPT!”Ñ ¤túR qo\!šÔˆ%U ™T2G:£VlÒªƒ”³ÑTÍt0Å4§¾<ÿ¥‚Õš¢x?Õk<›|ÀSÍœa;Q«/³Ö¯C—z~¯TÕ ?;7•L·Þ¾Qfwî?“ÞÐÙ˜ßÔ0½)Æ2YjQžšŒ¦a⟲ÿÀ¡úÔ sEÌܘscnÌßx`X¶ùÈè(CCh†>õ—v^q¥h:ã~^ÙºÇÞÿ€ç7n䵿½¬Úwˆû_~‘ó.]ÈÏn¼†í‡ö!)2B䬂ãØÈŠ‚iY¥¢Dä¿°‚Q€StD­]µU N#"ªŠ»®¾· )é +íåRRÛ²Ée3ŒÐÒÒ¾}û8pàôôôpøðaÚÛÛÙ¹s'»w念£ƒP(tZöÞ_R¶øà¸Äºm‚Ÿ¼Ç´ 'ÃF8®ý{$%ЏïÓõ#Õcò1°¨w»™zgÙeç`ÛqÍo4Usû3’N2#”$r„Y"I…ht?>ñ«wíæ½#GY×r”§7näÙ ²·ã$1)]Œ¯p¿@ݪ˚dúP‹­°ËÀ_©-õ ŠÉN™kªíJ"UlÈT÷ÃuIÕ ÀбWJš“ˆÇ£$â dYFÎÊHR–x°z*Å^ÝůÃÔ-µŽ-°mÃpPTEÕQ)§Ê*$Ó*ᤊ?©Œ)$â ‘„Êp ?e0’6f-"Y“`\%ɈHŒDdF"þH†‰¨ÄD,K8©O©D™ŒER2ˆåL‹ñ°Âø„Êè¸Ê€Wf`\b<š#’Q˜ˆkxB*#…ñ˜F(eJiDâ2±¸L4©U,¢Y IgBÖHå TÍB×,LÃÍ™³gŠë1ÍÉ>•>²S‹§Ì.dÕ"±è>‘äàŽƒƒ2º-jÊi “ä¤Ô €ê•{V\Õ½ÈQ¯Ä•:÷1›Å™zïéz$°3O½±’§_{Ž«®ÿ9?þé–?÷8Ýí¥^À‚Í~¹Ý~­ùòjÓ¹ˆÆQz Eõ¾*¼úËãôçfJ`XÓ€G`Znæâ¤¸ŠŠªBÈòé 9ÕæÝ#Y¾±<È_ˆÐ=¡—®W[–NgC¤Ó™Scpfv>[¶iªÇ¦b2ÉI=«ÕÇZÛD䧬“wÖ¶ƒe9è¦nØ(º‰¬éHŠNZÖHK*ÉtŽXB&Ïâ§f'\Æ1žTH¦rDÒ*C ƒþ¤I0i’Ik„RÃQ¡ˆÂpHe8¨à f ÅÜ8@B¥/¡1”Èe©±,ÁDŽHB!šPH¥MüIOJc$®1ÑE4‚Q…PT&“ §bŠM³œSé1u‚äS‘²V]«T*Í‘#LjDbsÀpn̹17æÆï0L¥ÝÈŠÁÁÚ_zeߢŽc‘J'Ùu`7—ÿj!øþ9ø+ÿ”û—ÝÂ5×/âÊ_ý„^yšöŽã Q Ì•ÖU…¸˜ Š:€a£8Muê8…Cg`˜—’Ú–®›hªŒ5 `˜L&+%»§Eƒ!lïùÑ«QÎ}9ʆrI‚+*a$% "Ëòd&ît†õ2&¢¬§7NÌpy¢ÑqÜo˲°LÃ4Ñt E5ÈJ™¬î2ŒTF%‘Q§¼)‘”N(©‘Iæ¦úS:ýIÑ”I eL¨„b‘DDf0,3—ñE$Æc„L$©Mê$’*RÊ$’VÈ& @a|"Ǩ?‹ÇŸe,(3ÏÉèøcc2Þ L(e• ¢i…xJ&‘QIÊ:]T-ªMÚpÐ ËX–+½µ;ß \}NE€FLf(E °2Õ=\|H04”aï ‡ýËwþÊ{ÿöþŽ,Ès,ÇåëØ–-ölM´$K–¨Y¢FŠ’( œAŠ$DRG"A‚$b æÆÔ@£Ñ@Ïc]ó<íyÞûwÿØUÝUÕÕÝU ¢ÄÆó¬ÝÕ»víý}_U­÷{×z_®|ò —&Ÿs¢ÿ ™LròäI<ÈÐÐÓÓÓæçÉfÒ¨ªr€aÓæ•»3‡×z?.`è­Ñø mÇ!_(0pþ<’¬lÃØˆØˆxëCI‘™™ŸerjjÍ„Ýs=ªÕ2Gïåï?ôGüòùWüâÏÿ,7|ìƒ<þØüðñøá÷óÚÑW‰DB+÷ž­UúÓKùT/e‹,g]Çe.\ÞK´0lb uMÆ6®zÔt]§\©PÞØÃ¥Ûm²*h*#-ÉŸÛYâ7îÌpÇ‘yÑÂëàXï©LšL6ƒ®ë{¯z0˜îz¾è‚ê¦Ä¯›ëëõ8º¸†.Ö¨ë¸8–‹c:˜¦]‹’jQSL*’NIÐ(UªU•LE%TÓ WM‚IA4(T5Ò%‘lA&‘ˆfjÄ é²J¶¬/++:…ŠI®bPªÚk*Å"]¶I¦"˜ÈLL"˜”È–dª¢J¢(̨„3 É’Nªª’.Éd 2¹²B¦¢RPlâ‚A¸ª¯™TEY±‘U3Ð ì‹79¾½†Ï.:ËŒçÝ•~·í9.­€«¹$ÝsÉåÎ>:Ë…¿>ÄÀ_äâm#'K„“)Ž9ÌîÝ» ¼ð Üwß÷Ù±ãvî|^xsçÎ’ÉdVÿÜêºüq©'º…‰lî3lSŒ]Ī.èqMvëŸØkù··Ž÷íZvkRz,‹õ:ï¦A*âÜùLËÚè1܈؈؈·^¡aÌæY³wÆs=$±ÆàÅc|뛟àSÿø7ÜôåÏóò®g §I& YEı­E_µ®v¶{-?[+ êpÌcÑ í.} ›ì*Z îÕZÃk)é¢aƒöxnHæmßNó7å‹‹zÆ>žHÍf±,kå„Ô¥UÔe-[‰nzªºa׳i°^¦²›Ä÷j_³1n¶‡k98õÒMM3ФS *¢AYÔ(VrE™t¡F,Sc!#+Häj:¥šF¥¦S­ª&¡ŠC¸â)Ôª&™¼A4kIkÌ'4f‘lJUB”4b5‰™šN  Ë ÄóÉ‚D¦¤“-éäŠ:¹šE¸¢3WÔ4²E‹|ɤPT)•$Ê…’`QÖ-*¢Ž X¨*è6Ø®/êã¹.žçÖÛ;½Ö’Ô6ö™€q—ã*äD¦&òœ?—áüî(SgrÔ*:†­S.ÈårÔj5fggÙ¿ÿ »v½Ìlã¶ÛîàÅ_"Žt¿‘݉­x…•¯ÞÖ£K¶¾E]¸—rÕn]/`±¡ž^{»#YQˆÆ¢\¼4ÔõçÈF³±±?UŒ¡ãºBA. w%zà:º®£ëê _œÍý}=¹nw»YÇs›í1~VŽƒm;¨’¶6%æÍ" ‘‘†¡¦J˜¦¶ä™Õ˜?ÿx¡/´øsýÇDÉã—ïJñ›w¥ÙqAªÛ†8KåjM“èzÑ…rù®ë.Ÿ_Ç[u>¼nÁ’×H\Ϻèu õªºØ ˆìõ^–]K]Å©î˦[6²î‹Ý’FEP(Öò‰RU¡XQüÿ«*éŠÆ\Å`¾bP¬¨5ƒDÕ`®ê,[Ä*ɲF²(S,J‹Ñ¢Ì\Ù Z”Iä9TY!W3)Ö „šŠ hä‹„`/¨¤2ñ´J<#ω$Š*©ªEFpHd ™tÞ ¨¸”‹Š¤QTIG4ld×E³À´ëjÄ+­Öí¨âWMÂUºå ªŠêb›MÂXøïYÇvÐuAÉd2D£QÒé´_F½“Ö³jª·ÄÒ;ÞÊeÚngBµ+¶¼×÷]7eëYëݨ”vó^éæønÄqš¾*Õ*ó¡ cãc]¿·7’˜ØˆØˆø©†ŽF¸ty۲׆ËêšÖbD¼kú¼uãt"\<—O¿Pâg¾˜ä©s ¹ª³ªÔ¤aš,Äã”J¥ÎI–»Ž¾«aæz-ãôz<þÚ´o®ïº×zhE`äSOþƘ–‹aØ(ª‰¨Ô$Š “«é¤+…²L¹$+jÌ—-ÂU“”hQmrUƒ\Q$]XÈ D3‰‚Lª¨.(ä‹*ŲN¾lPªêTkÉ"§Ø¤K™”J$®0“˜Iˆ„²ùªB¡¦²Q §U¢9™DU'UQÉry…lQ%'ä‡xÕ "jd%Y²PeM³° Çtpl¯3ËºÒØ5)ÊvdoAw—νÓ{«ô¶+*×ߟËä~à¶Î¦zë)©ïÁ:£«Þ½n*=Öê¦$öZ÷0w8o>_`rfŠù` ëÏ‚$f#6b#6b#~rá ‡Åâq®Œ\iíëe÷¶›Ìz= ù·å:.ªª"Åb‘D"A `dd„`0ˆë¸H’Äàà ÃÃÃÌÌL±ÉfÉd3D"†/úÀ°‹ï0tlŸ5Ô‰H4ÌàÅ‹ 111ÁåË—§ÿô)öïßϱcÇ8vìÃÃÃ$“IªÕê¥|´ýßñq…ö™_z©B¬làá¶Öú› ŠÄS ªµêÚI«°×¢Ñë¢ÿÉ[Ç9½«ÝÃUw¹˲^ºU’\wµk[êesm,ÛrÑt YU%š¨QJ‚B¡ª-+dó¾Zj$S%’ª*Iäª …ªNM0( ±šÅ|Å#R²)V J5“xQc!kL©L'f“ñœˆ$«TD•pÅ`®lÊ D³ñ‚D²83…|U%S3 —Lf* ¡¢A.oR*š”J*¥Š@Q)*:UÝ¥"X‚‰¢»8nSif'ašÖR<ÏóItw…ÒʵÏz,h{_4³+ÌqËÃn[)¨Û%(êÖ2cÏ廊¶ÊŠumÐôâÙk_q—å¼ÉdŠ‘±QR™ô0܈؈؈·&c¾¨ÈØÄ¸ÿ…Øm™N‡ƒ¼NÙÉJ&w]|Ñ[–¦éÔj5 …±XŒ……fff¸rå £££\áâÐÃÃÃŒ355ÅÌÌ CCC¤Ói$IâìÙ³¾Ù|6ÃÄÄ8§ÏœæÒðsss¼ð þqìŽçz8®‹mùàP–ÂLMM‡I&“Äb1.^¼Èé3gºÈÐ¥!._¾L8¦T.½¡ª¤^ÓMy‹ŠƒP‘-~iKš·}/Å|ÊÀv¼e h;‘/HgÓˆ’Ô1ùê”°¶ô€u;ïkù»-Sn\ƒ™öÖ <¯öØžá 僬‚W:¯»`l¾£ã¸X–‹n8h†…¬¢A©¦’+û€±P–É—e _t&RÒ™,DÊZEC¨D«s5‡hÍ ^5H”4R‰rU"S–TæK y‰…¼@²(“®jäk•š†\3¨UL25‹xÍ$™QH¥5âixZ%‘•H•2’M²f’ÌÈ$R2éªAAu)‰UÁ¼Šj¡˜.š ªí`º«,˜N 7½(|.#o½îL×Ûü1[Ê_ »žÛÁ;ÐíÍÖc·æµvu]¼»e"»a5»¹Æ.Ÿë¹ \¾r¥'°ŸˆDÃñðÊ*ÞHoß,ÞöKx÷ŸÅ»ï$Þ}ýx?8÷Ô¼ƒóxcY¼š¶‘œmÄFlÄF¼•a±Tdf~–p$Ò]‰Qûcî:XlËFÓ4A \.“L&‰D"„Ãa&''™˜˜`||œ‰‰ &&&˜žžfrr’@ @*•b~~ž™¹Y®Œ\áüà†.  ©Õ&&&ˆÇãØ–ÍÐТ(R(¸pá<»÷íáüÐ*U©©©åV+Ü{ƒ1t×W%U%tMÁ4ÍE#{Çq0t]×1Ms1Eñí*j5x#¡a3#ân{Üz Æÿô™(/ I(†‹ëÙ¸MŒ¡·èl¿¤OšH%Éò¨šÖUÞ²=„µ¬-º)Ik<äx誆$Šºá3aŽ‹eÙØ¶³üýÐM/ÒÕ°±×ª z­ËÊ$ÛšÎÚß“n×¾ÚÒ©3o®mc™&¦a¡ëŠj!*UI¥$¨dj ™šDµ,Q(©Ëse‹XÍ +˜äj™’L®ä ×Dó‘¼H¬(“(*dKu°YV)”tj5›RÕ¢¨Xd%‡lV%•TÅe¦D扼L©¦“*iDr*ѤJ¬ ‘©¤ËŠoÝQ)TUò²IF1Yu¢NE¶‘eU¶Ð4ßgÒt¿—±ÓP¬šÖëãÙö÷M¬6•Ò–îÉ&°é±Â†K¥“˘¿µú½._/›Ý2«ÝövË 6Ï-`ZóÁ×/£ÕU—’€aÇûÔÈÈp&?„ϼù¼süê=°éN?~ý>øý‡á½;àó{àá!¸˜„JgÅíÄm#6¢‹° ÒáØN¶ ÞýmÀú I¸W¯oô<×ópŸ9wlÛ´ÑM Í0‘TAÒ©H9Á‚ “¯ªäJÙ¢@,'IW‰¥«$Ë ÙªA¹ª#Ô4ŠƒxÙ"\µIT,J¢N®bËDÓ:Á„Èt\`>%.Jˆ’J¶¦¨X ‘‚L\X ‰F ƒ¦&'ctt„‘±QFGG9}ê#cÌÍNsâµCœ9{–³çÎpüøö½º‡þSý¤3)ö¼²‹W÷îfnn–;Ÿg×K/röÜÎ;ÇÙ³g'N34ä—Š\¾|™±±1¦§§|öqr‚éÙæçDÂæë>†k1)í÷š&/†+$7?UÒ¥‰ó€‚äpã+%þå1öiØN÷g …CÔj5Û阀yŒ‡'¨èÃ!´—1¯ÄðL7_Å çñ*2, y‹É­ó°üwÏsª±8éTI©TÊ$“q‰ù|–r¥‚(ȘºŽ(Õ$ Û0ql Ë21- ÇqWìçjBÏs—з¼oPX†¬Úárñ¯[ö© Ñ¥®˜µƒèòu]_ñ×r\,Ëñ™EÃBÑMdÍD j¢FEPÉ—ÒL¡F¾â÷+–+ÕªN®b.ÌT-âeZM£PÑ™/™ ‘¼F$¯Ë+ä 2ÕªFª"¬K2 y‘X^¬—¦ªä*¥²ŽP³HWM"5PE#‘ÕÉætÒ9™t^"W)TU ²M¾f’Í©ä‹:‚â ë²î i6ºncZÎ2k‰ýª,˜²Y Ò"žfŽí2®ñÔ©$ÏžËrh¼ÌTÊ·1¬V¯½µMÐf¹hkÓŽDûÖóZ×s˺_¾©àµ çÐá±eéžçvÏ^wðÖZ«]¼‡<@%¦¦g˜höóý R%m¹^݆ñ|÷$üÙ“M °-Þ~¼}…Ç7Ýù#xf’˜î ÃËêŽq/„×™ô÷ï÷ϱu~# }#cä°?î›_CV.›ýõà‰MÀps}ŒHoà=Öàú.Öî¦=xÚ9îÇëÀôøÆ܆ÝcC7H¥Òœ??Ø0tl‡l6ËÂÂû˜šš"—Ë¡i:éTŠóçÏ GÌÎN³‹èï?Îk¯dÿ}ìÛ¿‡Sýý¼òÒnΞ¿H.—fàÄQŽž8Á‰“Ç8rä»÷¾ÂÁ#‡ „C œexhS§Ïpþƒƒ¸Tïãerr’¹¹9._¾L6›ñûãòyâñ8™L–b±D­& ²,¡**³íŒá*ÀЪ܆éÜ¿é¡ÿ¯ªº¼pIæß=Éw•ÐÌî׌å8„B!d©õkË+—1ZŽƒ“)£¾4€|ÿ¤;aO/ ¿:„ôðqÌC¸Ñ’¯R÷Ðè ]ÛÁ³Üº”¿ÿÓÐ ±&¡ë‚X%ŸË’ÍdH¥’$’ rù"Š$“ϧ‰Çâ³yª¥…br¥Šn˜=CÛÛ©+¾ºkÃv¥K· ´Õzî*%·îºöz.ïî®Á¢yŽv,ÛÁ´ü E3‘I1$ƒš¨S Š5ƒdÅ`¡f)ËÔª ¹²ÂLY'P1HÔ,²¢E®ª‘+Ês*‰œH¤ .Ê$J"‰¢D¶ì ت*Ų†X3)ÔL²ŠC²¢“JÉ$“ á¸L0!ËÈdJ*EÁ QÒ‰&b)•tÍ #Ùä*:Å’J¹¢"(&®Ó6½øþ-¾G\ˆ—áXžÁ΀éìPRæöWÃ|k_”GN¥Ù=œeÿHŽ‘ Åðµ†mÇÅtZÕj<ÏÃq>Îôô4óóóD".\¸@$Aeb 1.^@”dR©$cãWÈd²$“QÜËÎ~ÄŽ§Ÿà©'·óêþ=¼°óΜ _Ê35>Êå‘1FÇÆ¹ÂÀ…óœ=žñÉI¦&Æ™œcxø SÓS„B!‚Á ¡P˜XlÉ""ŸÏcšÆâ X–¹Øƒæ8.Žëâáâº.3@W½Cžëa9΢Á½®J­Àp•äÃ0Œ×Ç®bM¡ ?QM˜¼ÿ±ÿéæÃQ½§~7EÓ‡Ãhª¶òóÜ奒žiádKÇGžê§ö¥Ð÷!?ðâ÷ö"ßwëLt  OPñjž¨ù»ÞŽ ¶‡]qó"¨V‹@ˆç€c¹8Žaè(²‚$ÉT*UŠÅ•JMÓ(æsD#HÆÄbq2™<ªª/•®€\×WÀMek¤s5J5Q2ÑtÃö°?or›­ÙÝ » €pWažÜ«Xë†ÞUÏUþîº~‰¦e»¦/t£²j!È&UɤZS©ÖTrUHE#VÕÉ &Ñ"_UÉò9‘x¦J4[c¡ “®*dÊ>,U4²dÙ [sÈ eÙ#]6I¤Uâ ™@L`&&IKäŠ UQ#QÒ™ÏëD2±’B¬¢‘,(dò2¹²BU6ên/Þ†õÞꬭãÂlž¼Ÿ<ÏNƒä³†’bóä™8Ïðêx‘çSÜs0Ê“§’„³ Šn’.jÄ ŠéàÕuÓ¡P5dTªªµ\å–öþS¯í½ë¶2Ú-½kβuÓ:^“Uª»¤TJ+öìhѽ >u±×­µ…dsy&§gˆÅ=m‚¼éz âpýËð›÷¯o[,v8æ·‚o‡Hå †¬Ìªì~¾è!¶¿ÎÀ°"ájxõÚ—Ljxb—e´–W©ÕŸÓ»*JÝŸ¿—c{½¿‚Ô=£¦­ ' ´u{ÞÆxõ:ws§–@ß–U@ßöÇëÇ=ˆW¹Ú9[i=ØõsH­×¶0´ÔúøÔºw±ö:­ïxSC<¨”+œ=;à— ®±îº.µZ QQÃ01M‹ññqB¡¢(‘Íd™šÃ6mâñ.\ Ÿ+‘Í%ãâÐ ÏqñÂ9Ο¡ÿäq†/]frrš±‘QFFFŸ`rrйùy‚¡0¡pˆx,N6©û–‘$ UUÑu}ñ:lËnm›óZÅXpݺ—Ÿ…ãXÌ6 î×èÃiV%µ-U•° cYb§„ñu†«´0¹u5ÒHÁâ¾ÿâ+ ¾ýjum4oyj,C×õ–ž–æä×­³‹É ë¤á¥+¸“ ÄGSûÔÐ;òØIŒcH÷FÛ;Š[ÑpËÆ©qŒC#˜gçpgs8©"^QF?310‡›}ºÎv–ú";%åŽß jX8š$S.—É äóyÒé …b ½.\³¢øJÓàêºÅÜ\’çŸ9ÄK;Òø2CƒLÎf ÆÊ$ò"%AG $ÍB×l§II’¦qYÍ¡ .[O½¨¯§$u½çc ì®"†ã-;/²P¶‹m8膃¢;Hš‰ 눢JMT)Ue %‘\A&ž«ÍÔHåDòU…|M§Z5¨U R“ù²M°ê­ê5“dÉ&”7‰f B™@Z$–“(VDI!VÕ˜tB%•XF –HU²%bÕ@’íîÙÁÕzq-.'ñ¾>ºžšÑß°‘“§NÇ89+0™Ù;œâÖ½a¶ìóò`–‹ ?:ã©“i¦2 Z½,™W80”aËÞ0£)ÏC·1L»cï ç:K2Fضç4®çâyÎrïÇ:x\"ýÒî×Ôv`ÜĶƒÕÎDZ¶è=Žÿ*ëÕÉ$S3³ä ÅÕ_ëÍ Ó"|æüöý+³ƒ«>v[[™iÓïïú!<5Eå†+¾‘ýmǨpý½>ËØÞS®÷µ]Ê?î†{——¤NvJp›ŽÝ^¹_îº=MÌÌ0\×^6ø8Œ”ZÏÛÕµ6ÎYOê·_;}wÀÎÄÊcXà v(a|FjËÁÌÖSps[OÜ ‡[û8{9v-ð´Øë¦Â wÀ¦çahxùõnî®g±9óÜ«­‡—ÏÉ–=Žá‰Öñí»6í€É.ûPon¬«]k€õ…ŵ˜Úûœ­µ^þüëçÝ||Ù÷¶ïZþš[‡;ÏÛŽضcùù'¥ 0÷S ZMàüàEQè¨Æ¹šª¤çú× …ˆF£Ôj5òùÿä${/—)*6–iqiºÈ}»ÃÜøÌ §Â²bqi¶ÂP †¨ºØ¶‡¨šÔÃÁs8®K¡f2›IUm4«,¬÷Ãúk·Cÿo7}®k Þx=”‚®b9ÑQmuRUÇu‰.D™›ŸCj¶ãùIŸyì üÞ¾€Ì¦JC7Ýïø>ü§á‡ß¸¿;FñWî€ï‚}s?~`xt×r`¸Ré`KÚ¹lræcÇã+'û²ÁëIôÑ=­çÜÜždÖ.sìTò×x¬=ä×(­l”ÛÞë‹ù,>ö ^a¥s?×7_÷óK‚.½ÛuI£ÚŒµ÷í«°º“§–ËæSÝwkS9ëÈ©Õ箿´ØKtØçȸ†sÖ´ìZ½·±J­ï…MÀæ¦1ºnÿêk°åúÖÉÜoěТÄå+#¤ë}yk%Ê^CY–)•J¤R)Ξ=Ë¥K—|@'ˆ\¼x‘“'såÊ•zÉé,‘H„t:I!Ÿ¥R.!ˆ"Šªbh¦iøò®»Ü×k%ã:¸ŽÓü µŠ¥–QÅ,ŠAR(Õ8j-RY@.…‘Êaär±[®JºÊŽtÃàÞ¶lY ‹rùòe†‡‡cnnŽ`0ÈåË—¹rå ãããŒù>†¥Òë[JÚ!¡šIéüÝsüßßI³÷ŠL›,ʚə,Äc”J%lËîº< À)è§g·ìAÚò*úËè;/PùÖ‹Ôn݇üø¬±Nº†~dᦽHœFúÎä; m=€~Ïa”ÇO£s„jIBwLô2óZ‰Œ­"ã`à¡à`â`{^mý}ë)½cÐÖÍc\ÃÇ–½ÅÕŸëއë€m¹†¢ˆšIM6¨…ªB¥*S.+$J*ó•pE'+Úä›|Q#Ÿ—Èär5¢Ù‰¢Lº¢-ÊäK ¹ŠFY´Qõ.Æd%pÒ~Œ Xž_½ÐtžŠ¨rtªL¸hÌÊ\•¸˜—Ùöò<[_ð­çç¹å¹9T¨JÁx•{öÌñÑŽó…'¦yü\éP™­»Âܹ/‰©<ÇÆ2¼x&Æ«ƒY¦ã ¶í—ôŽKÜ¿/Ƚ¯FyòLœ©¬Šh¸¿W¼Žtïb‰p»ÝF³èŒ×Î>vÛÙuÅj%¼«L@7 æÁ ¦iýdöfexß ðkw7±~M@ïWïÄùè«p2 ©äÈË(ÂÖ³ð®í+ˆÓ4Åß{¾ò^I}c€aÁÀÓšB¬µ2"›ö¬l-ö®!>S˜è ›ÀˆÚšØoÞ¿Äž‰™¦ä»WÛ!)¿ñ^:·{xå’¿E0û8^º €Ì51rCÒòsßÐÌRž[Ìz9v]ÀðAªƒ]«TgU»è#ç—Æ·Ò¡”´ïÞÖóÞÐ~ÞÒÈiž»æcûž_½Ä²yþ'×ñÞXïœ5¯‡êBëü4@úPèm^WýM–o>¾rÛ_³1CMl°†?ùÀ°Ãኢ25=K(^3Ys‡L&Ã… ¸xñâ¢èËôô4ÉdÃð·aYȲ\/7µá=Çk-`¹åbBáù%OŽ ¶†iHXZÍ~BMÈ¢TS(•ri©A*…‘‹A¤B1?œŸóÿ/…J!¤B©@.…Pª‰%ƒ{V‘hV%mÜsœ:uŠãÇsúôi.\¸ÀÈÈ'Nœ`ppÓ§O300ÀÌÌ ¹\îõŸéžuÃá¾ÿõö4ŸÜY´:ŬqN˜–I×b„Úµc ’%Ühd']F{æ,úS°¦R¸’†-`Czô ê+WÐ=¾gñ¡£7íB¸û0âm‡n;„üð)ôÇN#o?ÂÖc(Ã^@ayûQ„›_D¼c?Ê+hCsè‡F1²˜Ž àYM Œkõ6]Ï#Ÿ«ðÊÓûyòýÅ+ÿ§¼øÑ?gè»`bäîOpøËÇŽý O¼ïOxìƒïæ©þwÿùŸóÐ=Ï#VJ–Âábís¸ûÌî;}€ƒ—é/F¸ ÄS2ôY[¡æYuÀè-Â"·W èõöþï ŒT}K Û…Xž…ßÚ¶z¹é¯Üï}ï|â †]Äb2Ú#Øjôy­Ùch,»-KìoeçG–÷5ßOé*€áŽîú¿úOùLÞîÌòÒØö×]<÷ãËϽcGëµôrìz€a;ÓÖ8vóñ«ë1\é¼ Flñ¾ìÀzeº>Ís¼ì¸ºuF»íʦ{—XäuÍYÛzhžqàÙiÜ·tÚ¹ÒÜïhc…“úë0|ÃC]× G¢ŒON¬Yäy iú"&Ë2ªªaYÖ2sæU¿¼Ý:èsýäÍsë=-¶g¨8ºŒ¥‰˜ª€¥TÐkYÄâje9@*‘‹!¤B)ïƒ@1@.Öa1ŒT!£(Õ8šE­¦‘KQäb¹¸€\M2ßè1ìBe±™1”„ ÑHˆééiÂá0ñxœR©ÄüüòòD ;^ÄžMaŒ.`šÅžçwfyò‚„i»kÊ ™ašÌÎÏaYÖÚ‰oÑ–e–m‰¢×`S,×ï»2,<ÙÀ• ¼d;˜L`\bG°ÆèÇQö¡?qáö}_~õ™ôçÏ¡<ÝxÿAÄ[^Føò¿½ iÛaä»"ܸqËÌóóx%iuö¬ÉD\– fÆ<ýí­<¿ù9yßsì«ÍØ}Ÿcæ‡ßeâ¯réÎOñÚW¯çùOü-O|è/Ùñ¡¿äÿø)º‚m;Ì%.Lóøñ#|î–ïñÁ/|ž{žy†“³óœœ˜àÐðö]â…‹çxöÂ)¿p‚Ç'Îq(=‡èYëŸY/0\«ÿ´WšÕ®³“MË×ÊJŸCÅfSHwuÚLlùºT6¶å`.ºn ª:¢j`ŽÓ0dêËF× ÃÀ0lt]GÓT]A× ]Ç4 lÛÆu\/Ö9dËò°ë›<ŽëaÕ-*ð@3m.Ï—y`o»÷D8.òèNÀ°q}¿5_ï^¡-sÝñ `øVc Û¡P,rú̹Y€¦YÇÁµm,CÅÔ µŠ!—0¤š˜F(ÕJ9ŽZ‰£TP*QäR”©±K _âè±#œ={†Z1ƒ%æqÄ<¶TÄ’J˜B¹´à¿b9@.†‘KaÔòj5"¤Ñ¥<¶VÃÒ$l]ñTLSǵ-l]B’‹å¦r)Êlƒû–¦þ¦r0»^Fj˜Ör»ŠUì†aíš—’zÉ¿ç~ñ»I>ðd‘¹L£oÆi­KôÜUÅkð@”‘ˆß_H‡ùµ6ÖÛç– †‰§šx’Ž'þÿé*n®†;—F{å"ê#Ç1.†1ON¡í<üè1ä_CøæKH½†º÷òý7þˆê ÏbžÂˉ]–HzT« WÎMðønâù÷ü‡>üÇìûÄ»9ó3öÀ7¹ûKœ½ù£¼ôÉÍ<ñw³ýoÿ”'>¸™mŸû2çÏÏã8R½Q=´‡o½™O~ãK<òÒN.†Cœ™žâøÈ‡‡/³ïâvîçé‡yòÊ)Ždè½¼¿×»Ù(Xë|WÃ0ö²‰Õºªw^¿þ9àÔ¥Ú?ºb¾ÖÆž×è¿óp-×q°- Ë´1 c8꺾†a`š–eã8vÝJb‰ó<$›‰`‰Ù„NV°¸,°s ÍËóŒÆeŠ’¯Ü,›‡.¤¸g„GOƹó@˜{†¹w˜ï½àæÍrûžY:•äàd;ö89UäÅ“a8fÛÁßßæû‡xm¸À‰+9ž9eßH‘ªf¯,¦t5â=Ý2Ž]ödÏ昚™¢R­üä–’þÁcK€oÓmÝYQüÖ½ðäEL¢¼ÏXÃÆâvøÕ{ð>³ïÇ+>óFÃf¡™›'–˜™æó5€ßæ×‘1ì ÚKlfßpã~80âûéiµ•Ë›ËdÛ_·ÑÇÙ˱?IÀ°aþÞ÷<^º„Ë7E ¯Pò¯«—ßpGwcÐ\ž¼-¼þ9k—ÕÃF¯ìâߤ¦RÛ°ß§Ø|ßéú=§kkÌÅ0üé†ÍÞÛ®‹ ô÷Ÿ^;j’.÷ Û6°MK0” ª˜G­¥Pª1”òJ9‚\ úý}Å R!„\Œ"—"Èå reh`œéÉQFF/˜›F©ä1¥¦\À’KØr SÌ"—cH¥0R)ŒV‰¡Thµ4º˜Ã”ËXª€eÈ8¦Šmê8¦m™X¦…kÛ8¦Š&f‘KÑ:ËY†Ë%[€¡_JjX†*c›FWCmÕZ•šPë¹mkíéhÉ4©H6µ=ÏoÞ•æþ5dÍ]êZ®Ä²ê¿r¹J"‘ÀqœµkÒ“Öí@xøÌ¢ã‚bàsØcqܼˆ+b]Ž`œ™Å8>òX?ÊÞA¬+A´—Ï#|÷eªŸ}ãänQéŽ ó P8v‘‡>þiv¾ûüгÿÃé›>ÁÐÝ72xëg9zãõ<{ýŸñØßþ1¿ïOyìïá7~‡‰‰®ë1XIóÌðYî|î >õ/ðé›>ÏŽ}»¸ p~vŠþÑ+¿r‰£ÃÙwö4Ï÷açøÅhλ\óÝ Ã\UmóU>Ï['xìö5zÒÝ’¦ ¦€èVxÅó¼E5cÛv|ÿUËÆ4M&¦iú Q·«|¯V?ÛERtt,Ç#Y’˜IʳUÕnTqãx.±´Ì® ^ÊqdºÈ±É<;Ï%¹w„»^ óƒc^-2•Ùv ‘±/œˆpÛ®9¾óÜ,ß}1Àí¯„yt˜gŽÆxêDœí'b¤Ë·±ñÚF»·nÔD»š›5XGÏõ˜˜šdzvI–z^Ïo`øŽïw?¿ã¸þ%8ôÕGÒðû®íq¸é.¼¿ð&†jgÓNÀpûBwçoØHô5©E6«‚6÷Š«°Iò½_k/ÀÐÊtPAõ–‹¬4Ê'›@ÑJ~{Ëú̺8öÇ ›{{†‡—+6Ù Àæ^CTfèpw>†Vfi¶…×?gíã²Ú<ðüòq¿îŽ•þÀq¿²a² ߺÀ@UUúOÁ´í®žç †\Ds(µJ9ŠT®‹¿”ÂHÅÀbÈÅ€/S !CÈå(r9ŠRŽ –#ÔŠQj…(B)†Q+àÈ%,¹ ‹8J G-b*9 %¡”(â,,ˆÅÂóYL]ÛÆ5 KDZtlKö lÃÀ6|ðªK9äJ±B,„Zì*V†®ëúý…u¹@¤lâ,úpÖë…_O`èv ÝÖ·“eZ\¹Â\`£ÙŽç'ÞÞ¨k6­ßGP3 )®´*‘6+’¾ý¶–ÞEïÃ;Þ¼À°Ùpn°³"cÈÜpOëÆ ½Öæ…×vmÍàïúÃK¥EÙ²ahÞãµö óB­Üüàêj“Íž#§®îØ7.*‚ÞÛäÙ0l.¾nO“£Š·µ©Ç0f¯ÍÞØd÷°y—oE$¾i}!ƒ·»ÍcpkxýsÖ>.-kðøR¯gx¸óºj.¡ÝÝ´AkRâ½q¾uKI›¾u]çÌÙ$Eî"érÑå2R)ŠP #‚‹jŸR1„R ¡´ÿ_ ¡ÔA£RŽú埥j!ˆRŽb ¬ZG,`Éy,¹€%°•2ŽVCÄ5d±€$”‰.9;p޳çÎ1;7‡¢(¾ eúö–†eÊX†„¥ÖÐ¥š˜CRÈ•b)ŒX 2×Ä®–˜¸Žß?èX>c¨+MÀp)h”’.ŸYgB½hÞÆà ªÇ{~˜ã—·d96£!ë¾" ‡»fŸU§Ü4Y Z­¶zþuãÓ¶ÞRF¯K°ÙÎXºm­e.`8¾**®¨bGó8 Wwüê».i8œá•'_æûö?ØýžÿΉþŽ+w~‹Ë÷ÜÊðßæÂ÷¾Ì±¯‚?ù~žý‡÷òÜG6óðÿš‡îxœRIÅôàé+§øà­7ñ®¿{/×ýñ»ØüÞ¿ä+·ÝÂáþCÄÇOòÜÁ]<ºç|þ)¶î}–]3ƒÌÉ…ÞR/=W;W½®á«-+õºƒÞ5˜×ªlw5¾µJw׬ÚXòx´m Û2qÌ%vQ×u ÝÀÐÍzå„m˜Ø¦ßí:õRYÏ]¦Â'ä5$ÝCÐdÓÇ#–yùb–ÓsUF"5ŽŽxöLŠÓÎriF`8"°÷RšDÕZd&—õÒÜæòö5ÖA£¾ñ¿¢ª ]&ûÂ??©¥¤¿rwàðí·ùìâɈ¯PªÛðÄeøý®":ÓìxÞG^|“ÃfÉÿ:H¸n·wç Ø͉t'–¹{ᆶ×hM½\k¯¥¤76Ÿgܸ£ƒù|gºMÂæ&0²i/»ÕŽ}CÃö~¹]xVÀ°Ee¶¬Úæîæ‘.×aií^Áe¶뜳NãÒ¿¿ÍgòÁU| K­ëîºGÚŽ¿Òö0܆>«5xq˜\!¿r"Ó 9_·} C>À+†|àWŒ ”"¨å(J)Ò CÈ…r1‚RŠ¡üÇŠAŸ=,ÅЪ9t¹Œ©Ô0”*†"`(ª,PÈg¹<<Äåá!9öïÛÇÞ=»¹rù2²,ãy¶­â˜2–VA“òhB ¥¯ Ó„Ë È•R9‚X ¶ÚU¬’Ä6#–JI%,C_œ·a¶ÎÒî~ãÿ†Á}Ϫ¤Ýî\בҡ1•ŸùbŒï쫪šàº¾¨Fs~¶†ŽCó¿¹ù@}\½î’ÖnänÿNëÏmmm]/i1ñꉨÓ&]Ú”+W®ã13bç}óÈŸü!‡?ô'œúʧ»w cÞÁ•»nehË78úµxî†÷óÌÇßËó{/ôC<ñÐ+ºƒäºÜ¶÷~ëÏÿ”ÿô¶·ñK¿ô‹üÚ¯¿ƒ?ÙügÜ~ë— Ÿ|Œ‰CÛùÎ=ßåS·|›}íK|îþ;Ø5~ž„Vk-Á[¯øL7b^@³æñZÈnÙ¤^ØÁ«é›ìRU³Œ¬¤žÙK™äj=‘Mjœn}óñ=LËÅ4m ÃÄ4 LÝ@S44Í@Qu ÓD7Åjÿ³¬þýÒòfó0l0MÇ‚BÅ`2&1•TH— JU“PVdþ׿Ïû_ãw¯û]ÞùÎßàï>÷ì9GÅT›úB_çRÒ« â*Î×k©ëz,3¼kðúЛÈL‡Í Ïuð\wYy©ëy­6 «M¯›÷•·|½×ß¾¡ƒmùL¢múB7Ц ª2Š"¡¨2ª¡¢†e`[ 1™vÆ{Ëß‚±mÍ\$õz罂þÕ@¦·Jé{ýçT*ÅÈØ(©tj]ëäM ¿p~íÎÕá;ê ÐrAÔᦣð·1·­Ìnº~ÿ¼ïŸó&Uš´$ža­q¬¨úayݳ] ïÂÕ€Aãõ Òµ»Ö^£R«_Cmås·Û4„V:)¿örì#,ßKí*¯§Ð$¼rµs¢©uA›úZ°®Áœu†±|wóÓ¼WÙÙˆ·$0´m›ù`xÉËpµD°uiÊår9‚TŽ —è¥p XTJ¤B1DÌ‘ aäR ¹C©Æ¨fƒSA2É ™lœ‰‰)Îåä‰ã¼öÚkìÛ·WöìæðáÃ$“qÊå"¢PÁÖ°­ˆZ‰!æƒþõƒ~¯cãºJaߢ¢F*E};‹J !b~>¸:CÕ”5ÌíMÛF–jD"!Μ=Ëé3§ãâ¥!fggb|r‚£Çqþâ ÁpˆB©@¥V½†Uyvî½"Ò÷±:YEÖ=_{ßkÙN³51i^çk0,‹™ÙùÖþÂn<Û¸Jp°VòçvQrÖ~žE&ÑmµÓXí:]•þã#üpëóþ~NÎŽb®ÌôÂ"^ËòQï*æùjú!×SŠxµãÚQ{‡ µZµD>Ÿ¡R© )*–avíÀ‘.Œã½å¾ˆ­à†%…â:ht]Çñ°mK·Ðu MÓP UVÐ4]Õ1 Ç1p\§þ²Âà6Œ=w} o/¬o‹çîÒ÷c'v6 293M¾PXßÛàÍ ŸõMìW*ýí{ PðA!ø½Ù ²"d˜/ÀÓ—W~~£ÇðÝ?Ä;xë$i¢ŠWXXb·‡zî­—2Õ^m36b#6â§:ŽK*mõ2\bkuÐX…R1T÷l ˜- Ö’èbS)cë2¶.R-%8ÍÁý‡xþùçya׋¼z`?'ŽçÂù „Ã!òù ©T A(âèUt1ƒR‰#H…y¤|¹P½)„êe¬Í 5„\ö™K¹A)GÑÊ1ÄBx©”t]ê0´-Ûq¨ÕÊLNM0pá9ÁÀù.œgrjŠl&‹(½õè­•¬Ö‰¿¼èð¶ïdxû9J’Û‘)p¡3(êT’ÔDpda ¶3ÝøŠ­À+ßþ;¿t#ß|/çàÁ‰È$ïþòGùù·ÿG~îÿ¿üÒolâWÞ¹‰wþÎÛØôËÿÿ׿ý×ü«õò/~æçŸþÓÿ…ŸùùÏß|ýK '"AðÕø®õžîöµ®ø¯×w®ÛÙkq«½F7#ËØ+×6˜»ÂÀùsŒOLœŸgjlœb±ˆnš˜¦Õúü&Á™µ˜Äe,~Ë5z>h.µîXžíµ¹Ee§zi¶ë÷Z†­ºa é*º¦ )*š*£éša`ŽmãÚͦn×ïç–±óz\“]®‹Ñ±1‚áàº+9Þ4ÀpºúüÊ ¬á¿×7²_i¼öÎ,÷-lf ëûð‰W𢕷F‚Öl\¾ž¾Ç `¸±?éÀÐu=Êå ý§O­‘$Ö¿`l¹´d!ƒ(Åra1ï Ñ(¥(j%!䱕¦®`&Žiù1¶†®”9qü58@ÿÉ£ ] “Š#×Ê(B]©àê<=Q‹£”Ã(å0R)è—§#~_c)‚ÒÄT6ÊYµEœðâµ*Å(j)†TX`¶®’t´—’*²H¹\¢P,R©VQ«nnoè‚ P«Õ% I©‹TrEÍÅð$d Tt ,o)Á[i¾)±“ —œ¨òO>á•+2–³”à¹Í[;8\E‰Æó°>°÷ëÇpNEA\²È°™´Å/ÞšáîÍ¡™dó9¬Îv¸žG<‘ T*u/<³žrÑ.™—e½‚.½«Az½%}-5ž‹£«B×Ûq1 QÔ(29X²D ”allÉÉj‚‚ëyœË‡yðÜ~¾öÒ£|ü¡-¼ç›ŸæºÏ|ˆßûÈ{øÍ?ûïüç·ýGþÏý/øŸþ×ÿ'ÿ¾>~þ¿ÊWx µâúÒzAz7¦ñÞ5¤ÝªØ®Å¤_»½5{ÑÖ†]¬qÃ0‰D"óLMMpºÿGäâà ‡_;ȱÇ™›çØÑ~¢ IæÓœ8Íé‹— ESäS ž?ùӧˆ.$ÉJ‚‚f˜-Ššžë *Žkwè-îòºÝLéqÈ«³‹ {Fµ…aX†‰®ëhš†¦ièºî+¨Ö™È†NW¢F«¬í–ïÇ61 ݰ83pŽ\>ÝlÑô“Øcè'£ðW;à×ïY W–yûíK¥¢o_þö÷á–ã0œ~k%i¢ä÷|iÉêFlÄF¼E¡eZ=vÓtºbt!í¶|¥’@“rXZÛ±MÅ7™¯[G8¶Y…&®mø@ÑTqÔF-R‹²ft|œK—'¸re„p`!D+…Q‹>ÁÏ–ýžAŸ-lf ëQôí1Ôb¹B*EK>»(/²Ž1PWL‰çz˜¶]†š*aYÆÊ¬E“g f›”OL#|ãܰïÓð>}>y>~>¶÷£ûq?²ïCûàý¯ÂûöÁ_í†Í»qÞó"Þo= ¿ñ4|âÞã#x¡ ™‚Ém‡þù—ãì¾$×ef¼&ð^—ži¶/t×.%u]—`0ˆ$IÝ Exë ½ƒkÕ'×užOÍ:–Eµ”f|dEѨTËH’€c[¾¹ãbZ.ºa£jšjâ8.8EK'.W™¯MÇ913Æ+ÃçxêôaîÝó _}t+þîWy×'ÿž_~ÏqÝWÿ‘ïy‰œ*¬®ÌØ­šæÕ”š¾ l­òÒkÑ£x5À°‡5Ü’¨·ï:î"Rd‰T"ÎÌô3“ŒOŒ3tñ"ÃÃÜ=}– ƒ—8}ªŸ£Ç1<6M*] › púÌqNŸ8Á¥K—¹reŠÙé&Æ'ˆDã(šëXˆå,SSST©míx«?ÖÚœé¶T³K†¿±YÖ`mËÆ²¬:`´ÐucÑj£f½ÌÖq–|×di×P3­ çΟ§\­®¿ÕöÍ K Üz ®{¸^Rz[wž†o¿½Õ³°¹·pÓíð«wÁ_?{g¡¦o$n±±o%`hÛ6'ûO#ÊjW=]º˜õû !T1‹© 8¦†S„Ö¢Ù¼†mé~˜Ž¡ú=†šˆ)•0„r%ÄÔÔ('Ï^äØéKœ>;ÄÔÄ(•\½F+†=¥£ `(—›A¡ŒT .ÆbxÉ®¢PW*-…Ëñ%Ã5J=×òýþBðPU Ë4Z{|šÈ¦æ\D7 *áµsóp&g¢pfN/À‰( ã ã á Âþ ì Àîyxyo×4Þ½qß·w¿ˆöÍS <1Ëï?Tà¿oM’©ØËÊ»Z~ñZèÃeÍ÷í¸.sssèš¾”xtËþ¬§\¯Û’Ón“×k&šêïÛ¢XL2tá™LŽ‘±¦§'YˆFˆÅc¤Òij¢ŒÕÞÇã‚ Øžƒá¸hŽCÅÐÈHU¢Õ"S™ƒ‘YO\æÙ³G¸ãåÜut¯F¨™Z+sy-Ù²µJó®ëÑïš±ÑגɦË^ÖnzÛš[]]S©U«” Ê• ™t†H4J4err’K—†¸4|…@(N>_"“ Ðߌ+CC _ºÌéÓ¹88Hÿ‰“\ºO*•B’DªÕ ¢(a5ÔE½ÖÏ‚«ã•qW`ÚõpêÌ¢mû@Ѳ,LÃ÷c4ë,ãâ惡xŒeYØö €q…Ï+ÏóÈå \¸8Ø»…Л\NÁ§÷Ãïý`e_Ããú6&ñí·µ*’¾ãøãÇáî³ÞT÷¼±± ß`è8ç‡Èæ ­ç]šr©ä‹ËhrËTqlDzq,ÛÒ° [—üÐDlUÀT*˜r K*¡ y´Z ¡dlt”“g/snxŠÁ¡q&'Æ(ffÑ«ßâ¢F.ý>Ãv†°M U*…ê¢7¾e†TªÃR¥’@²¨B‘ÙÕJI›~w]Ûq¡Ö04tƒªP£& «³’‹xÄk•ôÀS-܉<Þ ÓðÍ~Æßw€o^?À¿½qç?;'Âx¥¥}¨0ôšMV†¦m333³ègÖ1áuß:ÀÐsE`!&K0p~€ÑÑ+ ^<Ï™s§9sþÑnÆßû1õÊ&¯"Ú?.ß’ËT_êÿ9þúe M5‘%™d*C$atd”é™rÙ Ùt’¡KÜ9sŽ“Gsqè—.^äü™~Ο9ËÅ‹CÄâ)4ݦUŠ®}».óõ¸våàMÞ©¾E,úeý  ¸X~ªéugŲө©fæçPUõ§6c´[à=;ÚØÁ5aóïï}öÍAESÞóFlÄFlÄ0|€¡ëº‚!¦fæZm VHØC\´ˆË hµ ¦\ÂPJ¨B©G(FPÊql¡ˆ-±Å<–XÀ–ŠØRS, ×²H¥Ùø4s3“çgfHÇæ u?Â6qµ¼äS(—#> ,‘ Áú±Q”bEÈ¡KE µ†¥K~bÛŽnvŸéØ,†¦¡a×ûmÛÆqìz9”åÛZØ6–m£©ÕjÕ—Eo–n÷ÖȆZaÝЃpÅáûjü—[Ó<ñ|¾uÞöÞ¿ßïyžÛ+BYÓñÉG\\Ï[{•Z•h4Ú{OQ/=…½°…½ª”^K{…®Ís= ÃB”ej5YVë½¹õ¹u©fÄr†ÀÜ$“ÓŒNŒ24|óÎ011ÎÌìÑ…T]÷A¥ËŠö×X³Žd}½ª¤ë}=¸vb;×âÞ×Ós×%pîh˰ -ÜZýé‚i:覅f訪Œ ˆÔ*eOãà¡# _¸È¹“Çé?q‚Á‹‰Å“H²F“éê Ÿ× ÌÖ|¿­œéî=»b!û›wÞEË´qlwÅ×¾4|…htÃ0Ö½¾Þt¥¤Í×.0–…ÛÏ»ž\¶•’þÊðGOÂý!ZÛ[QÐg#6b#6b#ÞÀÐó<É4‡.ã8Ί JãÛÂ6äR´ÈȅТ}DÃÂB*PŠ ØBK*bIEl¹„-°„<¦”G«P«Iäb!¤– £VPˑž¥ˆ,™×ƒõ2Ñry¥GÒbK­àê"¶eâÚ–_âj;X¶‰iëØ–‰cÚÌC]%3‹â3Ž/˜ ÈÙLŠP(D8&’H$H$Ò„£Aÿñh„P$@&“¢R©"âŠÉ‡Ç ` êÓl;.O мãöï}, ®‡+Á}çà7žÁûW߇ßxï GðÎÅ ¤âXn›¹½·B9±K¶à÷&­Ö§sMJ9»ñìDx¯@XÅ3®½ätYMpÃOÚP‘ÅétŠÉé)®Œ\æÒðgΞaÿáƒìí8¡hÛqZçß}Ù3¯‡ß»Mô¯% ô^çùîvËœu7+ÅE`ÓT¶ÝI8f0Ãk1°_,{÷@ôl×Ð|UÒ.ئ04m{†C¹téCCCœ={ŽÓ§Ïrvà {÷îáÐá×8rä5†/_"™Júd=—Q¹Pp].„5>ðxžwÿ Ǿ1¹œ¸.PQq_žÆýë]¸?¿ ï_ß¶ïàÜÊe¤M×a;ñDœr¹Ü}²Ök‰^·ÌT=‰sgeûõˆ]%·n=‘vñZ›;;çÜõ>2MÓÑr¹J<™ IP©J¸¶·TûëyW§öÚ+ ×¥íÂUÍ^mF^o Ø èií¯ ìjš&¦aµÚ1t}+oP-+5m>Í;ptÕ/µtš7Xú_Ô­²†V,eìæýÞ+Ëè-ïA\³ša¯iý§Î ÂRËÄO00܈؈؈ `øºCU39zìÄro§eo±¼Q«$êV¡º8L©^޹ĆP+‰z_a[.â¨%¥‚-Wpä"j-R\@-‹¤J¹œ@)DQ‹ôj KLcHYt!‹£”}a[ÇqLǵmßBÀ2ëàPÃl(£š:–®`(5t©Œ*dª ̯ ÛJ¾¥¤Ží Ö*ÌÎNsöìY.^¼ÈÄÄÉd’¹¹9Æ''Ÿ˜`dl”±ñI‘ …"µZm V¬¼E|Ð\Yh.ÿ°£ÈÛ¾—âý–ÙÄ&4è%·>E¶ƒ(âÞtçãþêvÈþ6ò*‰ eÛÃ!dY^^MW—Iµ,KT*%¡Šah¸Ž‡®(Š‚mÙëKö{9~5æÎé0uî*ÌÑJl”KSé)Ý›­¿^å¤^ þjÉ^J5ßÈÝ€ëµz;Ì—çzH’D.—#›Í"IŽë⺦fP*—|C;ί·Â{¨SÓâ CÛÁ×o®g-tSVëu9ß^ëf­s¯&òãzT*N>‹®éW½‘º±±ñS ñàèñc¦¹JÔÒ·¯"¤P‹´bµF-QK¾½ï¬[GÄÐ…,¶RÁ”Ê(ÕÕršr)…T-`Ô²hÂJ5„–÷û Õzi¨RÍP+¥*YT¥†iê8–ŠmkØ–±èèÔËF=ÇÆµ lSÅÖ%t¥ˆ.åЄ Z-…&¤Pkqj…Ð0ì‚i€Bò0T SÓplg1<ÏWÑ󾺱³ã¢ëºßc؆käa>¾XbŒÜú¯\ù¯ßNò·?Ì1™2Ú’Áu©®9÷¹1ìŸÛ†·åž·È?vÌ ,ÃbfvÓòJG‘™nĪÏóÖNÆ ©V%“J²°%É"Ål†ØB„\®€(ÖêÆØ†¦bêŽãµöp5®Žì‚·¬«³ Œ·þܶ¤|™%k[|xn‹—œë^£Ù+“Ú-àë…1óÖq}½>Þ-;çu úÖ9kÄnDwð™ïJ¥B,caaJ¹‚mXºA6!Íf)—ËT«edUÁ0͆Öõ±ÂM®d`ïÖ?¼&z:)‰ºØH·ã8wd ×Z][Yt:»µj{½X<Î…¡‹+÷nÃØˆØˆØ†KÿNž>E¥V]ýK¿žThRnÉ8¾AZT mf ÃÈ…(¶”E¯eÉ$c\›äìÐÎ]¼ÂÜÌJ­ˆ®¨¢¨µF-‰­”ФÙtŠÑ+—è?uŒ`8x>(4UlË÷L´M꺄®”QŪD¬&‘kI”Z­šÆ¬å0…z-‡RN2ˆtµãÝŸi†Ži´æ„+$‰º®S©TzöÌòЃšâð® üæÝ¶Ÿ±T¸Mîy×ó…h>¼ï?= óÅE6r©§ÈÏÏCVæçƒ‹leײóköz‹ ‹TOßLh8 ËÕr•|!O¹REU4²Ù ‘(ñx’H$B&›CªÕ2¹l–b¾€ (’Œ"Ѝº¶2Àí(öâ6ýÑmÁ„«¯U(¤ŒºK÷šþî²¼W±1!n½|ëQb…«Y/»÷z1‚ëaZ»±—èptÁ*êºA©T¢X,¢i*žë iñxŒl6K>Ÿ#œgvfŠùù9¢ d22™ ‰D‚l6 Ju%NUU±L»UAº¹¹­lY£ä¹¾þ<×éP½|Ýub¼WT%î…-¤‡1ïì¯òøÌü,㘖¹ 7b#6b#6b®õïÂà ™l§ÝK­C2d*¥Eóx¥K¤RÔ/)-‘óÄ|[Ì!—2„‚Nœbÿ±s:yž+ã“ä²IR±‘à4Ó“—¹|ž±‘!æçg ̼À‹»^`||˱ð< ×4p [1”2º”G­¥Q„$ºB¯¥1„,¦œÃ ~HÅÅЫæƒÝù6JI—€¡Œm]%ª½C¯Iä§q9Ï\ùÿ|-ÉwöW™J™ËW1ÖHìE©ŽlÂá0ÞÏ=7l­€lFŽëP"ÑÈÚJ˜ëYv<Õuð4'”ÁxtÜÕC{¹6¶ G ç"ybñ,±É)ö<ó,üÿý)øKÿ•·ÿ»Ë{çoóÄs;˜šâØÈ/ ðøT„C9Íq(U£{”s“O1;N$w…¼BT3hF ÃT0- Û6p=cIÄ]Aì±·îZö"zërݨØv @»‹¹–à×ëâ÷.ÁŽçz‚@2™$‹Q,1MÛ´(rƒ¢a‚Á0Åbr¹Œ,+èšmÚ‹Ÿ+®ë¶(ûýƒ–i"Ë’$¡(ªªb[6Ùlš……¢á0ÁùÁùóssÌLO3;FVT¡J8ffjšË—/ÆD¹ÞiP)H§ÓõŠY6PUC7ü^IÛÅuÖ` »es{íëh Óþþ®[Uœ<Õu•ý…Àp#6b#6b#Þ2¥¤’"sêÌit]ïðë¶ö°Ù.†&b«5]µTlKóUCëašŽmùÊ¡–Žk8¶‚m èj].¢It!‹.$Q+1ÌJ!3Çìä8§Î ³çµ³¼vz‘Ñqlµ‚+V0äbð•°¥’ï‘(6˜Â<†˜Ã’ŠrK.cI%ôZ¥C*… áÎâ3]¨’Zš‚*‰¤Òiææç˜žž&‹Å˜™™avv–ùùyB¡±XŒ\.×5chÙ.Á”ÍŸÝŸãûL„ÇÎ ˜NÃÓ€Å2E§©fÊk¢žZÔ3›ÄNpÁ±=¼?yÞñ8ÌÖÀ^J¨U% 7‰W¬!ðЭ]EË6n¡Š|ÿkÔþa;Ò×^ÀØ?‚cš`ØÈOŸA|ø ú‹—Pï<‚ø¥ßÜ…òÐ1´íýˆ÷îGÞú*ê+°'BØýãhg'0cÃa³Ø³i¬D¡M)t-ààQ±]fD.¤ DiNîÛÇ-_þ"Ÿú‹?åG·Ü̶>ÊïþÇŸãÆO|ŒÀèɱqF.\dïø<Çs"¶£3›ègësïçÞm_àÁg¾Ä_þ Oü;OÜ‹ßçÔÄ“ ‡÷0Ÿ>ÎüÜáP˜X,F"‘ NS,æ©ÕjäòE ÓÃСæ‹Î˜6¦å´¼¦®«È²Œ( är9ò¹ÙL†…h˜H4n¸d“qfffHÄâ"Ñ*×ñ05•L"ÆÄÄ@€P(B4º°x=ét†r¹†®›«ƒÂnÕs»µ»èvm´ýî:.±XŒó¯º¿pnÄFlÄF¬š¦¡YcñSúžÇÉSýh €½å^ËŽ‰ëXض…Ý`M£î+èÛH˜†Œaø@ÐPJhRMÌbˆù:ËWÆ’òhB¥–D¯Å¨BÌN300Ì©s#œ=?Âåáqär”ê—”F}¦°þ»à3‹þï% !‡\Ž"ÈÅ  Ûí*VHDZTIMËP‘…SÓSœ8y’'NpúôiN:Åèè('Nœ`tt”3gÎ088H4í j–Ç…ÎlMñ¿}6ÆÎóµö‚ÐÎÙÕŠ^ËoÊ=þÞýxi¡.<ãPB¡PÓ.|ý…^À°Í»Ï–dÌ©8Ú±I´ÝÃ'g°+2Xò³§Ñ_¼‚±å‘ÓÔ¾µñ®ƒèû¯`CüΪÿC´çPûG‘<ˆðàAäïíF¾k?òO ÿàâw^Byâvª²6ÛÓTf7,ä*L*‚a^xêIî½åÛ Øf fG¸x×wøæG?ÀÀ‰Äfgœåp0ÅÅšŠi‹ wsÛ÷ßÏÖoÞË}wÝýwÝÅ}÷ÞÁ}÷{·ÝÌ=…­‰ï?ûØõ9øy]¹ É,`&éDŠÉ±qsA Åš¡âØ®ã^ÊæÕÃnµ^À`7=†ÝöXv³þÖË®¶Æ½.AJ[?«çºèºE©X RI&bLNN1?;ÇØÈ(CƒC\dxxˆááKŒ0;;ËÌlšd ÖJ„‚sÌÍÏYˆ‘Ng‘$Û°EÛ²Û‘‡*ËT*e$YÇó<*å<ÉtŠJ©L2™$“+”Q5•Z¥ÀÜÔáp˜ÈB”ùù ccDBaæçæg~>H¹\Y¹¹«n­Dºím;αfffŸœÀéÉ4t¾±cËu}ô]·…X[b9¹ãzúÞ³éõ¾m’ëûúØ1'öð<‘›û¸~Çä[nÎæv\Oßæˆ?×ëÏÓæíËçI›ÛI_ßõŒˆ½ŸwrÇõôýáv¤eëTd`çnÂÚ[c-„û·s]_}õ¸~Ën íÇY1¶lê£ïº› ·ƒGq„úúè»a'Ú0|óC€3çÎR®V:¶½¤c[8¦mê~ùhÝ[Ð4dt½†®”Ë< 1)0¥’ß(çûm¹„%”Ðjt!I-"س(•ry©A.„Ð A¤ÂÂrÆp•¾•VñCS©T«ÄâqæççÉår¤R)fgç™› I¥Rär9ŠÅâ0ì`tî’æðàÉÿõ{IþÍW¼¢^óyõ¨—PýÃ>ø/à l`èÅ’oÀ½$ààu_êÕÕŽCÓ±Ž_Rj«:¦¢ãá9.^¾†“­`2h—ÃX“Iô½—¿õ"·v!={å¡ÃˆßÛƒ|ïa„»^Eyàʳç0ú§Ñ"Üù*µ?Šð­Wð¢Åå`¹Ùª¢í>¦TéB…xxÓûö²÷‡1òüsd¾Jáð+ Ýñmnÿ‡°ï¥WLN2<àh<Ǹb¢[N\yŒ[ï~·ßüM¶Þy [ﺕ{î¾{îÚ·}[oÝ­·ÞÍ-·nå[·ÜÅ7ïü2;Ž|YËN¦Ùùü‹|æ3ŸæsŸû,·Þz+÷Þw?Oíxš={öÐßßÏÔä8©dŒjµŒeà:-Œ~3ÜrnëæŽ×­(ˆ×Ðôzuݚů§\¹×߯•`«—¡«ªŠ$IX¦ÕÚ“×´ÑæØ–ª¡©:¢P£T.‘ÍåH%“DB!Á&&§‰'²Èº‰X+Ÿcbì #£W˜™™#“É“Ë&™˜#KΦ)•«¨ª†mù¥ûK~5^ëÆ—å—½«ªŠ®ëˆ¢´Ø™LƉF£„B"ƒAÆÇ'˜Ÿ Q.ÕÖW^¼àó\¯»yê’a´‡K—‡YˆÇp½ `øf qdûbR¹u Ðš|oÿCúÞ¾í †#\××Ƕ‘JO€cûu}lÚ6ò–›³Éí×Ñ·iûO 0\ižÄÉíôõ]·.`Þ¿…÷|s¿ ›Ö©6¹¾¾MŒ¼€aá¨ÿÞ½a“±C»·Ò××Ǧ-ýXmÇü¿]·u éq7öÑ×·‰1kƒ1|³à IeÒ¾2ébŽmáX¦ß?¨KèJC.aˆy4)‡*f1Ķ˜Ã–|Û[*,–|ÚbK*/C]H¡ÕbÈ•ùÔ<±ð ÁùIB”2! !‡¥–±„R]h¦‰%” bMH£ Ôj ¹AÍGÐ !ÔB¥àÛk…(óóó«—1yË{ MÛö{ â3õ¾ŸÆ|4­äcè5¥ðÁæûÇküÜÍI~ù¶4ûÇ$,§Ù¨Úë9I®k[.ö.‘‹.îå ü§‡á†CxçHŠF¶P$“Éõ&ÀÑméÝJÉ`‹É»ë ¯8õ0p<Ü’Œ=™ÀžL@^À§‘Ÿ<…tÿaÔ—.¢¼týàÖäæ¹)”ûö#|úY„/ìÄ WZÄeujß» (OJäq/<°Égw0¸í~Žn¹…íÿw<|ã¸xì0©qf‚œJWY0l4-ÉîS·ñ…oü9_¿ñóÜzë׸õ{7qÇíßåŽ;náÖ[oæ[ߺ™›n¾•¯}û{|î¦ïqãmŸaÏàm(f‘©ÉžÛùïxŽW^ÝÏoã+7}‹~œÇžy‘;x„›·ÜÍ·¾w·Ý~÷Ý¿íO<Íñ£'ªÀC·ÁéDuk$Þ-³³ÃGÇõZVz-„lÖb {è‹kEQÈd2Äb1Êå2†aà²áI $Š ¶ÓÚ¨·øùîz8އfÚ(ª@¥RE¨)˜†E.“b!c>df6@$§Zª’K%™˜˜`tl’ÉéIææf„ÃaⱩd’\.‡()+«[‰ª«’:¶…®ȲFµZ¦\.‘Ëå©VLÓé¾/p…σV°ÜeOéjçìðw˶9{î,ùRáš|on€¸×§íÀ }ô]¿…-×÷Ñ·¹•5ðîíHžE!¦P)02ÐÏÀdlñ¸Bx„þ£Gé˜¤ÒÆFˆé9†úûéïïgd.Ýš¬jþ¹úû')†ØÜ×Ƕ‘…ðáB+sX‰ÍN‹ÇuÛ†H‡G8z´Ÿ¡ö×ð4bs#ô÷÷Ó?0D¸ Õ¯+Ì\¸Ðr¬Vˆµ<¶Ú}5ÆnÍkµD&‡ük›L718Âs±`Wˆ…‰´úy;u;0¬4^3fn.¼xV%Æ@ÿQŽX¼gÏ ÏÍQÐÚÇgŽ‚Ö t»ÆõU4ô¤o#séecâèÑ~ÂéÛ7÷qÝŠÀp3Cé#ýGé!­y-¯“®,]›UI/Α%ˆ§+mëTcòÀÍôõmbçHÑz#æË_;±‚èÇÀHÛ/­÷É¡úûûjZSV…p8(¦ý÷ÊÀi±u ¢HlÄ¿®ÉØÒæIxçõôõmb  X÷ßÜGߦm‹k£ùþÞ¼‰¾¾>vLŠ-`ñ†Ý᫺ÿNaUb õ÷s´€pE[{ºZWo1`819I0FÓõ5B×±qì6`(äp¥¶”G‹Ør¹µôS.a)¥:ÃWÄYì,cH9”j ¹F)†P Q_…´C«F0„¶\òŸ#1ë`P¯eѪ)ÔJ ¥F+†Q+!Ôr¹Fª„QªQÔj¹G­¦—CV†®ãb˜¦opo«çõ?†A¥Z¥*ԀƎ½·ÈÞeKŸ~®Èùn’÷=™çȤ‚f4×rÒús—äœëµ³7Ë5øÚqÜ_yïÖ³Tã9â)¿¤ |µÒž’ýµÊï:µÊ­¥\¸=°\°ÿgÛÄËŠ8Y·¦bgJØén±†=E}aáÞƒHÛNàTÍå.+XUÀ©¢Ä™Dl¡D)‘ >xŽ…{HîÞÍø£?`æ‘»øÎ9öÀ݆†LNrj&Ìù¼HÑ2¨©~ðòxßÇÿŒ|êùÂM_âË·|ƒoßz ß»õf¾ùÍ/òù¯|Ž>ÿU>ù¥¯òÁ¾Â§ný ç&ŸÀ0eÎ^á‰íåÇvñý<Á§>úA>üïâóŸùO>¿ÓãIö^²ãÈ8î½Ä–Göñ…o?È_ÿ.³cèÀH‘Ç&Rì 8•,1’« º‰á­PfÜm_W·%¤Ý°‘ô°¦º)s]¯­‡×%xíF„¦ÃùTU]†¥R C7U“Ép…Çö†83]ŵ<æƒ%æ“é²N±¦#Ê&šé¢/~^¸¸uÁðpLßâBQ5DIA’4âZ©ŽFˆÄ’Ä“I’±(3ÓÓ\adä c££ŒMHåq=ou€ÖvSžÇâ¦WC§÷²YÐËæ‚·xdí>PEU9ÞMÓ®MõÅ»öQ⺾>n<š¦0°…¾¾>¤­ÀPdÛ¦¥rµ¾¾ÍLjý[77=ÖG_ß ¥~7´ý­‰­(ô³¹ío}}}lɰss}}[–Êá¬96÷õqݲRD¿D±ý›· ÕŸ—f[‡¿ï˜ ïö¯­¿°‚v^ßWgáV¿¯fà´êµ†ü½æ¸a'ÏCñò!qé^¶õõÑ·uÈÿyÙXw†šç‘îßZ?÷nDÏ£0´}Ù=oíá‰CljÇÊÿÜÝílÑ*c·üúê%ŒÛÀ¯ÂŽë;ÌËö•€aû±›éO[mcâ?²m}}[©x#[ûn¬ÓbÛù¶OŠoÀ|5®«i¼GZÁ§>À¦e÷é—uŠ#Û:ŒÁuKcÐa¬oÜ=W¿~JEl- ßÔGßu+°ÉÚ¤›¶’çüŸ%ÉWqÿí‘X~OÛ‡ «ŽÃÚëê- ƒáS³Ó(ª²ö¤» mCÁVE,¹„#pÄFß_Á‰Q«hB‘R.I¹Æ36ØC©Œ!æQ…r9†R£¢¨•8jÕÑ+q¬ZChÁ8je¥E)…ÑJÔR­´€\SÎIeçHçæ+1,1!å1Åó`WlCîÂqŒ:cèXÆÊ=DMç[ô1š´CdÉä“; üÂw’¼ïñ"ç‚¢æ‚ë´œ_Ãynú‘4îü÷Ý/PÜ{……X Y’êÉ¢·>`ØÓ"}ß\bº–à‰ç.±Šž¶å{Z.Ô4Üxs.ƒ•®‚ã¶%¿+b»>^?œ8ÏPÈg¨æÒLž9ɉGàЖ[Øyãxé†qàkŸäüK?"==ÉìÔGgÃ\*ˈ¶N¦:Æ÷¶„ÿñž?æï>ü!¾ø•Oóåo~ƒ›où6wï+ÜrÓ'¸ásÿÈßò³|ä_â½×žOßö׌-ìÇ2ŽïgÛÓ¯pÿSûxäá'ØúÙðƒý)7üùïó±~”×ÎOsd¼ÂKçóìȱmÏ8_¿ï¾ú;™™¥ <<ã†í¯òž¯ÝÍ»¿~;wûøì“»øÖž#üàÜevM†9Ï1R˜¯©dUÙrpÖJ¼¯f®%à²^A›n€êzï¡[öp K×qr¹Œ®é¸¶K±¦qv<ǽ/8?/¢h»O¥Øs6Å §¼|>ÅÉÑ£A©hPJ šQgdƒšæø:`^£bÁgÁñmt]GÕLTMCSŠÅ‰dŠèB”p8ÄÌÌ<ÉL±þÖôì×ÚLè•-ì†ýëf]yûæK•2'ûOâ:Þ0|³ö'í¾ÁglDÏòûü®kJöš¡Ând$] .PÚ¶:<O›ãæM}ôÝpK›äº>ŸÍkœk`˦:“¡±ûzlTü„ðÀÍ×Õaeñ¼;ÃZ«±© Ä51†›ûèÛt##Ë/‹«³%bS2Û`G<+ÌÍ}}lÚ:„§°¹¯ëwÖìÊ×õõqóÑôê÷Õ6~+_k‰í»ž´ÿ·XÀÝx Ö¡„²Á~Ž4Þ¥±îXJºy;“uxÝ–£>«h…¹¡¯M7¨‹m›é뻞IÍâèÍ>0J7³Å×-ïU\u욯¯âƒ—Ý7.±Té£7×Ç/Ý6o[nÞzÔ¿†J£ßíV˘,/¡]Z›­?û@ë:†*Ë×ûë3_“Û¯÷×ï@˜B,ÜÆ0[õõ~óbo¥>oÛFÄÅ1¸îæþГܨ×Gßõ;ÑǺñ^Ñ8ºå:úú6//•µÂl½ÎS»Ã+3y1h€ðJÓZXçý·^Ç×÷õÑwÃŽ:O³íº>ú6ýçV‡µÖÕ[&R FÆF‘$i;Ïuêå¤:Ž©bk¦\Æ’|³yæ±”ªX$—Š359ÎÌÌ$¢Ç‹Ør[*`‹EL1ZK#WâÈ¥/S #Wü²P¥E«&P«qÔòJ)R0J)L­¢”RÈIff'§™Š3Ÿ˜¤RŠáÈuæ²Vf~>ØU¯”çzXm=†¶a,#]:ýÓ J­BM¨5 Å\ÍaËþ*oûn‚=Yà¥Ë ‚ÚØ÷X¦òÃrŸônJí–¢Vá W2ð¾~ïºgÉßyŒp$ЦëMøÉë^)°뵘…U£e–í¯i{`8xšYÂÆ{då×lܪ츼–J¨Õj¨B•Ë'ŽòÔ-ßâ®}€{>ø>nz×oóøW?Í蹓dægãÐ|„±šŠf)„³ÜxÏßð»×ýý޿募û{¾ñõ/±å–›xèöÏrûMÏÇ>ñÞÿ‘äù,ùÞøâÖ÷ΟESö|G~ô2?¿‡mcÛ§6óàGþŸ~÷ïðûÿí7yñàNÏHØ{EæÜ´m/·Ý÷bÑ`ëÙ9þæ ·ó¶ßúþÍÛ~›ŸýÕßå?ýá_ðËïù ¿ó±Ïó—_¿ßÿ$ßzöUnÛ{Šg®Ì3]MçÚX^tÛcØ­ÿâÕÆtÛ'Ø­jf¬f'3xÓ41 £. äQ †ƒUž9žàÜlÙ¤ÀÖW‚üððw¼àî½ó_DTüËñZ6kÖzo·ø®ÔºQ1î…‰õº†mçp‡T6Ùsg¯ÝþÚ»ÆQ`ë&?Q‰ÅˆÅ&ë¿ßÀœµú‰àd{³™¾¾MlÝ}€»wsàè@mÚJÁó°D¿‡~rdˆ£»wpÃ"“á¿nKRYégS£ÇÐ sã"@­'Õ×wÆX~M±7ÖAPxÒ„Ãs ô³sû®k(Í%w±Ý7,>o­ûjOÆ;_kŒ›ûÚgŸÙ´udM`Ø~_ËáõKÉýæ%vH›Ûá÷˜Ý¸£G°ûÀQvn½~t7@ÈŽ9k±¯óæ£ËõV»å×7¹}ó"`Ùv][2/²}Ój¥¤}H{­çêÛBz½Àpµ¾Å×e¾×µmåžOK£Nžaàèn¶ÝÜ>'­smc°¹±QßÄØ´¬×âh½Wp÷šNGë1[úÓ‹LãÕÜK¤²©­Õ*ibqÕqXk]½%a¹ZæÂàà"˜éº–ŠkÊJ]ôÕ@m©„%°”2…Lœé‰1Ž=Æñlj†ç‘kuóy©ˆ%”°å†TD2~ h1€T ¡”ã¨å8R1‚T £”"¨¥(JyµG¯&PÊ $Ó3“Ì,Œ1elaŒáè£ £d ,©€#0k…%ư¹çÍ[š&zÀÐ7¸¯Pª‹»×‰²Í»*üÂÍq>ÿB‰Ë ’î´9^;`èu†Àp÷ GÈÞ|ˆpäÿÏÞ{‡·q^ißHvó&yw³q6›dߴͦg“(N6NoLw[¶ãD±e'¶cËq—»å.—Ør•‹,WK¶,S–E5ªPE6°€, €è ¦Ïü¾?’ ’ ,§|!|Ë$13x晣sÏ}Ÿû æk¬¿04K'rÅ&)eÃRÇ7n«(¦†…ýCšÎë¾Í}ô·ØiÙµ“–ÞÉ ¿þ5ç~ýëœyÒÿòÓO|”Go½ ÛEØÕÇ‘Ö6¶ö¹éÎÊHJ{ÿ.¼ñ|ù«?æÇ?úgŸùs®¸p!Üyk¸˜[®8“_v:??m§žù~2ÿlnYñkY'Éx”ÊM›YõÒ^xþYî¿á .9ùëüñ§_å’3~Ì×¾ø^ßVCçpŽú•:÷mìæŠû^æñ§_ ãîØ|Šþ†¯~øs¼ÿ_ÞÏ;ßþnÞö¶ãŸÞvÿü/ÿÁ;ß÷1þýã'ò‘/}—|÷ ~óðZvöˆ(Æcç€áxà4%²È)&à •†#ý jQÞîbõÁaVìróØŽ!žÝåaÕ7OlsqÏÆ>ž¯ö°rÇ¿ÚÇ£¯»hp¥2i’±0ÃÃÃþþÀ0^Ÿ‡LFFÓTR©™LYV0Œ|_DÓ0G=‹Ê†˜~Ì2¼rÛÛ˜eÔ ¾`¨k:}.ÍMsÀðo4$×ú¶|Œ€…ÉÀÐ> œTTTäc^ó.báÂ%8ÊBòi³Ù°UÌÏKÈ*V"äl㤅’£Pc˜(€Î l¶¥¸#y©ëҺȔ¦&Åc’ l½`¡ùëÆIã*.Ç\€’j¿ŸU6lKjÊ8¯ÉóXr¬R^¦·¸Ê5^úZoyÀÐ>#0‘å­,ÌÛ˜‘Ð¼ÂøçQ1! .*ÿ(p×-)ÍS_4¯ö•óóãÞ`ø¦\¯™Í€ÜÕËŠ¾_óX¸h"0/Î?à˜O½gË‹%±…ïʲb`(äAþh­àLß}gá|F>ó žÿx¶9oþSí×f53­«H`˜³¨;8¹){I™Ñx`h©"º”Bbãj õlœwζöìÚÍÞÝ»qôæ¡GËÆ1²IŒ\C΢ˆ ²q™p/b¬1ê!—ô‘‘¹ãy‰©˜FJPÓ!Ĥ—ÛA‹ÛŽ}ÈN«»…VwÍC-´ Ùñ{ɦ‚èÙj&LOoÏä:³D VÁ•T×õBa‘ù `šy9׈¬Ë4Ç _dY&™ˆ“N'0-§MžØŸáý×óËǃØÝ2²f2òßä&õc<㬲æb9ÛT»ŠÚºV+öãv»ó»˜e$À”‘ÜO—ÈMÑuÃ,N§˜EèÖ(eŒ‚æd mNsFþ÷aÕàeOˆÍ±îéܽø ÎûÙÏ8ûß✯}}æ3|ó??Àí‹.Äãh!ÔÓI­½…./.IF”‚îx‘‹®;…/Ìû 'ôcNýå/Ytîoyú¾kxñ‘Å\~áoøÎOæÛ?;ž²€ýú7<¸î|D͇ßàå—_ᥠXýôãÜ|ÑB~ýϱà{_äê³~ɾõ jÖã‰+´ù,vw›Ü³¾•Ëï^Í kÖ!e: XüôË|õ ßæä}/èS|âÿ}œ¼ÿ£üç ä=ÿò>þå'ð¶·½›·ØÞ†íÝáÔÛ—³·ßOB3ŠÑ÷±AÊLðË•o¤6ñXAŸ5‹˜fûQGÍc±Èû* ’E0­ÒÊÒ2˜fOwŒC})8ìpÄÙjòò!?+ª‡¸÷Õ~žªöò|Í0oèåîW¨ëKJƉ¼8=twwÓÖæÀÞÞF[—ƒx"ƒNÓïêcpÈM(%ÎÍŠ(Š:ZhÆÔ,àç=Õ}rÖæCÖ4÷Ýc¹&SŽ)zúÿë5€É¯3Û¢UcÆ:îÊI,n¥K+!»žìè: ¯/–‹jnÖ/[>*щxÐ{cç?Þ)5Ïþ/­®þê¥Øæ]ÇUÓÌÃ0,ñR n‰x¢ŒÚ3o@£)…v9LEkC!"#— zèéê §³%—BË¥Ñrit%¥H˜ŠŒ¡+hr–\Â_h/Ñ›—¦üdâCˆá^r)j&ˆš ‰1L1*Dî¢y¨™wK¶`/Å>_7ñø0ŠAÊ„éíé-ËèÂ4Ì<0Ôô‚”4ƒ’QI–L&ƒ˜2RBEQPQÌ’LÆH¥’IJ+¥xçb7ßy0L—_Aqæ4'›¡ŒkX?†aÊJ’'hŵ&&&¹žþ#]øýþ"æ´È־ܾbå07æ ‰½9M®_l¦c1æ¶ZÔ~¡X‹YŽ)ÉØ¤+«B\ûÚVξón*λ“N>•SuwŸwwþîwT|üS|õ£ÿÅ7/¡qëël?ÚÈ®ÁòLZbÛJn¾çæÍû9ÿýÙorÑÅWpç-·ñÜcòÌ#pÅeWòÓù øÆÏà[?]Ào]ÈËûnFÒS8{úYµf¯oÙÊÁ-¯°úæK¹òûó¸îWßâ?žÁÂSO戽OZ§Ùg°×©òèÆnzðy*7mÂÐu ¿¾öV>ñÁOrƾƙ_û6 ¾ÿ}ÎþÑ8ó{üô¿Æ7>óE>öÁOò¶·þ3¶÷}” W¼H“?JV7ß¼CÊ|ØP.0|3\IË}Ó1óE5³“Z-Œ“bšXÖØ SÏ—ÈŠŠ ÄEZe(.ãð î³£%LU{Œ}ÝI6ñ³¦6„×!›I“éëë§³«‹æ&;õÍv:{úI "ÑH{k3Í­­tt9qõ000Äð°ŸlNÄ24ÒÉ’˜C‘t]ç°Ä£5uìôFˆi9â©N¶yˆ'VÜÁ9ó¯âÄ/}›Çxë^â‰Çžà±ÇždÅSÏpÏ}pæ9—rڂ˹ÅÔ:žÄ0Dêí¬~ñvnÓ:ž¾||ùC\ö£¯rÓo~ÄõW]A§;ˆWPñ¤Mz•»jylå3ÔìÞ…fš¬ï pâOOåÄO~‘ó~øþø“ñ§_ü„›œÎ=8‹{ÿ°ÛþšKNþŸÿûxÇ'?ÇM•Õô%2¨å.±™Ø38¶ž3†7b3 RÎɦ,S±jLG™í O~& в@Ó@ÌY$²¡¬ÁP2GO0G,£¡k:š$“J¥‰Äc„Ãa†ƒ!¢‘¦¢…èÃ54„³Ï…£­ƒV{míDS)Ò©$޶vœÝx<|>Á`ˆX,A6›Å2-EE/°Éº–¯•4 ³¬ëa•3²)ì•[§8ÅñÄ\ŽƒuuDã±9`ø7Ù»py¡ÖL(ùÄ¿¢ô9VžRh"^¨ušà ê®ß\{ÞÂe8…|ò=NJj›ÏÒ¥‹ò5P.©ðþ˜ó缊Šñf'E&&«œÒ´À°xLù„7_+¨Eêòu#cX¸”e‹æa«(ª+œë¢â®iÏ«t”k‚ª¥ ÇIç–V9Gë¼ê–/š$µ-D¥ÂnEΓö‚´t½SB‹ØY:¼Ëçz{d¼DpÄdªVÓÎÝäñ9W-—À»&Hó ¢Tƒû<ûU1ÌÕsþÒʱ6ŽõEס‚%KæÃSÆÜýl%ÆÜ5—Õ'þ×kòõ˜dò4n>l,Zº”ù…95Ÿ©›ƒŠ%#sPÂywÞbê&Ê4gÙt„U/·=öóŸ¼~ì,©(óü¥8ÓσUƺú‡†õ x‡½äŠí½§H’FC]“14T ML¢¤L%›@“R(RU14S— c>t5‡©+…Ð1t EL"&ÄÄ r:ˆ*ä›ÜÙF&F2>LÇ #M4ºši´Óåi§¸¨ŸT‹– £ QzzûËzjïåeŒÖjJ¿×áÇٳwÕÕ;©o¬gÿ¾:ªwïÄnoeOÍ^víÞE‡££~nÚ0ÌÛ¯ôò³„“f¡±½Équ=æ&™Já ®©3¸Φ檜„|¶ìÀlËlö›ð2€ØE‰-ƒÃ‡º†X]YÍò§^ ©þ09ÝdùÁvþ÷'sVŹbþ©œüµ“8éÓŸ¦bÞùý¿Ï’3OaÑÉ?á×ß:‰_ýÏçùÒOOáñÚF¢TD¹r|LhÞHíàL ÕzƒŸ?‹Zµqî¹³b­ñêçI½EÍчFÙ˜c4Íi&·àÚ+J9„lIÉ)BÁ nÏ0ƒÞaÒX(Hý¡:êÐÝÕEk[+ö–Vºº{Ífñû<¸Ü²¢D àch`X4F.—+jW1¡aÍøð¨$@œ‰¤´ÌºíLË"•N³¿ö9Y:~KzÐý†D"‘ !Lp’ ‘¦`Ú,4A˜`·?‘ÁX:Ùðe–}…DAŽëyÍf¬#ç(•zOH$SÎÏÿ‰©æ¾`42 ð|ãs7ÒJ!Qò¼§oÉÏÊGÐfwÝ%IûÛº^#ó¡•i)oØ”ÇrËi¥)¿+Ç3Žçù—¼¦SÌÃ\ƒû))Gg}.×xš)’£`¨i9T-‡¡J²8¦’›uUBW•[¨Žþ]Q2(b9%— Æó@0 ãî<0Œ 'ýyçÓL Cˆ` 1r© ^_7No'ÁÐ É„—œBÍF1Ä8F¡•†’Ž”†”¾&º6Þ•T3d²YRBšX,–T’h1{£²Ác‘¾Ià1|¦¡ôôôàñ“ÉŠ“¶±¬1À5!f˜äL]׈§Ô÷½FuÃcì±?Άš¥,_¼p)÷®üwöwts×ʸã¹õܹú5nr O>»šžn¢ºÆò=Mœ}ƹ\þ«_pÓ‚ÓYtòYð­“øõ×Nâ÷ßû—þôÇüpÞ9ñ£åûŸú,gýéj^ë"©èÇÿzÎôa&@oÍr­XÇiìå°–3ŽÙšÜ<Ó,1„ÑÍÆ3kÆhU±9tkà k†sŸÌfZFÞDKQt,$1G(è§¿·÷›Îî®|ÛþB¡±XŒ{‡š‰'</ö¦fZZZévö0ìó‰ä™Êh4Š $“I±8Y!ƒiå±ÊV5ÊåÖNØ^×tB‘0ûkŒµ®™†sQ¶)N ìÉâ*÷ÜX[hÔ-_Lż<ûV—˜[[;ìý¼q<ÖGשúÎÅÿŸaáý.:º: G#3&ZÆ`¨ëyW  ]ES54MÃ0T CÁ2,-‡!¥Ñ³q¤tlj8o0$BL !&ÉDúÉÆòm+âÑ~r /ªΛÜd¢™F:–ow‘ ¢ Q,!Ž‘‰cfbB¬`†FIGpN0Ÿ™ œX¦5 ®¤Å} Ç]säçüþš*s°#‹¢’V¡«Â_Ž;Åp$B0ÆIâ8†¤{6Ò½rk¼fûù”9öiŽ—J¥Ø¶­Šê=54·´ÓÓÓO¯³€ÏO:FÎIùD}œÛkA¶jê(ºHZ‘‘ƒ$¤AÜñ&º½{hìÝľÖUTî€ç^¿™‡V]ÄÿŽ»×œL(Ó†iÜ~óÍ|ò£æ?ÿåüà3äÜï}šs~ð)þð£/p˹¿bŲûYòè}œwëõœõüî²Ë¸øškxîùg‰‡ƒtk:÷¬ßÂÕ§Å-§Î=çþžûÎYÀÝ NçÎ_ÿš;ÎXÀu§œÊï¿ÿ=ÎùÚIüîëßàÒÛÿLÍpAŸBçûfÔ‹¼ô®­c©y,³_)W\˲HJÐ7ñ¥5­Ô‡E=ÁZª”äk¬Æx¤>Ö2 äøšïik|Í"¹ya¬ÙlI’I$“DãqÒEÑ‘%·ÇÛãGÌjÄb1º;»hnnÁno¥­­¶¶v:::p:tvvÒÝÝMwg=ÝN†††…Cds94Ýœþ@¹òÞ™Öæ„ë¡( ƒî!ŽÔ=®ëf.‰ùIÞÝÕ,¬˜Ïâå5oª„ìm¬–eáªZJEÅBVÕùçÖÖßȘ´H=Ë–¬Ä%•f­kV.ý‡½^sŒ!à úimk3%™&áÎK-54UÂP•|OCMše ]FWshr9—Dˆ©a2±A²ÑÄp¹HÞ\&Ò DŒ»ÉEúÈFûÈ&Üy s‘‰ !§èÙ8Z&V¨5Œ¡¥#ÙȨÎH£*DP„üߥtlVÀÐÐQóYïJZœÚMt•åñx„D2‘ï+6ú¾>^rfÍ¢Åqz©ºN0&–íð÷†XÅc‘ ƒtŒ¯x<ΡCµ>pˆ#°¿¦–Ý»ö±ß~öTWs`×êëq ¹Ñ4=Ÿg¶(È'¾ºj e3X†ŠnÈÈzšœ%ózŽÛéñ Í½UЋçŸ~šSúS¾üÉOñå}o~ê?ùæÇßËÏæ}'ý7¿üÄÇ8ûçßâ—g|ïŸ<¯}÷œ{î|^~q5b6Ë‘´Âo½—E?þ7Ÿ¹;~{6wüz>·žþ+n=í n›ÿ[®ûÅ\õ³_pÇÏÂ?ý)7>ñ,Á89Ã:þ í߈TôxÃc‘‘ÂìT /ÍwÌàš g¯N³èÕ4Þ/ò|s–×»%öÉ´‡4qÉ"ß%d“>r­Fük&Ý7ŠåÀfÉCNtMùwdD._ü¾®)¨š†eªÈ$q‚Á áp˜p8ŒÏçÃ릧§®®.ˆs‘ºÈDûÉ…s‘õ‘~Ž’‰»óý C}y`BLzÈFÈÄú4!‚ž‰¡g¨™(j&Š&„Q„(j6*¦Ð¤4º, )YtEB•Dºz]eÕ¬Œ3Ÿ)Ôª2E¢jXÃ|b%+ ‰dŠTZ()Õ³þŠÅ†éŒ@ $™J•—(—Ë/Öéx4[Ÿ¥<Õ2-TUCÊId³"Y!K*‘$ìâwûèqváöcèF¾ÌÓ•ššLhØMKËQúúéíë¡·»‹!·¯o˜@(D"™BÕÔ±¢E3Ï2+²„HD“ø†ýôõöaojbÿ¾Ýl~õV<øß~'7]})g/ü5¿:íçÜ~ç­Ô×EÒ,6ö…ùÌÙâ“ó¾Êù§žÊ?û!çV|ó¾õþøÕorÁ—OâœyÿË9_ÿ&×}çüñÔ_óÐÖ ¤%4k¦Iù+¬Ñ7[BZŽº9é„q&Dƒ5v‘÷. b»0Àû® òŽÅAÞ~uw]â½W‡øða>y{„/Ýå»E9ý…翜↪ ÷íÏòlCŽÊN…C*Í~•î°†;eΚdÍ´Êœ›)šÑ´Õ°¬kù¦ìqXL Ã@U5t]Ï$!&‰‰FsF wÖ©ÍìH‹˜Ïâ÷ÒÉ4 M øƒþ9`8s1s1sÀðX%M×ihjÄ5àšº_U04 MÍ¢©"º&¡i2º*’K‡È„È…û£ýdbùÈÆF€¡ 1:PöçÙÂX?ÉP/a_7¡ánüî.†]m¤Ãù¶bÒ$éCŒ ¢¦BšJ&†*ÆÑsIÔ\*o€£Jy³MB×d4UESdºË†¦iN` §†#M&Ì À0]Z=`Eñƒd²Ù9`XÆ8,EFUÕñÈ~TÆf’ø|CtvuÑÐÐ@ý¡::ĺÔ:LK{‰‘µ0òP…ü¾‰Dœ` @2™BÕt4Ã@Q²bŽd*E0app––6:LGGñxۨó'¸eË>®xr·<õ<7Þ÷W-YÊ¥—ßÀ¢³.âü_ýŽßVü’_ÿGœ÷í¯sÖoÎaåaQYÃd–ü[që”r€¡Á´ÉûEÞ±8È[® pÖú4?y,Æ;¯óß·Gøß{¢|öÖ'\ÂveÛb?ï¸6È»®òþë‚|ìæŸ¿+ÊIÄùéS ~³&Á¢)nÜ–aÙþ«›rlu*q«8‚:}1¿`Ë™ˆŠ…f•xòTêoæ À ÛÌfQGÃ0F{#–úþ½ÙÀÐ4Mb±8uG‘ÒsÀp.æb.æb.æ€á±&IÐdo¦¯¯¿ÀŽL#ÂBÓ$d)…¦d04½à4*¥ˆ‘~²áÞ¼l4>P`]d⮼$4î•”Šñüïao7ýÝÍtw4ÐÙÖ€£í±@7b|€lr\|ˆlÔE66„”¢dãèb%—gu%‡¡æ `0ßJC×$t]FUTE¢wÄ•flp_\c¨ä2hŠ”—Uiªª¢ª*š¦¢**ª¦¢ª2Š"“EâÉÉÀЂ雾¿É/0ˆ?,Ý’d¦žtÇõ´D²õ¦Y¶ÎÔmFÍ©UZª7Aåg:ª"1ì àtãpÑÙÙNCS=µ‡ŽÐØâ OMr›Ô5…Þž.êëÓítÄI§2d2R.‡"É£ŒŒ¦(²†¦ê˜F¾Î1*ét G‡#T÷y¨lq²ú@3Oî¨åÏk7sÛòÕ\yÇÃ\tõ-\øÇ‹9÷ÚÛX×>@F+f=ß@ç•’«ÄôM”ëÃWF ĘÉM;rüÓeAÞvE€ËÄÑÃûh¨¯ÅÞx˜À99H6éBN “K #e‚¨R"_Ǩˆèª„¡åòŸ¯Œ0…2ºš7¾Ñµª,#çz{{g®{a²ùŒ’Ë’NÆ …C‚A<ÃÃ~¼Ã~<Þ!<ü~CCCø}bñ8i!5]AÏ_…6ôz½øƒU¹ÆðXÀàL6亪’Ö#ëÚ2Ç\^ßÃ4“ûáTû3F”`^ƽo±LE ·a€¬JB–h4I4–DT”IãÒ”,Žv;5û÷P³¿†CuG¨«m ©¡‰.G}}}üR© ºnL@0EÀT7- H!ús:íñ,uƒa^ouñÜ~;Þw”}à Ã<¶Ò7›-<žÊécXn ä4 EÒ-Z|9íâï¼ÊÏÒ:•#]9Î_—bk§B—[aÝ~³ž‰óþ%!Þ}SˆwÞeþ )~þd„OÞáß–„yÛaÞrmÛU…¸$È[/öc»Ä‡íÊaÞu]ˆÜâ¿ïsâ}Q¾»<Îi/$YT™âŽ=+êslêPØ7`Ò0Œ›ÄrÅBÔ,d=o”cŒ8(O î­Éާ#®7Åߕ鶋Ãñt,m);á³r9 ×Ãá£GÆãÙ9`8s1s1sÀpö¯î'Ý=Ýãe8#ÉÁöDW³HiR:Pcù&õ†" &½¤£ƒùZÂX?bl ÀæA¢u!&¼HI?Z:D.&èë£Õ~ú#{hiªÅÞX‹»§ 3í&Ë7·7å –¦b†>ÒQE×%TUɳ–†‚©Šr=—FË¥Ñå4ª†Ì\c¨êc} u%‡{ÀEKk mŽvvíÚECC;vì`KU[ª¶ÐÐÜ„½µ…~W?‘H„TqßßÂË"o' aæx–d&ùVs6.Y´Àqa5K$XXšA2'à&•PTQÌ’N'Éd³¨ªU¼ö k<Û:ã5#1îœÍñIï¸5ÏxóŽÑvsVI«L‰­ªjD#|{„º&Ä?]⟇xëÕ!Þr}Ûµl×±-a»"À[ÿäãŸ.ȇíb¶«‚¼ûº ¹5ÄîòÍG¢üê¹$x9Í’̰¦%ÇÎ^…z¯N\#œƒü³s¬§¢9Þ½tœ“©5c¥ÍlÊyø`•ùþtN²…{L*¦·¿¦–æãûœKbæb.Ž©±º$IhÚßÛØµü¸ç®á\ü£ÃÁ¡!ºœ]DcQ&=r`‡®k9rébÒ‡"g0Œ –Cüd¢ó˜hÞ\&Ë×f#CÈ ƈ«¨Fã$B^:Úšhh8DÓ³»×)¸‘Òƒh¹–)£i2¢˜A*ô44 S—ÐU]Î eâä’~ĸ1^Ÿ™(j*BO_oY7Ó0Ñ1ó]Î ééíÅÑÙA}}=ÍÍÍÔ××S__O]]v»ŸÏG2™$™LþÍCUÕp»ÝÄ¢±²dre<ÓÔ*Û¨wþÉ0 C ô»öxP0„ÇífØã% ÇÉæDdY!N#)ÊhŽ>ÚCÒ´Ê“/N.Š"o&Ãì­ocä`³¸>m"³XÆüêº,©H9…T"‰8€«o€––6ÚÚÚˆF£ù:Çqî‘&!AÝ¡} öàv244@ àCR(rSצ–ÿͦQü±Ã7ƒ<ÖúÒr$ŽS³ô½ˆ‹°µSã[$±]Ķ(ÄžJÈYt ©,Û•åîê4¯·Jt{ti®“Û6§yºV ³ð‡4n­Lñµ£œøpŒŸ¯Œñåe1>{o‚¿=Ì;nˆa[Ævqw\â³÷Ç8ñ(ï[ÆvmÛal×…±]Âö§o½À‡í~Þ²ÈÏ;® òžÂ|äö('ÞãO&ùÍÚ8‹«Ú†5rš™o©Sä´[V³ùr羜ïb9@ÑšYrj‘X”ŽîNºº»;#=—Äü5C`Õ|óW:J¾ï\¿Ûü•½üŽwøë«¨q ox_çª…Øæ¯:ns˜pÖ°ta6›m4æ/Z†=¢·s³®»äªf~aÌóþ¢ÍÝêÖWz æ×üÂUŽãxü$w]º™.=Šç¯Ô%W'',؃=ûF±™ÓžóLz/ÒÔÈ 6³dorOùV(¢ËÙ?àŸ"ñcN CA΄n1‚©çÛ뚊’KäÔÌfò†3¶0Üœ `Ii,%zt , ËÔÐTQÈ ²B€¡^;NG3Îîv<ž!Z[[9X[G¯³,K1¤4ŠCÏÆÈ%†ÉDúÉ„{#ýänt!<–áJª㥤†¦`Y†ibæ( )þò –ÿa&“ÁãñH$&?ÕŸÎ6~¦äºP×P'ÓV)-)ȲB*•"%¤É) ±h ¿Ï×ëÅívãêëg8@Ìdñy‡ñx=C!±8ñh”T*™¯%šVîj•¨­2'Ìär*sLò;ðZãe¤ê’‰²Å¤¶e~•GÁo  ©j9<Þú\=ì;°êêjª«w²³zÛ«wP½ïƒ^?¦‘g\G?Òœ 0¢üž’³•sÎFê{¼e¤V@„éו;©ñÌQ‘OÜÇveÛUÃ|ðÞ–¹øÕ$'?áÒ×’¼|T¤¶Cb ¨“Hìjϰɞ£Ç£QmùÉCQ¾°4ÆÕ›³léP¨í“y­Uâî©I³´:ËÖ§øÙ³InÜ!òTÈù«¼ýÊ ¶«ÂØ. b»$Ì ·EùÒƒ >rG”½6È[®òçk¯ðc»ÔmQÛ…AÞyq˜«^KáNEÀgIx9†<Sß[˜†¹/GÒË÷«¢}­ímx†½sŒáÿÏ€áÊ ó–ÛK¾ïXYmÞ? 0”ì̳ÙXfÞð¾ù9\~\æPp¬*€Áù¬¬¬Án·S½~ól6l¶Å8¥ãsþoÖuw¬œÍ¶ˆªúzîÄ_89–c³ÍÃ.ͼæéºt´r‚͜°`34eÿâëUèiå„Ûß0´,ƒªû«8aÁfV÷ÈcÏ8gÁfN¸´™Ècx|¥†‰tŠ.gw¾—¡5M~meê(Ùbl)ÀÔL=/çT•,ÙØ` EúÈDzÉDz¢½q7Ɉ‡H`˜d4B$ ·ÇIWW]]8ÚÚÚhjjÆ7ì¡îà>jjj¨Þ¹Ý»w²gÏ.šë x1å4Z&†"ÄÑ…(¦CNù‹Ú`ô!&P ÀÐÙÓ73²Æ€áX»Š±÷3%«#À0NÿåP_lJ<Çï÷#ÂôIÚLÒÀ™GT˜áò;z˜|“ ‚ é–n–”¬š®jH²ŒˆÇã‚€&«¼Ãx‡dpp‚¡¢”;†9}"oè:OGW7n—`8N"‘&#HH’ަY†5¹†i"Æ3'Ô–j,nMÇ¢#ËUâZºJ*¢ß5ˆ×ëÃå ¥µ…#õõ8x„Þ!/ŠQì¬Äs-¾‘úÅ™ÀÇùXÓ´2™ÎŒ¥'¢sïÞo¿*„íâ ¶›ü¼åº ¸-Ê{nóÞ;£|vY’_<›æÒJë%^¨Íp÷Ž wU§ØÑ©±­Iääea>|cˆË¶ˆtD-t}=~¡°Á¡A… ­[:eš<{œ2—lLñÕi.}Mà‡EøÉ îÙžâΪ4ç­MòÙ»"¼ãŠ ¶‹ByÖ±PÇø¶ÅAÎ%+®¨|sú5<[F¯Ü‡ÌPëZ¨YÖ–ÅÛMSsÑhtþ]›Žú:jjj¨«wÐÆKùÜözª«kpùݬœo£¢(IüNjª«©wº©_9¿4@Ð\N'‘q@DÂít‘òÌ•–pQWSMuu®ˆ4–¤GÜ8Ý‘qàÔítåǨ%p¹ü$üNjªkpøK ·ÓNMM 5uõ“ŽíŽ$H¸ÔTWSgw!Ž9lAðS_SCM¿0+ç¨džÍÆ’J;‘„4zÎŽú:ª«k¨wø§fô&ìëXY­b%þ„›ºêjjê&^‹ˆËNÍï…›%è˜%çzl6‹*]ã®c}M 555Øþ1éæs<ýupÖ×Q]]=þÜ Ç’¤öšjªkÆ_ëqcLø©^VͶ‡?6Å8¦[7îˆgMþÚj–…É»¦Þ9•pT-Áf›Çz» AËÊåõø]öüõ,žŸéÎw*@µt3'Ü|”»nÞÌ ×tŽ­9ËBŠ%ñÄr$|!jj]ÔuÄ‹Öd—[@È Ô¢¦)€?;þØW€š#CÔuD§\y`XM}(‹ýˆ+yìónaܘ´¬€Ó-L–óÊ!.^°™Â3 7s‚*ªC…}Sqꎸ¨®õàŠiãÎÓé+Å2W|šõ<'%%'It÷:qMl\ êêéî¹…PÐË@_;ýÝí õ´ãê$@L…P3Q!‚ž gc(B#CBˆ‰!2ñ„˜‹L|%DIGèéé/KÞ4®ÆPUg†EÇe™D"ñ—†e$Ç~¿Ÿp8L.—+¿†g6€`4‘¶0à ²+v<ÿy”==˜‚„•P÷w mjÀè–vNNÄ ÓeËTM##fIg‰±xŒtF(j%QN¸F¹œDåk[9ïâó¹íî»xzÕ³¼¼áe6W½Êî½Õ446âèèdpÈC2%ä¯&%*óu’“Ws‚ôpB ¢U8)WÊWÄš–…®ëè…+ª¢’ËåH'ÓqtóÔhΦFðX¤¢)`X†”|ʹžP+̘llWøöÃQ>xCˆn óö«"¼åR?o¹4Ä[/ òÏ—yÇ•!Þu]˜ÜácwFø¯{ã|á¿^äÖ-)¾½,Â{osʪ4/4Ëlk“è i¼zTâÕv…hF£Û«á–iè˱µEfs«Ê®.™š>wDcÅž7lNñÊ™.Jc¿Â=[3œñtŠ“W$ùì=QÞvSÛ5ÞySˆ;w‹øÓc_kä‰ÖôàŽ2ÿ>MLªÏ©Ù}ßM×éé©iò=nþÍ…äª*0Hű—faY V-œøžù+óÀÐUµdÒ{%%…B=ól6*Š$¨‰úeØl6*Ýîêe“޳´*ZìËlØlËHL8Ö²ú‚}ùøýUM¤~–ÏŸ<þUŽ<;g_^1yü W‘°¬ÉǶٰÙ*¨ñk“XÔå󯶩XnÇŠÔ³h⾋ÖÃ4û:V.œü¹ó–á/€–šeó'¼¿ˆúH©ëZ™ŸÇºHɺ=—Ã_ÈŸ‹cÕ¢IŸY±¬."JÌñ´×]p°dÞø÷æ-®D˜rNmTº&ƒÃñצ‚}u“Ç1íº)qmç-\8~­/©)Á®·ÏJG€U%ÖÐüåië4ç[ò;—æ‡ 6su­@¤é(',ØLUÈ;ïµÛGÙÄѸّ_“Í“ß[°šeåxiéÄ÷¾Ç¥€áÄm«© økk9aÁf*}ccª¾3',h,É&Zóc:gSˆHa|WïcYžÚÆIŸsWá=ûsùcŽ~'²Ãœ¸`3´ææ€á”µN†A_?.—«,y•&¥ãƒd#}ȹ†&ç夺„š‹!gÂÈÙ8ª, Í›šŽ³»›ýµhhn¤·¯¡¡!Üî!|~/ñx˜œ' !¥ÃñA„è@¡Áýb܃šÜGÑ2a!Œ– £fc(Ù0¹Ä0ÙØ`Áìf9@M…è:FóIœ §IšF€áßš”tpph4Š,ÉÓËË•–j»aZK#½v”Ì’—I_W‰²¯K1|1rÏÖ \»žìòÝèÝü.±4Æ@SPóûÜ­R¬€ib&†a éù¾†iÎÀnX£©D†‡[Η¾ñU|l%µõû¨;º—šƒ;ظyÏ®zšÖ<Ï kžçÙ5/°yëëìÙ¿—öÎ>4YÇ4 LÍÂ2Æf¦nä˜jqYfy.Žw5gÁÈ•ø=oF3Y~gAZe&öÇÊ(2‹ý—”ô8±ì¥ûØEÑtð¥L69dîÛ+sí¶,¿Qà'O%8éÁÿso”ßæý7y×5!þùÊ o¿,Ì?_à—‡xÏ5a>rs˜[âŸo ñá{£|ë‰?|2ÊE¯¦øþò(¿]—¡i(Ǧ#/ÖçØÜ*±§SaO§LS¢ePGW,Žtåx±1Ëk 2GûT6Ûe6¶ÊT÷jÜW惷GyËå!Þ}KŒg$bY½ $¸Édã¥rXárÀÛl8•ÓÇpÂï²"Óíì¦ÙnÏ›kÏ:×9`xÜ=*æ [lùÄx¹]À_Ëjò,ˆ¿œÏ_nÇ’,´Ù˜·¤*Ÿ'ì,žgÃVQJR¨Q½Ä†Í¶´p4ªÙ°U¬Bìù:²Eë ‰g‚Ê%óò ,RB¦(å·_nO ’øŠ¥Uø#n܉ñ M°/-ÍÅ’¢zµ¶¼p~‘¹/®v{IUž=,¶Ù°-\?ŽM«…1ž›m!uþ<àq×äDZ¸Ê=ùŒÛ·hLuùmý…}W:õË ×£pÉ™%‹ª&±9#ã¯*²RÂÛíÆï÷ã÷û‰–ä Â–gÄF¶«[:Û¼åy02qŽ­Ó\wš%óò`5QXOö¼œuI¿èXÕù}#õ,´g Ç¬¶ä8¼3¬›ü<®¬÷cY5K+ ×Ú]†NbSÇÀpEáVηa›·{Bò$ª–Ø rßéÏ·Ô9¹vî˳uY K q΂Íüð¹á1ùì†=œ°`3ɯÙHkÄ]]›t?|´7¿³!®^°™nîD’Cœ¶`3çìÌ×õiî^NX°™§‹ež€áiϹò×!È3K{Ñ´h~Lk£¬ài 6sñÎø” hõ£UE ¶À€fœ¶`3',í,\Ÿ•Våḻa;'œß:ö½–óÛ?Ö1 §ý7y`p€¾þ>4M›‘UÒe\ÒC&Ò‡”‰ahÒ(0ÔU]Ñ”š&@cÞ &1ìó I¥’d3I²BQˆ¢d#¨B%éGN #¥†CˆñÄø ¹„%DOÇ02q´L$ob“‰¢ˆùRÈ17Ùˆ 1Ú”ô 'ƒt÷ö”ÅJX†•Úd)éT6è#׿¯ gj nËå"£©Úì껦:®99‘³ s(HæÉd®ZCúêèû!£ „Wì!}õz„›6¡TÚÑz(u]È/FnÂŽcFRÉ †(cæ,EY/c.^’3‚Ø‹©[ƒn»ç.*N>…ƒG„bA‚a/N[¶naÕªUl|u#k_^ÏÅW]ÉyŸÏ×^ÂúW6‘E”´F¬_ÀÝfØ%íÎ!Ç,Ô¸‰’6Ð$SôÄ8žmšUßðrjÿÊE—N¨­ÑÿŽ cÇ¿álŸõ&aÒœ›Ph’5’‚F mÐ6hòiìëSy¹Mâñ:‘»v‹\_%pÁËiN>Å÷Kpâý1>qg„Þå=׆x×5!þϵ!Þru¾á¿]ä„ë‚|ì¶'Üâ£wG¹tcŠsV§øÍê×lxþÄ EîÝ™f“]&WÙÕ*±±%Çšƒ9jº4ukÔ÷k8ÃQÁdOk–ÏßÃvIˆ-±¹C"-¹–ÀZ3Kmg’¡S&H¤¨—i¹Æ6S(2Ù,]´µ·½)ëp̷ʈßËi§®º’åK ÀĞȳ.…Ä|´Æp^>‘Ï'êó¨)b«\ëNY7’دrjX’ ›%ÕþQ©º˜õJÔ²‚åÃõ.iêzªˆ—ËI}] ëW.¥bØ–¬çË3xó–՗ߊÑë1›mË*«¨ª¬¤ªº* ç-›Ä攆õK'0[€¬ Ün7{=Õ•«XTð'Îñô×=/»´ÙSY]EeeÕU+óÀstNó,ñˆlsU™5«“Æ1Ëu“¯W‚’seü S­Õ ìÂXaÅò1¶Û]µ¸p¬éÏwò9eyàü<“g÷%ñøB…ß÷áÔF€ávN8¿¹hMÊ21b"/GÍDúÈÆ\äâCÈ)j:‚^†z¶ðs6Š*Æ‘… ¹„—l´ŸL¸—L´Ÿ\ÂGOoßdÙá4ÀP×tUE.˜Ïü½CÓ0éëë#“ÉŒkUñ†€a‰ÄÐ2 ÌP©¦ ñ®WH_¾­Ù9 ­Õ¸r?âc{É=²ñ¾¤ï©B|~?â£;ŸÚKnÍAämͨ­(=^4ûZ—ýh/z—=ÂðÄ0C)ÌŒ<¾lNQTº{û¹öÖ[¸úÆÛ‘¤|rïõ…Ù·ÿ(/<·ž—_|…¦;í]}œ»èr>ùùÏpâ×?Éã+'›H ähÙ<ÀkÖ°yE5Ö6àØ>ˆ§.Š¿I Ø*éÈïI»¤ˆ‰’¶Ðå`hÍRFr=±ŽÑœn;«(å¯wkÒÏ™¬B§+ÁáŽ(]ž ®@š¾@†pJ%%ê$rAÁ`(¡ÓЩÒØé”y©Mä‰Ã2wìÌqù&³×¦øÉŠ8ßx(ÆÿÜåã·…ùàaN¸&È¿\柮ð¯W‡y÷5aÞuM€Ýæ»ÆùÞC1>uw˜S_Hq玼˜à²×þô²ÀcD^iȱ·S¡Õ«ŠTÖ |ê®(¶KB|ñ¡8à ²n•X+o204ß`O$ptvâì홆1^Ž7…‹Æ€¡sÕÂñ2NK`UÅ0\ŽÍ6¿`ÐQlÚ1•qŠ0¹ë–Œî+9Wå“ðbæFrŒ‚¥I@IJù~üŠCóדtV,\8ÆxŽ‚…%E ªøüòÇ.f”ò€`þd0QÞ,ÉÉ"›ÅU®ñn®S0cÅûÎ GX°ŠŠŠ|Ì«`þÂE,\¸‡0±Ž0Ï\-«OL` ýD"N–Î@å’"ÙeÅü¼Ür0›ãi¯»æ•UŽŽ±b> .di¥³Äõ]åñ}g»n&þ>ü• íä¦Ô'¦?ßI2Uwg g>–Ô EíPÑš”Y}ižÁ© t>ÏÞÚQR óÀÒêq2ÓJ—<¥ùL1سo¨æ„ÕØ³cŽ£/¹*o.0‰ÓÞGdV_³™.uŒÎ¯ärä näñrüM†Ù?œ†3Ÿß‡³Ç™/à·JCkLNe™†*b(t5‡ªåÐU S•±T M•ÑT¥Àʪˆ®¤‘s1¤tˆ\ÊC6>@6žw0G"Rhus!&ÉÅÝ`ØO66@.áEIѳ…–ÙÚˆ´TŒ£a¤¤—L¬!ÚK66€œ ÒÛÛ?¾nŠù°L u„1TU”\9—E’$r¹ÙlQÉf³£?D&“ùÛ¨1,:UQq se¼²Œ!J&p&–ª¡§²È[‘yh;ú@ T µ¡éùƒÈ›‘_i {Ï6¾@vE ÊËGÈý¹ ẗÈ>¼eO+Ê6¤õµH›“{|'òÆ#È{:^oBÛß…á c©zÙÒ´œ$ÑÐÜ•7ÞÀÒû$™ ‡SìÙ{˜Ç—?Í-7ÜÆŠGž¤éh3Hško¾‡þ×GùòWÿ›õÖ’ËåuÔ¿Ò͆'¶ðÂSkYyï 2ã¾ÓC­Úç-Z‰ÓŸÀ52ç +K2: ûÊÑvË×WcwØ©©\ÉÂy#&B¤˜Z´ªAJŒž§Í¶§T @MÝóà߯’õõDŠÖÌXáñ†3­›7 2Õ¥ëkp ÉIí*Fö­¦?߉rËslæÄ“ûþ97í)0tÚháiϹð§’T®Ø^ƒÚ˜iÌ¥‡°‡²8äåš?\;ŒæsöëÅ“ÊáépòÛ9mShjó™óaåpLbNÛ(ª…¬-°Žµ% l&篷#×ö®y™lµK âöpõùcÇsVj)kCøÝ–œ¿y–óJ$t9»éëwMýÝkâm&º*c2†–ÃÐTT5ÏjŠˆœ!ƽ£f0B´ŸLÌE6žÿf Æcd㮃Xhss!&Ýd£d£…íãƒH /Z:œg Ó!„–‰æ[WdãhÙ$9!I*#øf†ÅŒaÁ|F7 tEÂ34ÀÑúzŽÖåàÁƒ444°k×.¶oßN}}= ¡¡®®.|>ß_ß|Æ*ûq¼~Š¢”ÏYe€Ekù]p˜–¥êX¢Ž.¨èáº;‚é‹#?¿á¾-(;(›šÈ>¼ôëîxáá­/l#WÕŠî‹ >SMòªµ$®\G®²+£”=©tšªÕ,8ç7,ºø<î¾ã6î»çnî»ûN–,¾†óÏþ=œw)÷ß÷$[·`É’%|î³ÿÅoÎúMŽF4U£{¿›§ï\ǯOû?;õg,<çN?}>?úIK—ÞF[w;ñD‚Žî^\¿†Ë/¸‚kϾƒkº0-—¿‘[îÿ]³€¥\ɲ'®bù³W³fã-lÞ¹Œš#ÏÒìx¾ÁÂm¤ÓýhzËÒói™ã: P‚i´&6,Ç(¿Æ8EÀдÆ7¹3'0”SOþ%Y¿rŒ“¦QL/“œ`nd™˜&H²I4©àghHrÄcs‡‡ª‡X{ÀË¡®$uŽ»íAÖÕ óøëƒ<°¹çvºØÚàpw×iì3ÍÑ7œÁÞ— Ç' Ê fÁ•W7,22x“íºAJ‡ÂÓ YîØ“áOSœñ|Œï>ždÞ}>v[„÷Þáÿ.ñþäãmyù§‹ü¼õŠoYäׄ¹ìõI©„„Ó(E•kVT.hŸÊ¥tÑ0M†††èêê"™LW@8 ßœpMpv\´t)ómcMì]¤¦¶¢÷4]¾­ðþÂEó¦0Ÿ)’TŽ˜ÝŒ“|Ö³¤¢Ø…s5î$¹XVä 9ñ¢Q`™—Οj‘ñã³-\ʲEó°UäY¿R Ëª]㩊ŠycRÔ%•%œEóçUµ¸¢È5AÕÒ…ãæmi•sÊ9)Þ×±rþø9,Ô Žiw]¾†mÌisNaêëqT³dþ¼ñçY±U5ΘLŒ—’Úæ³té"l¶yTº¤’s<ýu¨^6~^¯¬C•Î WÍŸŽÍEéqL½n&ΣsÕÂÀpе“s•]VïeeÅØšÛw¤^qêóß»0âV—vZ±¡<ˆÛ†Åñ@m| ûá¥cf/?|ÔYX“öªCãö;q©¿Vʱ֑ß÷š±ãœ¶Â9~mÇ\ù¿¯.ã>"óÒÍ›9áǸï¾fÉ¥Eçrþ>j|QŽóÀ5cïvÿ¾)Írþ±á„CfÅ,]N'펎%^`š¦,¢I)4)…ªd󌡮`hJ&J6ìB ÷"EûÉÅÉÄúòàoDFï'ëGŒºc…è‚bÒDŒ¶‹"ƽÈé`¡±}]J Ë) %‹¥åÀT‰Çc´··±cÇ6vìØ1&%!y1 s\» Uɤ’‚AÜ^ýýýôõõöÓëïïg`` ß[/üë6¸/‘8y¼Ã„"‘¼¡P9®åÖ1‹$±„ì,ÌD=’Ó²èn”­vä­­Hµ]äjšPëû!%ýÀ+¤/|šÔ¢µH[°rZÙIk,ž`ý†\páYüéÂ…üaáœ~ÚiœvÊ|¾ÿýŸòõoþ€Ÿÿb>^x 7ßt w>?øîW¹äÊ‹qyú12M›:xü–g8íÔÓùñÏ~̵WßȃËâºëodù#ÑÝÙGN̲s×V.»ú"~ôÝsõY·àÚÀ05Z{·qÉ pÚ9WsÑe÷qö¢8ã¼Ë9ûâK¹èêKùÓõ‹¸úÖ‹Xúð%<òÜm<µî¶ï{_Љ¬äÈf4Âa‰h\AÎMW7qÒñ¬a‰ZD«ŒzFËœ"y7)í z¬,Þlاr%Ð31XÓÕÏ•¨‘1»Å]‡Œ¨ÑïIòj}€VO–A¿Hç`šÖÁiZ»l9âåñí=<±ÃŦÃn~©›»6ôñü^/+wñðë.žÛí¦¦#L›;Eso„maYtcòÓÄ")ƒ;MÃ:Û:O7f¹k¯À[2œ¹:ÍWÄùʃI>¹4Ê{® ñ‰%až®Ï‘UÇNÈBÇ´ô™å¢Çæb\.€,·ÖpÂvŠªÒÛßGo_oþá×\áßM"‘@Òfx*ƒ—D‚„ •ñY©fQ’=ù8Sôµ¦~o&çU!‘@(±o^2¹*ÏHM8ÿâCM(ïü4IB+:†&$”ó6ݾÓGþzÌf>4I@„’ó0:¿ a†Z²ò¯»&åÛY ¾tBâXׯôëF’´YÍïñ8_Ç†í£µzB*7~MÕjÙ‰¬Q⻪‘Håd£¼¹KåHdµ)ÁcqÛŠc¾>S|†eYHÙ©ß›†%¤9ŠªÐÝÓCS³½ ÀÂÔeäTLÜ@ËÅ1tS×Ð%—BLzòµ~Ñ>ÄèÐ(ÌÅcýy/…ö0ê"éGL ’ ZV䥘FÊD‘%CQ•lÞØFÑÓ0‰Çctt88pàMMöéCk:)i‰>†S¼$IúËKI§a‚, ¯€D:…¡å×K« V¡˜uš°Xº Šªº)© ˜˜²ˆÚЋ²±yk;F_$ÏfÍœÑaè^o'W>Å’þÄŸïXÂÙgŸÁ‰'~…~ð¿xïÿû8úØgøÞ÷¾ÇïÏþ-—_z>¿8ùG|ú³äú;n$–ˆ“ÖéÝâÐf;ëÖ­ãñ§–³ví:öÖìáÀÁÚ<[ODÚ[ÚY³v5Ýñ[ÛKªGÂÐe6¬æ²Ïç¼Kïáâ+â·|€³.[É%·má²Û«8ç’'8eáõüáªûùýÕÏð닯àþWâÜO*ÇÞæÅ—šXñÌ^6¼RÏŽ]44ùpö&$Y5Æ÷W,–•Ž#ÿ¬šÒR/¿UâÚ›–1580'3Ô•½³f+Ëi2•¼º@ë9ÅB1,L$ÅDU-tÕBÌ„*®á ½)j»âli òTõ¯Û£ìsÄØrØËê݃¼°ÇÃC¯»x ª—‡·õóôn7=1|a‘!†®A^ŽHFÊSEK7ϪQú&G}:[ºUž8$²½["50-«Ä\YÇÞ‡r&¥rAb¹`´è%d3t9»|Óê9 ÷÷Ù£nùb*æå{ÒÕ%þ6Æe_>›myI0/'œWÒµr.æâXb*㙹sÀpš—ašôö»hll.㉻…©å“Cd".„pJ&ˆ¡)D£aü>?©x„\:o6ë#$ïÏ¿Èà˜<4êBŒÕö‘‹ôÃ\“w'õ“‰ %‡1”4†‘o¡„.¢ë9 CASsȹ Š(’SyǺ2Ó0g†S$¨µ>†ÓîîD17ÞøáX 9f#%5‹êP­Ò7*„4'ÐЖ5Þ£ðƒ•ÓAPò Ñ4§À„±åd•g/wÝw7—,:›§¹Ÿ{—ÞÀ¹gŸÁ¿8~ì³ü÷'>Ëþç3ÌûÂÇùôg>Ìû?ðÞ÷wòàò‡‘U‰hO–¡½ ümq\.ŽÖeß¾Øív‚¡ñxœd* øôöõpx{#õ:<ºžc[Í£\|íÅ\tå\vÃ#œû§‡8ç’Ǹðº5\xýËœuésüñê•\~çjþpÓκâžYwáfâé4Õ{<ðÐËÜzë}ܼd)gžy>?ÿéB~}ÆU\tÑŸ¹í¶Õ<º|;75±w¿“£õ^ºz#drù>Šª"¢Hº¬bªz„–iLM– gUsZN?ÆÙÖËqÊjã15¸´LcÒ½oDÞ;~½ë˜“\LóÀZ·LLËBR,¢‚NN·ˆ Ñ”N,%ãdhéK²«5DU£º¾¯5zxrû k÷¹ÙXçaÕ^nîå©mClm³¿5ÊŽ#^wÆpxRôxÒD’9RY IÕ0, òР3ÿ¬edÈf©ÚTsüõµ˜#é4ó;å½§\óši€g(ÆÑéÀãõ¼y·×¹óïS²Zµ”ŠŠ…¬ªóÿÍŒÉ_·Š¥+kJ2zZ¤žeKVâ’æ®Ý\ü×d“ƒ»6 •^“±ax´—üfªâ<¶´šs–6bOÿ0óþwãJ ड±y|MÚÿ`›º‚œò "Dœ¢¿ÏÍþÚZ[[ ‡ÈbŒLÂM&2"í‡b¬Ÿ\Ä…î'îC÷’Žô’‰’K # !4)*„ÉÅ=yðíÏ÷3ÌÅ ¦7ÃÍ*r?Ñ¥ †$€œF£ôŽ´«˜AÆ4Âêš>uÃ)’Ð`ø·âJªê:ÝÎ^TE]íϱÈý¦2D™ÊßœžA—„OÓ?q¦ä2-ˆ44·pã­K8ë7§²ôÆëxüþ;¸ùš+ùú×¾Éûÿó¿øðG>Æç>óq>õ‰ÿÇÇ>ú>ùßÿÉ·¾õEÖW¾‚¦©øÛ÷Dˆ÷fÑT QI$RiT"E8!Ê"f²ø¼¼Ã^\úwG#²á…Woᬠ/äü«ಛžç–;×óÐ}yâÁ׸ï¾M,¾åE.¿åY.¾ùaμò .¸áV^Û¾‚Dr€XBäõ­,[ö ?ò 7ß|_øâçyûÛÿ•w¾ó]ü뿾›÷œðA>ú‘ÿáË_þ.ßþÎÉœ<ÿ^QM8¢`(9û¶spíJš^™î»loÅÓç$â@ˆ†‘³"ªj`fÌ2§ÎÒ-s¬>Ï:Æõi‡5n•¥f®›f1ᜧX¯Å.¦Å÷í<a[ ÿ7À0À0-tÝBÌ™DR ¢lU:<­®4uQ¶5…Ùt$Ⱥý>VïñòÒ¾!Û2ÀsÕVïôðÀkýÜ»±ŸU{<¼~4ÀžÖ0Qš»ãîŒÒåPŠOËkZ2…ùLÙmSfbjË‘›–ª9,º½Ú;:ƒÇ.cž†s1s1s1Ç–~¹=š›í¤Ré%C¦®¢¤Q™HFÆG<2ÌÚý:tˆÁr™¹t  cyc™QÖ°Àæbänr)/²@ÍÅÑä4†šÃÔutY —ô‘ ÷’¹P2á¼tT•P”¦"¡Kit9&%Ѥ†šC@WÓô–b §0¤Ð ]× í*2èŵ+Ó°kÀ0›éD×ô™MfÊ•‡Í„[Ó½Œf1à›DÊØQ£‰‰LÔÄú¶ç G©Þ[ÃU×^ÎïÏ9“«/]Ä7.æŠEð¥/~™ý·÷ó_ÿõINùùøÃ‚SYxæ¯8ãÔŸpîùg²}ï^t]ÇÛ§_Ø` ÓÔÐuMÕÉf²ø}~|Ä”€$ ¸=C8»zqðà9DO$RÜ¿âN^ð[~åƒ,¾ù¸ëy^~ü%¶?WÉËOlàž»×qÑõOó‡kþÌnZÍ%·ßÌ®ÚHgü‚"/®ßÇmw<ÄC-ãÚk¯æË_>‘“Nú_øÂçyßûþƒ·¿ýÿò¯ÿúoüû¿ŸÀ»O8|ôDîþó+¤ !ì£æ™Ç9ºéE¶oàȆ•Ô=ó GV=Aã+«iØ¼Ž¦ª tÔlg°¡£•è‹l2ŽaèãÍWôBÍ¢9³1țʌ‹ÁM9¦|%ž kb•~xaNdÌFL&·1-Fë Ã"+dr‰´B0ªà‹*ôù³Ø{ãìk ²é°Ÿ‡ýTÖXµ×ÃÃÛúy¾zˆ—k<¼°kˆ'¶ºXµÃÍÊ]ìíLN8µ¢îöæHͤYžÙÔLn£3Õ.[e¿Ù©=}½8:;‰ÅãsÀp.æb.æb.æ€áñ~ùüZÛ„Ãá©“¦‘œÂÐÐ2aÒ±>²‘>”Äb:HsS#{vµ!E#d¢.²‘>2‘>2±²ñ!Ä„15Œ” d£¨RMòý5SW1u]Í! a²ñ¡|­blEah9LMÆÐ$LUÂÔrJMÉ¢È"R.‹N %ÆÜ— GÌgä\¶4cXâõ7 ¯x2‰ÛíA×ékÊM°ËÝÆœ ­é’Íuh£Ë½¨ ¶E ÖÑœÌBy`xóm×pù•çqùeçsùEçrÞ¹§sâ‰_ä}ïÿOþçsŸã÷¿;“®ü7\y1—\t.W]{1‡ë1$÷¡(®Úqo ÍÔd•D,ɰׇ{h¿?H&%' x^­]´îìÃ]—À”4¼¡Vn[v?ùÍλê!n¹ãY^XöÛŸ\Ëþç_aûÊ ¬¸‹®_É®{ˆón^Å•KoàPÓËdÅ(nwš'Ÿ|+¯º™Ûo»K.¹„üàœþù,Xð[¾öµ¯ò¡}ˆO}ê“|í¤¯ð…/|žO|ò+<ñä6dƒNjžyŒÁ¶ºÔrä©û©»ö,Zo»˜®§½úU¶¬ãè««hÞü" ›ÖQ¿éEúÖ’K'1Å?L®×<4ˆ £§SXRKÕ°tË(Pa¦5;‘ce­gê¯w,ûÎèÐk¡(2’”C–%4MÅ0Ì¢{³5™ée‹¹cWòs­1Ã׃fºn¢é¢dKÊyƒOš¦4mî Ž¡4 ŽtÅ9Ðá¥Vlà™jks ;A&§#ʲjb˜VÑwhä;eÌ\#l5¦/GRZŽYM¹5†%êÁ;:;èèê$-¼y÷ܹ$f.æb.æb.þaa$¥«»›Á¡!¦Žž‹#Äû#ùæôšÀ=ØÏžÝ{8p`?þá!”l )å%@Œ{Ò¤L9—D•4%‹®åÐ5MWÐ5C×0 Ó00 ]Í¡æR¨b-—B9‹¦ÊHÙ‘Hšp(ÎÐPŒ®®8mmQŽ õjö8ß044Ã4UEQPUUU‘$ EQÐ4 MÓ$‰d2ù7 } Á`Ã0ÿ²ÀК%0´¦†%©Ä™M*È—"F¢"mŽ>¶í|W*Ÿç…UñÐC·sçÒ«¹øOgsú¯΂ߞÂå—œÇ ×^ÂuW^ÄÅü-‹o¸„>WZÂd`W€¡æ ñH‚”Ç;즭­æf;}}}„Ã䜆ª(ÃÚ:hÞÚƒ§!®+tºöríç󋋸ઇxàžÇx}ù3Ô<¾Šý+Ö³û™—xñá¸fÉr~íãüæŠû¸iÙµtöì$—KÑÝâλžâw ~Ï…ü#çw¿ûÝÙÜxÃõ,¾j1§~*_ýêÿò‹“Á—_Æÿx!?øÑ¯yuS#¦žöfj׬ Ù3ˆç¹´\|1­§|‚¡óN$øì Ä]‡ñ»šékØO÷¡4ïÜÈŽåws䕈!}Ä6½Lxý3$¶¼Jj{‰};ÈÚ‡ØÜ@ÎцÜß‹êõ EÂé4–ª;0œÈ@—Zƒ¥ 0úž 04'Ö½¦A"eØëaxØK( “ÍdQUE–1L UUPT]/8Ÿ1æi™¾ #Àp­³Á”†…¦¢ddIËË\%Õ$'ëÄÒ ž4‡œqõ$éäp‡²„ ‘TŽTVE3&Õ’5ÁÓCs–ÀÐ:Àп­¦ê47Ûér:‘Šû´Îù˜‹¹˜‹¹˜†Çç•H$èíí£«Û9}2Ux¬K)Ę‹\¸Ÿl¤-ã!ñSWw]»ªéîrIEÐĹ”5ÅPÒhª”ïhhùÐ5t]EÓ CA×4tMEÓõ<Ó4dEFÈÄIB‘8Þa¡XŸ7FSóG9ÙSÓÃ+•½¼ôr[¶´óúf/­;BO_OY,Åd)iž1”…x"×ë% Fñù|ƒAÂá0‘HÞ„ä¯b>3E‚54ä!K`šfùRÒ7 g[ï5›zÇÙ˜ã^ºa‘Héø‚Y|¡ ÞaýýšZRS»×·¬å…5ËYñÔ}<üÈíÜwÿn¿m1W^q67Ý~ÁˆŸ\Ĥ{Ë0ýà »ýôöwSô0uµµ:\ÇÑ£õ´µ·Ž„IgRô»z8ZÓHóÖ>íT]¢±cWÜôGN?÷&λü~îºù^6>ð8»~–}Ëײã±5ßýîw8õ”S¹òŠË¹ô²+8ó7³kOþ;<Ðp˜ý+÷q}ç߉ãû?¢ãûÿFÏÿNÿ§à=º™È@qo?Ñá~<}mÔ®}ŠÆ×^"îî'×ßÿñû¿¼šÄ¶MD^}‰ð†5Ä6¬&V¹žØkHnßLºf'‘Z2íMÈ}NÌl¦ ¸T±Ì˜X*cZT³ô…+ÁžMZW†UBNlMf®'}Œ5óƒ‰,º)äÿ¤é„úz{éîÇIoO·‡h4B("•ÎLD‰Ä"$ÓiTUÿý+ °ò,k‰ZÎÀhÁìÖ‚Ô0M²²A<£d$Y%ÕHe$29ôJM—Ý\~\Hk†ˆSÕ–[çYto.þ›$IÔ76ÑÛßnèsÀp.æb.æb.æ€áñ~e2h¶·Ìlú`šX²˜7’ ÷’‹ô!¥Ü¤ã!𨲥Š#G“ˆGÀT0tËбLË40LÃȳƒy÷?Ë4ˆ'Â!< ý®Ü^/ýƒ.=Äöêj¶íÚÏkUÛØ´žÆæ^}ÕΆ Ù¸ñ(k×6²n]3[·¶±wo'Û·7ÒÕë*«ŽnÄ•´Ø|ÆPDQdphýû÷søðaZZZhhh ±±‘††Ž=Jww7ápø/ÊN·*z{ûaLúUî“úÙ˜}̦ýÅ‘ÃKÓM’ih\'›³PdEÒPT I–sB&N8â¡ÏÕF«ãµGv²¹j-*7’%ĨJG¥¶×iÞÒÍ®—Rµf7uÛëi¬µ³æ…5ÜuÏÝTn~…šƒ{ØTµMk6Óº­ô ‚,eØSû,\¹ˆ³.]Á™ÝÇ‚ß/æÁëï¢òÞ'Ùõð*6Üû7_y çýé~wù£œ|Þe<üü „£vÒ‚Äáú~î½oW^±˜‹/ü¼àî¸ýNî^z—]z)¿þõéüàû?àÛßüßûÞ·øùÏÁEÝDS³°pîßÁ¾¥wÓø»Ë9ð…ïÐðÅOÑTñ8å½TŸýe¶\x‡žx’PO©è0ÞÁ.ê7¯Ç±g)ϹÎ|O?BÎÓ.¤PB>r1G3‰£u¤öVß¼‘ð†5„Ö¬Ä÷ìrþ™lc¨:ŠD¨B†4ˆ©°Ô(––Æ2D°d05ÀÄÀ˜Ü £¸‚9E­ßkkÄÔ¢„ÜÓšrJôj-”Š¢ˆ% B¸=CôôtÑÜÔLss3G;Ív:»»èéé¢Ãá §·—h4$+yÙ½ª¢êŠ$£ë*Ь`Fþž£æ„™ÆTÓiÿ± Ü©ku Ä 1ÑÔ·T“ùÙÞlÞ`OÂq€¯\çS •JÑÐØÌààÐØ¿s} çb.æb.æb?T¡( >ŸÃGê§·/<¶‘L|lÌE&æ&›ò"ËI|¾aÚÛÛq¹\H’”OÏ Oá­ Oâ'H”$¶lÛÎæ;ØPµ•gž[Íöí»Ù³w6¾Â3/¼À‹6òúÖmÔ5ÕÓÑ5ÈöívvWÛ9°¿…ÇÛimë¡§w÷Ð0ÃÞ]#RÒ€ÊHƒ{Ó0 À0[†9üÁN§“––ÚÚÚðz½tuuÑØØHSSÝÝÝ¿c8a*;;;‘eevVýÇŠDË©õ:–Ö1¢â‚äMQ „´N4"Ñ×ã£þh'ÁI4®‘HÈ9]Ï×\F^ž–rxôÁðéÏüW.¾!OL•æ××SyáùTžt:k>û-Öñ‹¼òµ³îkÿÁs_þ8·|þ;ÜòóS8°~A_ÎúƒzyÝûv‘@´%¼v%†˜•7¦’AzZw1ØYG"0ˆ–N£Å"È7BGÁ'%¼q-–ª‘ î"Üu?áÎû‰÷>Mr`‚{9ÿr‘}¨B–è’à%ÁÈË,ªWµJè‘K™©PÂ-Æš ,Ë‘LŽ—äÛ{˜J]ׄ^¯—¡¡!z{ó÷…–¶VœÎÚÚ[in¶ãìq ÇI§â¸=C z‡ÀÆãñN¦ÒIü~/›X,FV”‹>{ F•ñN§“êrÍ‘þ•Eç>Ú«¢p/6MÆ5¾<©oY,~9Ž˜‚œæ¾å÷ûijnÁëõ½¹·Ò¹$f.æb.æb.þQ¡a„BÔ,i¡ÈTEÄÔ5,C=41A¨ëìÞSCíá#ì­­eë¶mttvᄈÅ$R D);ú¤?›ˆ'Òd² ªb©ÀFÀžiÒÓ×;5+V¢Á½®éj Çc:F–tM'N“N§Aþº5†Eç¥j&ÝÝÝS7¶/Çq¶Öó3µÃ(§ìXkgHLUE¡¯·“={·10àgïþC<ØLCc7ö¶ºz ºEÂa“pÄ"ÌÏá8KT ̬…3H¹¢]"‘6 ß¡ Ž*G×vräÅNšÖõâ«O" qaåk—ð ¯äs'_Åç~z%ó*.gÑù·ñôQõäZ»{?úÝãüàœÕœvÕ.¸å.6ïY$JóÚæ#,_þO>ñ÷Üs7‹]ÈUW]ÁÕW_ËÂ… ùÅ/ÁO~r2ßþηùÔ§?Å¿ôMn»óYb)=› ö¥gÙxÑ"^ü៸ý³¿âŠÿú27|èýÜóáwqÇgþ›¿ý1.ûúóÈÕ ·»Îƒ5Ôoz‰þ†:ľ2ûöyåEôL°2qÚömâðª»8ôêrzuHª„eb™äb1¢›×“¨Ú‚¥Kd†Öãíx‘ÁÞZ††ºñ 4áëÙ…¿gÁžU„{#Úó8ɾ¤^ ãy)v5罎¦©"›YÌÀ8É}¨»8Å&åÕÅ™“~651“AȤ‘d)ÿÝ*Ü3$I"—ËO&ˆFÃø|>††Ü ûCD)â±0íím4´4Òjo¡­­×  )'¡È>¿go.ú]}¤ÒDQDVUt]#›É ådLÃ* „‹Ù?³¼ï׸WfÓpfß΢œûÄLµÏ~ïï ÝÑA(ž†s1s1s1 ß´:Ãd’ÚÚºÑÄgFP Õ×ÒôLH$%‹a%(¡ Ìc ø<Ø5éí˜69‰ îe1ƒ®Ê3ƒþJ®¤SL³q¹\¥ë ­c^ÇZ‹8“TõÔ<Îb@–i’Í$ ii¶S³·šƒµ5ìݵƒ-[¶Pµ£†£ÝÄ㢠¢8¶Æ,tr’@2GÅñ뻄[2˜iÂYŸ‚’Ö0-ƒt6Äþ†WX¹î6–>p×,]Äe·_·_É£ËnäÁ;¯ã¢E—qÒiWó•Óïà£_½ˆS~ÿ;6¼ˆªfèêŽñú–£lØð»wU³«zwÜ~'\p]t1§Ÿ~:'ŸüsæŸz ?ø.ŸúÔ'ùÊW¿Ï£OTæ[øú©¯\Cýº—¸ï»g²ðßà´>Ãâÿ÷ï¬øô»ØøíPyæÿ²æ”/òÜegÒZ·“–ê*ìÛ6ãéh!ÛÝFrÇf"Õ¯cjùï !eiÙ¾†—nþÛ—ßBWÝrÙ$š!#æR¤:‰¼ô,âÑF0ÄÝëè;D¯;LŸßÀå“ôKô2 øSx‡ýx¼ý y:tíÇÛ½Š˜óqÄÀNL]%žh¦»s½=O1ìÝB$RG*ÙŽ˜u!ËA%ªI˜¦Še©˜#5|Lv-‹ñšØº¡°±8Ng]] ¹ †‚¤YUQUmôb˜y3˰òÿ·,$I&ôÓ××Ãà ›@ÀG<™@×uTU&‘ˆGƒt8Z©ol ¡¡‰¡áét—ËE¿‹D"ªè(’L"%’“ÔQiþÄ2§•ŸÎ”Ë1‡™}IìÄKf’±·¶9èíí'™LÍù˜‹¹˜‹¹˜†oÖ+•JsäÈÑñgšæÏLðP°Ìñ&SP&X±¦AŽÖd{<Ó4‘$‘d:A"•D×túz33g%Ã1`hÍ ü›† e$gxxx|}!3<¡ŸùËL¬@9æÌÀä ;XJRjŽií ]%™HG‰ÇÂx‡èèì µ£×Ð0²¬MXS€©î§ÃÑDWO7_¯×CÀï%N“Ëå …[“¿–e’Í¥Èr™‚áFºûwQßRÉÃkؼýaž[~êf®½÷F~òÛpþU? Íù:Š*ÑÐägÓæ¶nÝÍ¡ƒû©­ÙÃÓO=Î-·^ǵ×\Å•W^ 7\Ï·ßÉâ+®àg?ù¿üÅ9¬ÛP‡¤š„ú:©yá!¼½m¬ùãåœûáÿåôû×~ø=<õ¥xå§ÿÅ+§}…—ç‘-ןAgÝvnXMë®*‚}]dìG‰W¾D¦é(š® ý¬\É ·\@Ö5D½ý–‰fšdsY¢mMø×>ÔÓŠ‹ÈÀZ\½ ôº¢ øt_yµa#Ñ4Ê03ÿG«  SêjEÓH i‚Ñ.·{»ƒÚúFö>Ìþƒu¼öúë¬Y¿Ž»kˆDôŒ4¸Ÿ¡Vf¢ùŒ<±Á=cŒá‰ŒÇ;L4–#;ÖZÃceþŽ·1ÍDiàH’iäDÓ41 MSÐ4ÝбŠ^ÑÃ!ÃçÂápp´±žƒµ5ÔîÛKÝáCì­=€½ÍA,)bèV ph!å²(Š‚i*膂¢ ˆ¹8ñ´—p¢¸w-í¯q°qÑÄ’®ÓÜbó¶6^ÞXǦ×Q¹i/®©âñ'Wqÿý°òé•<õô –/˜»ï¾Ë.¿Šk¯¿—Ý{†Ž»µ‘­÷]»ë0ÛŸx”~ð}Îûørý§ÿ'¾þŸ¼|ÚÿðúYßâ¥3¾ÌΫϠ§nûV­ s5ñ¡~2õu$*×#v;Ùsà‹þt1§žò+î»ù ¾ábžyä>j÷í%™J!iiQ$zè¾V¢ã˜éfÂý/ÓßÓŽË“fÈ/ãì Q[×ÂѦ^z½q¼™áˆH0aˆeøZHú¶#'Ž"Šx¼¯ì"“ Ð×y€š­°}ãön»‡úëioßÌg^ÏFú×Ñé¸ÁÁÕèrz| ŒÅrXìâÚ=Ã"L'I§3„B!œ=NZÚ¸èhk§¾¾ gW7nŸ—tZ à ÒßïbØç#‹ç׆‘€`êÙLþÁ‚iZ£} MÓD–rÄqDU'“Í …ðz½ô÷÷ÓÛÛKO/½ÎŽ®œN'míÚݸ=~²™,b6M8àÃçÆçõ!iEBQä© _(,—ÛÀÞ*C0›¶#á…Úº#a4MŸ†Ga_^Íf W‘°,,ÍÏòù¶Iï¯räMÔ\UK&ïk« ^ÈÊšeó'¼·ˆúÈÜœÏÅ\ÌÅ0|C/QÌÑÑÙËåš…‹¥5û¤}š—¬*$Òiü‘±”€7 ³·Ãv:ÂþƒuT8À«UÛÙ\]Í+[¶ðĪÙ¼cm­ì9PÃê—Ö³ç@P„ž>gY'Ë´P'¸’ê{²Mq>u`hIgûúI¥R“ÙÚca åZ–Û®¢œ÷@Nzϯ¯+–ÏĘ`è¹\ÀOo/]]8ÚÚ8zä(;÷îaÿÁ‚á¼4pâÁ$)K‹½‡£­°>²È’Œ®i˜¦ŠaʆŒ¦g”$Y1¦ÉX&D£9zû“Ø[ƒ44z©«`×Þ.^ßÚÌËðâº]<ýÌfyt5wß»œo~€??°Žú憡⬭æñËP¿éIjŸ\ÊÓ‹æsßϾÈ}_ÿ÷í#Üý±â§_`Ãü/ñÒFSõ«ì[ó4ΣIzï#üÊjZö×rÆÂ…|àýïãßþíÝ|ï;'ñóï}ƒï}óœuÖY¼¶¥Š`,F2"X³ƒÐÚg±2zržÎ—éìê¦{@àHÓ[·îc׿ÍT­™£õm úÒ¸})ÄŽobýS×Q¹ööí\Ë‘šJnÂëmCÌzt­¡·gJ6–>vMÍ2XêbyºY&MÕÐt]7űxŒ`(Äð°ß—¾Þ~\}½D ²‘a·—ö6ÝN'n¯—l6G"¤»³‹DFD“s„‚Ãø†‡‰Çd2„l–tZÀÒ¼ci¡î[QdY&“ÉÇIÅ“$b |>ƒÞ!èïw144D$EH& ù½8Z›ii¶Óí졯¯·ÛÍð°p8L*•$“I#)r9ÓÊ×Jªªš—À–j11“`65‡³¬],vMg²¬;L<–IJŽíߘ9`ø× ÇÊ…Øl6–×øó _ýJl6‹«Ýöe〠¥¹Xb³1oY=–`g¾ÍÆüe5y†Qp°dž ›m>vÁ"Q¿›ÍƲw~_É™QÕ8Fq.æb.æbÎò%I2}ý.:::¦M¬™šO2Hû]UU2™ étšh<Ž×çcÀíaphˆ¶Î.êí­Ø;»Ù}ð íÝýØ;ì:p_©dýÆMìÚ·Ÿ=ûkyeójêêØäÛöì§µ³‹@$ˆ×çÅÑÕÉg˜T*EOooY’1˰ ÉŸŽª©H¹,Ú0œ ÌN†³µ€·ŽO™Ÿiš8{zs¹ÙË@߀„uÖ’Pk °\`8n}æYAÓ(¶l4'1ˆã{ÜYc,‘5P˜¦$åH¥R$Iñ8¿ŸÞþ~œ½ƒ¤SYLÜÀ6™¤…ûöí¦fïnítv8éëÀ3è!0ì# ’L$Èårcxµ ÍVUƒlÆ W‰D%üþ,îÎÞö6?‡²{w›·Ô³î¥V>»uÑÓ—ÄÐUš¶¾Âíg~ŸWn;‡7þŽ—ÿô+VžþnþÊÿãŸz/ç~ü½Ü}ÒÇxâÇŸåŽS¾ÂºÇocת'hi 3üÑpã-·ÐÖÙM2•fxÛëD^^ªA.²–Ãk¨9ØBM½—m;y}ÃfwT²eåc¼þÚ.:]Qú\Qz= ®/ÞÞ]d»Q3}Ä-C¯âñ¶R³c5‡«n¥öµ»Ùþò#ìyýšj^£qO%{¶m`pÐ…eê {+X‹*E òQ«(Êd»°Æú¾ÑŒ‰# TME–e„´@VÈ’J¤ˆDÂH²‚¢(DCaúzúèíw1<ì#“Éàs»8røáx9+àó âì¿ï°ϰ·×‡ª(ȲH6›¿ÿ¨ŠŠ®ë蚎,ËH9 MU³Y’é4±BÿÔtZ 'JˆHÀGwGíííôôõÒáè §·—ž¾^úúúdÀÕOo_Ã>’ªG‰FãS-1#¡È*†žo«aŽÔOŽÈs§‘`X…ÅlÍô]¦<Ð8 - røÈQR©7ÿ!Ü\s¼a¶yËFÿ&°|^üYBÄË夾®†õ+—Ra³1¹ÁžUnmL6Z·›­»`a_>›mË*«¨ª¬¤ªº* ç-#27ïs1s1 ý¥ª*>Ÿ£ åà †i¢ª*RN"™J Gðø‚ †‰¥RxÜê[©;r„¶Ž­gËÎ]TïÛÇ¡úzž]·ž7Vâèë¥jÇNì]ô ÑÔÞÎþºCÔ75ãö †p ‹ÇI¦Ò¤ÒŠ*aúhÒb™º®Ñ;ҮœzÞ|FU¤œˆ¦©cl¢ª"Iš¦¡(ùPUU%ßë0QìJúW††nÐÙÕ…nÿ°ÀPUU¢Ñ(ƒCn|þ@ž Ñ´±Å:ÎÆ¿ Z%€á ,‰®çÓ˜ 6-ÓD3tv:hnjàPÝ!ŽiàpÝvßêjÒX_O?Š¢OšI’ˆÇ$“)tUGÓMTÕB̤DB%É1äèêÐÛ%•R0u®C5¬½õJ6Ýq1UK~Ïë×-äÅ Næ–ï}žs?÷QÎþø¸éóÿÁÍ'ýóç½—óOû¯=~7Á¾.dŸ‡xÍ\¯®eïžüæôSxß»ÿ•·¾õ­ØÞòVÞú–·ò›w¾óÿ²ðÜ?°{ï2‰C¯®#¾¥,‹¸çeª^}’ç×ïåù GØðR{6¾ÄPíkl{ìA^xþ5öàÀ‘¶„h´·ãjߌ>€.{‰&ŽÐïZCGG-5UÓ¶ÿa†ì¯aß·…£»7ÓQ·ÇÁ­ì|m-}}ùïøàà*üÃÕèjºèš.ˆY.0,z˲¦eÀG f,ÓBÓ´|mŸa È2©Tšx2… dQe™p`˜ÎÎnÒéb:Ű{gWÝÝNúúûpö:qö³DÂ>\ƒüÃøý>¡±H”p(L0F–•<`Óó³ Ã@Ó tÝ@W5r9‘d2A4!Žòñã øÄÕ?@Wg'---8{úÈJ"þ!œÎœÎ.ºº:éïs1ìõ …ˆD"$ ¾TMÃÒ ,Ë•d[ãÚ_¼ ÀІƒîAšš[Èd2sÀðïÎÇf[RÖVUبXnGó×±¨H Z±0Ï.Î_nGr®Âf›C*ªWt®†#LdEEE>æU0á".\‚C˜›÷¹˜‹¹˜†ÇüÒup8ÌÁCu3üc]pÿ3-2Y!“%'ÉøB!†¼^\ƒƒ´8ÚÙw¨Ž­{°÷` ޾öíßÏóë6R¹e+M­-Ô<Èæ;¨k¨§¯¿ŸÍ;wR{ø0¢’£§·‡P(‚É’é49IB3ŒÒ:$ËIJ ,Ë(°Cª¦Ò[` '5s.‘丒ªª‚,åÐÕüóL&ƒÏçÃçóá÷ûfxx¿ßßï'ň'âhš–U›úçâßKm3]Œl§êãöQU•lV¤»»gf×ãÙÃÐ:FùFe_S$”‚¡³ÛÉ®}û©=|”·(H"•DÈ ÈŠŽ¬˜¨ º9Æ Mê›7 Il‰ñX¦…®©¤R ¡ === ÒÕ餹ÉΡƒ‡Ø¿?{÷ìÅn·“ËÉ“.R$¡µµG7©x‚T"E6›AÊåòMÒ5Ã0Ñ Y5Pð° „ß‹ëH-{·ÒT¹ŠC«e÷ò;XwýÅ÷i®¾î:vÕì'Š0¸n©½Õ`i„úV³~õã<´¢Š?/¯bÅòçÙºj%=UÏóÂwðØ“¯²q«ƒ—^obÃŽvª÷ÔÐѸ1z] ÕÒbŒºÚJvlø3-ûŸ!ÖSG×þÙñ*öÚ*ZlaËKOÑÞÚ€iXô:#:Œ¡eGk<-«ÐâÞœe=]9µpS}§L Ó0ÑtM7± “œ˜%žH¢*&r6C8`ØçÃâ÷ûrâö#dÜC.ÚÚtv8hok£««‹¾Þ>z{zèíí%!Šº¦#fE²Y‘´ Ö·’—¢VA-¡«‚ ͉$Siâ±8¿·{aŸEUñqˆž}[È>K÷ÅmìZô0ßü§¿å¦›¾À-·ÜÄãÜÅÊå/q95…†¦l]’⯭BűãçÎ%óκ üòå}<óÜ26.‹”KxâÇ?áå·¶sòrûNä³ûD>çÏŸ§©ü!G-¢0ÂÈp6µe[ÈH=Êám/p=met\O¥£ ƒ–’lòÓ’Ù»q9™—NâéîÚ†ÓÞÍÒ˜@—\‘D„°€ H‚L0ÂåràöDrQ{zºèê½ƒÆ†FZZZèïëC¯¤««‹ŽŽ.FG-ø|úz»éîë¡·¿—þ>ŒF#v‡Ÿ?„ª*‘Å!â„*+kI”¢Ê‡ˆk©ÛcÌ-ôÑßßO?]]477ÒØXG]]Õ5õ8œn<.ýýôööG2 zl6>A#/„Cn·»ÃA(@™ž­ZB™j¢US_GP(¬ÃßÑÃ6ç`t riMÄŒæR_0J ½Ó‚gÒ¿=°« Uu°ë¶ÈLá™ÒzJÏŒÑ<@•GE¼Äg>ónzá F}UIÜô™Ïð™Ç/!ª*úœ]<þÆAôšS© 4b˜ø%à_X€<Ã¥qf¡K\¼šÁ锋äs6õ*¹ÅÅÔ55ÐÒÒH}c=½X,Âbx¦9Ëôarfá¤Y­ñ´j5ÒáQ•ˆ”)b·Û6›èêÓÑØÒFk{+}½t÷õ‘s#fÀý+!:Ë#‰BDJ*¸œ.:;;ÉÏϧ¡¡²²2ÊÊÊ(..¦¤¤„ÒÒRz{{ …BÈ’<Þ …„áP8 !z] ˆÌ«9‘H`0„(ˆQ£ P8L0Š ‚á0þ`¯ß‡×ïà "óG¢ 0šFúèÄðãèÂüËv ÕXÄ-º° àóµÚèîàFY)3¯‘r5ƒ¼’LJôœÍ r25À…k~®)¬ ÓÜ#Ò7,£3…°»È’2¿YF"òظƒÃÕñØÇM__?-M­T–UPt½˜²ÒR23²ÉJÏ 7'‹’’bzzû……)ÛQ‡ÃF¢YtQde✢ª„ÃB^A‹ —®}YGM8rÒ1ÙÃྠì[IÿÞÔmx…Œ·'íÝ'(ݶˆæ³›éª¹NWW'ý5uΞ@êéE–ûê8KJÊ%}~/7Ýúÿøí_rçñÓ{îàÿþÕßrÓ·$é|9ç3š9v®‚Ô«gi¯;‡àiE†6\¥©jÙé—9¾g9I»^âôîÈO9Nmöejn¤’w9‰£[?äò™$ìŽaz÷âq÷¡ªRâ!ëó‘¿ï¥:Ûsw’cß'²à …#3ƒ>›Í†ÝîˆtÝntº~Z[Û±Zí‚Z[©­m¤±¥…ÆæFjëj©olAg0âõyÑêÄétF£l¸]^DAŒÌâŽLHé#‹~">Ÿ»ÝŽÅbÁd23¨7àó±ÛÌ476ÑÒÒFWW7­mÍ´w´£Óa±Zðû}ôèuzê).)ePo  ÌߥãýQT•²²2†Œ#é®F '‰ádlÎéCUUDK)/Ü4Ù­t ›_¸‰Ïܶ+êZ:ÈÁ¢®¦7=ÀmŸ‰Ì£=Xz0ò·(nz|3ž±íÞÏg>s?õ^í=РAƒF ¾„B!ŠKKðø¼3‹qeæµ~ÈÀðð0Á`hÒ˜‰Û.~NBù£¢ÊãE’ÏÄnwâr»ñüx¼^¬öH—Ñ4j¦««‹ôŒLN§\ä•L’NžãÔé3Ü(( ¹­ƒkyùÃy$aã9†²Þ®â”ÍÊsjüGIq8lX­‘Œ°àÇlbhØŒÁh¤°Ÿ–ÖfZZÚ0 ™±9ìtwwÒÔÔDkk+mm-´¶t Âf³c±Œ¢×ë0šÌ8Ý.dIF#ÙŠ±¾wä¨ÍfadØ„ÛëÂj³b4Ó×ßOoïÆ3^¯Ÿ®ÎVë[(/¯¢¶¶ ‹Å‰ H‰EåLË E…8NEшáï¢ùÌmIxTÃApFOÄãpàñLÍ/Tƒ}l~a1ùÆ ó™ªÍ7M3²‰ÄV8Óï¯Aƒ 1\ø%SY]ňÙŸÈD5­Èœt2AÕHá ÅHàs0Äë÷á°[1Žšé×hno£¬º–¬Ü|.§erêìyŽ$%qàðQNœJ¦ ¤”¶öNŠŠŠhhl¦»§—þ~ÃÃÃØlV‚A?~¿|Æp^WÒiÄ00Æ*$I¢·¯—Êê*r¯çr-;›²²²HÜÇòC—ËEyy9äää——Gvv6‹%23Ëöü~?yyyäççSVVF^^………ôõõ!I½}¸=¾Ä:z‰ÆDã%½]¢ùŠ3^[•ú¦jRÓÏp5#™òÊöžmgÿ™Z ³Oa칆îÇãm¦»ýí©äæd²mÛZ.ŸÚI[q*Öö"FÛJ©-L'+ý…Źح^ìÖ2úû“í¨¨3óçšW1þ^)òֹ̌¤Ž1 *òL×ÓéryuoC®ª*ê$aÅØbšŠ,K„…H¬…Çë# „ü¸½Œ¦úúúèî·ã°˨•ÁÁêë먪®¥¹µ…þþ~Ñõ`Ðé1D¤ÊÁ`€pXˆÊý£Ç‚ ¡¨2¢(#K*’(  ‡#ª‹Q‹£ÑÄð³ÙI0(¢(sâ8ˆ³Óí"¿¨€P0ôɬ?iEÌÇœcxŸùL´˜Ä>G¥£»’ΰëÝ&ÉLµ×Uƒ 1ü^DQ¤¥­•ž¾y:m³Œª“VÊá`t†ÎA0èG–D6;u ”VUÑÙÓÀnšš²®å’™‘ÉÅÔtöŸ8CjF6U5ÔÔÔS[WGcSí† X,Vœ.^¯ŸÏ,Hã²¢(ãn‚Š¢ÐÕÕ3w129ÇPT¤H±‘$q–â|l^LftÔˆÉÄÈÈÃÃø\.àœ„aÌÐF‘L&f³£Ñ8')ŒÔ© ‹%* edĈÕjHQE‘¶öΩî–ñfˆ-ÐèeÁ9…G§1Qòx]ä\¿Êé”Ã$Ÿ=‘c{X·þ-NÛ˱Ó{8uv/×NRY™AKk1}ý ˜FõXlv,–FSƒ1ˆVgî¨ót{27™P×Hÿ±£M/Y’±Y­Œ èꣷ«‡æ–fÊ+*)**¤àú5òó¯3dsL“8ª¨Šˆ×ë «»•®>B‚@ àC£LQ‘A–A’@QE%,€ª" ^W#’£€°%ûÀ:ª÷Ry}éçßãØîElXñ n}‰ÓçqòÔ.*s×aHCq;«¨.Ûʙ䣜>•JÖÅ«Œö´0PvƒâK'h¾vsc>C-…tÖÒÛÞNCÝ^¯ оø»˜ÇîÄ—$0èîŠaÇI\‹ÓSv™E6sažÏÙôû¨“I® ’,âõF¤¨n¯¯?€?Âår188H{g}ý“›®nšê©«©¡¡¾ææfZ[[èîî‰Ðôë°Z팚G0Ú„ü~áðD¼"K㙈²¤Î\0ŒWR:é¶ãeåÛшáI¬9Í"L¢£…¤5‹yà¶ÛxàñÅ$iÆ24hЈá's‘$‰Þ>››f)>Õir«ˆ‘ßïÇãõ`µZ1™MQ‰‘‘òòʈé̵l6;µ\ÎÌ"5+“êºzúôtvvÓÒÚ‚ÅlÆh62l4b±ŽâõúðûBÁPd¦N–'ej©Ó:Õ„"+„BA:bIIc\Wä)”¤Èó›Ý …Bƒ~ÂA?áP€PÐ?P€pp¡`€P(H0 ô#ð#ô z ‡|„C>„!ä'ôz ½„‚¾ñmLÞnäçÆö#²=§ÓIggçLÙïÇ)ýŒge.b¨~:{Ëfüv&ë0Y9ÉËO§¼¢‚äSgxæé'È¿‘‡Å:JiyW³R¸šqŽ —‘|n/G’6q$i)s=ÿ"Õµ¹tôÔ£7ôãtÚ‡ÂSekÓ÷G™‡ø)q”)]BuÒõÉ|JL3›™¢“÷%2C&ÈÑ(IBE‚¡0n·‹Í‚Ñ Çç.d¨ÒøeIÂårÒÚÞHUc]Ý^§®¡žöÎvº{{6„‘g´µTPPà Qe’0J8¤#ìÀç­ÁãÌÇÕsç)zk÷2Ò~¿½QeÔRD^Î+lÛü$G@G]:~cæŽRrÎ åàJS/3\SŠ­¥}ceEïc6¢ªÁ˜s›1ß§˜]«‰×St´·RZZBss+z½Ç3W3n–5ãx–89.cúbÃd¨ÌñÙR¦@uŽãNAFÇHšª*ãçMEQ‡Âx<üÁ .—ËËÈð½Ý½ôõôÓÙÙICCuµÍ454Q[SAKKÍMÍô q8˜Mƈ9Π»ÍßDul»r| Uót »zºiljBjРAƒ~Y–1”U”ÏZƲ÷”UVq£¸˜«YY¤ee“}ý-míèõꨪ®¦­½“ÉÄðˆ‰ž Ì££‘hŸ¯×‹,Kãaβ,O±›W§É·d9â1l ðù|x<Ünw4ŒÜ1Ÿ‰ÃY0’{8Q@KR¤ )„#aÖc&2cÛû› ˆ„ÃcA£Ù†Â¤ÛL`ì¾áèïcYˆc˜üØcÿ>a^ŠnC˜”¡(‹alv}}ýóÏBÅ+…Œ·˜@Ù\™pqÏéÍÚiSèè$-+…‚â**ª8°ÿ ·ßþ=V®XÆè¨ ×CCsÍ­Í´¶µRZ^Â…‹gI9ŸLAá5J*rIϹȉ3Ùx;G’vQQS€Õ62µc<›41QÙéBâCqÀœãµS£™{¢ L¸°NzNª¢ „C8£ôôQW×@Qq1%åe—’—ƒ²ÊjFLV$9VdÜ.;V«ŸÏ‘‘@ P½¨¢Ù¯'ìî@ôö¢DÉ‹ÓÝIw×1ÊJ×SZ²ƒ¾ö$ôݧ1t'S}}/çøîŤžXK}î J/SY¸§£)b<3×{31—󪨊Äð°–Öj*+(/-¢¦¦’öö6º»{ÑétCX,A\@'‘ùc\fÙß³µjâ3‹c·SYÈRd!!Ž8Ùú|>Ün7V«‹ÅÊÈÈH¤k¨ µ¥á .§‹ã0]]tutÒÙÕÅð¿ß‡ËåÂår122ŒÙdÁã +꼋t1%Ø*ÔÕ7ÒÝÓ$I1Ô Aƒ 1ü$.Š¢`µZ)(*œÙùˆE JÊË)­¬¢°´”ÒŠ*jêè×é±Zí˜Lf††"K¯×K(" Œ“›q(«S¾#<Q”„©D+àà÷ùñz=3ˆ ÝnÇápàt:q8tŽÍÎ#]ŠHžäë²L@šö{¬ëRŒÌBižÛK1r ¥9¶7ñ3 3:jC¯7Ä jb$ðãî&&²]5þ‚mf­ÒÖ^GZæ9JËoPWWGRR

!ýºÛNRY¼ŒË+H»ô¥Ùi)ÞNeÉøý'*•I¬Ó:ló‘¥1A„"c6ÐÖÑJEi™W¸zõ Ô×7P[SIeE U5µ8\žˆ™Ï\ç˜éŸÅD£/¦É…ÇSe~¹|<Ï{²L^–‘åH€ýXNj0Äåràp¹0†qº"†6ë(º~ú{{imoÇ`0ø0èõzÚÚZèhïÂdE”¤ù¯˜9s«ªP^Q…^¯Ÿ)¹×ˆ¡ 4hЈáoîËÐçó‘{=o†:)$IÂd6ápºpEW™ýþ ¡€(Jãoz1?VtŒ¯ph¢[ðy}x<Þ)¤oœðEº\.ÜnOtÖÐG     ‡ÃCÁ¸‰¡¢N˜Ïˆ’„íŽÒÈrLâ(K2²ÁäÛJãò½ÿ¸Ý¿@0ȰшÙ<ú˜BUM!™9¨o¨ «³ƒÔÔ+¼ôü3Üñƒ›ùùO~ÈÕ«—©¬ªæÀÁƒ=~Œ«éTVUSW_OEYçΜfÕû+Xµz;vîfÏÁÍÜ(ÊÄ8bˆQÄ*ÿî‰áXE®ªÑü;EEA?N·§ËE0žšû8 F£ŽîžVÚ:Z¨­«¥¼¢‚šºk©k¬§oÀ@($L¸ÛD‰€")ø~ü~BØ‹ràŒàõéñxzq9[5•cÌ£¿÷2}ÝÉôõ$#‰Þ)ï•2Žuã&†cüNVp»Ý†ô477P\”OVV&¹Ù¹“ŸwììtR._eÈb‹Dü|RÄPý Ã9?{ ²‰ÕÅÈ^8Äíta³Ú0 ãr¹‘$£ÑÈÀÀ]]´·w24ýƒÁ¨ SŒ:3Níâ(Š;Ç0FÁ¤¨ê¸|TŒB’æ ƒŸŒ‘N¿ßN¯Çáp$&7@>éb¢‡®1îSPœEÎË´µ7 è'3#ƒçŸ~ŠÛ~ðþíÿÈö›¹xñ2/¿ôu„%ÑYE5ŽîH¼3…³Î_E>'Ù¸šqž¦æ& CÃdçdòȃpÛÍßáÕW_dëö-¼ñúëÜuç­<ø“òöÒÅ,Yô?ºý|ãÿ}™ï|óŸXôÚë”Õ4’–•Α¤Ý4µÔàö8ãëv&Ò)\HѾ€˜ŒyƒxçÜbœÄA¶dIÄçób³;±ZŒ˜Ìt÷vÑÐØHs[×D¡¯NÌ&ú<.›ȼ–AZZ½ÝÝŒè1êpX­ø<ÞÈÌ­Q%LÌ¡)³agŸ)œLMz8EŽtÊœN;m30 Çæ°Ó§$£òSuÖEŽ)щóê<„Ÿ8æ ç#ÉvòÕiÏ)úE ÈÒ´DŽˆ¬^B‘”™̽_ª¢âpº¸‘_ˆ(ˆŸØ÷ VÄhРAƒ™/)-/Ãb³Žo6§KUQ …¸ÝîñŸÝîÀf³MÁ)3$ðz½øýþqSi¬Àû¸\4cÅUÌQdÅœ1L~œ2Ñx;†‚$áòzéîé‹`Ä*@pŸˆüp!²ÑDÞë9å” ^¯›s°ÿðNò‹ èäú</z÷–¿ÃÎ];ùá}÷pÏ·ò‹‡àGw߯C÷ÿˆÅ¯½Êë/½Èw¾þ5{ð§ddç¡3˜8}ñ I'÷ÐÛßN(˜¿»©’˜¡Î|ÓÃ4h>”t®…xeŠ1»J¤Ë?~79ꤩ !††TÕT“““Cmm ÅyÙegSROIQ å5ÔÕ7ÓÖÞ‹ËídäM'ª‚ª(S’GæíŠ©‘Ná¬{.«a_À?.U•,ÄûÚ/TršÈû8èÅûyW™yÎŽ¹M5æ~Ç$ʱÒ:Ñ’ÒŠOl¾P#†4hРA#†“ˆa}cƒº‰yŽ9Š@¿ßÕn‹vÿœãs~ ê®)L•›ÎUÈ,€¨Œª¢¢HJTn™éîî[J*Dgö„ó…ŸFÈ’Œ Š8\.º{úæ—~y" ¼wj‚ä%®®à\…¯ÊˆÉÀùËÇ8~ê0¹7®ÓÞÞIyy‡áèÑÃlܸ‘[où?ûÉ]<ó«_rç­ÿÆ×ÿá‹<øÀ}¬\µ‚>XŻ˖ÓÜÖMckÇ’qö܆ƒÈò,.ˆJbr¸9;V •ž~‚¯&ø·y²@'N ÓçÞT&åÊL•¥Oٜʘ±ª¨„Ã.‡ÃP?­-Mt¶·SUUEqq)yydd晕̀ވ¬HcúÏi„D¿K;ÍŒjVò‹KV婯ôÇ‹§K;Ì5!É6Äuþ›Wzï‚ÈBœ…Õ8”ݽ446#Ï¥ш¡ 4hЈáÇQ…ž¾^šZš#«â³c“"+2Ïwâ+$Æ·©ªS3Σÿ&„ÈìâÀÀ]qñ1ãjРAƒNúB1RQ]5!ÝId&e>â£%Q‡ü~ÿ¸ùÌl’¦±.‚/àÇíõàöùñBÁñ9DUQñ¸=°s÷.:'KIç(x$!Œßç&àŸŸ¿ßMÀï%àwO¹ß½…¦?Žìöþ™÷ŸyŸ‘m{§\÷Ga·Û0 ÇßXA§K/Áû(û3½ø^êšÊ8ph3‡âè±ã9|˜½{wñö¯qó7¿ÆÝ·Ÿü·}ïÛÜùƒ›yöé§xcÑë<öðϹïŽïñÚK/PP\Bk×é×òÙs`+× Òp»ÓEbEmÜÄ0ѯù^÷xfé’7½CÇþŽ7 §K g{<5Æ3#„^7·RÕé3ʤNjC9¹¶Éç…¨aÖŒ(ŠXÌq–HŸyd?j§0Ñ®^ ©æ¼2áq²éOÏÌA¸UfÎ}ƸݬrÔèßdI¦¸¤ “Ùò‰~jEŒ 4hЈate×ét’_X05LxÚ¾³ QP•h×KTÄ0Áp€€ÏÃéfØh¡§_GSk'UuÍäW’™[@JjG“/r15;RÈM+T¡ãVš:{èè3PÑÐBm[íÝýè ÃŒZíx¼~$I& ÑÞÞÎÙäÓtuuÇEbYA„‰ìÁqÓþ.Äø·X˜ïqÄ8î3;Âa° `s8Âjµ&F>(Û]pço!]Ƹˆfä—’²l}ì~–-[ÂÑã‡ÉÊÉ"=#=»vpû÷¿Ë?ýÃßóä¯ãé_?Ƀ?€Þs'wßq+ßûηøÞÍßâ¹gŸ!+;Î^=iÙ9:¶“êÚB|~wü„ù£vZ%ꉘ˜¨ÓûÏíã0Yðv"ŸŒW:mƒÁ £££˜Íf ²¤Ì$¨Sˆ:»äX™<‹¨Ìý¹œ6Ã=×õ߸¤tÂÓDf¾™Æùäí1î㸞¯Ï÷‰/jРAƒ ÿá;†@ÜëysÃÉóùƒ8nŒ& ú!Ú;{hhh¥´²Š¬‚B.§çpêÂŽœHa÷¡lÝ„M{°yÏ16ï9ÊšmGxÓ~&¥ †£õAÔMPUð‚èGF©nî ²©•ôëŤ^+âZ~)µMm´võ14l" !ˆ½ŽŒ«—éêîŠkvNU"qS0±!}zaµYÑéux<žùçó2ûOW, áBe˜êäyµ©]U‘ɺvŽïßú ^íE’OŸ¦°¤”ììl’’ŽòÚ+/ð½ï|‹ŸÞOþê zø!~xß=Üu{„Þ}ç­¬^½’ëE””×q%=C'vÒÚ^Gp²ñÌobÞo¡ä'£“;£RMàx™O»Õù^—…ìÓ,¥*‘űÁÁAt:.— Q‘¢.«v»}Ü=y,6G¥èù:Ɖ7kPÖ9ý(qñ~†¹Îû^Å·¡Æw|(ªŠÝéàú‘9ujРAƒ~ÒZÒˆMN^.‚ ÌòE?ußš[¹–›ÏÅôkœ¹t•ã§/p0é{Ÿ`Ûþ#lÜy€u;öòÁ¦=¼¿iïoÜÉû›ö°zË>Ön;Àæ}ÇÙ{ü WÒ²ñûü3ª  ˆnÈLAY—®Ýàø¹+O¾Âù«Ù”TPTRCsKn·QÖ“vé<Ý=q­`Çt%ý4#ê–:j±Ð¯Óã/ÞZt«Ÿüq{›S=A‘rá(÷Ü÷–/‹3çΑš–ÎÁûywùÛ¬[³Š_>ò7û›Ü~û¸çÞ{¸ï¾{¹ãöÛ¸å»ßæ§?ù1째¼’‹—³8’t’Ã'w3 ë@B '@¿Éb"±Ûëg'÷£µòzÆãö:ß1ý»×ëexx˜¡¡!¼^/’(áø¢­­N‡ÑhÄdÁb±âry£‹IáPˆp8Œ ˆ¢uH6c7Ûë¢æá<äkÊ÷Ç‚¢`ˆ?3‘Î<Ï)ªä5QX\ø‰Ÿ´"Fƒ 4hÄpÒÿ‚¸=ž‰}˜¶ª=ùïEeåìÚŒ•·±|íFÞù`#KWodéª,ý`o¯ÙÄŠÛyoãNVnÚÅúؼû›waë¾cN¾@Ê•LÒ3¯cµÍ(hBÁ0†!Ù×K8q:•CI8˜tž”+™\ͼNÊ•k\/¨Àl¶"‰"ÃÃ.ž;MWÄPšf #ÅaóÛ$†’(a2›éÐ!¹¾þ‡ †LêÌ€Ãmåø©½¼¶è%vìØAò™38t€åï,åÿœõkײqýz¾wó·øçúßþ·oóýïßÊwÜÅC=Ä¢E¯søÈa²óòI¹”Áæí;8qnÛpÄíR#†ÿ1ˆá´YEI’ðz¼x½‘Å&EQðx\ ôP]]Icc]]]´µ7ÓÞÞÎðÐn—›Å‚^7À€NǰɌÙbÆëuãv¹ðy½ø}‘˜I’Æó`ÕD àb(‰ýºªjª>ù¯A­ˆÑ Aƒ 1œ¸””–2jµÄt‚›2ë¢@k[‡Ž%³jýv–­ÙÄÛk6²ôƒ¼ùÁF–~°‰·×láí·ò·;X½y›wìaËöÝlÞy€’ØŸtžƒI9œt‘¡ S u‚ ÉÎÎçTò%NžIåØé‹\LÍä|j6GNEHb¿N,ËX,£ädeNÌÆáJ:%³PüôÜ aÓƒúÁuD*º2C¸ÐûÄEHÔq‹Äa“Žã§ö°}×f’NœäÔ©3ìÛ»‡ukVòæ¢WY»f-ÇŽã×O=Îý÷ÞÃwÜÅwÜã<ÆòåËY¿~=~ø!§N!· ”-;·qþòÜ;êtûÓOê㯴2‘(‘:[ïmÔì[<2äx_¯x[¦/t)“2[')'Æ¢vTU%ð3::BwwmmôööÒÚÖDssÆ!36« ½n€Æ†:êêëéè·ƒ^‡^¯CoÐ34ldÔ2ŠËåÄïó$1>ÙfLƒ—ðü‰ó|¯¤8ž¹Fˆ[J, "mí4µ6kÄPƒ 4hÄð·F U¨­¯c@§CËq/ ˜‘ÍUUÛÈÊ ;Y¼âC½»Ž7Þ[Ï›«7²|ýVÖîØÇÚmûX¶n'ËÖncçþ½lZ³œw½ÈòwW²y÷q6ïMæÃGÙv ™æÎ^Ef²ã_(¢¯¿Ÿ¤§Y±zÛwdßÁÜ;sžSgγ~Ëf6mÙBuU5²¬ ItvôMíÎ1‡õ;'%•d‚Á FÓCÆáÙI_¢¦%R"‘Ø…D»ç|ïTÚ»ê9uf/YÙiääæqþÂE’’ŽsúL2gÎaßáC>z˜C÷³mËVV¬xŸeËV°yËVöìÝËêÕkxá…ؾsE¥UìÚ¿ƒÌœsCþÞÙû¸;§ ÁûMuá£edÆÓYJäµITr9—9M,⤀")ã11v»‘‘a †a\.>ŸóÈím-´´µÑÛ¯£³»“ææF::Úhhj¤¹­Ž®vºº;éééapp—ÛØç-^2'Ùœ·˜ˆ£j¼d0ŽN¯¨­¯£_7 C 4hРÃßfǰ£«“öÎDQŒ!½”§’ȺfÞ^¹‘—Þ\Å+KWóæŠyoÝ6¶î;ÊžCÉlßs€Ýûö°c÷Vvlý€§¾»nùWþÅ“,~3¯¯ÞÎ+ïoañ¦¤–"‰ò”8‚P(DGG«×|Àw¿ÿî½ï~õˇY·ò-ÞXô2>úSžyúqÒÓ®àõz„CTTÖÒÕÓ=?¹P7g =^F“³etn²¯Ì0žÎÂG1©I”|Ì1c8n¯BUmûo!óZ×®]'%å"§O'séÒeR¯¦qúü%Ž<É¥KW¸qãW®\âÒ¥+œK¹ÀÁƒ‡Ø²u 6màÄÉ“\I½ÊÁ#;),Í$ÎQĪŸ,1\H‡f¡äõã’’.”ø/„øNW2$¯3Ë/ŽíÉ@ADäèéJEÂx½<^/þ@‡ÃAG{+õõõttuÒ;8@o/-­Í”——SS[ÈÙ4%¯qÎÎi¢‹(‰gæp/Gq¾sI¼9š“þ)-+Åb³j3†4hРA#†¿Mb¨2P[_7Õ€fzaýµ£w€7×mâ©%ïòôÒ÷yaÙ^yo=o¬ÝÌkï­aù‡°oÇ*žúÉ-üìÿÌ~ð ~ùèÏxõ•¼úþ^\¶§—mâ‘%pòB¢ Eg}Ô輊Þ0ľ][¸õ»_åÞÛ¿Éwnþ·Þy_ÿ×opóÍßâ®»ncÿþ}˜ÍfB¡ ×oÐ11T‡‰¡$ãp81âp9ã+‘û© ÇœX„D¥¤,—'Ÿ}€'Ÿ~„—^{†%K_cíš÷Ù±c+‡äLòY.]ºÂÅ‹—9wî<§Oæì¹.^¼ÌÅ‹—9á"—®\æÂÅT>Ìþƒ›©oªD…9öïc&†çëúiq%]èó^(±ov0^™¥çãŹࢪ FãCCCø~Bá0`»Ý†Á``Ø8Œ/àOxqg:›íûbVé)$æ–Ï ótJÀý,¯ûä®­ªªx<^ Š ñú}Ÿ¬”[#†4hРA#†S/V»’ÒRBáÐÌLê)îy*f‡Õöñʇkyeýz^Ù¸™×oäùµëyzåz~±äMzð6nÿ—/ó¿ý7ßô÷<ò³ûX½q»ŽŸa÷‘S¼PÀ¦³9d•Ô Éò„f5º1‡ÝÆ™äÓ|ñK_áÞåïnúŸýÂ7øÞwñ‹_<À#ÝÇî][Ðéúƒä\Ë¥£§7®‚÷w±ch±Z0šŒ‘¢r!…ÛB¥z‰¹DfÝæ3¿˜ñ»ŠÅ:BaigÏgïÁÍlØüKßy‰^yœ_?ó3ž~æ!Þ}÷uÞ{ÿ-Þ^¶„-Û¶²oïANž8CJÊ%Χ\"+3›ÆÆVÒ2®røø6úú»eiŽî©ò›!`,€%B"?Šô4ÑCõ#Â…>¿…F=D/²$£ÈÊÏE±Meö|±ðu¶æ·?‘ïsïmæ"fóîxóãÙöˆÌŠ[((*ä·ñ-¨14hРA#†“.@€…ùC¡Y 85:  …9z)›Õ»O±|Ë^ÿ`Ï-_ÏóË×óòÊ <³z-ÿòÕ¿çÿ}áoøæ7ÿ•[¾ù/Üùýï°ì¥¤\8ǥ̫KIc{J.Ý£qk‹üp¹œ\¾|‘ï|ûûÜtÓ·¸óÞ{¹ïÎ{XöæK¬^ñË—>ÃÉã»èïkGêêéêa¦œTQUdEBUTYEQUŽÖ}*²¢ Œý.½…¬ *Do¯¢J Š,!K‘ßUYÔŽ²‚¬H(ª¹yeEA‘AQTTY‰@‰<–"G_ŽnGQUF-L&s$?mòJ{,)$fo‡j>™ÚôÛ*q‡h(x<2:UU Cx½nœ.;›ÃÐ]=mÔ4”s=?Ë©§8p|«×,aŪż¶øi^xñ1^xñq^[ô«?xsgOsèÈNŽØÉˆY"ˉÏi~Ô™¾Kž›¨<õ£túí$”nà|²ÆxçÛf!8’}£ ¯¡°‚#aÆ£ô¢‹ãy«ãœp,Í^™G8é\6“@M79RâëÇñ¼'›éÄ@¯&@ I€$ÆKj£¿‡ý²ŠòßÊ÷ŸVÄhРAƒ2uåüFA>¾@`Ú7x´`Fšò…~£®›E+7s×Ožä›ßý1ßúÁÜüÃ'xêõ•ìNÉáûwÜ;ô÷Üòoßåþ{äáŸdñ›KY³v¯½öÏ>ÿ k¶ï'éJ£vŠªNªT‚~/M5l\ýï¿ù;?\ÁÁë9¼k Gw¯çàŽ5d\>IO+bX¢³³›Îîθåd“ë·Y VE¿±JŒ;¨“»IòÔâ0ÎØœ;¢FŠOY–1ŽbµÄ,üæt.dþ9a'Kå#ÌÊͶ_JÝËR:5J¸%IBÂø}\.fË0C?==­Ô5”SP”Ã¥+É$ØËŽ]²vÝr¿õ,É)½ñ§ßFŒÇÇM ?.yéBn÷qKO§ÿ³}.bu ‹GäZKˆ£%~‡dªô! »EêôaÚŒ"Ã.ŸY GIâDwqæ« O¹6#£pÒUE8MùüΡrˆ›'Úù‹7¨>žDæ'/LƒtõtÓØÜ´ðκF 5hРAƒF ?¾Kaq—sfd…¬Nh£¢$¦¬¹— »’xuÉ:^}s//ýÿj o¼·›KÍüäÑ'¸é+_åñ{Ä¢gñÆKKygéRV½ÿo¿ý&ï.…?àèñôöõ"Iá)E„Ò×ÝÎá=XÿÞkìß²ŠÃÛ×r`Ójn]ÃîM+HNÚA}M1Ь`¥«§+Nb8©¸›ª` (r¤X‹”zòÄ]&¿OÊ4R3™ìMÑIÍ#OœB¸¢FÔèƒá0&³›Í6µèM¤Œ·3O±©,PO6[¢ûª*È’„ ˆ„Ã"ŠéüÊŠ„$‰á0Á ÛeÔÄаŽÞ¾šš«©¨,¤§¯E'I¿k—CZºP’¹Ð×,Ž™Ê¸SŒí ¢ŠÁ&RÐ&¹ÂOz“@z“ÀÙêjCä´†é4ɘ\*F‘:½@IÄ`—±{eLfN§3v‡-‘3ˆßqVb¨&N1R‰w† e›ÝBo_--­ôô 0bÅápâõùå‰\:E‘‘$‘°"ðâñº}ñ±–x]^?RÒD^ÿ…Èi?ÎÎN"äs!ðèßD ¬M¦I&¯3Dv»DZSˆËu!®wŠt™eúF$®59W¤¨[¤¤G A/Ð>"Òl¨¨Ô‰t˜e\wH!(ª²Š(ƒ ©ˆ’Êx":IhÔF<‹*‰ÊGã}ìDM}æÚnŒó¡Û㦶®–¡á¡žW#†4hРA#†‰_šZšÐ D h¦ue¦KÛzIÉ,âø¥Φ”r·WmãÝu{IN-ààö=ì~ï]–<÷,ýìA¼ÿ'Üÿ£{¹û®;¸í¶Ûùîw¿Çw¿wßs7/œ!8E ²$b1¹z)™[VrìÀvNÚÉÅ3G¸–z–ÜÌËT”Òß׃$I~º»{“REIb8àaH¯£½³A‡ÅfÁãõ!‹a<^/noUR‘„ æáAhmïÆë FÈF4âC„”Ü.oIV¢ò3YV„0F³ƒPXF Õ–å)U*ËRäßUEÁj·cÁãñLíTþ–ˆ¡,IH’<÷ñú Ãp8HWOy7ò¸r5•+iéäRVVAu]« I?z‘©ÃO'1œëøUf—-«rd–PUA’ .‘>«B¿E¦iX¢kTÁäVé3K¤7…I©¨Ð)Üè“Þ&·#ÌåÆ )uA.6„Él‘(ê(ê S«—é°ûÁè”ÑÛF= þ°JXT I +üû#†JJI?UÅî°S^QŽËåÒˆ¡ 4hЈáoªÐÕÝMGW'É$-J #¦¡3wý:ç2‹Ø6“'¯°kïIV¬ØÀªµÛØu0‰Û¶rbë–-~§~y?¿xð6üé-Üß·¹çŽïððwòÔãwóò³?&;ã8¡€J…¡Ê^¯‡†ºJr¯¥RUQLc}%ÝM ú±YÌø}>DQD–dü~ïTbwWAÁaÖ‘ýg/^¤°´êúJ:;:"d±½‡êÚF6ôƒT–æsöô).\J§«¯aƒ¾¾n,f ƒ½}ŒZF1ihl§¶±“Á¡aL6'ªª ×ÐéÉ-¬¡K7Ì訕ãÆa#ÖQ –Q 6›½NG¿aEQpŒšéëëÅ0d_ÔéÜDä`‰¬ðÏR„ƒ¼^/áP%jÚ#I’$EIn2³…Ì0Åø» „Ñ驪­¥¸¼Œœ×ÉÈÍ%ëZ6iYôôöãõx‘%i†ÄoN’1!ýØÉÑoÚ|&‘¢?²¯©ÉÇAf!¡9¶Yg Çþmqd Áqü‚ŠÍ«Ò<,Q¯WrA·I¦ [¤¸'Lzk˜´Ö0×ÚE2›%ÎT…I*÷s®V¤¨7„É£Ò:$RÒ+R¡é¶H 9e†œ*>ab§Ôùž×|d8‰h¼Äp]ÚŽ«qž¤è uIi)Á`ð·"ÕÖŠ 4hРÃiÆæ&¼>ßÌZdòlžÃ&;g¯°aO ï¯>À{ïlæÝw>äÃ-Ûxcñ[¼¾xËßÝÌ–5ïr`Û³œØÿ+’<É‘O±ýÃ'9²í®y’ܳÑRyQðͬÕ9"ÁŸÔ‰]©(²„ß «+>b¨N~.ÀHo=R’8y.…ÒÊRR“9{*‰“)8þ*ï/ßËÅ ™½Nzv¥¹dee’š~ž¤#GX¿a§N$sdçÎ;ÉÙ3ÉÒóÊ|Þ¹‡))¬Û~„}ÇS8wú”B0,Rxù ×s®ÑÙÝE8žôÚ¨±íæã! !(c«û²‚Ëå@¯×c6› øøý>v»¯×‹$JÈ’< 2og‘ø ý¹ˆ‡ ˆ’„ÛãfhÄHgw M ê±Z­©û¡N:¦ÇQÄ;ûø»0o¯;e¼ ñvõ~ÓÄ0ž€öy Vô !ò?yÆ ¬BHˆº‹0âVv„é·)ôXú,2F…œv™óõ!R›B4U¼a•ªž çëü«ô‘R+p­Y!§UDïˆD^¨L=Å=Ó·î_<÷Mp‘).Wäyæ>Cá†á!JËË&Ì}4b¨Aƒ 4b¨þöŠG"Y†•¸Üî)ÿ¨*ò4c°X­lܸŸ<ü"ÿôíÇøÖwá—?ËÛï.ã™ßà…—–ñô+«xí•Elxÿ5’½M~úfJ¯í'/ó )göröèVvø©¶ ¸£…Ù¤e|uŽJq²·‹¤à÷‡èê싯0³Ÿ«‘¾&Š‹s©jl §¿‡Sç±}óRn‘žq•×^_Íî#ç¸QÕOo·Ž®ÚJJ‹ )®«àJÒaÞÿ` ×o¡äú ÎìÛÆé‹8u>£޳o×NœHÆëñ’r`k×là\V=W/¥sh×>Μ8͉“gX³öCÞ\úëÖo&ý|2+VnÀìðPšu•Š’"õz¤èìgÌ•ùxç{æÈW›a ë¶ŠŠÛå@§Ó¡×ëq9Ø­ ƒƒôõöa0 1:jÁår q¹\¸\.B¡p¤£(Ê(’2»ãG•sNÿ“¢"Ë2ª¬ÆŽ ˆe4_‘ýïñ¢~ M€ÄŒCs¹Îè"N>ÏNŠTQ£ ^c?§ÆOL?'©ãÇ–$«ŠŠ¨€?§‚Ã'ãA–TÚŒY­AN×ø9Uä|m˜Ëõz­“~òÓ‡yäñ§yuÉ»¬Ú¸‹­{NpýF ===ØlœN;^—‹ÕŠËãC (м0";­«¯ùÌdÙØ˜2D=‰¨ŒÄ²+5A$:“½Íˆi”“9"½ŒG8yœËNÞ ˜Yó©cøÖ¥âÙ“<âBuù_©Æ»,ÏÛ)„³šÝAd«¡E‡¢w@XŽÊ9Õ ‚-v•ñ×yublKÿùø}RR.pîÜyÚ[Ûéìî%7û*kßzž_ÿäüè–æÎ›ÿ…;o¿ƒµnájj:§N&ÿú œN7Š"V%<ª„W…fªÕÈŒ}’ÎP™Ì”Y^ïIÆ)Ç2G!þ›òÙHÄ}6^"·Ð¸ 5ñc~AÄ0^b5}f_[ÈÂOŒÏž:9?5¢‡_Øüj"RñD:Š y¼ùˆfŒÇŒEÎ%Y¦»·—ªÚj|A¿F 5hРAƒF ?-qM-Íôö÷áö¸ç-ÈÊÊJسw/«VÀöíÛ9uò$Y—ÒØ 7-¸ÝB¡r4Î@U"Ù}Š¢$dt06g6öS’$DQ"ã÷ûéŠ;®BJI• v N“ñ) Oê`ª‰Dê õYCoÆjµ †æÏ0›OþË4¹¢2©û9dÇ»+ ÷’óøV^$˜TŠ<êAq8Sgå¤ãÛšE0½ðÕ*¼ë®:V‚T;€Ð®GèAu£XÜ(v7xÃ(¾ðDQ(+‘ã<žnÖdbèõsêd2yy7C„BA:+¯’¶í9Ž.¹‡/ÝÁ{¿ü>?üæ—xྻIOÏäÌé3lÝ´£~Ÿ$ÑrrÅÒOš±ŸBû0u>=²aªŒa¢üvªQ‡Äo²Ãåä©3uR·HùèÏ#/1ÑÎ\"ÛýMôÄùÙ™LBæ5:Rç:çg|ÎEebV™ ‹ŠªÆ/YGJ›Èߦ6%NR9á#ó_ô6a!LgW'µuuˆQs-jРAƒ~J:†]=‘,C›Í>¯Èl6ÓÙÕESs ô:¬ÖQÜn7@QÆM¦ÎgMö›TÌE_EQPY–‘$Qp(L0$ààóùðx<¸\nœNN§3b8¹`‹ÖDSVõÇš_±\:Uf8Q$*‹wî èï×aw8ÇBÚR Æše›ô»¢¨¨V7¾CÙ¸W\À½6•pZªÃ‡ÔgÆw¢ï¶\B‡Kð®KÃýþe|;®áÝwÿÎ\ünH.&\ÒŠÔ¦C,ï$\ÒF¸¬‡`~J¿¹w¹ß‚lõ¢JrÜE¿¢¨ØìvN?EYY‚fH×Akænj¾Låîg¨Kz›²+Ù½âI~zû×IKM¥¼´‚ë71:2ŠEȶéù ¬€•™¹l.*a_}5IM¤ê{¹n1Ri7Óà¶Óp¡—ü˜änU@Ž£Š"¡¨"²:µ ¨N9&›àÄ*úÕÙI»ú[&U !x‰Î´}Ïx s”¿EAU” b–H‡3gÏéÝçÉÄpúao†a<G®®ÆX,ŠÇÙ5Öë¡Ä דÍqæ ¦þ@€öΛ«ßZ£Aƒ 4bã24UUæ_Æ/TTUŸã“e ITE !,Š?¿/BüÜno”ø9q88NœN'.— ·ÛÛíÆãñàõzñz½‰Cu‚ Ê㿎1¥h×è7M cÍ Mëv÷ôáöx"Žœ1TcüMQTTABlÒ8WA ½ ©× !©×DðJ󵄲ñÈdzâžM™¯ÔáÛ•ƒëÍd|ï_ œRJ(«†À¡ëx÷dâÝ“‹w.á‹å÷dã?˜O¨°Åˆ›¸‚È€NÇñ£§hhhf@ßlj}’²ò—oy–¶coã¨8Cp°”îÚ^ô_I:´“ÎŽí;ŒÛíePò“Üׯ«GRxiåQ^ß|šE»ÎñÆ¡Þ9“Æ{²Ys%ƒ×rÙYRÊ¡ÆNõ¶‘ç"€ ²H—±‰ºÁ2:M- Ø{09¸ýV¢°âEBBUäI óò1üÍCuª$|ìAÀëqãr:pº\A@ ñI;D cÌÆŠÞùmÃxe· È–gC%ökèt¹hmo£½£ý·ú½§14hРA#†1.V›•Ú†ôC†©ME-»Šþ7ñˤøPÔHçO#‘B8Œ üþ>_·Û‹ÛíÁívãtºq8\8Nìv'G„:\.>Ÿ@ @(BDd9â>™ÈŒá zU™J Çâ1æ7Q|ÍBüT%†|ôwAèéíÃçõÍœÏQ,ðÕI#rÓ_±ˆ €ÔgA6¸ ‘¿)£.ÄÆA„úB5ݯ5¾Zïà ‚û¯8pïÚËøÖ]!¸?—ÀÑ||Û2ñlKÅ¿7—@zþ¤ëx^=Ž{ÑIü'KÍ®øf¹€`0HKK '“NÒÙÑKKskÿŠõOý€³ËæÆöW(HÆk¨f =ƒõ¯ÜÉ¡PY]Gò‰dü>AÇZycÇ/9Â[+Oò檓¼ùÁ)Þ\ŠWÞ?ÂË«öðÒÚ}¼ºå8¯¹È’Œlö5âGE<ÊÝÆ;Gß`În2ªNQÚr‘†ÁZÍôÚ»1º Øý&|¢‡°âG”CȪ4•$BÊæ#‹‰ëEòï\¡úHßB n'SÍS~/ÆAº;;hïè@oÐcÅ4lÄïõ#Ér|³t$0Ë8#GêDŠš˜º`!‹P‰úD p˜ÿ\8›ùÕf£µ­Þ¾>jРAƒ~šî|>•µ5ôëb~¹OwäSUUV"PäñLÁpH ðBÙ§Û‹ÓáïüYF­X­VF­¬V+V«‡Ã…ÛíÁçó  ‡…™Ùu³Š¢ÐÙ¯+éD1¦ [WTK¨i’MYQŽšÐ¨ )$J ÕÄ‹:ÇC_ÿ Á`(ñy§ùºU±ä¥0³XUA•d”`ÅíA²¸Qý¹uxöf*é"\ÑCàB9ÞMix6¦ãÝ›‡÷D6â•Ä¡K¥xÀùÂq|G‹‘Íî¸I†×ã¡´¤ŒÓ§Ï`6âé娇/²ò×w²ý•Ÿ°ë¹¼ÿ}šŠÎÓRyŽS›ž%+5‰ì¼ë¤]I#RëeOM%‹¶ŸáÍÇY¶á4Ë6žcÙ†³¼µêo¼±…7ÞÙÍë‹¶óú+ÛX´ü0K^áÐ@*&¿»—ÝŸüãÿÇ#‹çè±ç9ñ3Ößx–å9»Ø–žÌἃ\®9Iù@M¦Rº­­ØV)Õ%G>‘®¢\.7—›ÃÎ訳قÉlatÔ†eÔ†ÝæÄårãöz¢.y^šñªfÖ}V!,Æc¨NêŽßFCÙ \ê¿1 ¶@ë0JXA Nf«GÍU䉡ÅñÈ‹Hp<¤l=9úøRôßD„èþH‘DZYm C„ÂáÄ:–³½oJ Y0Óæ±&GMÌQ¥«É5edAF²,ë&P҉ؤCªë@®ëCu»ñ§—ã~?÷«Éø“Ê-žùÉtôâ°;ÉÎÎáòå˸ì6ú+³©NZNÙéudXNÒº—ص~)ÇíäFf­ùÉ ö4’rþ"ÅE%„CaŠmCl),æõMgxóý“,ÝtŠ¥[.ðö†3,ZºE¯¯åUÇx{åÞ\º‹E«³òB6WGûQ‰æÁZî|ñ~ôÝ›©=›Î`Ç Rê?ä‘ã¸õí+|ÿÑuÜôðÝ|ë×÷ñ÷ŸàçkeÙ‰%uÝÀê7£„}ÎQ|=ç·)à‹,:ÌêèñH %NqtÕˆ ÊIã9Žãu%%†\U¼´67—{ââB2²3(«(#ïZ67òò©ª®¥££ý ÛC8Âf³aÁãvãõz#¹ªŠ‘`IäeÜk~ò­Ä¿Xã³>«YŒgÇy!9ˆñõùî?í1TEepPO[G;v‡ca‹#1Ô Aƒ 1üÍ^jêjéîíEšÜ­›¥È CX­v,+v»=*÷  H¢4u¸m6C†q’6ŠLݾ$˄à >o@ H(ÆnóÐѬ§¶¢›ž®8î§ÈI£öñÃvX[„úd&jµU’ £ÞËÔ.hã5°¹J Š(#6Ô7ˆAè²¢–ÀÑfè°ƒÁ£>T·Ý£¨íf8Ü£ÈÆ« p®µÒ„Úi¬.Ô‹à Aå kB_ØÊèð(¢(&VÌ%*ûû v* †DTIAî&|£™@~bψrÜ]‹ÅÆ…Ë©dçä¨È£õø*Ê÷,Á\p{ެŧ±uU`Ó·bi+ hîÆ1jäàc´7uàEÒGºY›Ã¢ §XºêË6¦°lÓ–oJféò¼ùöÞ^™ÄÒwðæÒ}¼±ék2ó)òX‰ÒÎL¶{Ÿ¦²ôÖAŽ6ëxåT?z¡‚Ûx–ûþR¾vë3|ý®Wøç»_å wüŒ[ßù1—Ncöê ÚGpöÔáê®Å©oÆgè"déç’`GUB ¨!/²ßò"Kâ¬E½:fŒÄ´àÙÞOe–—'-`(“HËä|=e‚9g®ão £O7kÖÛG®áC êú(--£½­‰¶öNÚZZ))*%íê KK1˜F1©¬.¥¹¹‰–úª*Kéí »»“þþlv7B0„ÏídÔbG’ÔØòÐÉïÓôsªÄüLO•_*1š›dα7#ƒqŽ×}Ö.`œù„óUQ”ééí£³»“@0øÑ;Ì1Ô Aƒ 1üø/MMtvuÍ-aLÄ `Š ©2½m™ó“D<.N§¿/HÀÂåpb³90ŒµØhjmáJÚUŽMæÌÕËÜ(®&'­– Ë’Ù»ùB\Ã)6ö“‹ÛÂ^Ø\Û+`M9”é`c­Ãu°¶ål3êÑz(D ‡PºŒ°¾ òûàÝBÔÕeÚ†º­¶–C…t8Z [‹aK ø”3l­„‹­p¾ öVÁZ¸Ø[*áùH®§÷J5ŽQçøeBE÷Çed’ˆ ÆlT«E‘ÐéÙºm£—,rº¯ƒ÷/f³xíi–®;ͲMçXºé,K·¦ðÎÆÓ¼óÁ1Þ|ï0KÞ;ÄâwòÆî‹l,*§9àA’2[ös¢r;y#º¡ðš^îýe:7߽Лï{‰ï>ô·ÿò-îþåJnýù ¾ñÓçyzÛ"Jû qÍFq4r™‡\ømFº› (Î=CîÕ$j Sj+C°õ!»ôx‡ÛqZ ûÜ(ªŒòÓà I0enZ—q,A]Ú8¿Q™Ò=Ž+}ÖãG™[:ïq«ÎÓ5Wc4\Õi]º(VP$•`0ˆßçÁë âóºiok"''úæ.œn?#ÃC”\§¾®ŽÌ«©œH:Ɖó)Ü((àúõÚÚºpج :Û:Å#=ÃCfN·‹`0Œ$Îì&ª’2ÇË¢ÆÌ;Œ7bF&c"³ˆ³¹)Êx%£syŸ/@Gg½ýý‘sœ&%Õ Aƒ 1üôÃŽ®Ú::q¹<ñKfh5§Ë@§šL->ûûuœKMçøùK¤\MãÜÅKì;~’Õ[6±qÿ~r+*9yá<[víåä™ód_¿N{G7ºëºÐhwÆPžè†¨€:j‡“õ°ªvÖ ¾œÊ Uƒ°­6V¡¶@ATDçaêÅVØÓ #ØU« !¯GPv•ÂÉèqG¶Û ‡¤6èµ@a©ƒœAèA]y67 X-tT¶àöº'òã .O„8Îgl’ˆÑÍôº–v7£—P(LO_?I§NSŸyÞ{„Ñ¥Ó”zca ÖÚk¸:ÊL]H£=ø:+Q¼nZztlݺƒP ȰäP[ïœLeÉš3¼³)…%›Ï°dý –¾wˆ¥«òöÚ,Yuœ¥ïfñŠC,>z‘uµ ÙÊ¡ªÍ¼™{˜=©¿YÊÝ?ÙÄ·ï~›ü4w<ø"÷>¶‚ýú=~üÌî~b-ß{êY–|ŸVS#¿ Û@­åX­C¨ª‚Ó2HæÅ<òðϹå–[xøg°lñk\½LwK%þZÌõ¸-ƒ µ¦Œ–S[h»²ŸÞœs˜Ëòð6V"ö¶€Áˆlw€×ˆâì]¤¸æÙ&k´§uc9òBâæ' +LxÆN™#›PÚ­SAû1èûèÐawºQ™€ßƒ®¯›ŽŽª«*ÈËË!»¨Î¾ZèÓá°šÒÑÜÕGÀï"?'‹«W³)/¯ ïÆušššéêꦫ»‡Aý0°„Óé ½½þ~~I…0²$Ït?V˜_Jžˆ|tyªq›Ù¨ñG‡ÃI[[;ƒƒƒ¿õï<­ˆÑ Aƒ 1œå¢ÓÒÑÕ…Õf³s¤Nê Äæcærþ´Çêëï&é| û’Os.5•´¬,² й^\B[{;V»“ÙĈyÇK0BÅHȽ ! b|q“gäÆº*MÈé‡;ªÉ ×»àH¨AYQÙp¶us9l­†Zsä~A5³ uq%øBp ys ¤ö¢ft£î¯•p¤r;a(€Š‚âñ¡«†­epºεÀŽrØ^ ×ûPSº­.Úš; ‡‚³ŠóIÀâ)¸ãíÆ,¤«kžQàቷÛC]C»ö¤ðø!B‹îgôþ¿EwpަlC’¥Å;ˆ4ÒŒ'kBI5µu8pAÒv±©¼˜7ŸgÉÚÓ,[†wVañÛ»xsÉ6–¼{€·6žeÙ–Þ^}ŒÅËöòÖÑslk¦Hx…Q>ÌÙÏ­¯¤qÇ“ùÞݯqóý¯rÛÏòðOੇ~ÎOŸYÉO_ø€G_ÜÈOoãÖžcËÕÍôÛºx-ØÛîoÆí± x\ƒt¤ñúãóå/‘/ýýßó7ýwÞ{o½½„ú‚+xúJ¸G ¤Ðså({Þ»ïÿ€÷VÜÃŽ÷ãÔú—¸¶ÿêέ£ñÂ^:RÏ`*ÌÄY[B ³qØ€ô#£ Ê*¢?Œ*HóK/'uÕfäï)ÓæQUe~¢ü»ØsA™8¨Uuî¹G5Qƒª‘EŽšS) ‚߉Åñû°;Œ:œx¼^vn·¯Ç‰ÕjfÐ4Šßï¤0/‡Óg.pùÊUÎO!-í*—®\æüÅKÜ(,Áhw3ØßMÊ…ódddÐÜÔÎÈÈ0#=&£·×0&IÅøeá‰Âx:~óuãÙ³w‡†Œ4·¶1zzúE)>SO‚&’»§Ìò3Þ¬8|­-mìÙwm«VrùåÇ9ÿ£!íÕ‡)<¹“Ö’Lt XªÒ±_Ù…gå/ð¯{•œã‡9}.Q¨r[X“WÀ»Î±ô½c,}ÿ0o.ÛDzUGyûÃã¼¹â om:Í[[RX²ê(‹VìeÅÙKœîï ¨ÊŒºYzx%ßøþþí/sóŸã,åΟ>Ëcwþ ÏÝõ5~úØ+<õÔ«<ÿä¯ùÅ‹[¹÷­—9R°Ÿa¯‘°×ŠSׄ±¯‹ —Û¹·ŽÚ y穇øÊß~‘¿úü_ó¹Ï¿ü«¿áßø:;>\г· E€'HëÙ­¬Ûñ¿Þø}žXs;‹6<Ϫ½«ùðÈ[l>ôSÖoû9ÛÖ=GòÎUœßú;—Ñ}5‰ I aïÂPÙŠ¡ºSGÝ!‹Áî"ìö!Ã0>upÿø•/óùÏŽÏîóüñŸþñ—Á3¿ü1C­Å€ŒbuÐtz3Ž>Á‹;ïåÉ÷ðÒ¶çyëÐ*ÞIZƪ¤'X¶ý¼¹úÞÛò«×/áèÊç¨NÚJ@ßGÐé¡ûF55§¯Ñq­”¡ÊV e­èJ®ëÀÜÚ‹½[[7‚×lÁoqry1zNši 5…ŒëÌ4—ŠeÀòqt£ã2RR'v3º’,âšt41hoÄèîÁ´¢Œw>Õ©¯:é£;ƒ O7ÿ‰lO•¼>/v»«ÍŽÙlÆl6£Ó ÐÑÑÁ€N;¨¤° ˜¶–ÚZ›©(-#?ëYW¯R^YÃЈŸ×M}u19y7hë褭­CÃCŒŒ c±Œb6ÐÑÞBoï‚(Å·ø3W¤Å´÷R¥V`~ãšÙ$ÀçW•öŽNÚÚÚq¹\1Ô Aƒ 1ü´C_ÀOGWýº‰*¨ª‚(J„â  Ê"ðEŸ×G_žöæ~ZzélécØ0Jmy9™Å [)Í«âFvy™å¤_, åDggqùÜ JŠêéìJ$ÇpÂàAÔ “—ª³¬˜«Dß§h…&Õ”ê¤ÂjrÇE‰Ž4Ê1\ ' èñû#¦QŒ##]ß5b8}_•i¿+q̉)*Š$ †p¸\ŒÚ èõt¶wPWSGiI7òòÈ8ŸÂÕø¼y-§V¼Á¾u«iíèAQRmý,½žÃ û“yíƒ,Z{ˆEOóÖ¦ó,þ ™7–eÑ[Xüî¿{”Å[ϰ£¬’b§ Q SÕSÀ]K~Ìç¾ùC¾ûÃ7¸ãÑ7yzñJ6íØÍ•”c\9»‡ý[ßeÙSwðô#¿âÉ•I<·ëntfâº:Œ˜:Kê.ÇeÅ¢ë£éòaμõk^ýÑíüÛ?•/~é¯ùüß|Ž?þÓ?áÿøøñÝ7ÓÛP¨ºªN¬a͉'xiÇ}<¹îû<µá^^ßõëȱ¤5Üóï~°˜¶.å©õ‹Ø¼üÊOî!lÔã5Ù(;z…ëvpîÐ)rΦ“yô2'6$óp •rhϪ +§Šž‚jJš,mÀÚ£G‘Dü!£MF?"3lV±8ÀåQð‡T$ùSL Uebý'ºž°ƒ6K×ûvR0°ƒ2Ã1šŒ¹„$?È*~¿IVgïÄ$†ê,®°cãÑ'YŽäJ¢H($#+ ~—‘a3—§ÝJO-u5T–ÓÔÚ‚Ñ4ŠÅ<ÂõÜ,Nž:CvNEEE—”R\ZLeU%ôööRSSCMM=>ð“%†‰ÌšN{wÉfÂ5d"{÷)=÷:¯/~‹õnaýê-¼òì"6¼û!§v%+é2¹'Ó(>—Iååëº@wN9r8ÀàˆDv¹Ë7¼d•(¬ QÓ¦sPÆhUqzU\^ð †°‰èT?îèD€"O›uUõé)Jær÷"2uoqcp=…}Çð…H¡Ãnoˆp8àwþ„G~õ¯-YÎÛËV²òýH:|œ”çØþÆ*ê“ÓC~²‹Ã¬Ø®ã­-|x´‹-'Ø‘<Ä‘Ë6Rr|d•I4¨”·J4ôHt$Ìv_pì|¦Æ¼Ä›I8×m§§ŽÓd‰!g+…»¸Üý,9ú%¶P¦KÆöb7PUUEß ãÈ&Ó§ƒ@0€ ã÷ú†Ãˆ’4NÇæÇr%澨Šïn¼Á¦£íì»dåàU›NXw`€Ãç-”6 #ÝxIQeIVTur#~jÇ}2w“©Žµã&$ÇcN3åß#NFW7ºã\èx‘óÝϑѳœÃyüÞ#†!ZZZhim£¥³ƒ–ö6::"RÍþþ~t:ƒ“É„ÅbÁëõâõz ‡… n(«1æ©çøð)03‡+)²$âr¹ðz½86ôƒM£„!„€×ï#,«sž¦,ê-ÄЇ8Î=³ñ»™Š&³…ªÚ:õ†OÅùV+b4hРAƒF ç CÃCtvua·;â#cÑ’Ho÷¥…õ4ÕvÓÑÞG¿Ž‘3n·¯×ËáÆëö!â¤Ü®ÈLŒ‚FQ”ØRÒßÁ‹$JtttD^›xet‰v†»HT~ºP[ufÁ †0´ööÓTSGYi-%%%ded’z1•Ô‹—ÉÊÈ¢¡¡AT&=„ŠÓ:JKC-µ•Õ ôêñºý±×£Ü#¬ª£ä%SÕ[ÈÞ¼M¬»°œ×¾À;Iϱ=ý-N­%«ñEíg©l:CÉ­¬\ýß|ò!6¤mÀì&ä¶áè©§&õ©GÖ’zöúê42l`Ý»ËyäÇ?âë_û;>÷×ÿ—ÿßþü—ÿü{|åËŸãø®‘Ã>èO?IîµC\­Jãrñ1.—ìaÏ镼üÆãÜöoñËï}›~ñc–üè»|ûËÁ ?¾šãûðw6á1ÓVTCòû8sä9e\:y†½ëײmÅ2ŽmÙDjÒqò®d})›+ÇϳoÝÖ¿¾Se þÂÑKVv¯$7ï:†þ2†u5´ÔeóöÒç¸ãŽ›ùõÓÏòîªuìOºÈþýçxëÍ£<óz;O:°Ù!¤(dôs¶¦ŠœŽ.ê†ô{¼˜B"nY%8EÖ=I’ SgucŒÏ9?e—“g…ƒb€Q¯Ž6S!u†L‡s0zzQDø#DoxÈÀ°É„Ñd¢··––6Z[[éì줵µ•ææfÚÛÛijj¢µµ•¡¡a</n·‹‘‘aœN'^¯—`0H0D–ÔÄceÔi„f¸:«ê4 D?cñäœBüNÄó¾SÿÞ?0HcSóLçkjРAƒ~ú:†£–QÚ;;1†ç^•Ÿ!ÝR&u#ĸ‰ßGxúÿž:†~¿Ÿîî,žîšú)Úù…t ã|а¬ôE‡ƒ¸œN¬f úÝÝ= ê‡&ñ=EéïéàLÒQvmÙÉ™“©(­bh°ŸþÞ>¬V;^ ŸÇ‡–AR§ºGŠr5E¢Šx% :{'5úr ;3H­OâTå>naǵ强ïܽê6’Êá ;»F©L?;·ž$yÃZêÊqwQ|ñ­­­|øÁJ¾ÿoÿŸüÑó_ÿËåþ×ßãÛÿü².1 >ÕÇvòá $•^$»4…‚s¤§§°ëÀnýÕ£üúî[8úëŸóîná¦/~Ž7ü mçOÖ÷b0P–’Å–×ßãÐŽƒd_É àÊrN&çÔ®Ÿ>ÌõÓI\O¹@î…T.>͆7–±ùÅ·ñu`t*ì:=̾¤"®]Ë 8ÿ"g“±â½wøë/þ ø¿ÿ'_üÒçøÊ?|Ÿ”üÔ-ä¤ìcïárÎæ Ø\`õùyqÿ~¾ÿ³xü×yaõj^ߺ™‡±3õ*'‹ ¹ÚÚH•aˆn¯à$EŠÎò¿ÑÕœ§”-4@EP¦9’*ª¢ ø5322‚ÝnÅn·¢×áp¸6ÐØXOcc3:‹ÅŠÁ` ½½…îîNêhkk£··»ÍM8Âïóâv{ðû#3ŒãŠˆxžƒ¢.l!FSJyŒ'q¾ÛMz¬–ÖvÚ;»c/K7’"r˜é«/¢:ãE—qè[pzi­Èc¨¯›ã‡öóÍ›¾Æïÿþç3ÿé3ü¯ÿþ_¸ý[ÿDuAZä|`1rcç:ÞÚ¼“õgNsêÒ’woåðªìÛ¸–M›ßåµGïæ{oæÞ›þŽÿó'È?¼…¶Ô“„Mƒ˜Ú{ÉÙs’å<ÅÞõHO>GúÉsÔÐXt‚«É>›LVòI2O'sùd2W®áìªÍ(fC*ÛNè8p<ëyYT–dpôð>î½÷^þÏŸ–/~éoøÂ?ÇŸÿùŸòý[¾ÁÁ=+9á2Ç.ö“Y‘’vös÷«/óËÇ~Æá›8ºg'»wmfÓÎ ¼øî"î|ìçüãwpçS¿æþ—_á©ÕÒÖŽS’PÔ‰‚}AÇÞx'Rí–ªÄ:¶äè±9¦AwU;Þ$QÀårátºðûø|>FGMôõõÐÖÖBuu5---ôôôa·¹pÙíèu:Z[Ûhok§»»“þ^ô†!lv'’(aµš0aµÚÃHbDR?Ÿb &iœ/‹0¡®k¤3—j"‹…5µõôõéðx}1Ô Aƒ 1ü´CŸÏGGG'-­mñK†æªÐÔiªò±’EQ`>óé$†ÃÃÃ˜Íæ™.ˆG·PƒÎw¿xnO…8»ãóQÓç-•IQ‘“L<&ßWÃü>~/n·ƒQËz½£i„¾¾šë(¯(''û:55 ŒŒZ& S£Q§ƒÆ¦ôƒøü~œNç”ö·q $D ÒQLTÒ¦ÄÙ=æü8ª­(H’„ „#™š>§»ÍÁ0„eÔA 8‰D‰¡Ûe£½£‰–¶fêꩪ© ¦®šæ–:;:Ñéq{|“²ÚÆÆUYF‘%DT)Œ"„‘ÂÂ^;~C/½4×”P•ŸFké5¼¦Ae<ÍU´íx—–¢s´W£¹!œœƒ|øÎ#<}ß?qû¿~…?üã?å÷ÿÛïóŸÿóïñùÏý§ßzk]’ÓA[~%û—¬áW?{‚äÃÇ(»–Iþ•‹œÚ´‘‹{v‘sö¥éh(È£¥¤˜òœlÒ÷§úÌU»É­TØv¬ÓçÒ)*È ¹¡ˆô«gøñO~Èÿùì_ð¥¿ýùWÁç?÷yÖ¯]J^n*)i5œL3SÓ& ‡¹XZÊKžçÃu¯ñÖÛ/ðíü3_ýÚ—ø×oÿ wß/?¸ïv>÷Õ/ð‡Ÿýþ×ügþîÛÿÂÉŠR‚3bF·ƒ5YÖ>eŸl<Æãø~ŠJ‹±XìȲªC 4hРÃO;1”$‰îîjjêæ6 ˜³#¤ÆO2æl6ªóÊ”þ½HIY¡³³ŸÏ¿ôó“&†$0×´"ÈìÝŸ¸;žj¬cqRhùiU$YŠd׉Rt®sR÷½Øl£ôöõP_ß@M]UU”•–PTRLIyzƒyb&4Ri"ŠN§Aý ƒúAl6’¤"I2Š$Éh”„a¿¿k”€ÓŒðª0ôbJ=…©,ƒ‘Ò –]¤1ç·¼ÁÖg~È wü+ßúÂøÒŸýú¿Ï7ÿþ‹døžÎD»º´|¶¿¶š_ýê5öï;NaVUE\Ù³‡´ƒ©Ì¹FsY m•U4—URšyôÝÇiº’‹ª¹\ °íx+)®’Ÿw…úš|ÒÓÎqßïåÿ|öÏù—þ†?ÿìŸsËw¾Ååó¨¬,â|F ç²,´öŠøCa’®çñ³gÆcÞÊ/¹‹[︉»îù7~õ«ŸñÞ{Kx{ÙÜþÃ;ù³¿ùcþûïÿßøáÝd45’¤)ï©OgjÊõiÃÏÓ]k¦„—ªSÂì]6uÖãyÊ"ÎŒcTAQdDQ$  ðy½8|þBXÄj±0j6c21 éèí릹¹™þÁ H7ttuÓ×ßn`½~aÓn¯g¢ã©$ Ÿí³¨,`!o®mL»ØJËËp:]Ÿ*¥† 4hРÃY¾èÕh–auMâØ¬KÂÄ0Îî“1Tã †ÿ\IeI¦­­-ö|Ñl«ûÿQˆ¡:­h—*Óˆ‚%†c£Ù"”±N£Œªªx<l;›“‰þ¾Ú;»hjmÃ0bŸJ Q … èȹ‘OZf6ÕÕõ à éõXMfÜÑ‚` „#FM“ZYŠD0ÖèïÆÓ^³©‚‘’lzÒÎPql;V¿Ç®×žãÝGîgÝ£÷Ótx+Á¡>|£VŠOg°ãµ5¼½d;¶Ÿàô‰ËÜÈ)¥$»Òk7¨*©¦¦¢ŽŠ¢rò¯åsõì.l;Do~aU!)ÍÃîã5¤œ¿@úÕÓ”—æpãz:¿~æ)þâ/ÿœÏÿÍ_ò÷_ù{6o\IWk¥åå$]l%õº“!£‚Ë`Ó…óüúÅG¹ç{_çé_ý€×ßÏâ¥O²jÍÛ<°‹{vòâsÏðů~žßûOÿ‰[ŸyšÊAYŒÁãÔĈ¡:‹u:1Tç#†³„qÆK gÙßñó¾B8„( B˜@ÀÇãfÔ2ŠÝéFdûinn¦©µ¶ŽÚÛ£n©==Xì6äéFU…Æ%3ƒ@ÆI õÕuµ“æy5b¨Aƒ 4bø©ž1ÔQ]_‹7àŸ[b¥$HPÔY¤K± ;•™9\jlbØÙÝý»Í U³‡J¿æ2€¿Ï¢¨Ÿø~.¨[¯£b¬ÍÕ5œKêIM.Ue<&oæÂ (3¶!Ë2*¢, ‚ŸHœp3{/…0C#ÃÜ(.%-#—¢ÂRjjª¨©¨¤¥®ŽîŽº{ºéï×3<<Š×@–•I£¸‘X 1$ …$|>T—Ñj&hèÅÙÒ€±,î«çh>±Ÿ‘©ŽQ|VUsI^¹‹ƒk÷qlçimOââ©4J¯×Pz½ŠÜŒb²3Џ–q´K™œ9~”­‡©nÀ†C©“¦{VqºÞt†WͤÔE…)q'Sc#Ô©»5%NBI§|®§Çö(Ȳ„(Ë(2¸]LÆztè zúúèîîf@7ˆÓãž †Ì'‡S†‡T|Šä”8ˆaôæ=‘n¨Ïïûôœzµ"Fƒ 4hÄpî‹ahˆú†z,VKü+ÃJŒÊ-ÆhÎÄíÔ˜³<êx–™2ž17k6e¥l²D×<ÄP—ØÄ"'êoZÃÉxWª§§gžn˜BÀe¥¾¾†¶Žvœ.7a!Œ"É(²‚¢¨z2Ÿ+ál myRcªèbìÔ\&suøâéTª ’Îy2Ôî’.ĉ5zûp8ŒÅbappÞÞ^ª««©¬¨¦¼¸ˆüëÙääd“žžEîBzúñ‚ãïñØ&Íff«P8™_“$dYAQTyÒN|ˆ^Š,öjé¡5«”º”*O¦“¾ë$W·ŸàÆÑT®ŸL'óxi§®’–’Iê¹,Î=Oê¶#x{zÐ9aßéQN_(#-õ8ÎíâZz2•¥¤œ;Â÷¿w3ô'Ä]÷ÜEnÖ ºVò [HºØOa—WAg±òòÖœ9²ƒkÉ›¸pú9²S°róî~ñ niϽ·–—/á'÷ÜÊ_ÿõ_òêÞ}˜|þ‡S¦õ)òìRÉé„p®÷?^–ùŽxœ9ÕŽÕyŽKY’ñz½<Ïxf¢$Jqu c.®Å;‹¨Æñ3£¡©‘îîn‚Á F 5hРAƒF Wˆ¡Él¦¹­•Á!ü…½JÔÙ/“P£3]ª¢Œ“Dy2Û[-WdTUë¹Ä^MtmE€$‰tÇ$†±+/•21¯7Y¦6ùºBÂÖúŠ¢`³Ù0 s ’ ½®ˆM[×s1-ªú*zz°˜G°Y,8œ~! Y 2Š*£ˆAQ#¹|³²åºX•˜äY)õü³H ½s]ga…xÂät®÷VV·ÛM(Æïó`µ˜2ÐÒÒF}C3zý0`hÆL\[{ µMµ èìG§Óa2bwØqº]BâÄM™ü¡S"a¢AÙáÂm0ajéFWZC{v9uWr¨<“NÑá‹äí>Cú†£”<‹d¡E¯²æ ƒg‹¹xå4‡ŽlbåÊ%,]ò O=ñ(7}íïøü_ýo¾úÕÏóÐÏïaßž9v®€¤ËƒÔ·…qûEjúûyyÓ&NìÙ@iÚ~’¾ÍÎuضg?olÞÄË·²zçaV¬\ÅK?ÀOﻕµ/ãÄ©3…ÓÍdâÍÒû(o®cTeaÒêx]>ã•ãÇÛŒ'¬>Q¨ÎBÂçyýU¥¼²‚¡¡!AЈ¡ 4hЈáï 1´;ìttwÑÑÙ1ÿª0ê,r½iň%‚“:Zò$©—:ižHUÅ©ÄE)裫»ŽÎ^zzô šÄ0½mtu÷Ïd«s1…Éò´xgß:£±‘e™¡¡!ÌfsÌ.áÂ>¹çÙ¶{;éׯqñJ2§N$''‹Ü¼|Ò3ʸQPOwO:Ã6‡•æº JÊÊ±Ú ÃȲcöjkŽÏX(–[ãB;|ñvlÔˆa"×?B˜ñUA’‹’¤ÄUKX¬Fzû»¨«¯áúõ\2Ò3ÈÎÍ!;'‹¬¼ë4µu"„cÏÁÉŠŒ?˜y,‰ „Ý^Ü#V,=ƒŒÔwajë‡pIeÍa ÏÐË«6ñË¥×øÇ;ßç¿ðS~ïßÄýß¿ãO>ûçüÏ?ø}þÛú ý¹?ᇮdãþzzõ2N¿ŸŒš–oþ¼Ó‡h¾qž“Ö±iÝ+œ9±…«WÏ‘™Áµ+WH;~ˆË^åÅŸç@aaÄxf!Q ,€äÄCÎÝf¢ó¶qSGçÛ¿ù¤ÛñÒXÏE‰Ñ}Œóy‡E‘Ââ"l6²,kÄPƒ 4hÄðw…z}^úuÔ5ÔÏ]”«Êã‹A¼Æ~Ê&Ù«O&‡ª"ƒ¬à¶9Ð÷õÓßÓÉÕ+éäå×ñÿg￞ãJÓ|] ¡{E”þÝèF7ŒÑ•.%N„"N(¤àè„´KŠš³µçÔÞ5³[}fª»§ «º»šåÉ*’ -H  $Hð†ð “@"aÒ{ï3—_ëÑE&€¬šéêžõE¼Ai–_øžõ{ßßû¼ë3V;é › ßÓøýiÝ{ÊË—Ã8}1Þ¾¸ÏêNWRã"Ùa‡¿UnfìPµê˜þÃêíj¬–ªª8N2™L èÞ’L%©€ku‘5—›@ØÃÓ¶[|óí—\¿{›Ë×osüw'ùÕ/¿åòͧŒÎØXYš¦éÒIÎ^nbtxŠeë Îu7¡p„d*A<aav–ù¹%dY«Q$eÔH§5ö¬}ˆ¨vnê»+u*u/‡:ê ß :&øìP¡+¿d™H,F8&‰âñú°.Í1<:ÂÄ̪¼ E‘€×ëWÝXç–ò¢Ñ8%QD”eT]EßÒçAÛøÙ15š‚y—Êè¼Jû`‘ïïúùM£ÿöÅ,Çþyˆÿãÿ«ÿÝÿé{þ7ÿûâõ¿þøßþ¾æ×_Oã kD³.u½àüŸÿ'Îþá >¹ÉÜÈ=†^_`äY3ö¡×D§̲>ÙKÇí&þëoMëÌ4ЦíÞ‡…÷ƒjâŽõ¾¿žóà ´êÃô­t2«'¼^U²ŽuÈæs R,ÿý[ñ˜`h†f˜a† †ï>DIÄ0:ö¶ö$yWª§N>Ÿ'‘J’ßè§( —·M7 dI$ôãñ†˜_Z)Ob?~ŠeiP8Âð›W49Ïæ»\üî<—ÏœçW¿ú˜ó7ï‘ɤxÕù–—¹~ó6žuŒ&™èíÂévÕ)Síá2ˆñƒêÉ~h*¤"+ØívJ¥Ò>i_e@TU]×0TD<„Í:ÏððÝ}Ãù5ÿåóñ§¿âøg¿å׿ùg~÷¯?çÔçŸrïÚºî5Óû¸™‹ú%}ú^­® n©T»ÉÖ €ûœ7{¦=æ{ê…¢êzÇÃÔ%Ö«hÔC´¸;Œ"_'ÜÖT«ÞŠ„A”¤ŸÔß:sc†f˜a† † U׉Äc  íJÛźN)—fx°gÝÝLÏM1ôv›uËÔ4=¯û™µ®H¥°Or»ùß|{Žp*ƒsiŽ¿ÿ”›-™_ ¯÷'¿9Åéï.ñ¬õ.Oî4sîûSt¾EeÖ+ÌÎ3;oaÝíCÓ4ÒÉ]ݯ™œžbjjŠ™™™òÿg¦˜šžfbj†Éé&§fŸšfjÚÂÄô ãSÓLL–crrš‰É)Æ&'™˜´019ÎÄÔ$“S³LNM21¹SLNM253Íäô“ÓSLLM–czŠé™¦fÊË›š™ÞŒ÷–׫òûéi¦¦§˜œ™Æ27ËâÒ"šªíØ·ZYi5 ]EeŒJ¶XÈE$Q&Ÿ/’-$3"Ñ$áxEÕHÅ=ø¢BA?oûßÐÒr‡ g/óæE/^—ËŸýáüöøhë~ÅŠo‘7t={A_ï0¶‘h‚b©Èúʯžw09=G¦Tª¸w‚¦ëegDý€³qˆ j½µŠ‡51øa¦3õ¨[:»An/­gôí*÷æóÍ@–dâñ.—‡•%¶ù%f&§è¢ïåz^¾âíÈ0ÇÚ¶éx:‡ß±NÈãÄëñÉæPTQ(– KEDIBÓ@×4ÉáHëâ<3 Æ&Çéíïáa[;­;Ÿ%•J3::Ioÿ«®ÚÝàÌ×_pú드oläÒ¥ Üø˜'ím4ß¾ËøÄÖ¥ÞŽ1;·ÀêÚ:‡ƒµµ5<^™t†T2E*•"“ÉÍdÉfs[‘Ë’ÍeÉä²d²UQù}6[Žt:M(bµÚ‘tפÐ@Šx]k ö¼fhh”‘·“<èìÇã‹‹ÅI%Ó‚„,‹drq$YESdEEU>‹öe—ˆ†ÂryVl \kºÎÛ÷i½÷€'/ŸqùÚ9N~w–K—®rÿÞcÞ¼$Òýª‹Óߟäúõ› °¸¸„×ë% ‹'H¥³òY²…ì÷}íðé£px§Äæ’rˆ÷ýP@4êœÜ×L{Ö÷NÙ5vÀáŽïÐ5I”)æ óE²™4‘P” Ï‡ÇéÄãvÇ·)sšª°îX¥·¿—ögÏfžŒ{}×Ú‘P˜d2N6W@“t£|| C/²aP”URB‘h.K0“d%gÚã¡ßn§mjŠ[ƒC\èzÉï››ùº÷5ÁbiÇÔ†õ$ìWw˜º»Fy 4Ö 5[Dð×u~Ž:ÒQëQþ+ÿÌ[XZYF©.'0Áp3rÖfh‰mM°òACMÖܼÌÍÇ8ÖdÝõš`o¥¡á,¹Ã¯`¿Wþl¾Ž÷'8qì å8ú1#¡æº¶~Tõ¾†ŽðÁÇXbÊ_Èd1ÇHkakßÐlý¿?Íç?k罟ãUvœ[+VþæývÞ«Š¿ù‡.þñÒ^±r,›Ãïó±d·³d[dnnžÑ·c¼îéâÕÀ+ZÞåÒå‹|öM·ÚžYF×4¬ K<ëèfnyŽîWOi½}“Gw[io{LGG;#£ã,Z˜ž² I¦âø>b±8ÙL–\6K6•¢X,‚^vœ4tƒB¡p`¿Å½&žª¢’J¥p»Ý5÷ïÆ¢Pdyѹï¿å»ïÏs«õ)§.·òâE/o‡F™›Y ŒOFYXœÂ¶æ¢”/’NgE ¡X W(P(äQd MUˆGÃLŒ³d]f|ø-¯{ûxÒù˜[wîsëúM®_½AÛÓnBÑÏŸÓÜr—¶‡¹Üø7nÞæy×k‡y;1Á䌅EëKk6üA?@I’%‘R±ˆ( eET§Fsù: ­Þº©z&߇QzÞ5%u_h0¨õªVæýU1ý`uµÜLÝ@×4YA–D„R‰b±ˆ ˆÛÞ«ë ‘hœ™Ù9û‡efrœéñQ&GG™šœ`Æ2Éì‚õu'ÉT²Ò6a«ÇŸ¦©d2ÒétÅLÊ@Ò¡ È$„Þl†µxk0̤ÛÃx$Dn‡Z¾mhFuEäöÆò{©pFUËœC‚̾êc=®¨µÎי>jÆÁ<ê5ì9 ±Î†a015‰ÛãFÕT k‚aSxv™`áhC–Ô>¹k:ÚÀ‘FËërôÀ0om¢¡áÿ\¦h<Ú@CÃ1Ú,<Ön>:Ò@CÃÇ8”ÚëÚpì8Í­­477ÓtòcŽ44ÐÐpòÓŸL ÖFŽ`öß÷ï|þ,ÎmBÛ©éÂ0,¿v¼Åʽ'Vn=±rêlOùýŸXÉù•9ÞûOí4.•j€aˆ¿{¿¿»4ýN+·žÌqêleyÝLdþ `G ñ7ï·sjQ<ô{½ã;³ú ÷< G8i)ƒ¡µé( GT0ì»î¢áC' ú°Š&þ»Ž\.Çäô‘htßI¯¡k” qñ¾°H2ÌÊš ÇŠ•eë,ëë.’é¢P$ŸI‹„$]UÈÄ„}!’ñ$¹|ŽD<ŠcÍÁÌܳ‹+,ÌŽ3ûv„ׯ^ÑõfˆÅe'kË+¼yÙÅ­Ö®ßl⫯NòÝ©ó´¿zNïX/-worîܮݸËž1V\„R‘t*Éøè8ó ø~ÂáñX”d<7n¯“D*Ž$ËhªJ1_@er©$‘P„P$€ÛíeaÆÂ@ÿ“s6òÅ ‹Ë8=>¼ë+4þŠ“ßŸåêõ;Ün¹ËµÛ·hºu›û·nóàÙ]š[nr«¥‡7H2daz Ëô,ápEÖK±hIÑ6UEUU1* ½=µ®Fúòø­ëÈØ{¬×ªêš6öIó¬G!üÑÁðÝÒ%÷žäoÿ…±ëuEÑÉårÄ#qB .ç:k«vVí+ÌÏÏ215ÎàÈ8ã¬;œˆ‚´ùº®“Ïe°X¦Ÿ$›Î’ŽgÈe ‚ˆ(Š(Š‚®iå^ŒÈ:¨û—~ê»UEè:YŒ}ž#FýY÷SmÊþæ³½ÀPG0äGÃÜ3õ*•{€¡ªi KÄ6Û ™`X[1lhhàÈÇ(û€¡’ò0Ò×Mw÷Ž˜°kÒfŸ¡»»› kpÇk ËÝÝ}8‚šŽ5ptO0<†%–Â>ÒGw_ýËÙ†J ‡#H.d¢¯¾ Á ØÌMp¤¡»ƒUðTÒ‰\í‰èÑ EnâdÕûb±T ËH#V‚a`(9¬#tw÷U­§€Çn'–S6÷KÐaÇSµ)G°<¹Íí•õŸÀ“Ú¾ö?Ææò¬Çih8B«ÅAN©lOãA‡¥¼nöàÖ1?ð8î Îí¼÷É8ŸÒÎ{¿\*oû60ìÆº '®wñÞû]Lÿ}¿++ÛÕÙœÃ^V"Ï:¶Ö]±Îyér3±²[åŽyBô 9蛋«¬HcTìˆ×‘$¥J ‡'‡ °L»éóËï±L»éóâÍhµ—1)‡±µoBAHÄ7×aãõÔJy[Ž¿ ËT¶S,`óÒ7æfdŸ÷*…ÞHÕ~ÛkTo˘ƒî1/ŽÄþŠ·’rÔ<¿„˜O,GÐ:B÷ˆ…˜°ãAįÇúº»é±nÛ7å{M ëÄ}}}ŒLì|½¾{GÊÚÆ‘†Ž·Yˆ¥„2m"˜ò0²Çr뻆ŒÍcrìC'ÝsìC'Tƒ¼NÌ++¨xlYºG3Xƒ[ûWHŠx’ ©`‘¾Ñ4#6aÛub‚a£P(0·0ÛëÙδkR #˲¹,ùRYU…"Å|žl¶@¾ "J*¢$’Ïæ‘Y.†YšœbàÅƇǘ_œgl|„Ž'í\¹~›žòôé#†º{xr¯… oðªï- sót?kçÖífZîÞäÔÉÓܼqŸÇž¨ŸùùÞŽa™_À“Î(r€F2'Ž¢ÈêæRÓÊ`"Kù\T*M±TBHÅ|;Á²m‘ÅÅyºÛŸò´å}cã<}ö˜ëׯsóîc.ßncrÎG:'–ÛAè5ê1÷Ø’(á÷û‰'û¦8êºF¡gee•é9+w—;›—]²ÙìOîoÝOK1<ÊÉÑÐÐÀ‰¾`M0ŒM4íH©làdŸ§[VŽÙþÚ‘Û*OëS4аë³Çš,û¨—Û£Ùš:p9Õ`˜³4Öøž£ôU&kB*µ †a0ÑôÁþ`¸m"ª`iþ¨JÙÌѸmŽaõMðÑÎåÔJJqðQCGNNT¶g¤¬>~ÐZ™(zø¸¡ ¢ŽÎã»÷C=Çb›Z¸ý}MÖÍÇj‹Æ‰:ŽcÈøùÛ÷ÛùÅPŽØô8ï½ßNgDÛ†]Xv¨+––Ãá¹Åݯõí佘"f ÿ®”Ó÷N,‘ª¯Î³Û_{»h`¹ÞÎ{ïOUÞg`üeEn®DnqfÇgÊ*åßýCõÏýX åeô]ïÞñÞ~&ÕÛ»ã»~6EÌ9Wõ}ÛBð¬îJ¿}ïýQÊî÷Z®·óÞš,¯ÿ>û ö¶´Óæ© ‡žî“»Î‘Žò¶4nO­ÞPè6í®×cô<¶ãû>b"V9G¾:ŽWÔûzïÛ¯Á£¬Mì¾9Ipâ뼆6ÓTGƒ4|èb$«Òù¹“†ŸG¶ÎC¥ñçΊš¸÷”Ï[Ë}÷®×>W}ÞÃGI(a_YaiÙVW-˜*ªdÒEEA–4IÀn[£ox†‘©e–W½Øm‹ ã ÆI'=V-¡Ýû|Ô‰b(´}°=-;U¶FKîP÷#7±íAÖÖz”—¬\ƒMÖÜ¡¯!ÃPhú•“†Ï“(†Aj!LÇNš]Ú&6ê¤áC?–lYIï¾î¦áC/ÑÀÚæ£áC'“å:ÚØB¬ Ž£¢ †õI’pyÜLLOÖœ€l­·¦ª¸×WxÚÖÁ¬ÅÊÔô‘h‚çí]œ<}?}Óç®ðÕ§ä7¿û”—ã d“^.5_åòåfß{Bÿ‹çt¿ì ­£ƒža¦'­ŒŽ3::F:¯!dã„"!2Ù†¡¡©…\ÃÐÑU EÖ0 E’PU‘d"M$%—I“H¥‰FƒÌ/¯¡ÊàX_æõ«W¼èzÍÝ[wùîÔ)¾þö$g¾<ËÅÆÓüÓGÿ•«wŸQLyðàgO}Ë×_MãÙ3Ü¿y®Îçtµ·ñ¦€eO„t6O2•"›Ë#‰Ên„½'Ü¥b‰ÕÕ5ÄêÖ{¥éÕiŽ[æš®£[é Ã@s>¼N‡ƒUû ýýýttýÝoùþÄiÏ6qîò5®\¿Jëf^=NÏÀ#£}Œ[¦™ž›&žI É"šª ©šV>îååsÁ¨51Ö©ÝG±¦*eTí^ýàÔ¹zš­ÿ†6‡©Ûï÷Æ;g¯éšN©T¢ËH'3„£VW×Yœ³210ÌЛfggÉæ ƒÊaàIßC1f#;@GÓ¶?7ØöÿjrC(ÜTÙ^ûil@±º²©õ¨Â‡„÷}2ô¡ÞÚÉzÎÝZ뵟ñŒaúI5¶ÿ©*†ÁÀv–AåãnÅαÊDK°7WÔ£&º»;iëì¦õdeâeñU€òcÚº;ik뤻³‰£ =9¥±\듪VáŽì—JÚ@«CØL…lÞTìrû.g7¡/¶õÝö¦c44œØT à 6r²…{×4«Ô67—k O”'Î GhsäªTÅtSÇvn_YÑ8rÒRµ#Lä &N¥¡¡¬°´y­Çhh8IÌhû¨¢~|tœÖα\Ådg¿c‘: nsçºx:?®Lˆ÷ß¿»÷MSÿP†K 7©üÜ]Ù†;ão>™ÂZIÃ|g0|ÐSQÓß9euío®‡Êð÷þxr*ðI+huá-‡²i„ówï·snEÜþób KK7ï½ßÉ©W«t¾²Ó9´ZÊ¢Y^ÎLÕr¶>[½ÌrÚ§B,’Ãá12dç\¥&³Ö{·Àpÿ}°±-mmtný¬¿©†j{wÕµc¤ÊÊöɉԵ{;_·4£¡á'Û:élk£³»³ †GN–‰" qØ-Œt·Ñx|ë\>̽Ã,›÷«­õhÚZϪ]‡½†”`І½ÆqØÊ&4G.¥7Á°éWN޽¬:O³YŽ|è¤Ñ¦`msÓðóHÕ>++ŒGnçL0¬w¨ªJ8adttIÌV±—ªÊ8lSüëÇÿ¦s×¹y«»+Ààà·î¾¤­ã-}¯‡9sâs®ß¸Æ„ÝE1ççüµKLÌ/‘ˆ%(åó”òY²é8‘h9­RS´ŠÊ·1A/ ¤óÍ@×5ñ(ž¹q^¿Â3oejt¶¶çÜ|ðŒ'/^Ð~ï§¾ýŸ~ý=©t¾×ÏøÕ/þ•ýõùì“ßóå‰?ñíésŸg}}]ÓkL"˵U:F• V5aÓŒÝýwÂMUš£¦*(І¦‚"Hø½zÞpëQ -Ï:xüà-­-´Ü½Ãõ‹ùü÷ÇùÅ¿~Ì¿þþs._jâÒÙ/øý~Ç¥Khôˆ§íOèÆí÷’L„ œ¸mK¸W×ÑU@‘6S?UÅ@S I&`[\&—|Ü¿×JkË}î=ê¢ãõ ¯ûßÐÞv—›ç9{é7.æ÷_ÿ_|ò)Ï»{q{<8kX,ñù8Vø\ë¬ÎͦʵLºV^øFÝ¢±Gz¨QU¤¶#íר+ºžt¾Ã¸T©“?Ô0§^ƒ‘]¯ïgcïÑT UVK%JùÅbq°¨×(e'Œh*H;¾@ƒPLcr]aÒ¯£P’ âCÛãyA”P]—+¦[l¶lÙH(ݶzpÿCÖ×{¼ê=¦õ<Tÿ¸³øàN´ÙËî€ '·MîšPc(ÔHåTû.g7Ûöô¿ @Ƕ¥‹ŽoØ>y4ê«14Rkج›Û#Øù¨¡+©w»¶Y±óAC'ú&8y¤üoãÑ>jíÛQ?£³ñ8G«TÊš&ö?ö\`hÙ]_™ÚÿîJSõ,Õ„¾÷ÞoçøPn[*i_DD(ˆä "9q{]Þ»‚áÈ¥NÞ{œ çßoç½ÉmPtëgeP²>è⽟ÍÕ<Æ»À°°µ¼Í4ØÂëRõó†"ø·?ë*Ç?tñwŸôó÷ŸŒb-5ôo«`¯ú{½CSUû²“¿?± k*†ìƒZÏ­”^‘+?«­–¡éhÕ5Xv(Þ€®]ÀU ·^ßPî6Ï©#G9öÁG|ðÁq¬¹i«Gøà£-@;̽cgêû~`xØkÈrß»;ôC' zËjyôWÕªs·È±œ´)XÛ¼4|¬z8¡Òü+'GïL0¬wè†A:›¥·¿oï‰ê†¡¡#f"<~xçÏxÞÝG"#‡X_qâ $(J ²,‹ÑT‰x¦bF o¥|i¨'Šb!ƒ¨A.'Oðúbxf O4ÂòÊ4Ï^<åâ§9óûo9ûÝWœ¿uËÎqæÛF¾i¼Æ¹æfî^½Æí‹øãŸ>ÃHô­Ð×÷š‰‰YÖ—Wð9×q{<¤ÒY@GÌgdm4½lÅ¿±ñÆ–µæ4jzRì5¹’%™T*…Ëå:üĸZÙá[$Œ]Ê£¡«ˆr‘PÔG$-óT·ÛËÒ’ÁAž>IÛ³—ûôw|ûÙ¹|í:¯û°­X˜œäáÇœûò4—O¡ohëÒ<ÓcãLMYYZ^'‹"…òñ§Ü§Q×TŠE¢P¢X”$\©€Ó±Â“¹róƒC¯il:Ë/Ê‹7=¬®Ûhú_ÿë¯ùÝoÏ™ïÏòågŸsöô®œ<ÃÀТ  …Y[[ÇíóKĉÅãäs)4EF(¶÷¶ãdÔì?X}½îÛB`u©‰áAjàaRŒõ˜¡ì²{yŽè{ÔÀU÷×;hwB©¨Ã«x¼„æL‚ ƒjðÒ"ð³–4¿{™#­Âɧ‡J¬g6²‹=Le´Ú5ƒÕp¼‘NºñÌl¯ëð][ª´¯ëÙG‡ÃêTwÕî14UÃ27ËÊÚêî‡_&î㫸vVêÒ,)GÛîz¢œ¶Ö6¬±tYiú¸o[êÕDg+ÝÖXù©ÃÇ8Œ­ï?Ù°V¯K5Èäö]N­TÒ6ÇV Õȉ#;Ô‘æFZ'‚º îCÁ›JÚNØŠqòH Ç«×3Èñª”ØÎlÖ=Žä6T•òþnµ FоÖfú*5`¹”£\ku¤‘ؾÇBÙ;UX© †[û|ÿý[Ìz°d±J!Îñ÷ÛyïgsåÚ¶pUËMöÌg”@¹ïo.¹·”˳îmÇíøûíüÍu?ÖÝÛTLù÷I'ÿø$² Ø„•¹M; ZtóÞû=Ø«ÕèÅUî E*©¤ƒays|þ~;ï°VŒn Œ€}nì-Åpÿ}°û8ì †×N³uËŒe#Źђ;4ZšÊ)šÛö¥“Ön+ŠäDC 5ÜQOÛvŰÎ{Çø5UÖ{?0Ts )è¤álŠœ¢#ˆ‚¨“ZÓð¡“^ ›Šá‘*Ð\å×[½Z CU`(rüC ­"”Dž¾Þró='‹e5Æ04ÉñDX"^NíÓTtU-;ê[ýÎ6fšjà\q²¶îam­œò¸¶¾ÂèÛqGÇéêꦫí—OsâóßsîôiΞ9ų—ÏYv:™¶Œróþ>;qš¡®7¼l¿Ë“ާ¼zýš¡Á1&Æg™žšcaÁŽßí!Ê9䪬¢ª*º¦£o¦ ê; @ݵÁ[¦’;êж5¤ß^µëçtOA ‘Hž V/ƒŠMÅ@e»`¨oN¾uc#ÑTßU¼X>~Ü5 4YEUTYE–TDQ"ñD±­®0??Ïpÿúúú°ZçY´NÑñ¢ï.6qîäžÞlætãw4?¼ÍÍ 9}æ:Wn?âåën†úÞðúÍK–VW‘…p$AÐ “É iº¢"—d ‰h"C CVTbQ? ÖE‰<éTŠ…9 <âæÍÛ\¿tÓ_|ÅŸN|Í÷ŸEWßkœ7]ÏžráìY._¹ÎÓÎ.zzz˜š|ËäÄ“CÃL½Äë¦H§s§\¡X¢(”v›Êìu©ì|õ»@C=é„õ‚àAßËÁXS!‡Ú>ÆÞiŸu7{¯NýÜø…P¸9ÿãC¸º€Îc(=³%~s/ÅWÝV#2ÿt'ËÏŸä˜ò¨L¬ ,U’¼¨Ík’¬oÝ* ¥¼¨!o«UÕ¶T|ŒÃµ§x׉ïªT×ã®ß寛\={†Ï~÷[šŸt’ÉèéžâνºúÅ“8ÖÝ<ÞËãŽæ–]HŠB±( ë:’TDÒdT]C%ò¹éL’hȇͺÈÐð(=¯»Yq­{èlkåäŸñ§_rþâ5®^¹ÂÍ›Wiº~ƒ³_|ϥƼxÞËØÛq,–)¦§Æ ¿¿©+ñD†x<†ªiHŠR©å4ÐU MÑN±«õ€à°Ðwý[Õ3¤^Qg-›~ðwõ‚a= ˜Ärpn>ꂇk-RÌë¼™•ùº#Ï]YÎ÷çøÝÃßö–8Ý_âò`›ã%Ì ´Ni™,Ò¿"2ë˜tiÄòw'²2í3%Z§JÌ…U òN•Ù8œx ¤þÚ¿ºÛLÔñý-dŒ½Ú¬°·ŠX* ôö÷‘Îf¶·1Áð€ôÍÊ¿õ£Í ša(1 'ŽmwßlµÄ6ªûävÀ›F6˱#]¬ì,hÝ#íØ60lÞ–^¹÷rÊŸý¿o7Ÿ9ºåxôxÛÀŠiÌÑýSIk¹"9úMÝömð¸}{Rtžø`Û6Ÿè´o3Ê8V]»·ùóÈÖq±wòÁ¶å~@·£žcaìJ{ÝpH=9áÛµ®å}µaº±ÿqÜê]8S©¿«až‘p—áåAU ã>`(8–xï?µÓT³Á}ˆ¿ß•ªÚÉß;ƒ%R­ì”è¼Ô³í=Ÿ÷Æ7_÷NÏmsúüÇwù˜‹INýrë÷÷mÿ¦)Œà°n_÷ ¤^©Qc¸±Œ¿ÝQGi/l¤¬voOgÝö]"ßV\KO¬âØ–JÚÎ?^/÷r|Ùõ^ëýîª÷{ïƒ]ÛbˆÜúå^`h '8~´ÚÍó#ú<Jܱ}¯™Z¯{Fš¶¥Dùà$ö\­{C(×ðnœ£õÞ; #GçÇG+À»×£RƒØd=Ü5ÔyÖIÇÁʛ ͪTêøy€‘¨^Þ'0¬Ž“£‚Ù®â°C’$Æ'&ˆD#{LL«T3CGÈçIÅ‚ØíKtõô31eeÙ¶ÊÌØ¯žwÐòè§Î~Ãçú#·npÿÞm®7ݦéÒN×Ä×_žáìé‹Ül¾ÊéÆS\»rï¾=IÛóX—lx½.|ápˆl6K*Áés“/·zª šªWR\Ë ¥±ñ_3¶©FÕìN!4ªg8†±-elë{ô]uµ –tUC* äRi^/±H¿ßÏÊÊ ©Tê‡MØ·ff•ººªÕªrHÜ*¥3¶5$ßxÏfÍ”®Õî¥gl¥®†Q~ kˆb‘L.G6WDETI$ˆápzñ¸ý,YmŒM0Ø7À›]4_¿JÛË7¤RYZôñøyÏúßàô™˜²rñÊN¿Kóýg<ö‚öö‚‘$ñdgÐ…Ûï'žLQ,)  y²y|&O àED!˹ÂÈÐ wrÿa'OÚžpùV×[sãÒ-®ž»Íƒ;mt>m£µågO}Í©/¿àâåFšÛñº„Ññ·ŒOO3i™%‰‘Íäð8]Xgçñ8ÜHB¹v£µÃ.ÅŒw„zŒJ~L属ÔÔ=ßgÔ6I¢åò]Ú1Ô³ÝYcÊðAÒHçz \ìÉñÅ«ÿ½-ÇÕþß÷äøìužy¿Ê½q?uåø¢'ÏåÑ_wçùº;Ï'íY:V4fÝ¿{šåO/ò¼^–XiÓÁ”F"WΊ(—êï¦Øîe貟ŠzØ´Ð:ÓE÷{ðTiÙl–7}=Ȳü“ü÷—Úd:—J‘Jåvô¾«L(…\ÙQºVãwE •Jý(ý»ö]ޱ½ÆPÉ¥Hå”?˾Rr9R©ÜØf¥¼¿s¹C‹ß#ʶª¡DR±öþVR™Ò®GÃ0 %R…ã)/ã]¾Keûº Jï=Ì>x—k=÷cLùú¯ù}÷†½Î·CÜ;AØsßü°kh¿(§’m+b©ìvuÑÚæ¦áWqr†A.«ì½&î?dYfvn§Û½'¢W B‘ñ¯ÙyÛÿŠ'mm\ii§£k”þ¾1z^¼ í~ ç®åËoOÐøÝ)î>{J×ËNzºè£÷Õ ½Ý½ô÷ôÒÕõ”‡2ÐÓÃóΗ8¼^Š%E‘‘$IËÊ•,RÅÊ:lr¿M¹ÛP879Hß1áÑ·\$öª[Ú)ÝU«l•ï×4 UÓE‘\>G&“&‹QȦy;ð·'€gÙÊ›öçô½zC?ݯ_c]ZÄëõ …ˆÇd2J¥²,£éZuåâÁ”h;jºô=j³šÍÂÚ­2ªß[„·õ®6 JEQ”)dsÄ¢Qþ>Û¢•åu'¥¢ÈÈØ–¥f–—DãÌÌ.qû^W[^pçîcN~ö'þôùWÌ­úp‡] LŽÐþü==}LOMa™žÃº¸‚ÃFÑ–­óx\nB>¿×Çꚇ%›»}™Áñ!ÞÎÌ2;=ÏÛ¡zûxóòZ[8óý)¾;õ MÍM\n½Ã­Ö'´Þ¿Íõ–GÜÚ͢݋Ë`ðu/÷¯ßæÅ“.¼n‘XŸÇ×$—Pd ¡˜'—ÍP* h›5‰úžúšNª®—µZ-Ôh½°«Å^uŸÇƒÒY‡©‰«4wLÔë‚àýàYÑ -@²о™þ¹ì´—hŸùn¸DŸM u¢Ä7½9ÚD.÷ù¤3Ç¥ñ"Ï—¾|žããgYþØžâܸ„¨ÂøŠÀ'O³|Þ™ãÖp‘;oK´Ï t[úì)õ¨L8­ÏjäK:jåù™ª’N®d ÈÆæC+ÍØÈB5ªØTÕ0ïç¦ 5ÚpT_¯úîïØ¼ô«ûÛNF£†±PÝÊ6 ë:±xŒ¾þ­Z^ÃÃÿ(Qíüiî›ØËxÆŒ¿¼0Ïç}@«¦éÌ&b(ŠÂÊÊ ‹‹û¤ŒUºÃÉ2Ë3ãܺržÛ·[yÑ7ÍäÌ:K‹ëÌMŽÓýü1M×.Ñ;Ðϊ͆×$ð¥ÉgórJù<…\†P°Ü;›N‘IgË) ûkì¬ñ*›Å›€SÞY™ð{¡±å+SÅNº¦¡(2¢,QD4Õ@WEBÑîU‹Kæ°Ù™ŸŸedtˆžW]´µµÑÕ=ÈåÓ_2>3mr˜ç­÷ypý:W/] ñÜî?¼ÇØô–ÉqFG'X]wàr»p:¸ÜÁ ‘H„D"A.›¥((Šz îøÏ»ªNÔ91ßO1Œméhº®£ªZ¹c¡@Q(”J‚D$cÑæb~ÉÍÂÜ<-MMœ¿t›;Ž7ææÞÓû|õÕ|ûÍW\hläRãen·´1:2¢)Lô¿âÖµ›¼|ÝÍÀÐëë.ò™<éx’H$B(&•L E y‰x,ŠÏëeyy•©™9&§g˜˜·0:3Å‹Înž<½ÏÝÇÝt¼g~%ÊÒâ:wïqù«S4Ÿ¿DÇã6<¼ËÍÛwi9†ÃÅëq1?=ÆÛá!¬VÁHŒl6C.›!_È" (¢ˆ¡íhœ®ïxèbl©¸»ÚmèÛ\ŒÚ`¨ÿ9À?/nÝW·~MQ6È‹‰‚Ž#¥Ë©¸b½Ë7ÆÎ´Í Lxeì•c"¿|–åû—îÍËH ŒÛEšzsÜ(Ð:\â›_õä¸7YâBo–»Â£·%® ¸=VäÑd‰Ñ5oª¼þ¸DÏ’H¿MdÒ)“(È’A"¯/êhZÕSÁ°Êy›yN`¨W<«ÿþèÆŽsOg²äº”mUÓp{ÜŒMŒÕ™õ`‚á_S(± NoÂ!˜û 3Ìø·¾¶Í©æëAKœm™EÅý †š¦áv»™œž:0ÅËÐ4.Oóöí8î@‚DªD©$“Œ™Ÿ~ËóDãiÐ44Í@S5tUcõíÕV Ú Dßc«SI§4¶¹¦j›“&½ª‘ùŽÅj’  Ê %QB–²Ù%AD*•H%x|>–m+d²EÄ\œ¾¡^:Ÿ<ãVk'÷µñäÉ#Úž>äî½Û\;w†/¿ú‚“çîÒ|ùcSÖ—æYšš`´»‹wnqãf3íOÛ°¹¬..0úv‡ÛͺÃÉâ¢ë6›••UÖÖÖñz¼ø‚Ab±™L–\¡lû/²,£ªZ¥¶³N€«7uñ]Z.ÔSƒVõƒ¡(²J±$Q( dsÖlËX, $s2Él„çÝϸÒtަ‹g¹|þçÏœ§¹ùó36QdràŸýþܼÓÊãG±ÌXð;],MÍ0:8ɒ݆ßá$ògD EU) ™\‰l¶D:Ÿ'“K³¾¼‚my늇UGˆ`´„ÛéeôÕKž·Þ£»í-W.óʼn|zâ47 °°ìc|x„¶Ö[ܺv§»fnažµõVìV¼k«Ä^²©$B±T1AÒÐdu˹±Ê¤©ºóúæ­bã²ÑõJVpmÂÓv©I(|‡uʬ7}±ÞÔÙzkäö9O5UCUÊ¡«XåúPm³6º|s04Hd  ޏŠ/¥Îé„3‡Êéž"çû ,„tt&׌è˜.1´$ñÜ"òýpžÇsßd9×›çbWÆ79þØ™å‹9nŒ‰ ºtÕ`ÆYä‹Î<Þdiê/2æÑˆ¦4V +1•œEÉ üܧ:™Ý@RtdUߪ…6ôÍtöÍÝ¢íñ ZôíÂªîµÆ¶ÿïN®§Íˆ¢(ØVìÌÎÏ"%ÞC3Ì0à 3þ‚οf0Ôuh,ÊàÐàž“»mµyºF6›Eåª^~hÔìaUi¯`l<½Öw»n²£5@umœ¾Í ¦jclz㨕ÕÑÑ EQPdEV%™R±H<c}ÙI$àceu§c…ÞÞW,®®EXµÏÓÑÞÆùïÎcYr‘ ¬sîÜ/_ãLÓZŸ½¤µõÝçå›W´ßkæò¥K<~òšÖ›7›™'’‰„È„£ÄÂ!‚!ÉdY×ÑEQд²Á‹,ÉH¢H!—%át¹™››ghà-ƒ¼éäí¤…EÛ2«k+x<Âá(™\Q’e¹ò}šªÕ®«ôv™Jd~Q/0è;ÒQ«&ªÛê&7沺D2ÇïõàX_eanŽÉÑ ¦'fˆGÂDC~ÚÜáô™óÜl¹Ãë®,Y&™èá~Ó5¾ÿ¾‰ÛZèxøGmÏxþº—u¯—B1K"fue ‡ÓK.›EEdQ@Q$ ­ì\+rÄ^üN'!·“Ѿ~n\¹ÎÕæ'ô Øp¬yyÙÞÁõóœ9u³§oÑxº‘Ë×®ÐÙÝÁ£Ö{t¶>¢÷e'ƒý},,,‹ÄȤ“Ä¢A2é †n ÊŠ(ƒF¥)»Ž®oQáÆ=c—cpUÛ£âR»­Ö`›’¾»F–ûoÖ5¹?lãtÞá÷5ÖËÐ $IF$AB%$Q@dIB‘%TEFSËõŠ›®ï|Va ˰Õ°†5D¥|Y +ô/ ­ˆÌ{Þ®K4æ9ÕWâÚ`‘3¯sôÌ)Œ;%n¿-pe¸À¹±"÷Ed&ìlÏròe–OÛsœ(Ñ»*2´.0æ”Yð)Œ;DüicóöYR  鬄d< Q©òþ2@7*uÅ›¾©Õ»ÅØzhP+¾:;b[ ²¾ý<0¨ôÕö¯­.Edff-¬­¯ñSæ$Æ 3Ì0à  ëL 3 ƒL&Ãëž7»'c•ö{Oô´ÊÄCß^«²i„¢àÙ¢Ö­lº„êªVî;¨ë’T$WÈË‹å ¾,“Чq9ÌÏ.b·³´hcrjšÎ¯9wþ:·›nóàá}=zÀý»·¹Ò|™7ã㬸],Ø&¹ß~‹O?û’ΗSd"!4ßàòÍ[tv¾¡ýÉ3º^¼dѾJ<“&Œ‡)Jˆ…âæDD×ut]/×$ªå §ÇËììäÒÅ œ½t—Ë·Û¸÷´“±ÙQz{;¹rñ´?yÊØÄ[f&&ˆFÒ†$䉆#¤’UE7ÔJºL<ž$Ëe¥"‹ó{ûèy3ÊË®ašo\ã‹Ó_Òt÷çÏ^£ñË“|õÇßñå·g¸Ôt‡O:xõì -woðfx]÷Ú2 ‹”J±X¯?J2™A%I$›-lÕtnÜG4}+݆AµZGl]BÆþ×›±ÃYõ‡ª…Ô©P³ªXó½e Ö5PIR‘¡$P*•(•Jˆ%‘bIB(–PDYUA‘0TCÓʵ U'§Q]» ÈH*È äK³.•›o%:¬EæÜ2Ók £+³%îÏ–¸½ ðÊ!¢(—ÀAö)—‹2gKœ.ry¬Àw}y~÷4ÿ´åèY“0€LÉ`Ê#Ò2œãäë"K2¡œA¼©‚†¢›ís¶¥!ï¸MW›Pm¿öªû±ê»úvî¨íõ‹û_ó’(1òv”P$l‚¡f˜a†&þ¥+†ܻ߼®Õ¾pÿ‰cµ{':†¡nMg[Ô¶– ÛêeôÚiQÛ&•ZDuH¥ŠøýAÜÎu†{¹ÓÚBó݇´wöÓ×ÝÏÝ›-Üù¯YŽªï]“ZO=껂!Þy´žØZ»ôrò‚®hÈ’€ )–J¢¸ Ž‚ !J2’\*?DQäò¿ªQ3 ZÓ +n©l¢¤“*„S+ù†+­!Ê= ÿÔ’åþD[DâÉlž“}YÎ ä¹2Rää›?’ã¾U&+ /I|ý2ïŸæùýËWÞŠ´N \.ò`ZÄêU‰eÊ׆(@Q„‚PNG¦5Ö Θ²•ÔQ«¹Ê˜kûý¶Jq4öy8°‡#i!_``h°Üîè'X_øSCEÔDíºôý×'þß~3Ì0Ãß,ªªJO_o¹á÷~°É€Úþ¯×R26A ¬íUC(K„‚!ìkk,¯;X]u07¿ÀÐÛQ¿ìÆOâpùikkçîƒ;ܾ{™óç¿åÂ÷§é|òœsgš¸øÍ9Þ<}ÊÓG¼êéåù›N®ÝºÄ勼jÂØP 3Xçñ¸ü‹šª‚¡QÝÂ0R‰ìæJ&³ÖV\¬9<¸½>|^?™dŽå÷ï´ÐòøBI`tøWÏßàËß}ůÿùWüò_óÙ—çh¹};w/ÑÚ|‡óNÑøÝ7\¹y•“gÎðý©s4]¼ÌWŸÂ[Ë·‡¼$“ûI¦3¨šZNմݦ35Ž…ªh”J%‰›ÍÆ´e†Ñ±·L[f°Ú–Xs¬ I¦Ó…Ò¾ej‡ŸéÛTÞšíªÍUØ£ix•gPµf»ŸhšA2ǹæbem9«…ÁÁ~žutÑÖþŒ .ðøy?¹DÄë£ýî}¾ýâ+~wü>;ñç¯ÝàAÛ¦§§ ƒçÙ¼À‚ß e¬ÀÏSüòq’iKñë'Y~ý4Ë‹ÌðªÌí‘·&K4y6'òÆ*Ñ9-Ò·¬àMêøj¹QÛëAÛŽ­Õèùª×÷ @Ó4‰}ý¨5ËL0¬ež`ˆðÁÏ«ó\oËìÓãï!ùàC'Í.õÇu ]sdÇ¿&ÛÖ²&îûhøÐEójíå{|ô«êÏ»9Ñ‘ýñ¶ß 3Ì0ÃÃn@3òv”H,z`ƒãÝJáö?À’¢ËåʵSÛ„AUÓ(æ‹$#Qü'Nç:.—ûÒ:£Ã# ððî.^<Ç¥MÜ~pŸÖ{xÚÞÎ÷.qíî ÖíÚž¾¦ýÕ&zéékçEû#:Úsçñ3ìV+aŸ›P(L<‘$•I‘ʧÉs›µGº¤Éëh›JV¹¦KU2™$Ë‹óL÷ös¿é.c“³ô½áÙƒ‡œ={“Ó—oqãö-:Ûž°j÷0>jáÛgùô¿e%fzf€æ;·ùþÔyš/òøñCú†'™dɶBÀ³ÈÚÚ@•åEF†ß2;;OÀïa}}AÙP&+“´Ý’H½©œ·P]/ïMÓ( ÉtšP$̺ÓÁ¢m ËüSe•qyy¯×K<'ŸÏ—{÷ýTÔ}T‡½•¦ÝE®»Kíôí“Y]M×7R7Rk5MCVTDI!ŸÏXZu,ŠäÒI–gÆxñä.5Ñxù W[osñæ5zßô°¶îäÞ½ç|sò2-7oóèÞC^>ÍÌø$žU;V«•±ÉY—VÈdtÍ@(¤ ù=„B!A@U % T çê‹Ën ‚J8gÑnãyw×›[¸pþ/úÞI%¸ûôÏqòËë<{ianq©ñQ^ttòây7½½Ì.¬R,hÄâiü/©tšx$ÂêâÖ¹9 ¥’T•­kÎ8æ …¯^°º¦U¯S¬Ñd]×ttMß#õÕ¨Ê2غgÕF¤­ëIS54YG’Ê-s¡DI(QK”J"E¡„$ h‚Š$Ȳ‚ªêèªÎFc¹ÖÙ@ÕŒÍOE-׿eg\atM¤Û&aj†Î¼GæËç~ö8Ãé¾<ßuçøí“,xžãæHÇSEþØžá›î"¿šá3üË£,ÇÛ³œéÎq¹·ÀÅþ<׆‹Ü-±àW™px¹XÄÕɉ )Ù¢FN0ªÛج¯Ë¼jÇÿeIÆð3::ú“T Š`8rÛKÇNŽ|¢Ó’ò¡éRåw—2?Žz&8ú¡“F›ò#ƒaŒ†o‹ÓÚ§¹Mmq&¢•žuJ‰6€ïlj×öxFƒ›M©Û*ÛßxÖ]yòßÅMÐ 3Ì0ÃÃ:ÀÐ27‹ÃíÜáviì.TÚî\Sžõh:š"Š˜{KW×+æ&,̼ÃáXYäõ«7<ÑŲIJu–ÎÖfn›¥X*¡* º&£ëºn  „¼‚/:Å\œî®n·÷306ÅÄè8¿›…™A.^¾Hã‰3\>uŽæóßrþÑ]ܼÁÕ˸tã-÷ðúÕÜž nG€¡×oyÖñŒL^Äë\£éêî·u°îòˆGJ"ù\ ETÑ4UQ+-d$IB–ˆ4ª" ¯TOhëljÌ†Š²Q®¬˜àÈåõÈå‹ÄâI¼^+«ë,X—˜›gn~Å¥eÖÖ’É$¥Ri{ÝÚ»Rcu?¾Fm­ù°ÂØfÌAµ!Ë^*˜Q† A’C•„ùB‘d6O$‘Àá\ebr‡ÃK$žgiÙGÛývZ®_çÚÕ\¼p•+ç/ÒÚ|•ëÍw8uú2g/2³°Š¢(„]>^ ò¤íc“ÓÄâñŠ‚¥WfU4]EÓTdI"N †ðxÂãQÒ… oLJéì|Aßà"랎ÕUÚîÞä›/¿åÂåšo_åìÅ[ôXio{ÃËž—8=næ¦&¸sõ×._¤¿¿ŸÙÙbÑ$>€L6¾±ŠZÛ´¨%±ž6õ<8Èá¶rΊ"±0ñxŒt:M6›¥XE Q”Ëבªm‚ãî^;®W¹uVÛ¹lÜ·u]3P• 4Ê’ QJˆ%Q,! ‚ "Tú¯ªJ¥ZÙPoÕrª= ê *y©üEYBϪ„-¢1ïUy0^äü@ž§‹ î¨Ê¿—âú„È£Ñ<ÇÛ²|Õ•§ñuž¯Ÿeùõà ¿ëÊÒ¿.r¹¿À/ •åDW;ã%^Ú$:æîŽx¶ à‹)X½2 ‰ŒÀVkŸý<Õ8–BI`mm™¹ÙºM®þ#ƒ¡àŠW0½ ˜&î»iøÐÅDaKYô¸ ôMfè³äp$µÍö,1¯@,+c±dY­4ØË?÷M‰%sÛ†JVdd2M÷h¶ê» „¤ˆ'©!$Kô¦é[(’RöC7Ö}šFÇ,!>ôÒxÛOÇnF²U¯g³ýÐIÃçqR;>géðÑð¡“£’9é4à 3L0üsšÏlL¸VVW±.-nÃê6YÕµ€š¦‘É&ðz}8×ÖY[]cžŠm~ŽÁžnZ®\¥§ý9×Ï\¤ëÙ3î޹÷g.s¥å9³VNûmwš¸t«™–¦ë<¾Û̳öÇܽÕÌ•ëÍ<êxΨe†YÛ"+«+Xç­ã EQ,Oü$¹2 Ô´òÄZU(•Š(²&‰D#!Y´­21>Ê‹ŽÇ õƒ®#d#œ9{ƒÏÏÞ¦å~;§þø%ŸþöZu`__e~n¦»÷¸tñ:Ó#£ŒötÒÓÿšáþaæf–Y´.377‡Ý¾Š$ʈ‚D*‘!–U¢R¿ßO,ž@ª8nÕÆý@µíßü!ªª”‰T&G8Çã °ºædqÉÎìüÓÓ¦§-ÌÎγ`]ľ²‚ÓéÆO$Éærˆ¢XÕ–áÇ=_ë²Ò¯gßUûlTÁé†W‡®ëH¢H6›EdU§P ÃÌWÖ¾þÚŸ>ãÞýG¼£»«‹o¾øœg=ä yœ+^:Úû¸|³•ÖGèzÙɲ×Ãcgbd’ ?Œ×ë`Ѿ„Çç#›Í’Ëç‘$EUQU\6K8š$“(䋸\kô¿yEgÇK†ÇèîîâÎýÜ»ÝÎ;žŸ&ð07ÒOëµKÜi¾Jç“ÇÜjºKÿëÆFÞÒÝßÍÔì<Ëv;>¯B>‡(I&â "ªX*ëmº†¦hU…k»Ÿ2ì<¯·Zë;Ò…ë…F}Ç3òUU%‘H°¼²ÌÊÊ2>Ÿ@ H0"‰ÇI¦’¤Òi²Ù…b’ T=x1Ð4£bȤïP+úâÙ›Y©›Õ4MÕQUUQQ$Q) "‚ "Š’( ’Xv.+Œ)áú¼%¹\Ã(*EQÇ—Ô±G49Iáu™µ„+$qe°È¹7F 4æ9ó*Ç^æ¸;Sâ\O‘ãíY¾é[—¸ÖŸçËΟ´çø¤=Ëç]®ö8ù¼Àã¹ ÁØqh·ÜnjsR(Y°.`_µóS?•‰„µÍKÇÞ*ø«Š‚ˆeU*£"ÑøéîtÍrj¦Jã¶4T/Öp†c5Ò;7À0¶ÛõÚÉI± d÷Ý»SC&¶ZĽÓd[?wÒði‚\¡¬Z~ÐQÚú¼-BÇN:ƒzÏJœøÐÉ‘ÛYsÒi†f˜`øgÿéxý^¦f¦¶×°íÌæ«ó9ÆÇx30HÏú^÷𢣛×/{Y´-Ðyç6–á·Ü¹ÜÄ“»Íœ?}ޝ¿»À»ÏY´y ûüL¼æå›nzº_³4?ƒÅ2…u~…¥eÖœnüáþHˆX4A6“G”%À —ËR*–HFãDCÜ/¶•U¬v;só¦Ç,,/-òúE'ׯ_ãæ­ûܺu‡ækWè|ÖN¾X@.å¸uë1Wïtóªg„æó—8¶‘®7C¸}n–—Æxøü%#cÓ$¢1¢A/^—¿/D&•#ŸÍ‘N%Éd²U@UNWÜØŸn ûªwõ¡Q?0Õ –º®£¨*‚(’/Éd2$’I¢Ñ@Ÿ/€×ëÇãõáñl…ÛíÅåñ–ïõáõùñùx}þ­÷{}x½^|~`Xë¤áà ž 0îð•Á²olׯb»ÔD3Ì0à  ÿ `O&DÝ4Ò¨†åH§¢ËÌÔ8‹v;Ãoîä壼xÒÎýÇO¹v÷ wŸµsÿa+÷n4Ó|ëw®^ä»S_Óxñ:·oßçé£G¼yÕźˉ¢ª,[í,ÚÄ£)¼.+ËvB¡(ÅB–DÂÏšÓMQÊ}å U‘·ÔÔ½f·õ´qøwCC7PU QÉçó¤Siâ‰áH €×çÃãõ⮄ÇçÅëóá÷ðùüøýM%&‘HÍf)JH’„ªj»R‘%I¢P(J¥ˆÅbC!ü?^¿¯¿üÝååxðú¼B¡Ðf‹b±ˆ¢(‡SCýGÃmŸ7¶×ÈU HÓuT­¬r)²B:Çëó’/æ)Dbñ‹¶%ÆÆÆ¡³³ƒÛ-·èîzC2`ÕmçÍp7­pûî=G!›&›Ip8ì¥ÿM7Ã=ܾ×BÓõktö³°jgɾÄàP­îñ¸£“ÇOÓýº‹ÞÁn^uuÐóæ c㬭¯ ˆÇ#8n¼þ™\}‡IÌvµpŸÚÒZN1†Q %I"ô±nŸ'â['— z°{m,­-²îZ#‘/Ȳ¸=NÖ.œN·‡pÐG"#™JO$H¥Ó(вyß‘dPk˜±:U=!ØêŹ¡˜V§wWœ‘6àXÓõÍv5J¥‡©ªªe0”d$I.£$"KÒŽ>Œ2šR†FMW+‹Õ‘dƒ¼¤SR d J²A(­1æT°†4:çJüîyžG³Cë oE.õåùº;OËD‘«=y†Ö$Šr¹ýÉn0< ¸rm$SIÆÆÇH¤’&Öa:ÓyÖ¹ NîTòÊ*_.)áð–˜°dhm qôC'Çî0 •¦_99z¿c†ÌÉŸ;9z¿P•²Y´F›²•¾z6F÷hж4­·}›àhmsÓðóÈÖ:‰Å]i¨;Áð£ëaNÞ®ÄõM£Bø9i^(á ŠŒl@ge›6ÓýÁ0b‚¡f˜a‚áOaä yÞôö ªê¾O‰ Å,SãÃÌÎ/098ÀÂÌ,±TEÕQD‰€Ë‰PÈ’O')dRdÒ)J% Y’)ds¤I …ù|ŽB>O"%K ¨e( »Öik¹Îå«—µ®ó9¸Ôx–+-­Ü¸‹+ç¯pîëó\:{–+·Z¸ñè%½Ý<éxJß«—ººž18<ÆÔä ––¬s¬9בU•b6K!/¡¨åÙ«,Ë› âµ½R>k¹9‡„¾:ë©êJ]×Q•ò$SDŠ¥"…B\.O:!O‰Dðü¸Ýn.'öÕ–ì6––m,Ûí8¼>/‘h”t& ›ÊçQó6VWVU²ù±DŸßÇÚú:6»%› »ÝÎúú:^¯—`0H,#“ÉÏå) eUG*×Àišv8•t¿tÓƒê§ö2KÙÙ+pÏž}:’\BV7ÒU ù‰x’T<Ūm™ññI¾º"KEYuÛèàþƒGÜm½ÃÕë·¹s÷%÷<§õéc®]üž›÷á D‰†BL200Àüü,‹Ë Äci¼ëËxÖ×KEdI*§[+*ª¢ ”DÒé —‡k•¥ÕeÆÆF±;„“IÖ«ôô½äöý»Ü¼{‡¦ËMܽ‡‡/îÓÜÒÄMܺuƒÇòêU7SSÓô½~CÏ›^,ÖR™šªoƒÁšn´œëÛµïØÿ¥R ŸÏÅÊâ ñ ) öâ ÙYõ-ãö¯‹‡ÈåÓd ,óóŒMN3e±0o]ÀáX# “ˆÇ‰†ÃÄ"Q$Q@’Y‘Õ€@¦¤m™.W׺ncA}Ë I¯âÄMhÔT´u­\ã«T®_I’*!"Šâæ¿J£"˨rY‘Ô5}S©Üüû¢A¶²n0éè°J¸’YbY¡™û3=k"CËKÁ- Ö;û`C MÓˆEc ŒP(’µ…?ÍTÒ²R·M1ŒJ½éMÃ%šÝ2pùÐÉÑÏË€µ › ÷чN޵¶¹’nÀ]ÎÛt>-«|.Ž~êãƒÏý´¹Ô VÁê>Æ5û×JœøymÇÒ†Ï˦2û§’ÊåÏר¿4à 3Ì0ÁðÏ0dU¥ûõkYÝŠv¤²L1›¦X,¢ê:[u3²,#(J¹gXI ›Î †˜š˜¦ïU/ScŒ¼ald”Çm-gvm…ûÍ—9}¹‰e§‹Ë ç¿?ͧŸ}ÎÕÖVžtÞåéÓ—ÿö{î´¶Ñzû§O~Ι ç›™£X”wï†zÕÝ ìwþ^S5òù<^ ÏÚ"…T9&—ñ‹¹ˆÄ=$’rù¹BO ȧ\½sŸ»;èxÝÇÀÛ , ˬ:Ü‚!’É$Ф¢jCnN¶;°º ä :’¢!«²j kjEÞÝö£ª(usÔw¸TîBº†ª*åã#©ˆ²„ ‰ˆ¢LI,–û/n¤¦J%dI@Ýx¨ehèšJº` ª[u”†ER%¼¬"©e•q{Fˆ¾ûþ·Ï5!I2@¡Ña䇉ÆO*‰TŒŽÕª£Kn©|åº?/}AuSMkÜTw€¡¡”k¯W}g0µ©*ÞdY‰¬j'aJ´½LbMê¿ 5ñ¤EBQ*ý ­’¶ê¢;ZÞÆ£:iø6QYžFó§NŽÝNÒÝ(›ÏXdsÒi†f˜`øS=}½äó…ªu5¶LTÕÿèGKMÓÐ5 M’(e²|A^?–,V ÚŸðìÉS®\»É¥+7¹|á&¾»Äùóg¸pëM§¿çÎÃ;<êave™bI bígf|˜T6M2àg¤˜Ñ¡7<{õ‚Û“ãã,Î/ÊdÑ PQ+uˆ»ò_wN:uvøW{;'îWoSOj§q0üm ®ëhº†¦jÈ’L6›%ãXw:X^±3o]`zÖÂäÔ$3³—qº]ƒAÒé²â§(êOã|;Œ ºcÒ™Ïç‰Åb¸Ýn–—Ëf?SSSÌÎÎb³Ùðx<„Ãá2ìK›ªâÆ~4 ãÝ&¨9o²=ÎØQ“¶K%Ûñ>ƒ=ÌW®-U)ƒ¿aèd³)²¥’ áq¬31g%³4·ÀÕ WùîÌ%^¼crnˆsM\¹tާíÏX¶Z8wþ¾üæ š®=àÁý7ô¾êãyç n<|ÁÔô<““ äó%¢na¯B¾€®©hªF©T$“ÉV&üáx„©é)^tuó¨­ƒ§OžÓñ¤ƒ®Wm4]>Ïo~ó;´wKçÊí_öèCx ùÌ>iÔªª’Ëeñy„¼«s1„\˜RÆš‹c)´R UÈP̧˜Y²ó›oÏñ¿þŒúõùí~ÏWßœåÒ´uö1¿¸J<žDסPT¸ûÚÁn´r«×ƒe5…Í™fё²–fÁ'šðDòäJ’¤£Už#©†Žflµ¦0Œ ªœNëØn}Ÿó¯ÒCQ×Ê’\¢$‰”D¡$”ÝQK"%¡œšŠ* « ’ª¢hº®U ±ú¼ÓjÈüÆîË=î‹ù|‡ËÍÄÄÄOZ-ü)a¹Îнծb2‡Å–¥õ~pË`Æ¥n¦\vºdrY‘¶ÊgŽÝÏm‚ᑪÔщûåv'GKÄ¢NüªÚ|¦œjÚð¡ÎU±êõ2àý8`¨Wê 8v¨‰JRUÖ×ÑSÀ†OCô­i»T­.†Ì4R3Ì0ÃßÒä}hd˜X,VåLºõ$ÜØ1©qÚfβÈê‚•‰¡^=¾Ï…3MœÿæQ­‹øê©Êr¹ßc<Ç,˜,ÙmÌÎÏ1>9ÁèØ[¦f¦Y´-ár¹…B¤R©­TÏzT™z~oæêÙfãÀbûmCe\[[cvnŽÉéI&¦&˜žaiÙ†Ëã&‹’/j7Þ6~ Ìn<(©†À]Û¿‘§§UZiTRö ½ª–®JÓŒÝR¤QUä¦mÕì)’D.%•ÊÎeɳX,st¿|ÍœÇò¿ÿ’Ïþô9_}w‹ï¾»Ëå³ç9sê¾»ÐÌw§¯qùÆ \ÁOŸðèF3CƒÃ8묬ØÉ å,†n 2e>T|>O&Äïñ ú±.ÚxÑÝüm•‚ –3,:ë8ëHáÝzX ‘N% ܤ"N2 /Ù¤—lÄEÜ·N,¸N<ꢋ’Ë&™±­ñ͵6~ýý þÛ/Çïÿüì¿ÿ Ÿ}+÷_0³`#›M£k‘džKÏ×ùï7í|ýdë/Ü4¶­súá§ÛÖiìpr³×Ë­>Ï' Ì™seq… ¬‡ó¬ò8ƒy|Ñ"„@6¯ìŸFkÔ©®m«“­õ@aë˜^1¿’e AK‚ Q* ”„%¹HI.§¨J’€!騚‚¡ê•cV¥PghÉd ûÊ*s ó?ùž?µ÷=‘].¢Ç¾ 3RQ•d–ªÓ2?qò[W¥þ® †ÇÚŠUß©ÐVé…¸aSm^£$ œøt»“i«MÞJoýÕv0<¶¯ùLA±È:9z;·wí`• c2αŸoopÿÁçÀ#¨˜“N3Ì0ÃßʶÌàv»·×lðÔóGwùä×Ç9õE#M§Ïqåòišn]äfË-¿¼Àí[79}á+Ú?exd€ÙÙIçp8׈E2)Òñ$©t~ûd’íW­³TO–íÅLUëfì?ñªšøèP–"jè¢,‘Ëç‰ÇãƒA6›™™ÆÆÆÇb±`[^ÆárŠDHgÒ”DM×<9¬ÊùSTë8š®S’DRé4¾€ûê 3³ÞŽ111Á«««âñ8ÅbñÝj)½f£ÊœÄØH5¶YsÖH™Ô÷XŒ¾÷$}«Dµ¬D._,RÒˆ…¢x<>&ƦyØò€S_}ÍûϘµ{¸{ï9àv{yþ”;çÏÒØø=Wn]§íẺºðÆ}L¾æU×K{ð¸Ü‹…p¢¡)2²¢ïšý±­×¥Aí÷Ð'Q"á k+óDýv„| %¥˜ôõ;q»l„Â.¡@6¡o ‡o¿¿Äg_6ñÏ¿üÿŸþüÃÿüŸùå§9ßÚÁ‚}R1WIkwDf|%ÇÛµ G£\~éáÔ“U~s{žŸß˜å··—øUËÿíê2ÿï ³üê¶•O[–9q“OÖø¾}•“WøºÕÆ/[ì¬Eòˆ¢‚$kûƒ¯Á¶;\¹§¾yçÛ–Z«ëe¡¯ºµJÍ\çòCˆ¶šª É2’¨¡bI¦T’( J¥%A*«¢‚"—s£Þz/€‡£Ì[qºœ;¶ÃúûTr•œX[]Ìer­îïS *©¬ºwƒú¬B*«þdjør•õ* [Mqâ~z›k«f˜a† †ÆùøòŠÅÅŲ;äî©÷¶'Õ6Û ­-whÚÅ›î^zz»yÒñ„³ç/qëöcžµ?¢»¯T:XËn–Š‚Qé!fPžxÆÁµ{F5‘î;1v¯s•µêƒö¢¦}ÀR×u$I"ŸÏ“L&Ë5rN7‹KËXf癜œfjf†¹ù9ì+vœnPT&M¡TBÕ´J/³J#n}«ÿ`+ÿù üdSÀÞm“Œmµ™š¦!H™l–p4ŠÃåbye™¹ùy&§§°ÌͲh[Âív‡Éf³åŒ‡ó=Þ´xÎÊšoû‰£ï“:mÔñÐe/0Ü¡Š@±T$ñã÷,SJ‹)ŠÙJ6‚ ‘ »)¥ÃªH4âÚÕÓ|ôßþžÿïù'þéçÿÊñùGþ—þoüâÓ_ráî}–]A$¹|*‰¢XDÓ@Ó U%š,2¸ãêk—_{¸øÂÍŸ¬sþu€ë=>nõºùæá*Ÿ¶,óå£e¾k_å›¶U¾~¼Ê¯ïØ8ùd7ÖÉ’²GMêŽßí·ö’7,l«‰Þ«¿§±•>ºqŠiåúJU–P$I(•ŠeX,Uj²÷€Y¯×ÏÔÌ,áhdoè7ÁpûDâC§u†9ñ4à 3L0ü oÀÇôÌ ²,h>P(ä‰D"¤R)²™ÙL–T*I8¡P(!”Jˆ‚X{RôSU¦ØÊ %•\¾H<žÄât¹±-Û™[°23;‡¥ÒÜ}Ù¾ŠÛ[®wK¥Ê­8Ê®‚[}Ê6!P×ÿšì/jè†^1öPQÔ-ŸB¡H2™Ä±¾îdqi™ùy+ss ,X—X][Çç—tUEý·ƒòƒêÐö{ßµy†a *å^ziµi‡†f”1%‰T2‰×ë-§çÎÌÑÕÕÅÈð óZZšiiyÊää‚ SÓÁ²ž ìý Ç¨N™d—#i!Ÿ'𺈆}„‚~©°!¦˜ñSÌŠ9‰}=Ün¾Â™3gùê» <¸‡û-ܺ}ž¯»ð£ÈrÙèÅíqáñúȤ󈢄n”Ð%XNÆ+a÷æ˜YMËjEP¦Ä²¿Äôz–ñ•obtÍFé›OÐüÊÅ/o-óÄ’¢$ÕoVµÍE—:Sã:_ñ»†flª†µÖA×t“SÓds93•Ô 3Ì0à  ÿÁ0–ˆ1<:‚(‰*VºnT ?tôJCw½ªÉûjßpØ>ãðsrYQÈ $Ó)B‘0^ŸGÅàŶlÃf[Æn_aÝáÀãñ EˆÇ¤S2ÙÙ|ž|¡H±XBÅr» Mû‹8ÎÿáÆ>“ã28©H²Œ ŠŠEò¹<™t–d2E$Åçóãt¹X¶/³h[bپ̺Ó×ï%‹’ʤ) ¥­–ƸŽÁTõÄ^ßÑgQ§®FååëYG‘DQ¤/‹ÆÈg3” \.ËËNüþ(¢$mWÛêyPZ·±; »–BŸÉdðz=¬¬”[œ¸] Aˆ?D4è%õ“ËeÈç‹D"1¢á^¯Ÿ•uNŸwû+ö%âñšZÞf›mÛò2++kx<> Åù|Žt*A4&ÇÉe³ˆR EQõr?Á’¤Q42E•tQ!‘)ñfÚÏ­K!ý0©ÑÆ)¶Ô¹ët}ׇgŠ¢°ººÆÔŒI–M04à 3Ì0ÃÿF0Ì ô Šâ®Â½óûßu½Ò.£b–‘N§‰ÇãD"‚Á Ÿ¯ÜlÝíõ”ÿï÷á øñøü~áp¸ÜÜ=“¥T,!ËòîCsüu²¤a ª¢(’ÍfI&’„Âaü^¿¯ß‡×¿u¹½^¼>@€h4J*•"—Ë!ªZ§Kl=u Fm¥§f §^'„ìP1@Ó*6T$I (%TUÛt®4öD£¨Ý htv¥T«ªJ2™Äãñâv{…CƒQâ‰$ÙLžl>Ÿ¿<ˆD#$’I2Ù,%a üv+S4Gusïʃ‡b©X>÷âqBá0>¿¿rŽù6Ï9ǃ¯Œ¡Ph³'c¡P(·¥Ð ë™ä׆µªWÒ õ­ÚÂ04v·üe¹ÒºÄƒËåÁëóŽÄÈå²H…ª(Uš¿Ëä‹9‚áK¶%–WVp8ø}n<^/>¯/ˆ/$›ËUZ›hd²‰^·—Û‡(*¤“qÜ.'‹‹6lKËØWVq»œÌYf˜ž›Çå âõzq¹œ¸=n’©²¤€Š^î}ˆÁ»ƒáA¡ï£Êþƒa6›eqÉÆâ¢í/æ!f˜a†f˜`ø£p€l.÷ÃÖ×øŸ«Lt7êÁ$IBEJ¥ùBž\.G2“&šˆІñü¸=ÖNVÖV±Ùl,--a·Ûq¹\› N&“¡T*¡üX5bæ0G¡©…BD"A Àår±²²‚Ífcyy™µµ5<Á`h4J:&›ÍR(”"%QÚìÉxèkðÀú=® ÜJÛMàjÇÔZ ·Nw€¡$I„Ãa–—íŒO248̪ÃA(èÇ>?E,èAD4M'Ÿ/â„Y²/³²¶ŠËå& à÷ðx½8].üþÅBq+Ã@Ó‘e‘l:C&“CÓ D¡H:$ F"D"1æ­Xæ­,­¯³´le~až%›`(B¡(ì½Oë©4ê<Ž;÷ѻ֦Ö{>íXŸD2ui‰ÕUÇîm4ÁÐ 3Ì0à  ÿzÀpäí(Ñx¬fËŠC§Àíóä¹Ú9RUU¥Ê¤T"•I‹Ç „‚¸„ÕJ¡qxÀáà÷V/³P(  ‡$“ñŠ Í2Zò_ÿ§ÿJû“ç„BqdQA®8ͦÒiB± ‰Dœp*E²P “͉D‰Å∢¸µúÛ:×èuA®®é 9R‰ÙLEÑ*ߧׯÜÖk,Dûð]Á°EyÛz}>–lË$©¿ˆû¦9‰1à 3Ì0ÃÃwöÕlöeJ¥Ò;+†²¬‘¯4w/[à;°.Ú˜¶Ì16>ÉØø$SÓ¬K8œnBáh¥œtð~2ê€BÍñc÷ëÜ2®ÉªJ6Ÿ# ³æXgaÑÊÔÌ ““LOOcµZq:„B!²Ùì–+ð9§kBu?¼ê–Õ UË%õ°€T³™,‡ƒÕÕU‚Á ñx’PÐÏÊÒ" ‹D“I$E-w<¬<ˆ*ó¼Y}ÍË…No-¤œ!J…"‰dœT*…,É›ÊàæúiÆÖfè›™³ÀÎ~«;6xÛýo{a¡¡n5ŽK-ån߇©u*†û÷ªóqÝéľ²J±(üäÕB Í0à 3Ì0ÁðLX½>3sò¹üžï•$™l6K4Åã󲺾ƼÕÊôô,cã¼›`Æ2‡Í¾ŒÛã!Ë嶇ÿ“ys˜ã¯EY¬1tdY%É EX[w27oel|Šñ‰)fgX¶¯àõz‰F£är¹½{0Ö¥°»o?õªEò ³¢¦f2Ün‡Ÿ'„ÇÀí/údÒY–Ö×™Z´â‡7]ƒ j‘çŽNîMÜ!Þ2@qdIÉf3äòE¯J‘Ýú¿Q•JºÐ醆Q-3U4öPZ¡¾Àz¯ ëÝׇQo÷`à’ °¼bg}݉¦÷csc†f˜a† †ï8ѧŒŽ½ÅK$ðúƒ¬;],.Ù™›gjÚÂäÔ só ¬¬–{ü…ÃáMs— ãŒÍ47C7{û™ÃÿÆ_]×ÑÔrº¶,Éäóyb‰$¯ŸÕµuæ¬LM[˜š¶`]\Âåö EH¥Ò”JU=è}䰦ЏŸz¦È’L&Sn;‹Åˆ„#„ÂaB¡¡`ˆÅÅE,ssø|>$IBS4 UGÖUDIÄHä!#!‹ ÉLš\¾°;%ý ~;·¡à3êû¾C¥žî5׫^¬3¥4•I³´lÃíñüE]f˜a†f˜a‚á;Œ\!Ïàðó ¬;Öñù|„ÃaR©ù|I”‘$Y–QUUU7kœL4‡9~"“aÝ@×ʽUUE–$I¦TH§3„B!\.Ëv; Ö,³³ÌÍϱ¼bÇãõ‰•UFYV~¼OõÔÈÕ€³ ðÕ5M-ƒo©T"—Ë‘ÍfI¥RD""‘‰D‚d2I6¡˜/ Š"’(!UŒb±…\tã`µl/Uõ]Ócã{ØÁá²–Ú{˜‰@0fѶD 0ÁÐ 3Ì0à  ÿÚÁPÓ4²Ù,ùBA$ ¥btaìtØ3‡9ÌñFŒåk\–eDQ¤X,’Ïç·+Åôãt»XY]eѶ„Ífc}}ÇC$!•JQ,÷®gܯÎú”+£¸Uý¬kÆff‚¦•CeQ¦X(’ÍfÉd2¤R)’É$ÉLšx2I4%™H –ñÌ»¨i{©í‹w1èÙK4~ÀºÖ›rZc=œn7‹KKÄb1 Í0à 3Ì0Áð¯ :R«Ìasü5ò"š®#J¹|žd*E$Áàóùðù|x½Þ]á÷û‰D"$“Ir¹‚ Ëòf­ß¡${üËÁ ceX”e³÷i±X¤X,‘ËfI§Ó E©_Ŭg½8`]ë¸zLcG;±ÌzïñûÔ4ÚWWX´ÙH¥Ó&ša†f˜a‚¡ †æ0‡9þ# ]×Q…R©D&“!™L‰Dðûý›Ð¸ý~?Á`p«'c.(ЍªVÿ=è`¸_›]ÕöÎ|x0ÔÿŒ`hüyÀPÓ4æ°Ù—)–Š&ša†f˜a‚á_{*類î›Ãæø+1RîçW*•H§ÓƒA\.«««,//c³ÙX]]ÅãñàóùˆD#$’I²Ù,…Bb±X®”eTME?L«šZé§;]:ë} õi™{ªvõµˆ‡¯Ò2w)t5–³+%µåîa½i°;ö“¸½,ó³CA Í0à 3Ì0Áð?L¡9ÌasüÄ&÷©©‘h‡ÓÍ‚u‰É©ÞŽO2=3Ë⢠—ËC(!›Í"I?b\=&5ûôAÜ7ô ¨«·ýD=px:ºÏ6/-Û°-/“H&L04à 3Ì0ÃC Ías˜ãÏ9˯jx¯ëhš†"+‹ER©@‡ÃÁB%5ubj’y뫎rjj2™¤P(n¹£Ôv¢`dq¯¾ƒçΚÀƒÍzê ßÅuCe,s³¬;ds9 Í0à 3Ì0ÁÐCs˜ÃæøéNþ5MCUUEA’eDA$›Í‰Fq{=ØWì,,Z™›e~~žååe\.¡PˆL&ƒ(ŠõC`= ãŽ65tc(óC °^`¬±Íª¦ñv| À¿ÿ>2ÁÐ 3Ì0à  M04‡9ÌaŽKü1ÇFFI’(‹ rÙétšxŸ/·h0þ¶÷gÔm®ªÕG‡{(›§j¬CQ!¡jš †f˜a†f˜`h‚¡9Ìasüeâ.Ò dY¦/N§‰F¢ü>?>Ÿ¯×‹×ëÅãñàñ”ÿï÷û …B$ 2™ ¥R I’ЪaÉ8ÄvÕë8ªR]ÜG¹Üs÷QÓÙ4ã#$R©¿¸¿eæ$Æ 3Ì0à  Ías˜ÃýhµMQA —Ë‘J¥ˆD"ehô—¡qËÐèÁçó ‰D"$Ir¹‚  ªê†‡M;ý‘Á0 0>9N6—ýË;ÌIŒf˜a†&šÃæ0Ç@ 4þ —e€$Id³YÂá0n·›µµ5–——±Ùl¬¬¬àr¹ðù|„Ãa‰Ùl–B¡@±XDE$IBUUôZm#êu'­³5EÍm=d}¤¬»œXfgÉçó&ša†f˜a‚¡ †æ0‡9ÌñHãÏ¿<]Ód2‰ßïgee………fggYX°²¼lÇårˆÇãäóy$QB–eEAÓ´M·ÕCÿ½¨å‚z˜<àwÖE+Ëv;%¡d‚¡f˜a†&š`hs˜Ã%@iü;|f›Ê¨Ë…"¸\n–––±X昜œf~ÞÊÊÊ*‡h4F&“AËu‹›°xÐߣ~°æïvº¦îP Ç''p{=H²d‚¡f˜a†&š`hs˜ÃæøQ¡E7D2×çǶ¼ÂìܓӌOL1c™Ç¾ºŽÇ[îÁX*•¶J ‰;]Nw¨Œ†¾ +CVU†GGˆÅbµk&M04à 3Ì0ÃC Ías˜Ã?‚‚YãwåÔT‘x<ŽÇãaii‰™™ÆÇÇ™žžÆjµâp8ðû· ñPލ{ýΨ‚G P*Ò7ÐO!_ø‹ü;fNbÌ0à 3Ì0ÁÐæ0‡9Ìñ—„{€ÍFí¡¦ihª†PH§Ó„B!\.6›ÙÙY¦¦¦˜ŸŸÇn·ãõz‰Åbär9E©ßtfÇïb‰8ƒÃCåÆöÆÌIŒf˜a†&šÃæ0‡9þ:™²ò7E×uTUEQdYæÿßÞݬ¶ P}ÿ× …Ð… ‰7±1¦B&‘0VUÇòí".ŠK¡”6Í9ð­/£a²Ûí²\.SJÉl6Ëd2IUU©ªêõ”±iš¬V«ô}Ÿñ4^þÎxΧú!ׯ3 ÃåiJ’ CÀÇ8Žy>>g†‡ì÷ûìv»l6›t]—Åb‘º®øÍÆ|>OÓ4yêºl·Û×Âûé47w·/§ŽoxDK’dðþÞ{çó9Çã1}ßg»Ý¦ëº´m›æs“RJêºN]×y¨R——çRJ®>\å~6ý~ñŒCI’ahð6‡áÏÞ?N†!ûý>ëõ:OiÛ6¥”ÜÜݦ[-3Ž£a(I2 Cþúèû“ߺ0øú/}¾þÊå5†¡$É04 xÃÕ­¤’$ÃÐ0ÃP’d†`J’ Cà CI’ah€a(I2 C0 %I†¡a†¡$É04 À0”$½Ÿ¾0]n“Ä«ÐíIEND®B`‚flickcurl-1.25/docs/html/flickcurl-section-serializer.html0000644000175000017500000002724412210726306020721 00000000000000 Serializer

Serializer

Serializer — Serialize a photo to RDF Triples.

Description

Serialize a photo to RDF Triples.

Details

flickcurl_serializer

typedef struct flickcurl_serializer_s flickcurl_serializer;

Serializer from Photo and metadata to RDF triples


flickcurl_serializer_factory

typedef struct {
  int version;
  void (*emit_namespace)(void* user_data, const char* prefix, size_t prefix_len, const char* uri, size_t uri_len);
  void (*emit_triple)(void* user_data,
                      const char* subject, int subject_type,
                      const char* predicate_nspace, const char* predicate_name,
                      const char *object, int object_type,
                      const char *datatype_uri);
  void (*emit_finish)(void* user_data);
} flickcurl_serializer_factory;

Triples serializer factory

API version 1 is all that is supported.

int version;

API version

emit_namespace ()

(V1) emit namespace callback

emit_triple ()

(V1) emit a triple

emit_finish ()

(V1) finish emitting

flickcurl_new_serializer ()

flickcurl_serializer * flickcurl_new_serializer         (flickcurl *fc,
                                                         void *data,
                                                         flickcurl_serializer_factory *factory);

Create a new triples serializer for generating a RDF triples representation of a Flickr photo.

The factory must contain the methods and the correct factory API version as described in flickcurl_serializer_factory

fc :

flickcurl object

data :

user data for factory methods

factory :

triples serializer factory

Returns :

a new serializer object or NULL on failure

flickcurl_free_serializer ()

void                flickcurl_free_serializer           (flickcurl_serializer *serializer);

Destructor for triples serializer object

serializer :

serializer object

flickcurl_serialize_photo ()

int                 flickcurl_serialize_photo           (flickcurl_serializer *fcs,
                                                         flickcurl_photo *photo);

Serialize photo description to RDF triples

fcs :

flickcurl serializer object

photo :

photo object

Returns :

non-0 on failure

enum flickcurl_term_type

typedef enum {
  FLICKCURL_TERM_TYPE_RESOURCE = 1,
  FLICKCURL_TERM_TYPE_BLANK    = 2,
  FLICKCURL_TERM_TYPE_LITERAL  = 5
} flickcurl_term_type;

Triple part types

These are the same enumeration values as used by Raptor V2 raptor_term_type enumeration and Raptor V1 raptor_identifier_type enumeration.

FLICKCURL_TERM_TYPE_RESOURCE

resource/URI term

FLICKCURL_TERM_TYPE_BLANK

blank node/anonymous term

FLICKCURL_TERM_TYPE_LITERAL

literal term
flickcurl-1.25/docs/html/flickcurl-legacy-auth.html0000644000175000017500000000564312210726306017310 00000000000000 Authenticating Flickcurl for Legacy Flickr Authentication

Authenticating Flickcurl for Legacy Flickr Authentication

Introduction

This chapter describes the deprecated legacy Flickr authentication. This may be removed at any time by Flickr after August 2012, so this functionality should be migrated to the Flickr OAuth authentication

flickcurl-1.25/docs/html/flickcurl-section-general.html0000644000175000017500000001527312210726306020164 00000000000000 General

General

General — General functions.

Synopsis

#define             FLICKCURL_DEPRECATED
#define             FLICKCURL_MAX_ACTIVITY_EVENTS
void                flickcurl_array_free                (char *array[]);
char *              flickcurl_array_join                (const char *array[],
                                                         char delim);
char **             flickcurl_array_split               (const char *str,
                                                         char delim);

Description

General functions.

Details

FLICKCURL_DEPRECATED

#define FLICKCURL_DEPRECATED

deprecated


FLICKCURL_MAX_ACTIVITY_EVENTS

#define FLICKCURL_MAX_ACTIVITY_EVENTS 20

Max number of activity events.


flickcurl_array_free ()

void                flickcurl_array_free                (char *array[]);

Free an array.

array :

C array

flickcurl_array_join ()

char *              flickcurl_array_join                (const char *array[],
                                                         char delim);

Join elements of a C array into a string

array :

C array

delim :

delimeter character

Returns :

newly allocated string or NULL on failure

flickcurl_array_split ()

char **             flickcurl_array_split               (const char *str,
                                                         char delim);

Split a string into a C array

str :

string

delim :

delimeter character

Returns :

newly allocated array or NULL on failure
flickcurl-1.25/docs/html/flickcurl-section-core.html0000644000175000017500000012777612210726306017513 00000000000000 Core

Core

Core — Core library functions

Synopsis

typedef             flickcurl;
extern const char* const flickcurl_version_string;
extern const char* const flickcurl_license_string;
extern const char* const flickcurl_copyright_string;
extern const char* const flickcurl_short_copyright_string;
extern const char* const flickcurl_home_url_string;
extern const char* const flickcurl_flickr_replace_service_uri;
extern const char* const flickcurl_flickr_service_uri;
extern const char* const flickcurl_flickr_upload_service_uri;
void                (*flickcurl_message_handler)        (void *user_data,
                                                         const char *message);
int                 flickcurl_init                      (void);
void                flickcurl_finish                    (void);
flickcurl *         flickcurl_new                       (void);
flickcurl *         flickcurl_new_with_handle           (void *curl_handle);
void                flickcurl_free                      (flickcurl *fc);
int                 flickcurl_get_current_request_wait  (flickcurl *fc);
int                 flickcurl_get_extras_format_info    (int extras_format,
                                                         const char **name_p,
                                                         const char **label_p);
int                 flickcurl_get_feed_format_info      (int feed_format,
                                                         const char **name_p,
                                                         const char **label_p,
                                                         const char **mime_type_p);
void                (*flickcurl_curl_setopt_handler)    (void *user_data,
                                                         void *curl_handle);
void                flickcurl_set_curl_setopt_handler   (flickcurl *fc,
                                                         flickcurl_curl_setopt_handler curl_handler,
                                                         void *curl_handler_data);
void                flickcurl_set_data                  (flickcurl *fc,
                                                         void *data,
                                                         size_t data_length);
void                flickcurl_set_error_handler         (flickcurl *fc,
                                                         flickcurl_message_handler error_handler,
                                                         void *error_data);
void                flickcurl_set_http_accept           (flickcurl *fc,
                                                         const char *value);
void                flickcurl_set_proxy                 (flickcurl *fc,
                                                         const char *proxy);
void                flickcurl_set_request_delay         (flickcurl *fc,
                                                         long delay_msec Param2);
void                flickcurl_set_service_uri           (flickcurl *fc,
                                                         const char *uri);
void                flickcurl_set_replace_service_uri   (flickcurl *fc,
                                                         const char *uri);
void                flickcurl_set_upload_service_uri    (flickcurl *fc,
                                                         const char *uri);
void                flickcurl_set_sign                  (flickcurl *fc);
void                flickcurl_set_tag_handler           (flickcurl *fc,
                                                         flickcurl_tag_handler tag_handler,
                                                         void *tag_data);
void                flickcurl_set_user_agent            (flickcurl *fc,
                                                         const char *user_agent);
void                flickcurl_set_write                 (flickcurl *fc,
                                                         int is_write);
void                flickcurl_set_xml_data              (flickcurl *fc,
                                                         xmlDocPtr doc);

Description

Core library functions

Details

flickcurl

typedef struct flickcurl_s flickcurl;

Flickcurl session object created by flickcurl_new() and destroyed by flickcurl_free()


flickcurl_version_string

extern const char* const flickcurl_version_string;


flickcurl_license_string

extern const char* const flickcurl_license_string;


flickcurl_copyright_string

extern const char* const flickcurl_copyright_string;


flickcurl_short_copyright_string

extern const char* const flickcurl_short_copyright_string;


flickcurl_home_url_string

extern const char* const flickcurl_home_url_string;


flickcurl_flickr_replace_service_uri

extern const char* const flickcurl_flickr_replace_service_uri;


flickcurl_flickr_service_uri

extern const char* const flickcurl_flickr_service_uri;


flickcurl_flickr_upload_service_uri

extern const char* const flickcurl_flickr_upload_service_uri;


flickcurl_message_handler ()

void                (*flickcurl_message_handler)        (void *user_data,
                                                         const char *message);

Flickcurl Message handler callback.

user_data :

user data pointer

message :

error message

flickcurl_init ()

int                 flickcurl_init                      (void);

Initialise Flickcurl library.

Returns :

non-0 on failure

flickcurl_finish ()

void                flickcurl_finish                    (void);

Terminate Flickcurl library.


flickcurl_new ()

flickcurl *         flickcurl_new                       (void);

Create a Flickcurl sesssion

Returns :

new flickcurl object or NULL on fialure

flickcurl_new_with_handle ()

flickcurl *         flickcurl_new_with_handle           (void *curl_handle);

Create a Flickcurl sesssion from an existing CURL* handler

This allows setting up or re-using an existing CURL handle with Flickcurl, however the library will call curl_easy_setopt to set options based on the operation being performed. If these need to be over-ridden, use flickcurl_set_curl_setopt_handler() to adjust the options.

NOTE: The type of handle is void* so that curl headers are optional when compiling against flickcurl.

curl_handle :

CURL* handle

Returns :

new flickcurl object or NULL on fialure

flickcurl_free ()

void                flickcurl_free                      (flickcurl *fc);

Destroy flickcurl session

fc :

flickcurl object

flickcurl_get_current_request_wait ()

int                 flickcurl_get_current_request_wait  (flickcurl *fc);

Get current wait that would be applied for a web service request called now

Returns the wait time that would be applied in order to delay a web service request such that the web service rate limit is met.

See flickcurl_set_request_delay() which by default is set to 1000ms.

fc :

flickcurl object

Returns :

delay in usecs or < 0 if delay is more than 247 seconds ('infinity')

flickcurl_get_extras_format_info ()

int                 flickcurl_get_extras_format_info    (int extras_format,
                                                         const char **name_p,
                                                         const char **label_p);

Get APi extras format parameter value information

As described 2008-08-19 in http://code.flickr.com/blog/2008/08/19/standard-photos-response-apis-for-civilized-age/

extras_format :

input param - extras format index

name_p :

output param - pointer to store feed format name

label_p :

output param - pointer to store feed format label

Returns :

non-0 if extras_format is out of range

flickcurl_get_feed_format_info ()

int                 flickcurl_get_feed_format_info      (int feed_format,
                                                         const char **name_p,
                                                         const char **label_p,
                                                         const char **mime_type_p);

Get feed format parameter value information

As announced 2008-08-25 in http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/

feed_format :

input param - feed format index

name_p :

output param - pointer to store feed format name

label_p :

output param - pointer to store feed format label

mime_type_p :

output param - pointer to store feed format mime type

Returns :

non-0 if feed_format is out of range

flickcurl_curl_setopt_handler ()

void                (*flickcurl_curl_setopt_handler)    (void *user_data,
                                                         void *curl_handle);

Flickcurl curl options handle callback.

For use with flickcurl_set_curl_setopt_handler() to set curl handle options once Flickcurl has created the CURL* handle internally.

NOTE: The type of curl_handle is void* so that curl headers are optional when compiling against flickcurl.

WARNING: This callback is called with two void args in the order curl handler user data, curl handle (CURL* pointer) - take care in getting them correct in implementation.

user_data :

user data pointer

curl_handle :

curl CURL* handle

flickcurl_set_curl_setopt_handler ()

void                flickcurl_set_curl_setopt_handler   (flickcurl *fc,
                                                         flickcurl_curl_setopt_handler curl_handler,
                                                         void *curl_handler_data);

Set curl set option callback handler.

This handler is called for every curl request after all internal curl_easy_setopt calls are made on the internal CURL* handle and just before curl_easy_perform is invoked to start the retrieval. Thus, this callback can override any internal configuration.

If a simple once-only CURL configuration is needed, using flickcurl_new_with_handle() may be easier.

WARNING: The curl_handler callback is called with 2 void args in the order user data (curl_handler_data value), curl_handle (CURL* pointer) - take care to use them correct in implementation.

fc :

flickcurl object

curl_handler :

curl set options handler (or NULL)

curl_handler_data :

user data for handler (or NULL)

flickcurl_set_data ()

void                flickcurl_set_data                  (flickcurl *fc,
                                                         void *data,
                                                         size_t data_length);

Set web service request content data.

fc :

flickcurl object

data :

data pointer

data_length :

data length

flickcurl_set_error_handler ()

void                flickcurl_set_error_handler         (flickcurl *fc,
                                                         flickcurl_message_handler error_handler,
                                                         void *error_data);

Set Flickcurl error handler.

fc :

flickcurl object

error_handler :

error handler function

error_data :

error handler data

flickcurl_set_http_accept ()

void                flickcurl_set_http_accept           (flickcurl *fc,
                                                         const char *value);

Set HTTP accept header value for flickcurl requests

fc :

flickcurl object

value :

HTTP Accept header value

flickcurl_set_proxy ()

void                flickcurl_set_proxy                 (flickcurl *fc,
                                                         const char *proxy);

Set HTTP proxy for flickcurl requests

fc :

flickcurl object

proxy :

HTTP proxy string

flickcurl_set_request_delay ()

void                flickcurl_set_request_delay         (flickcurl *fc,
                                                         long delay_msec Param2);

Set web service request delay

fc :

flickcurl object

flickcurl_set_service_uri ()

void                flickcurl_set_service_uri           (flickcurl *fc,
                                                         const char *uri);

Set Web Service URI for flickcurl requests

Sets the service to the default (Flickr API web service) if uri is NULL.

fc :

flickcurl object

uri :

Service URI (or NULL)

flickcurl_set_replace_service_uri ()

void                flickcurl_set_replace_service_uri   (flickcurl *fc,
                                                         const char *uri);

Set Web Replace Service URI for flickcurl requests

Sets the replace service to the default (Flickr API web replace_service) if uri is NULL.

fc :

flickcurl object

uri :

Replace Service URI (or NULL)

flickcurl_set_upload_service_uri ()

void                flickcurl_set_upload_service_uri    (flickcurl *fc,
                                                         const char *uri);

Set Web Upload Service URI for flickcurl requests

Sets the upload service to the default (Flickr API web upload_service) if uri is NULL.

fc :

flickcurl object

uri :

Upload Service URI (or NULL)

flickcurl_set_sign ()

void                flickcurl_set_sign                  (flickcurl *fc);

Make the next request signed.

fc :

flickcurl object

flickcurl_set_tag_handler ()

void                flickcurl_set_tag_handler           (flickcurl *fc,
                                                         flickcurl_tag_handler tag_handler,
                                                         void *tag_data);

Set Flickcurl tag handler.

fc :

flickcurl object

tag_handler :

tag handler function

tag_data :

tag handler data

flickcurl_set_user_agent ()

void                flickcurl_set_user_agent            (flickcurl *fc,
                                                         const char *user_agent);

Set Flickcurl HTTP user agent string

fc :

flickcurl object

user_agent :

user agent string

flickcurl_set_write ()

void                flickcurl_set_write                 (flickcurl *fc,
                                                         int is_write);

Set writeable flag.

fc :

flickcurl object

is_write :

writeable flag

flickcurl_set_xml_data ()

void                flickcurl_set_xml_data              (flickcurl *fc,
                                                         xmlDocPtr doc);

Set web service request content data from XML DOM.

fc :

flickcurl object

doc :

XML dom
flickcurl-1.25/docs/html/flickcurl-section-blogs.html0000644000175000017500000003157212210726306017655 00000000000000 Blogs

Blogs

Blogs — Posting photos to blogs

Synopsis

                    flickcurl_blog;
flickcurl_blog **   flickcurl_blogs_getList             (flickcurl *fc);
                    flickcurl_blog_service;
flickcurl_blog_service ** flickcurl_blogs_getServices   (flickcurl *fc);
int                 flickcurl_blogs_postPhoto           (flickcurl *fc,
                                                         const char *blog_id,
                                                         const char *photo_id,
                                                         const char *title,
                                                         const char *description,
                                                         const char *blog_password);
void                flickcurl_free_blogs                (flickcurl_blog **blogs_object);
void                flickcurl_free_blog_services        (flickcurl_blog_service **blog_services_object);

Description

Posting photos to blogs

Details

flickcurl_blog

typedef struct {
  char* id;
  char* name;
  int needs_password;
  char* url;
} flickcurl_blog;

A blog.

char *id;

ID

char *name;

Group Name

int needs_password;

needs password

char *url;

URL

flickcurl_blogs_getList ()

flickcurl_blog **   flickcurl_blogs_getList             (flickcurl *fc);

Get a list of configured blogs for the calling user.

Implements flickr.blogs.getList (1.0)

fc :

flickcurl context

Returns :

non-0 on failure

flickcurl_blog_service

typedef struct {
  char* id;
  char* name;
} flickcurl_blog_service;

A blog service.

char *id;

ID

char *name;

Service Name

flickcurl_blogs_getServices ()

flickcurl_blog_service ** flickcurl_blogs_getServices   (flickcurl *fc);

Return a list of Flickr supported blogging services

Implements flickr.blogs.getServices (1.12)

fc :

flickcurl context

Returns :

list of services or NULL on failure

flickcurl_blogs_postPhoto ()

int                 flickcurl_blogs_postPhoto           (flickcurl *fc,
                                                         const char *blog_id,
                                                         const char *photo_id,
                                                         const char *title,
                                                         const char *description,
                                                         const char *blog_password);

Post a photo to a blog/

Implements flickr.blogs.postPhoto (1.0)

fc :

flickcurl context

blog_id :

The id of the blog to post to

photo_id :

The id of the photo to blog

title :

The blog post title

description :

The blog post body

blog_password :

The password for the blog (used when the blog does not have a stored password) (or NULL)

Returns :

non-0 on failure

flickcurl_free_blogs ()

void                flickcurl_free_blogs                (flickcurl_blog **blogs_object);

Destructor for array of blog objects

blogs_object :

blog object array

flickcurl_free_blog_services ()

void                flickcurl_free_blog_services        (flickcurl_blog_service **blog_services_object);

Destructor for array of blog services objects

blog_services_object :

blog services object array
flickcurl-1.25/docs/html/appgarden-commercial-picker.png0000644000175000017500000014652612210726306020304 00000000000000‰PNG  IHDRàhÍIDATxÚìýoŒ×çöì,0@0»˜Y`_ÌìË 0@ˆ« °/ö 1Ï*X@¼xF`é  œÐ×/ÄdžŒï(Ýû€–ïš¶/è±Cï(ô‹úØ@hM8rèÈLD;¢“’“’‡SRY¢Ý%uÛmÙ’ÒRü»ç_UúË"›­þ ø@ÝÍbÕ©sNÕ9ßóûsV>ÿüsðÅ`• @€"D ˆ@»$Ï¿ePùÙŸÑ/¼9'?£Ã/˜tqûsÚþÀ¢'žRçàçzÅ¢í»¸b¶Î¾K‡Ÿòî™ÿ¼ºvý¾ìëç,:öâÏèÁoÿþèûUúúw_§ç_=O¯ßý÷±}9ØÇÎÓ5<äÌ/O¿x< æá‡tê*Ug~îÿûC?§»¶b¶éØw#îåyW ×¹Eæåo§oËòê].Üï©>À],—{;Ç¥<û¶ÿï¼M[wkÅ\žÐWcí‰Ë÷‰|ÿ]úÚíùµÎßÅÖÛ{¨pÿZÓéë÷ÖÝx%^ô>øÊ÷~Ã_ÿ€¾Û^«ôµo§¯=ߦϼýD ÷³ü|{›¶®^×`¿0 Y’ÿt“¶¯_7A¿;]õ6ép¢¨}ƒÎßÓ~‹Ž?¾iåüþOm_ Ý‹<å.úmã®W,KFZ“.уA Ñ™ëé'èLHpÁ±~vBϳ2å§Þ`üŒž_]#óòö Qú~ý–¬å *q% 1èäÚÕ%Ä•½í³ŠEZÂÎÄ[¶¯nÒ©·ÎÓ©·-ñÿÚG2ÆÐ|ë]zæYï>¿ÿú¥H¼ÓïÏ䃵°«ëC¯“q5î;[ôÄ#akᩈã·>ø€VWßfíòºh—2k—ò³oÒ÷_ùÁõÈØËµ3–¼×·Ù=ŸÝb»N'WîÝç?Y´HJsñìyÑgJ¿!Ž{âåwi•gûœ‘Jnœ»ÄἩ¾ÏËʯs>t—«[¾6qúçÅ3k¬MÞPçù=óÊ»1÷ À}+?K/zepŒw»<üú•Èólœ5éë –º¯2èüöâV²Õ€•ì«,;æ7IŸ &”œäÐÏ’¯ôèÄûÛKýþ,ÌW^ çûg“ϱñöÏé«ý‰¥7éØ?­ÑéµMÖÍí-zþÐgÇ>»æÿÞU+`MîQùPXx?¸j«ï\¥cÿ06Ñ7¿»:C~F«Ï&¹6¯ÒóomÍlÓ¯=kR;á<¥W?ÀË@úDàCib Wiõƒ[1òvº8ćޠµE¶4`¢$(0Ÿ`ñoç_}-u‚ý>¿šê~HǵûÜé÷“¹Nß ÊGvžAó䳫©cD¿ùê•è>ôPüýüH ¸ç¿=g<ªO^Mýýò?]™Ý¦3hŸÛÆ @ú…š{>!|Y³¨l_¡RT¢æ†WްB}íEkî{Z{õõ¥Íàbòr8þ1.ALè>5QûÍÇ_‹ÎÈ©YwúýyEà×_¼´³N•I•µéáÙ.ôÝwOîóó·¬Oιvúýä6û ÔfQ"0Þò½kW¯Òùs›´±íÅWn]Þ¤ã/¿ï¢ч<áÜ×|n¥ŠPÖSu­kçÌPž ,l‡2‹zn²áú`–ÂY}÷lT gN’C`¸Žçzä5–ôgÌOòû9(Œž?“>Sã‰gÞßð£m&nä6×>ˆp{Œpà gAÊP¾Ÿ¯+××~nwЗ—#…P~_f-?Þ‹ßgp†Œl³«—.—˜nj“ê¨kù3¾*ÉÜHŸxÖé?oÒá`­ÞÓ´Iü±“äkgXøýoÏ¿Qýƒ/§ÌÒa!KG8ALº½ê˜e3`µr,r;ýþ,Óáý·‚í0CòŒ­.’¬%mŠp·<~9ÍBƒgß^ m{túzú6Å…"pIrü1‹‰À¯½.9L8Þp¡H“Ö’÷ýïÙ\ZÊ÷g²XñxÂ÷gdÈšê´5ŒË˜ùµï²=ôZ‚ Y™@‹Ø§0na1øC79 D €¼"0hÁââëÚ6wÕt`.›×Ùÿ×·i{ûƒÿžfë„¶HH¯ÓZTšÀÞƒ‡ºµ”ïÏŒ}<÷NDη“ã×®_Ч^øahÿÇÕ3Whˉ ^/Q®F'¸¹uý°ÛèÚêk)ÝA_Ó\}×ùï Ñwn±¾³Ÿ±"@î¶¼EÇŸZa!»B‡¿½J_û6ÛpüÙŸÓ±W×hí£Ù"pûýwÃ,¶Aû3/¾Éâ °mGlGðÌÛŸ%ÆÓ•IL¢bÔQ³Óï/,z¿ý&™õµ~î<Û¬~5Æô:sKõ×Ç7W¯$[YE ç‚ég+”½ó¾køÛÛo!¢®µýÁZÈZŒ=<ϲË~õ¡Òƒ¿Aϼüû D €¼s"0Z}í)“.^eÂeû*­>{<ôù±Û&œzñx8çÕ$×ÈpfNž æÚŒ¤*¥WÎÓÅ>#ó§oG¸O¾Næör¾Ÿ†(áë%LáúzþE¶wã# 1ocȬŠçUYÖY¬`h½o'‰Àã‘nžqn¬_}Ü µË×¥P}$)þ0Êø‡tìÌ–z‘åü®  郎GæpÓ||möêÌzôÍAMx» =AÌ"ñg®&ïI7Ï÷Ó²öOoìÀö8ø@Z O¿xÒ£'^y—ÌËÑí{í‹Å F|—'‰9»E§®œîÖ׃q|½xK S?ç&Tz$Jœ¾Cç/ào—ˆ>vþm“¾ùÈjô}~û QÞÙ}÷Åú.÷´¼Ó°ìŸëlÒÚšM&cíý-–ÙñΗ+Ê"tM¹‘^|ÿŠ(«yn“6®ïÎ÷wµ®Òùs¼>¯¸uºqu;õ÷7X{ˆò±ï_¼|}WëÙ½«‹õ«·¼×+^y?ÚÆ @‚åˆÀ­Ûø}€„ˆÀÛ"¿½Cømˆ@DàÝ+ƒ[<ôóùDà¿·“ëŸÑù÷7]æN8²ÓïD ˆÀ{„ñxŒz÷e_@߀p·‰Àk×® ¶Q°–ôÜϘßѵë·¿»û˺}K”ã0§¼xªMö®ÐÊŠÃ~zú¸¹«¼vî$½t|í®©°ís«´WÝÿ‘“ëwmÞz±Ç²‹®Ò÷Ï^÷výú¦ž}T°J_ÿît|í3uÜ ú~éhëRĹ¯Ó±C«,kéjàû¯Sûí­ûæÁØþè:¶zž®Íyìµ5ƒþèãtúê-ÿÖ»6íùÆoh%‚ç~us¹×»þ)`ç=úÞÍ]»£s•ý}2·µ{üÕº¸ŸýÍ}¢äø³ïÑÊcë´þÞeöù……Ûââ/7èÄù¨{ºIG¿ûú_;Wç<çM:Ù½Bk×Õ9û è|ºÄzºN‡¾ÃÚø;—èÜö.÷±«×è¥æûþ>ö ôÒéëK»†ÙµD;î<;ò6­6-íxž~ã3L@¦amµ¬‰??¿´;Bp{í%qþ½OŸ¾{ÄÕ‘½Þ½x)•H¸íÖ’mÛz¿ë_ù¾~‰¾Îþþõg΄‹Aß…ñâÏèkâø҉˷„|®øôÕ£Eàóß–Ç>óÊ;âûϳï]]¯üúæ}ñ`/r‘›n{ýØkï¯Ñƒ¥7ȼ~gûÂÖ»R •Û6½Ô±é¨â9öû©o-Y^¥½ìZOÿj{÷îçWˆûyé¼WöS­‰šÔ3Ñ£õÏ2ûÛÞæ–ªƒÉb"Ý8G~-;õótèÇ׿[Ðz÷!@N+øl{ZW—'ü•(æ9ýÛ]´¨]u̯s°u™Nþê*^¡ƒß‘[¤D>WmÖ¾î\®u/Ȳv>¦s~FGŸ•ýæè»71 ˜ÈÖi: „Ïþ#'Ô ¼EÇ9‚èa±Bmý™æ­o­“qò<½&EÒö†øýøñãtʼ:ÿÆ9ƒN°ÏŽŸ8A§ÙçÛj¢a¬’"°Ü¦µ‹®˜¹hžÇŸ8iÐFbÙ·híôIvì vì)Z[÷&mÛEY7X¹7ÖN³² SƹdW¡m“ö à=tü¢6áÙf×3M:·¾E×6Öèä VÆS¦7‰™õù’XëgL”§g^xMˆµ“ùE |ÏŸÝX\ß"?sEàÞø}.¿møðö&=ñ‚¯Óšf…¸¸v‰N¼¾F'Þú@Ե߂¶I§~:¡ã?=OkÎVÛŸÑÚÚ¦¯NÖß¿Bç/óÏoÑú¹+´~}›ÎŸµØy'd¼/-ÙïÇÙuNŸ»ºÆÉŸ®±ÏØ5.ëmÅ®s޵›ìŸæŸÿÔû|ûê­>ûCq/§Þÿ̵&œç÷ÂÊ{â-+áØmºøþ–¯n¢ë@ÞË»—‹gϳò1±²¶òvH¼^;û¶8ÇóÂõ:µ_ ¸öèärB}ñ­Ÿ>cß{û*mySü|êªw½gøç/Xòç‡þ!ô½¿ûCßïO¼%…àúÛo‡Ž}â§ÒR¹u&|}NûÜ6³ì÷þöÐÏÙÄu‹žùvøXîj<Öz‡÷§üIus//_Z¢%p¢¬NQ¢êS*?êwÝóÔ·M×¹r#=2T®~W>“èàçB~¼úl¯Ï]sѾ-Ý'WžR‹AnŠs¯¾÷)bÿèJ±~ñ‹Bø×=kh£ïn+S+ô™,ëMzZ«›½!kûœ&DÄ6½ôxð} !Ò è/ËsLĈû \k+Uû„`õέ±߸Aë§/ɺùЋÓ;íZM5Ûbͱ²úa‹þ.òý"êæ©Íȳ-&2Í¥…íÚù—dY7¡k>¾AkB$ŽwÜAëÃß^ڲݶ¯ß¤--fñšpæuu“‰±1Ç)±ò\¢ÕÊxî€k!+9ÄøýÃAGø½D†y’íWbì‹§»f( ã^K²FæÉçh²,¾=5éè!y¾=±¸ÀÓtá¤SŽƒtÂ0hõˆºÞÁã¡ ‰+\÷!ãÜ9÷XǵT/ës'NÓ‰çvãOoEÝ‹9 Ë~põ¢&èº>O,3qxè%:uò%ׂúðKk3?_J£^žÐW…[¦œLœ‹‹7è|À´ô ³¹D§'_‡¾ùˆŒí;þÁ­ÅEà9Ó’_Cü|øŸ¤Ý¾lIÕï¾Cט»êƒüçC­+‹í3üú½M—„ü¡æÂÇÜOÙg_eQ×fV7ƒ~ݦ²R¯Ñé¤5²ÌÎûU.·¯ˆë}õ©wU9oÑI!ØzR (Áúµg×äç¬|¼L_S÷|úåJ(ã›®è“ W¼ëŽý„Ÿ÷YþÄ:ÐîåôG·”`ü÷<˱²‰òw&´×áÑ÷èaƒö;:Áãæ¾aÑ©•eëW¶tÞVø‡ùwŸÝPu÷;:Ù:/âë fmisKûîéå|U¹×qhpë Žˆ?-bù¬¥¸Çšâ\é"'ýø}#È>ñ ¶xʳ‚9u°÷u_•÷ÅÅ‹cÜû i‰s-\/°:yôYÿW·\\¥ué?ûDœ‡‹Þ=Ù7¶Ïo(‘w3Æ¥u¢êœƒ‹ÀGßgõø;Ñ?WŸý¸þÖ¬ö‰ryìYBüŠzß–1šº¥ËhK—ȧÕ÷‘Ï…[O¬½¯)ÁuPˆÄËawwÿ¹·­ cfÍ>wñ:]¼xƒ.~ø[ºÈ,ŽÛìd?¹è.pm¨k>Í\lõ¶¹È­”ëWÅyÝ>ÇÚê࣎UqV}¨‚o8uy“ÚOýÆkK½ ˜Âô;SÑw0 ˜4ùzI ¤ýéDàžC'\÷ɃJäjŸ$Ã8M/)Kžç·Eæ)îÞÙ¦#å®;ńضyT ¦ç e½SVÃýO3×MƒN?âZÒÖ£b 7Î1¡u’Ž·Ÿ£ƒöú,wNY÷9¥ÊêRyíÐý­WuµÍ-Ú^?Iû b<‘wе˜^tb)Yü =ãókK°¯ô¤`yÛ¦óï3·¯—åïϼý™+Œ°€ýÑCÇ阛Øe1¸ý¾gM4¸0úßÞôMÂÖV_nª§'kB¨>¯%­¹öÑsù¼®ÄY¼”?à•…‹ÇgÏ».w«‡d,£HÐÂ…Úão3WËw©ýOktì…ž[>G¶ß¿åZ8ø¹œ8HQþ‡¼{ܺÌ\yϱxº·&tìeCùõˆcu˜XWƒ÷Â?î»æ2b~aJGšŠ.Ñso\ó\䨤¹ýƵ{tüÇëR1ápí=[YZÖ™kûüÇ›, ˆÌÝ‘»aú¬c$&Ö\0­ŸžºIBŽt6èôù‰.Öóôm§\'?¾É7¤5JšáE)P™;£ntêÀ‹#¼EG¿ã•}ûª/Ư˜k{Ϧ‡Õ\¯_õ»¸ÎÜÍóà ¬¾~ÉÜA¯Ï°Î^õα·å%†9'„-ÚÉí>·tå‚ë4»ŸsÌ'·ÜD:2¾îŸk%·žíqc'ߣW´w¾ó—ÂBIÕ‹Þþ[¿š†¬ˆRŒ2—çoÐs•=ùÆzúÙ W]¯m¢Ê bùD™gÕG¸.+©t)> àÚ6s¹ƒú&ÌÕsÿÃôÜê)1Ñu„Õþç”ÀÛ:å %=Žn{Ì:=w *ÙŒ´Æ9×ݲÞi®£Â3,Ü®­yY<åq+‘çrÝ9¯vE`”%0êÚÁ1n=1‹©3ñ¿¦„ìÊÞ§éÂŒÏwnÚ¢Ã.†‚ïšRd*Kào1!ËVð·˜áø'ꋉÀ·¥Åìù3×É|åx(nÐx¯ WPÇêèk©DैϜ$-?dºKÌz÷¶›¹ôküÁþÿv¹Ž¾Fí5Gl×Ü%ýçÒ…Ýöç}U¿ö])&g‰À¤:8u5¢ìá¹k1<±‡rŸs­„ß9O_ C½Ï´#ï©ÏØÿ]`Ÿ[Ô>»%¬iû}– O}‚imÈÕwt—¾–cuaqœ|„ńԭb,Eèm! œø@7&ðº_¼IìEÏj.’ìþ÷|Ã/SYù3üáyü¼Oµ#2¥F‹À«—Qn)LnŸ8>9ÒíUXÊÞ¸á‰"&×u÷Zu}§ž M¼JAz^sËÎg?ÒÚå&³2Kà•Ê*|^Üã¹7¦¾Œœ¿Ž×¼îÔͶré0¸=«>Âu•Tƫǯ`àÒ%†Ù8é ª‡Ÿ;¥ƒŸ'-[!aõù9*«ï=gÈìµ/ÑÑ—VYŒ O4í9$Wf™ÛŸ Kà^eiÜ^g–Å£/±ä*k!kƒk5d®¢b b «â|"л={÷Ó$û÷úÄxby/XWåЬ£³>ß±õGY·„Àc‰®1‘Çÿ—n\ti1g’âaH óùU7'Ü~Q&KYÓ3«¾Àãã~F•Ëêá·¼ íÅ×Y2›‡~F¿üÅÏ•Hr¾÷=ñPzxZ‰Àmåšú„~ŸWmj¯šd° ¨ÉbÓd×>wî…%ñyÿº§øPô±ºL¬ƒÏsÇ^ý§»ÑŠ8F!äfÕG:xíÃééæåÝß>¸oD T>ìY¾öìõYÙÊÇÏE +‘øÅIÀr€Ž<}ÈýÞÁã, èZÛEGŽ¥òþŸ;¨žHeï#ôî;G½m)¡ƒÎž…Ú!h<·ßD`úÄ ÇŸö‰?!ÞØ^sîJúQ)j5|Biõß•òàs'ÕwX|GYËÊ\KÍèŸ;½%ÝM.¢çN<­bó”eމC3Â}s{ýÔ²ƒ8xP•ýa2®±{Q¢ö€ãºê&©9²/ïñY }“R'¦oO™~劼=ÌJèe=xTZO·f|¾#ëÛ^$6QÉJ"­wÌžËýß÷nÞ¶˸L'»çãïiÛM$ÕÇÍP] t}÷_Ò""p.Ø^SŒ­ä=õ‚“·­ ñ½­ˆÉѵ-y¾¸ëmñï]Ócƒ¶ä¹¶®Í,«üîöm©L/#éQ#¸ö¬ÏïK˜;곂m]Þ |ë#n1 ×Áöõëâ{ÛËh~®ïð\·Äy¶®n/½î$<}þ³`mŸÈm±Ï6˜%'ªî¶¯ÞŸ}ûsI¾Ë]ï®]¿?Y?̵2Í=°$(¢¯Ï²xþ޹kþnií“Ú“C¸ºÚBmÚE äÉr6®Îaµe÷-úÈÕ˜:Tõ2O?çûݮֈJXžtÜF÷D'y™õù²¬%àþå~ë èÛ·‡Ó­÷D’•È÷’°&¾ ²ª°D5Ï9BO=¹ÝìÏ`7¸xÚfÛô|ý^ºÂ²›"V€"D ˆ@ @€" @€"D ˆ@ @€ˆ@ @€"D ˆ@ "D ˆ@ @€"D ˆ@€D%D ˆ@î#Ø~™hå ¢½OųçÿEԾĎÿŒè û}…a~¶Ü_œÐçæGh¸e³öSÖ^¬ýþÉj‡]ì3÷æOd[üéîœ?Øv»}½/7èó“géómÔÅíïŒû²]Ü÷Ñ›¨K¸+DàsuùbžÅ‘³rØ«~?õÉò {¢£] ·TNÿHÖíÞÝ¡v`}f¿ê3§?ùb·…1G[,ãÚÍë}ØþPõÝ'èó-ÔÇm»1΀;Û.xÀÝ&¿§„ÞQ6Ig–„ÓkaN1ÖoÈUñç^a+y¯0«Ãåöi%DŸ^CÃÝIá±+íx[&AQm‡I×ÎØZSïÆ:Dàí¶¾îÆ8îl»à}w©ÜÿÚr‰u掶uÓÿ÷kŸÉ¿o|íVõÜ]"7>Råülçu°ÎîõÚ¯—úØ›êX%¸Ì×Ò¼³Úa[µ#çÚn‹Àyêñ“%´Ûmγ¶õÉòÚÿ¹8ïõæjç˜g~Yí%ʼKýfÖ}^Ûe¸Ðó”VÀÎYonßø$…ë«VÇŸ/óØ4ÜôúÏÖÔMŠþ7×{%ðÞÕÿž¶·bîëv?·[ ¾O·ox難¶€»T¦z1³ ýÃOÈB'&ÀP"ãȼÉ>ç¥ l0`“¨OE¸–¾8Ÿþ9ûݘcð¹6Qßc×¹¨ hÛ—d,#ÿìø‡¾ÁOÆ5°¿ŸTñSk¿ô—³‡YFRÖ ?þ̛á{=ÿ0Ïõæ9vµ8î{Þ½îÿQŠvi‡íX›¸·Ÿ¦˜0ƈÀZYŸ[[¬7=÷$ýžO_öŽ9ªÊ}è—ºzYõûWü?§b(÷v£ïg'çs&AÜê~äïÃå6>Y ýÚnîë±ï<÷rÂóúùìg>Q§h/~?Ô=>­—åïc&¶ ô›4ýÙ‰_Ò9ðZr¬«ç°XÔÚÇy¥}žœz~ø§¡ <Tçtß•óÖ›(íŽ÷žô•å'ZYœ{`mÕþQàXö~YDÜošcçgDY_ —sïÑèç&Ò5ž=‹{ŸˆøþG‹õÓ‡U}-üüdÇ®Ÿ ×m[»gîiV®Cßó÷0{_o³{>xn÷³÷ËÆç»óÜάŸ¨vù\ŽóGŒó¢Î>‚€ûÃ1¡7~C¸ún`ðúž@“h5q ~wøùGÞ€-’×8“gm§¢»¢‘qŽ­Vž àû1’'.§¯wð ¤ÏiÖ™y®7ϱ«/'Çtαíð¡¿Ýö<˜ ½ñŸg»Ö~­þ÷v“¹Ð3ÿa|?HÛ^QýÀégËxþÒög㵈gèµ QÁ'>Aþe _Ìñ<ÅNš£Væ­7=@•/Xo‡~îGý÷‘Ô~±ÇÎñÎ8þ²¿Î|‹‹,fs=elt\ÿsžÙôÓ`ýÅýݼ‘üÍ„äkIÏmªú‰h×eÚ¹Þïˆ@¸ËcùDõh.ÞÌÏÒ‰Àƒl’t‘ (m6áýÅkÞ °¡­<;“bîbu-Ï´`Bw¢­­˜¿tÔ¿îL¬N+²‡Ž—½k?û}CM¶/kÖ•¿ŸáZ£OØÄäÔ‡Þ9<°*Ís½9ŽÕ'¡¿æÝë)m";WLàÙpÝŠÉÂ…hK^¢¯V?|ò£O6|Kç¨G}â¡×ÍÖ%mB¤\ø®iÇ®ÝOÚ}âå¯ 'b¬À;9_ðY¹ÑNî¤~ξÕvó\ï„6ùÕ­5ú±ŽÅ 6+¶.E{ûÁIvMƒ ©—–ðüÍÙŸ·ÎzeÛ˜ñìz*Z(:ï!gfžë/,SÔ›ÞgŸþ•f%e}öP=Poú¹YžúÈëߎ§³ü…ÛoÖ±iE ¶ÐqT{׬Ÿõîáh’…ñ’ö|Åëï+ŸÞY?u¬eçNjTÜXó®l_q}Ç Ì”ŽhìÀÔõXY^úû°{òRžÛ”õÕïÜþü=œ ©YåO}w½ŒãÔ')DàQÿ$Ðý; O°AèÚM×r'žSÂeX4&ÐÙÁ-CÐ:¢YgŽ<å]K+cxRr)bb>cÂt‡sc²~ª“™×[èØˆÉÕÑ9Ü}Cí eƒ‹Êê¿ç•tõSÖ\›BÛ,R“s]¤ K™f¥;zÁïåŠQeõÛøUаœÏ-÷߬§Ú½;.Êóöͨg(õõ´ßý*|ÏŽÙû£äg~V,dªöÒÊr4¥ë`Ú~3ož'&Ð|-lùà^ {ô…9¯¿¨LSo<ó)÷GXòOGÔ›sîççÞÖÄäéÏæêÜç¡W¼I˜~Ü{*.z¾¸g%*»ç¼}3Iμ^ÀzS\/èZ–tÞ(æj¯„~°ÓçoÞþãòì{L»MÎRúi¢Dœ >Gqâ0Ô—ôܦÞF(!É×9v¯ÇYÿ}Ž‰Æƒ¶‚€û<&0êžv:`ï­ÿr‰"P³ðq댩ÊTf×8©b¸2w–õÓþ8™öß§‹Á8tv±1N¼¤¹Þ<Ç:ú(¡ç¸}-"·ø¥'üIwbW¦SÆlE–gŽztÜ¢ü4Ù=ع×"Ç,¥×>Ñ&©Zò n]p&y‰Ôœ/éY Öý¼}3Iκ^Ð5–'fˆ“æj¯y³ÉÎÑoæíÏófu,/{:þw÷,rýEE`Ú,¼«¯¤Œ#þ,a¿D.Ž{ɦ>vž6e{úhLYë2¾{–%pÖ;p)ý4AŒÇ‰À`ûƉµ`\Ös›z¡0âžùÂÆþׇ€û$;è".™0[}ÍoÁÐW×!ÕÌl%Ò9ßqžªZ%fØÃV¹Ÿû{¿ëÌimÅõ"[Q>÷¡ÏîvYþ}ãÆr&¡ó\ožc“,NbŠ…,“åZ¹ð?õ£˜l’sÔ£3ÛŸÒ¨Çæ­þÔ¿àÄr=÷5Ajv’‰EÏ7œ·oîDê÷óÒšŒÒ¯wQ]ëâG‹Mææj¯]óöçyEà†–fí‚· àN˜'‹Y÷ï‚t¯¥’‰ðþzò¬t«tâ¦C–À¨gC»®ÏM2ͱ ´)ßá4«ç§_ñ' Iꋉ–.öü˜dß^J?M(û¼"0ø÷P\Òs›¶~B÷vSKˆÅ;:›èsƒ¹†^ûî ð…'$é`\ĵˆÉ‘S†ç&‹ßphUÔ‰oø(œ¦Û¹®3Ù‰œ°ð<Ó[}^ûlI"pŽëÍs¬Ëœ¬®þýü1n;h÷%Ðݤ/§tד‚…ÊODlë1G=&ݯÞt‹ÞK+BYYgN¬!©­[ œo.8gߌz†R_O‹U >¯Î³¼÷)o»…y'ssµ×.ŠÀyû³;éþ^Ê}ü´xѽOE<s^?¶ž? ¿Cç­77›ðÑpL “!sDæÞ`ì—+Œ œylÚ6½¬ëág¡ýò쾨Ç׿ï>g¬ßZF?½"pIÏmÚú¹¸·íK _µÐ Ç" _èf-cƒ© †ç~ŸÔ‚g‹tÈ0ÁÐfÖçäÿ~,ÚJm0YÉ=¸¯Ç-êYÑø¾Kz†¶s7—äŽ6Çõæ9VŸ ðlrΤníÍùÄMT;èÙ O|}îȯæt!ZKˆ;šÓ¢Ã,¿^{ê™3Ÿò'w8ØCîøå€kg ÙËLKÊç›GÎÛ7£ÚnQ÷S}/3ýy=¸ œ«½vSÎÙŸÝl‘OöˆKÀq?Ëœ;ÏõõLºN–Mž½³üTDÒªEEà÷üωñÓˆ=u—-šïwè¶ßÑŽCºY*ßô[©žþ^ò¾žÁ˜q½ÿñ¬ŸûµEœ¥ôÓÛ)—õܦ¬Ÿà½m½ ok½³“ê×ç{ >Í„æÑÓ˜´À}#õUBgŸ@ßÞNZzû£ß‹H±?#“^zºì²¶2zª½g`Ô¤íÀ÷¢-<Ëš„Îs½yŽ=ÑñoÊ|à©9ö Lh‡¨vÔ“G̳…†o³øW“„9ëÑ·/"+Ïò‡6.×&’üx=ƒãÞ˜=þYà|óˆ²yÛ?ªíæºÞeüîÞzh/6×j»ÈŠ~êöÚe8OyÌÚ3˜+¢?íäú{ŸŠ·š·Þ.¾é/g9Æ—%3jï¿ïÅìY:ϱs´iûh ÿ,ñí sˆóˆþçl÷²ã~z›EಞÛTõázPïË<[Dܦ3~G]_÷xØÂ¤ n¯ò‚Ô·,-[ŸI¶Y·hX"ëZ ýö]v½ÔÇÞÇòÄ[7l¯@;¸ÿÄ+õ›wIG¿éõ­õOîß:mûǵÝ\ñµŸxuš˜éo¯´ýyû†¬ÓT}>í6ó­Q›ò‘mÁÊZ¨‘—¸60ö(ëÔM¥—¾ŽÝ6^¡Jo{îŒ8¦BÕÿëy½= 4B[ˆ@ˆ@ç½2lž»WòUMï­LU½[îñEUŒYË{0fx{.ý%‘§z§OæxL³øU]a˜§ÁT›“Âð^ƒZÞ7P5FSïe;¨¹¸›ïÓ6Zê%® ¢™ÀÀZh‘R2íSNÕK¶ÒO? ºm¼BÕ~Ì€j¨ZÌS±Ú¡©~­L‘z†I¦9Aýˆ@ˆ@ɸë.He UêF4›Ì2ÓðRQ½»Ù»Dü-W»ç½j0fÍ)ÕÙcÆ, oÇÀ5î”Õ‹¥±B4¥†ˆ¹Ú@RZƈƒ!Œ¸’EÆhÈŽÐÈ\üÛ‹c†Ã™“iô1“†ì¼/ §òüòï–9’c©>Lù½ D[„æ5bÎÃǬˆ±Ì4dY‡á9Æ, —?p©x¥í»?enårºÃ‰&¹hÊøET®J¦ö=£Só buPw‡IuÌ”ºÕ|Ƚ$[jj.4ì˜Z1tL©ÑO\y ‰@F±9J£v5T^.ˆ›ƒ±æfšs¿[*æn1õdן‰·’ÌEiðØa£H™\‘ªõ ÝÉ„Zå|„ N•†–gí­ev*R1§›¡j«E•\ .5€ö=wË|ÁÿÙµÚõ@ä¨mhblÒ§R6Pg™uF–g‰ÎE¹IW\áf\Uæeîj°¸«ìÙjß=gTðïÕzãôª3QËÖèl¿:_™¹äXƒ'ç¶BxŸ‰@憗Sîvƒiô1Ãf•*ìÝ=âïnÇA±®¿K¢ßïÅzOßRc ©œ _«â¼GÕ1•|&4¾µ†Öí³v2îìpÌ2»µe3[¬{±tš÷ÉJV £ÉÖ„ 4Ëáve×ííø±'jœTßëOlŒY@îcªfuwÏ®£Ú„½TkQ·Ýp'éùúP ÇaÝ;¦Þ¦~¿Cå¼÷¢œ¤=Æyé娋»×§~·Iu­²­ÃzÞ¬õ; ÷]j©E`F =Vv„÷ª11“’º(£Ä¥Oœ¶ÍŸï%Ÿ«¦yAÛÔ.e®W"#Qh%Áî}º™8Y‰%ë¸8Tò‰¿Àù-%P£ÊÆV.Çú#BеMÿdÊ©3³SŽwMÊÈX‰´ªã²5žŒ¨]/»e¯7Û4`–Gk ûñ¾*TøEn¼V®žÎ½S¯fØØÕîR«^ Å¢÷*Ym|ëS¯]sÇ·Bc”úgq2_fÉZ˜¥©Ó(ûßóî\@бn¿Omwq•‹“ÛèÞkyªh«’™R—&£F@¨Œ©¢ ‰jg$³aKjð×E`±!_²ã®' ³ /^ý%Ÿo gÇbŒšÚÀÁ|þM¶ši›Ô(z«“aÝÔE`†êý±ø[£à 6µúÜ­ä܉HPd­dJ4œVÙq½‰ ¾rÆ?Ø™m¯~JMµ@0ò\„ âý5ÏbŒQe¦54ï}ßìVü–ÛÈ-¶¹\–²¹Š› SÎzkþUL.leudm­»IÙšû _<8Uc† ›˜Gæ}Þ&=õþï$×Ë!ï‹Á÷bð Ìr–âÛ‰ûϨwµc¥+S¡Xž7΢l†Å,êåtÞáÎïm³v0î,þ]Ï3JXMië× îØ)\Z}"§=æÚa Ùã·µEOǺȼRŠ÷ºÝIÄØÃó ”cÞUÅZϵfÇ5ŒY@.“*Ùy x1ýiXtÉ—•cÙáƒO þPMà+Ý_¤8fì0Ø ´Pª2‹àPóë÷^”¥ªLÇ-RrWK¾ ÿ,8`1žÈËP¹Rò‹@ËsÿÈ”:¾UMï/õΛóêHsYu4R1#Wü2R§³ú€šb21éÅd Ó2ffEæSMhi‰õpY§ÁFYn™4ëkõÓ]…åß<×XV§õ&5›Mj1—¨ÌŠ;£‹@­Îô¿gÊš«1‹gd±'ž!B:ßö:Ô¨U¨Ë†, ¨÷Q2€ "p™–Àš+¢ìyD`ÀrèŒüä¹l(ë±— íø©ÙÇð1P_PËdóT®6¨¯Åò]¡S`[;¨-ؘZQâ,2Î1(—9fí`ÜYü»ú˜S F‹Y-ª—s±cbVÏ,néIÊzþø@c¬âñãÇ{¶€è4©Z.RN[tÞ‘ĘD`’¨“/F¹BýR1¨Y«Sg`øŸhT~èYe ® •'ÝM4_ûqŠcäËÛì5¨ »6ضܪ”™áÒ8[Já¡‹ŸË¢öÒ/V;‡šêE µ-T´ÁBwygà¹ÈfËáAwÜ«Q¾Pû7òý ‡‚ßj端prkhÄ@¹]V+Ij1wîù™ˆkÌr•i¬ýß›ø-df»XE”Ï&õ ˆ@€ "p—¼j²ñïkØa{¶hÀļKtè¸í…·¾qsôjoö1ŽÛ}§V ¿³ea)›ù®Žñª±vkÌÚÁ¸³ð˜åzÅ#„«Odö£Ç¢A{lêÕ ±×„"p×è*79ŸË¥ÏDYŲum¥,INT’pœ¡s®ZÿÇðÒ¢±9+«Ó±Áâýš,n0ë½´Ý h9@ áæ`‹,[<»–½9[J¡«¶®øVzõÌhÒ:šJ2÷j>Gù|^Á~.µƒPŽº>݉ë*ëºËjƒB©£%ö™t¼UU19Ø=¨¯´Æ[¹ í@ecëS·Ó¡.‹ñ°lmvŒ•R¸«æ½½Ñ=†ŠmÍU˜å2È—Xrœ&‹É³Ãc¾×m¾Ì¶1ظ8vËâMŒY@.³í®V»þD*–Ñq_v•Þ8µ%°Upb↾ýkJ/&pö1–»¡»o°°5áç@Yjé)M="…%Ð ¿ÄýŸ±Á,£gÎìÑ„ ª}õN탔J&´‡.œø9jí YÒ_Ö6ž4EÄ}4}Ƕ&K>ðeú”ÉqvQF­´ªkŒµø½¼Ú·hÒ¯kqˆƒØ²‰Ø¾FÁ—Ö´&Ô«{™`Å`%µÜPYïJ™Ý²²A}2Aºmøß'pÔ,¸±ný±ÿ}0h–ü{î¦›Úø¦[Í<ës“Os i¹Û³wq·ìŠ 7QO(âËîYP–Æþí³v0î,þ]Û¿Wï™âýÞ©xa ¡•0ž›¾Ü•ö #ªi[hðXÄàØ£[Sóµq2Sj‹¹Æ, w…¡6ÙÎ䘕¥R¡²¾½A¾îúÐ×¢6‹÷‰@”îNþËUj4jnVÏ•BCœ+Í1^¦® ‹ùkP»Õ bÖïs?jµcêÔ¨WÜUµ|}";¨ÿ^üÙ½s¸éf‹^=L=w$·,¡=—rT©zõÉÝŸô-J¸Õ9z@Èsçjrø]«¯}O"Ý6€üb‹@î©2f[+DÅÞ¨Ù7à \Ú»D_õÞIÌ•í;— ,dUZC_üßÌcxÎR>´ VmÇäÞÕ·qÌÚɸ³Ã1˶B{ÓfÙ¶ƒIºñÜ`s©`Ì®T'cºÚBËiçàÞ„|^Q)å|‹´³€Üu¦ÌM`<3&¡¤-óÃÝÆâ|Öt'ÇL™ËÈŒcì©Wn{—ëÈ’u4™LwyBáÜ»–5Yד™õxç˜NxL +ßÄZ(5µÓGø÷Sgiýˆ@ˆÀyðƬyÞYñc¥Îçžæ{šâ5¾-ô®¾oÆ,V¶±™ò>’Û’ÖíRµßdýÀX ".ˆ@"D D ""ÆRˆ@0–B€„ˆ D D ˆ@ \ !@bà"€ÄX "€ÄX "€øÃX ".ˆ@"D D ""ÆRˆ@0–B€„ˆ D D ˆ@ \ !@bà"•"c)KÅžÒtj£€œ÷åaP9³B+ÙìÀgVŸ +ì³Bƒ¦÷YG6 ´’«‘uG®oQ}ß í{²/~·'j4º»ZÇÓaƒVVòÔ·ð""pwÞ±+”«tCŸ»ñY©e ?ƒ¥ŽÉƒFQô-Nm`Ýsõ0¨çÙü³¾„¹›WåV(_Ü™9»v®6@߆¼÷V/*뼦Ô*òK†ZÆý·Â4¨ei%sçDà“ÙúJUŠÀA5Ã깺«e±5v,D »‚ÍÆÌŒKëúdœ-¦æù$=[¥1ú2Xê˜<¥›K¬ä«Ôëhbß{õ0j•(Wj.EòºÈ¨yÕížÓݹkˆ@ Ó4騱c4æ¼Ú%ÿàåÃBSǶhÐëR»Ý¡ÞÀÔ,‰ ß<6FdŒ§â¼cVŽñdLýn‡º#ÚÚ5‹sw:옞ö"ãç™dY&õØgnŸLË+³8·e‘Ñ—å“ä—®9¤N»M=VÞ^-æ°/>ïtÃ/S{bP·Óf×éÒHÜ›ÿ¼²|=2&S_ù&Ó)™Y¾þÐô‹ÀJlvo­2¤+EêE”:6X]Z²ììúÝþˆl^ž±¼—NoèyÆÔehÀ±Æ4Y}Ún™†¢}Ûþö YŽe›L§²M;™Sù}þ{»Óeuà_4ˆ®×¤úÙL,¯“!/ƒÞ>¬ùßl¼äD Dàè÷ûôƒü€.\¸þ{ÓôžY)‘á C¹˜Ú6±d9–ˆ÷š1ö½ÿŒá(~bŸ4&³wáDŒwl\4'¡1eÖû3émjïw{¿7ßsÆ*ñ>gcõx-Z ~n5^F¥]g\³ä}Ø3ÆߘÄëµ£y] ûÎ83V÷2dÇù-gƒýÍôÿÍc¥6wa×±±Ó»¿©h'ç÷¸yD°~~ñZò˜=¯ðÏÛÆƒ&eù<­Þcó¬éŽúEh>Ó‘c²3gó/6~ƒž<Ÿ!ëÍd¿ó6êÆ©Îk³ù¡¡—eáòK!–­²9Ȱ'ú>'ŒîŸñýQÏÜlݹVp^h³¹gO”sdTËñkCBÞÁ‹X_úÒ—„xûýßÿ}zê©§æ¼2öÊŸsÊD?î©Mƒ¹ˆNøƒÝ—b±gyb•ÎŽø9£/GƒÀÀ0µ(<÷ŠtMµúÕÀßWÄK³cÚç–›ÃØÕ¦Ð¹\wP‹šj×#O]S¾ŒÇ½Z軕Ž{Þz[¾|MYÿêߢrû ³æ¼Ï3UQ§¾‰H5:G&Ÿ÷×Y©3».Èë¢Ü|Y{ôø€n ¨(k¦½2Ý&9Êù¾_ 5«^“ë'©Lf[º¿45 u[L´*Xi;æßø†ûÞù“?ùzë­·RwÒ“ïHî–6VïËbK.¦íJèWVŸõ+òæŽVO¼Ï+½ˆÉzâ˜xGZþE¹Ä÷çŒw¶;¶;ãSÆ-³üY#û×DÛ¤j.üÎwž#Çh6f‰¹EÂx=&±ûMýa-ÙòÿIÏ‹²”½1ÃRŽpé›äøßPçsê¯Ô6•[gMÕç$q¬Ÿïþ]5vLŽŸWøçl9ý6°vÐ/伤ºn6½9vüÎûç+•îxæy}ý~Gå—.™qsÂPÿ<ñóÄþ5÷ZÉ:sŒ ÕóáïæjwpàúÓ?ýS_‡üƒ?øƒ¹V1ÁË™Øw'j%³à¼ÌäKÐèTÔÀfD¸48«1}í¡,Rßd«=•!~îf^­šÚNä µÊK½|³¥–\…cA‘—-Ïcs¨?‘+:maQËÉ—jàeÉÝq2ìê{ýºä:fŒ {Ù•Û¢MÆ]Ùgœú™›òË&.‰õšX?3ÊÄkޞ ]«5 òÿøáÉ].·gÍŠû¾“b$§&µÎD²)Žc ›ãˆ…©<¾œü§“¹Ði‘É­ÏŒ¤÷ç¬w¶7¶‡Ã*œ±ªÚ o  ÓY0v]eÙØZâc•ªnr•Ž;ÖKÑÇÆs+y<ðî·í.Z{÷g+›£Ž1U1t²œÍü>q'½Ÿ2¢-üõ=cf®>Ô3ó:žX`‹ç§ë.\?ïü$nLNšWó6ô„%Pö‘ö Ö²¢Þ<‘ß-gbæ&Þø-Ê<ªöRó1–kÂmÛçõúÐËÏû'/S¦¤æ„µD¿É‰ùi¨þO$ôG_{¾²ð¸Kç9©¨9’©æA9X!ïÔÀuùòeú½ßû½Ðàõ‹_übÎÁKŠŒ²+äÃìÉU L¥?SÊŸ‰Y­ÆÌ…uÄLòÝv“ª%õà±—š<·ÿ¥<änœlõÎTçÎ54Ëߤ+VNƒƒfÔyF| ÈTÕà•õ¯ÀŠÏ âåñ£×Õªc™ý[Ôlµ©QqÊx–šµªU(Q£ÕÕÜKÂ÷>ˆpAŸüLœCˆ¾MmR­–άK§_0פ±¿½øË¼Éï¯Ù¢v«&_ÚÚŠoPÖ‡Sߢê¼HßÙ5“êµo%ÕÏì2‰A„ ^“Þ’WxɈ@ˆÀðw÷w¡qôÏÿüÏç;ëšwßKŽ%£­‹ 5fñE³ô"0͘쉛(âÞŸéÞÙq"0뎩±!c6>17Ì hÔÊâÎ'ÎV_–YÏ?0î–ÕÜ"yY®äÈ\EißéU2bpxG}×ßÀb&›& Æcê4êÌÍDr³ÁJø‰kå›GNw$ÓÔe†zì³Q]¹˜ªØE±ÊZìø,½VƒÚƒñŽD`R½š‰õ“¦L²_f˜›""p^ýuú‹¿ø ú³?û3zì±Ç„§Íb"0<é¯¦ÚØÔp]öƒïv'-l œ1&§Ê:ýþLõÎÖ,-ú8:KÊss·LËgåɺ"IÚ-¼^< dÜxf!Ús­”.”y66Ø"®m´¤À*ä„+ãÐŽ·ìæÝ\\èÉú–"®,,ªÉu7vGÉ“„yE‚Üa¿púg¡ÞwTE™}%g׫—ökÇê«Í uå¹~¾’úã,nkVöˆ@ˆÀû`ƒÛ¨­¯’—”[,£Ë’ÙtâÒz,+˜ÙR~ÚM–ái¤2]:²³Òæ*á’¯Ñhb±lS]«§w¥ŒíaÈc ‡éN#}ËŸô Õ„wW¹iD%Q/ö’ﲸD£W—+Q*1Œ³*š)6X9ØŠQ[ÅFÛì¥å|7O-–Ýtlö©œ]Qu$|îƒÎÏ;1TÉ©íˆ{$û*ưÙ3v.ëÒiWSÝSQ z5•<ØIj~FL`:˜\¯Éõ“¦L£¦³?RQíqÉâB+ªCl €„¼“¨ø$6ÑÇ;6µYvDï-ß_C«VmÈdŸ9Ö¯°L“Ón=~n¦zg¯dŠl¼c®}g|N'JÔµXvNK+sNŒçÌ­2+c÷,sc·Qrs+ZÂx,7•Õ†×Ëî8f‚ª˜Ñ¬ŽÙNüžËÝÄ­Mg/8'îÓ QH®»d/ÿ˜œ4¯ÆúÇßô‹©Zà™F-–ïÀ™o q<µ%B¼œu^½^vÖ¯½9aÍ¥øœPZúäœ0:´&®?&‹À©2dÙÖ†Ö+âÖö|ëI:cc삼'E`.ð M˜¸Ëû\ àg™(¥2õë"0iÍQ [Z¡\–âì;n pÖ ²çÝ$.œL;ÞEËf•/d|+\#öbÒ3kæJ WLÚc&ürþl˜¾´HYÖ·B¨b@Ú#+òÞÅ`1HšŠ?ZpàÔÊ<‡Þ^Iué¸Û8íê¼ÄœvjWòþŒZµèÍëƒçqbj1Éõ:«~R”iÜö½´ƒû/x§D`#¯eØvÇ¡•²ú˜Up–l²µŠ6Î䊅„ ÀãÇäÐ;:ŽÐûsöX844Å,•J9Mæb¬FÎ8êƒWòeªˆqXY¸X2‘ZA¹ frò:<[ùŒñ |¿rn [©üßÍ2‘`jÙRKþ8÷¸í·:e_"‘àï³ê.X?Icrü¼"ÚBé-ì¤_Lün›ìØr¹ ÎÑ ÅáÇï`ëî Éçõ‹­”_.¼dòyßœ°7¶#ëV õçÀ\g¿ÑOîc¿ïþÌ÷žLÂfnfeŠö”6Y,.‹%4áßÚÑ‚”¯ØñÀâ‰eÇOE¹R‰ÜIð<árXS;þ»ì:vDBy^ëηSL]¦j_Õ†–½;eŠ«×EËä¸é©Î€„¼ë[Åx-:¦VügóŒÉ³ãÿÞŸ‰ïìéÆ 9VZÁûã¸PTÛ?i®”ë×NÆ(YW“P]IëSyyÛ í`¼[Ö¼bGýŠ›ç쌸óŠXÊ€«ëNÊïõ“4÷ÓçoaŒ‚ü" \·} ñ†™˜¬2x%"ƒ%¸Ïa‰c*ùœŸa¡N.ˆ@pï¾?í‘Ú&!GÕzƒe¶ÎEZ)—*JؾºyåeÄ· @߸ÝLDò±ÇpLVV ¿Àð}v*%ã6öÑï°”¾õ®‰ºúNbª,?_¨¨=Q'D ¸—ߟöd@õr‘r,ûg._¤:‹ÜÍŒÏS£ÍD`ŽŠÕïH?4¨Ê#²ù’»/ D ÆR0pA¢?€€ "€@€„€±"D D Œ¥ !@bà"ˆ@ˆ@¸@b,@b,@b,ÀX ".ˆ@"D D ""ÆRˆ@ÀÞÒtjßöëN§S²mÔ?"pŸ‚É€¼{ÇÒ^5O++ª,ßß­Aý}…ªÝ±ÿ;ÓåÙßkâx‹… ­d2âXI†rù"5{æ]ß×¢[îZàþíÉ€.Mù;lØ`Çä©o-ãº&ÕòN]Ui’T¾ú´²¯NVàç¥Ü;?_öÉ¥xw‹@Û r†½x³%'¥VŸ ü¥\hˆ—>:в¾û‹aMœr‹ÈuMMoSyÙ¤íÖ·Ÿ LrvŸô“E'/˞ݫìæd"ð>öPŽ{œb‹lŸ¬©g70Lû”åâ°?ï²ZŽ“¥j½AõzjÕ2åÔ9Kmã.îkSªeY9óUêõ4 Ì ÕŒxoYn]d—2NU½–ê÷G¾:=×Ofiå+² úÏ˸ÿѱ2í;x "ˆÀ/Ž%pÜ­ˆp¶Òõ ­¢\Ál6:o…Œœkl@Î,6 OUÑ×ú·Mê“¶Û¸ˆ0ÇdgÑÉ˲'F÷lÜÅÉ"Dàý+ÇÝ2{FsT­Ä»¾; [9] D`‹@¶ 6 ,¸V¸ÀZ)†\Ýc,ôºÔnw¨7Ь†ö„F#“yŒ©ßiS»Ó¥ÑxZHŠï¶ýßM}›Æƒ¦¸B½Gã‰ÿü¶eR«œåï5æ¨?žÐ°ÛY¼L¬,ýfIÔu‹cÙŽÕqD]~¯mÿyå³ü¤ö\k–»Èûš’1ÒØ²Ýû4GC2´sNŒ!L‹Ýã˜Î˜rL˜Ž qÌt<¤+§Å6ƒž¸·þhBÓ‰!Î!¿{††¼½0/"ðvŠÀ‹/²ÉeŸÎŸ??Ç÷lj—¤ëŠãþâÃBs4{p¾ÉÕØ©,TF#6˜°‹ ÝýRd?w§ÃŽÑ_´jà³ØàÓcŸuº}2-¯ÌâÜ–EF_–k`LbïOË\ðøK»#Ž•÷iº/ñqª2…D 4†l€1Ý&aÐsÏÙ¥Aðz;(kÜ`™fâ`³+ô]ÖÖ#>hNý+Äb Mˆ"0[#Ôƒf—‰œiª~2¥A«$D`ƒ}DzƒõÁè±ßbç Ú ÷MK›´©zšˆr³úV“€Èº‰[`ß}”ÑšÑâ.f²÷]9 ±Ä玬Oþ™íNJ†î½é“wb4g;:×3¬.Ù³Æá}ÑœØZ1Ùäf,Ê1{’”üÎ1†}ù|õ‡¡g^ôÙ.¯“™Sù\õÕDÓ˜Øû‘çét{é'‹30ù9ù=uõ{Jù>ƒ¼‡Eà”ÜRŸk°qG¾#òõah°R.ÈÅœŽ/ٻЊYªEy Œ{žÒyápo«_õÿ]Ñ©þn ¨”ñ–)6£û{Üu˜wDNÿ[`AoPÍù>{ǵŠú©&s•)xo•Þ„Œv%tÞrk”ü\ÇÝ—=ÏTzª\]ÊðÏòއ“AE¾^P¿Â¿WuÞ¯fÃ÷—­ÐX|gBõ|øÞkôÊò÷.‹€¼]"ðG?úýÛûoÅËçÿð饗^šË=N¼@3&h”;ŒãÚ—88É—uÏòVþªüsñ2d?û –žé¨%_È>¤kjôÀ—¥ŽiGœ[Rl#] £ŽÍçý/ùŠŠóH,“#ù}L”»,»¯Ÿ˜& z“ž€ Y^+kÒ`9kâ0î…ñJ‡¹*Y=qÿ|PtEWO^§i$‰À|øzùúÌ~2 L&ü$6)®Ue5øJw­œS¾Eû¦}†*û¾%Ä|¨ž ­øº‰t;,„ŽjÛ¨ÉNÒw£&!™|Þß7Ky¬6yq'Fs¶c¿šñ—¯V{–õcÒL’’˜°˜©yžùå|ÏD¼Mm“ª¹¨I¨µhQ³˜ œ3OÝÈwNø}x‹ÀqG<3¥¶wí¢ì›†OòvK·IÇ-4­5eLaÈÁ¦VÁékòýltä³Zl®j¶ÜvÇdƒ˜­öÅw;b·ÀÆ!õœ÷¥Å²Ô1çº÷'yHô•·ÇDsÍ–[jŒëkbkž29Ï}VËÄwN½ÇÁÕçbcÿ8î¹N¾¯n%#æ6íÈ-šC¾°5jˆß[ì÷[gÕ®á;ŸŒvIþ¬b<Ç=yo9Ñìgúb n¥@Þ6øå/Ù7yù×ÿú_Ó¥K—RÒ«ú&8Ò &ÍऻGZbp”ƒ“ Ù˶oŽÉY¿ljæÕ k;e¨©AÒò™RK®Ø1‘UtWðœs¨?‘b¡-\Ur.…^9Ääq:TbM}—¹é”´Ákv™ò̦/ËâœsÆ 7¨åä §ê©ÏãçØ±Ã”uÆ`™8qpVGKjgåÞ<›àp˰^¦>qÈ&ÇT9ƒf­+F³[uWË“ûI`Ó/ŽxVê »ÇôÍpœŸÌ˜ÂºõVBÝ„O²¢N=¡Ô-g܉RâdgÆwÝú Ö¿ÊRtU••R–)nb4O;z“ž‘°˜Nìp}I—ßÚÌIÒ¬'ÞoóMù=›-º8ßsÚ"ÇúìT´µl{§-¦Ã¦+ ‘ï&ï`}º¤­Æ/"M5¹+·äb’í,2øÞ9qï3ˆÀ{]ê²O×™•Ý0˜xpúxoâ÷áï³¥âÛ,É“\˜š%m£#å{Ýÿn’‹™Jß}.¼Å›)ÕÙ³™QãlM¹™6Û-j6[ÔnÕä»E[ÀIs.fs "Pþ29ïe§LÙ¹Ëä÷°q‚Úc혉´Þ‰…³ÈçzFýõe¸{•¬øÙ©ÏQ#'¶ÆÁwF0¼A½·xÝ 41¬ÇRÇDàm—/_Ž´úŒF£9ÝB³~7—TƒS¼”?SQM“¹­õ©ÛnRµ”wIyîŒ4nò!¦ø¤Vž;׆Šð,‡%«•r×·:šqîqf™¼ŒoÞ@•<è9îµ+Ù“¾«O¸dýú…ètXsâO\;JbæÒØ•.ÏÜå8Ü~³D`ü$)äÏO±Ìê˜M¸'S[Ô‡Sÿ9¡¸†5fÏ)sî1÷ÌF­,îÏY_DŠ{R–N7Þ²Q‹KVŠ÷Dà=,M™$-b]É7Å¢Dðùu,ù•fS,°ÍŽªÖ,”L¥÷M±5ò/ªçÏ¿›F<›|ñC•;›Í*rÌ{$Oå gÌŒëÌŠ•‹À%”)P¯òý›õ/æê,깞u_L¤çż¦G•Œü¿Ê>+°ØlžÄ'õμõºÖs÷„t#Î@x§,ÿé?ý'ßÀõïÿý¿§+W®Ì™ý²æ§œf‰Àø£ß1CùBPˆø]®ŒVQº_Zr²_Õ­j ¨ÄŠÀ~üä–¹¶‰•ÐTeZqÓg+Ï 1cÐuØ$?«M,rUe¡Y¬¬³ˤAÚê×Üû“eeÿçò¬¼j-1!r–Ñ-ÅXXƒ„œßmSõ“Lµ¿3躖™•Nº+•¹;ìŽúfpâÝßìº ¸–4·HÖæÂ]3•LþnXú×Ï/x¢Ûѱ¢¹0šô¤Ñ“¤™ï“MÆ 9Ÿ›7¯ÛP›Ï©ýn›]Ÿ+p6Ÿ÷¹d-"Åä.ÐÃ)SϲîØj?Äßî¥Î»½Â<l±OÞTü/½Ø‚Ÿõž 1Ẳ'%†áÇæâÃŒ…8qÜ»7µgwö"šZ€,v| º½VƒÚƒñ\×I+§‘ïìE˰: A/¾×qÙäÞ8ÑÏõŒûâ‹§®›wVÄêõµdžZtJ+åX§·#[@X%ˆÀ;(ýë_ÓþÏÿ™¾ô¥/ÑüÿQ$,Ùyö˃“ãÞfyÖ~|:(_œ+…ºJþÀ0š!ÁÕÙîròÜúÊ›cÁñÜSÒ «¾+Ó”‰¹•°ÏFÊuÈø“½q¿Eµ¦´ ØÓ õÔ^LÕ¾µpYg –Iƒ´­bS*úõY,h“mÓ0Ûšk²Yéò4vPeÁs­–qýD‹µ‰I,â¸Qå…p`n´öNûf‚u.EÝ'Ž…zßµì: rf‰ÀYß]ŽŒiG6¹µ˜¨q˜Ú›ñ"P‹)b|‡"Ð÷©^mªÅ–leØ«ô‘“Ý(rÔ1,Ÿ8»(ÏÉ&wÚßz<žHó>€¼E ­âÿÂÍy÷ä´…¥žåÿ܉Óõo‘£z«E-F³^•Vþ„-"QRn±¤L,)UÓqÿîg.h9n¬¥ÏêiR§š¿KºŽ/aVlól¿Cc©eòŸKÁì=ßf‰²Æ£.3^ÛÄ=׉÷Å]Ë;eµ€+]?-7üÅ‹ùL+m³­,Äl+ –°­VÈø Î´«ôÀ·ž¤3Ø ˆÀ{i³ø(‹LÒËÕVqÙr“e…©ÒìeXóD`f–Ì×h4±´—½t—q­nlCƒ3ìÈ—¶Œ¡râs2,Ç0ueŒ^&*1E°)D`b™¼Áª¢'.J’=é>ÂÎÑa®o,“c·&݈ڦ½ó²Æ –Ƀ´Pl@o±,‡c³OåìŠÿx•$Aó±Á­3¸91b¹J[öeåâ‰h’û‰·N0,;2™HM%É”»Kè›)>’êÆMôÐPBŽ &î>ïp{šñÝe‰À¨vœåêåsqΩ;b.«çyL#YŒnå[T96ŠôMÕOZ,Ó's‡íË´ô¹ú`.(WãsÔ²I²Öö¹jrL`R–û€rWà{þÙ5ÚU/îkæû "ðžj³÷¨x5o¬)Ñ©w…² 7 š›§%3Œ“:å Ôè‰ “Zå¼Ï ʼnM• œ9ß»¼žó/¶+þÄ\ÅZ7&{müuœzˆf§âZÓ~øãå•ÉõÆp☧@I÷šÉØbc­Ûç퉪ýœx_b!O&gsÛØý½«eÖÎÍß/Yÿû-§½C­aKÔ•c Ey.wŠge¶’"ð^¹ÀË+éåÊ“fB.mºÌÕâchFì–…²ÜT—ÇMØ‘õ²õeKMå‡ï Ìú@QTYü¢E WŽà`åwM*Sp0v²½9÷;豄.µ‚?›b©9ØqY“ËYn‘)çüÙý±ò“X)]ùŠo%<˜TAÏ^YíŒRô™=µ eÍLJÚáÆ‹í¨on,Èþ>?»n¼ëû\:Ùqe‘>>ã¥o}¾’¿œ„ yý†D`N‰À¸‰Qt;ƺó,˜“ACˆ.gâW*å4˜4I²èɯp7Ó~¤Õ¥ß(ù'ÈÜònG´E`⥻;Ûã®k]‘«òeæbÊÞY•X'¦N’ú°tÛ®úúp®ä$^šý>ƒ¼6‹¿ÃØÌ2?a ‹l?bOùw'mv–Ý*Sè}ɾ7±¦·­þR‡Í°q¿à¾¼Ü ™ÈEDà}>89/ú…6¿f®iü»S;zÂÌcy‰ÏB¤»ªME¹–z¿1eÚé 'ëp±ó.{°ô}—Õ_¸íTâmÒkŸiâþ¢÷ÚŠ»Çä~b³8;ÁU/{íÝê›ñu˜XéŽ[öwÓnÇy÷N[d7¨3áUîÍ|Ƭ„6OãÆÇÛÈš£ï§êÃK)D D ¸q¼8øÂS½Qscý£þ¨üE&àZZçH‹YÆ¿‡X^|L·Z¤lFÑOôÄߢƒÇF·yÀen7Ê,ö²Bí¸wŸ3Ì…–Y¥Í»oRt'ú0D ÆRpa²8ÿKÇÀJUæ2?A½ˆki–G– ²Rb±yÓhëD‡¥„¯wMÔÕ.0j±tûl;‹»¡~§KÂÚbµƒÍwïávK@K@K@ÀÀˆþ"®årmkƒÖ××t-Õw¶iƒ¿±u "Dà½2pɽ¹ÛØTl’›«ÝU ;–W&‹ºfdb¹©t~É›Á²ýÜö­Ð¾ú+à¶‹Àµ“/ÑÃ{÷6:ßK‡^:åƒ×Ì£â³=Œ‡ž¦ò~ïø=WS Gˆ@wVžiÓûÒp:ÿwµ¬oë»e•i:[Tô#êEîa˜]º¦ñs¦ÔRb£OE.D²\pÙÔ)q¡S ÞDYµúuq®RÇôÎ˾;U"¦È'ùMíôó²su«9s7˜Þ†2E׉Y÷»Q"0Wi»×å÷°Rh1kŸEµ¬w¿‹êDŠ»R[}fR%ãkÑ“YïçzŽO°ŠÔŸHaÙ,²ß3U&$“ïkÀ-¡¼ÜÊÒÚ¯çűÃiÒµñrà‹)·è¨ÓW>~Îÿùú Úë ¾ýtj+ ÷>MÈ "ðþMÃvÝ"ëL˜d˜PŸe¨3ö¾;jä…0±”ðᢥÙnQ³Ù¢v«FYa…êE~w(ÄJ™~1¬+KV¹6²ï¶ÚÔ¨äÅߪÌJµ»eŠ>טּ?ç»-SE”÷c&ŠÀ)5 Ê:W(Q£Å]P-×½SòÿùÅ9’ïkÜ­ÈÉY6O•z‹úÌåÕV÷mÀS^£öÃ^2˜C§6üŸ_3è€&OEàþçh "Dàý sZ2OÐX"QJΗ(E&Oa‚‹Yó÷Äl6«ÈQ>Ÿ§rsèžw }×hÅßV_u\+3ê{ìÿ\ž}·@Í¡µëeŠ:o:èYÛ„ÅMˆ@v>+IòßÇÔª–„hóÜ<{1"0â3îKáN YÝ=¶ÊÄiÒµñrà‹)7è9-öïÐñ‹þÏ7fY!@Þ'"P>ž±GÍP|\¿šõ[§ŠíÜ6õZ jÆžÕmä%Ké–3Âb7Vç­ô5«”5¤&Ûža0¶w¹LÑçÕ“¿ ìK ¾çºÙÚ ¢Lê4êÔQß³&#ªç7Ï”"pÆ}û-ª5åµmæÚk•Uõ„kãåÀSnÓ‰²¾-ÄA÷çX š"ðþÜŠT¨uYÆI£W§Œ–„eP—.œ¥sIdÙ0;Õ|(þn%[¢>˨9ìȤ,ÙjO;ožZƒÆfŸÊÙ•ÛT¦¨Ç”2,;:1L†ßÏ„†mé‚™«yn%Sde2hÐqî—‰•W}—wb¨’[qÅ#_ÑD`&Æš˜t_ÃzN ãÎ&Ö˜ºµ‚ø½mš ×Þ¤3í*=ð­'éŒ_¤Ä0á-öӑ瞣ò=³³ƒB€¼÷7‹—?ç|ˆ'(q„‘mv© e¥Ì2JÜÈcÛ*–Ï¡XëŠD0n–lÆËXYjº({Ì„_Οi³Ñkå[~™f—gÙ,8™J{“ˆ:cÇæ¼ûÉ•½û™ šËe–J¥œ[&kØ h¼2å©=²\wÐ}O\˜Ó¬‰C.ü2³ïkÓ6¨VÈú>+)Ë`üµ™°|rŸÛð²à‹#9§žÞŸ¼Oàþ˜}™Db_ËšL˜•ÉŽüÌžZ4aŸë{ëé1¶ÿ]qÞ‰åî§·›eJ‡Íö´S\7j¿½iÂ5mõ½%fIº/Û’ŸMíݹ6àþÜ-Ô8þØ€{¨|ô¤ÏÚ·eÕ6‘ –@¸b„’p­Ìø©¸[D &ò6ÖéâÅ‹ŒuÚÚþü¶_c)øÂ`Og.4 ïil¶_¥T£Ñîfx7s÷†U4ÔÞ±ÝÐgζ=¥–qïŒÙ“5*Ä „E]–¸íNŽç²¾ó÷tøÂ@%mãüïßý+2ò¤îq§ëˆ@ˆ@)BZE#^è™®û2;Ë2aßK¥š‘[-E °ôìéßA‘’´…Ó½ÁT&ËW©×Pÿÿ[¦}‰ú¾êˆ@ˆ@i˜T2±®0”{à¶MÇÂ6¢n§Mív—Fc/–|:6hhŒ}Ö6c8¢‰ŒõfÙµ‡†g¡›Ži4Òxê‰ þ=çwËR¯Ó¡£?4Ýx{~=ƒ]:R§Ý¦Noà^˶Lj•yr±"õŒIH¼ Z%qOþÈG»¯ PxÙX=vÝ )˜Mö{›•£?ûÅ^LùC"PÔËL7/€EÃ^Wœ³70g´Û˜ìX~®V!ñ+êŒÅÓQg]vÿÓà½MÆÔï²ó TÙ–8w›Ý«Wvì )’Çê<Ã÷T´ës[¿ˆ@¸ w‘ z饗èüÿAï¼óÎ\ßôäÖBùú€íÙ*.¶Fâ3Cm%¤SVŸõ+ü÷Š·g«ÕÛ…2S«LÛ‘Zf[º–Ú¦r“T{ò²ý`õBèzYå®*ö® f€ÍV„µrPÍy ì#ë\ßïÑ›t_A7Òj&œy6Ÿ÷—¥Ò•B0©ü®äbwÒWâ;G½ Ö€JëdŠÍh«æ¨%·•òQ¢Q„øŠ¬³|]ÕOðÞX"¼w¼ ã.…MØbANÿ«ãWUûŸ¨_¼€€ "p—Éå<ô‡ø‡ôÚk¯ÍåÚ.e4‘Ð!æšS"@º…N¨)ŽËRgìßVZ§äñÕ~Ð7¢"=¬Åïí¢9¥Ž'T2!4²î^¼ò»ÝrÆuƒšÜb¨Ú•qŠF§â}Q¿ô'zË2Á5û¾‚"°.¶‚*Ò€[ð¦C%Ö ÔççbÛ•ø½TzªšT~)óÌRÙõáž“ÕG\¿ ËÇ…y¿îî£l«f^YnmGÄKVí‡Å—[gê‹YF»¾¼cÍv‹šÍµ[5)(+½p[±ìœcÓd.µ}ê¶›T-)¡Qï¡:SÖ?!ZC÷&­»ï°ïø~¨}}"ðžw""Dà=4–¾øâ‹!øþØó<Ê*”­»‚a:¬{î‹Â+$º˜…-#F&½Š´0õe†Ì.‹/ãB¨Õ“®ÒUÔb9Í}1›“n>èÙDà¬ûŠý˜ß¹+jVФåwE`&£ÜD;JÔ\WÐl6«È1—Ó<•›Ãнø]Y3”/$‰Àœ°Žõvv˸få,h®À¡ãƒõ D xgÆÒ .пûwÿΗU«-(=刖úÀKšb®ëaPt9±wQb„‹¬¼S¾\YMau’¢¨L¦v½B½ï&SטSNcE ‹y³gß×¼"°¯Dà¬òËÏÙÞÃL|ŽêR¸ÕDÙ•%°Øñ¹}öZ jÆò˜T®¬u2k4gˆÀ²&uk_ð^ÆTáb´Ôñ]Ïsw%eýâýD \·¡¾¹ âý¯ÿU¸þíßþíç`‚@‰ÀIPp°Xµ6Ër9u©˜‘n‹< ɰ¡,Pí™ì3Çš)YÉfA~žS®ŸN¢ãò8UBŒgŸ´¦vªJÔh8-û"9Lžš=#&&%itȰÎ$ÞW”̤³Êï·–™Rp±kmžPFÖe©Á3ošÔ©æcbU›äÙÆK+;”ñ1¹J›Ì‰AͲ´T6•åÕoNò$9}Vïøjo²ô†cúµéL»J|ëI:QD \w+5òÒJ§»SÚfJY=+d:†² MGTÉyŸåŠ…Äìf§ìÛ“0ø»LÐ’õe«,— ÂzÆE‹°jeÃ1ˆ5÷|Ž›dÖkôbþ¼¬—<î/ñ¾"D #\‹i´;hrù¥jÎu™œŽšJK«\»’÷Ys‹µèïG̦…rYÔƒWưôe2mbîM¶A«œ÷¹›–[CŸ5×û¼Íâõ+>[Ù÷P `à‚¼W±&l¯9+z/½©ÿÙ"ˆó1+—½ôû°i:µSß×(¿=µØw'³÷ÚcÉaøqÓÇIwT)ì­Ç»å°,qÓÖ/".ˆ@n#ý*w¹Þ6ˆ D D ¸Ï0»u*×:sZô¨|K@K@K@ÀÀ@ÀÀ@€„€±"D D Œ¥_XhTάÐJ¶D#;ð™Õ§Â û¬ÐXl_œé€`ßr`-½ÜÃFVr5²v­n,ªï[¡Ãg:¬³Íe÷Qߺ_*VO¹ÊÕ;:=P£ÑÝÁþK²ùzt9õXrFI>GTÿØWÜÖºî6š4šÞ[ýÃ+órž) \Dàw+L¨¬P¶ÒÕþ>¥V‘ À• µ {±sOû”eç­ö'K/ó –¥•ÌîŠÀ'³+ô•jg"ðL›Øw†ÓûWÖX=evXOƒj†õµêÚ3¹£ceÚwðØL˜þ^,:vð*ݶºžªâyìßC}É_æåËëL\7Ôþcцã ë£]v/¯î£ŸÙæ“)ëç§>͘2{Ï”|MŸå—÷ƒaRÇÀ @†ùÁ~@_úÒ—„xûýßÿ}zê©§ærÝ®Ÿ™ ™ÖPþœ«K‘5îÉßu˜‹è„‹–¾‹=Ë›`Vùç•›`ž¡Ê¾o WH«_ |¿Eã^Íÿ7F¥cD[rÄd2P×tJJ.ðyzcö½fAüÞ{¢¡‘_Q2þ{Ah´+¡ë—[R ÷«ÙpÙòuU?U·~Bu hަñ÷¸’ÕêV£eBÇF¸ô¦,ŸÞ.I÷º¹9¡z>|¹ZßßöîµùâBE\Ëu/ÖÈ–;ô“ªÖ™ª<Öµ$É>ÒPud¶‹â÷RÛTî¶òó&Ü•3T®ª,K¿²2³¶r;GÐèÝë„…´E¶Bcõy\Ý;õàP ¹X3˽ZÈñ( ´ïÞÅý÷Dß©ô&픪ý9L“Ÿÿñ’<ëá2ŸuŸ)§›š—A»(Ë9Æ@"0=ú§ê›týÁü]¸p!õ÷'½ªoò×È•þ–˜àæ©kʉ¸Ñ‘Õb‹YÅD/«Å¼9Ö¿Ë—¥&„Ùr‹La yKLÄ3¥–r6u…ȳIgX æõc'}*Š8F)r»r:¤RF ›¹¤æø¤Ô‰Cšt…u’‹ˆÄïé"Ð’çàÂw¬„PSL¸³B\jyqžjG GÜÛ¼~žtëÇ«ƒ¶+®ù}é×ÈU:Ò:b dYX;„ã mjæ¥Ð0l§í乫}+Âu6©|vyçD⽚풪3y.³[UB©ÙöžÛ®­&ù9ê² ²\mÓ¦¾8Î/%#*òóׇšPà}¡ã‰ª 8–°H®dŠÔ–H.Ф¨äu=x’÷•'g”c’xŽ(waq¯¬Š>Ö”ýÈf=Z¨imÑ5|Ï’8vF?“‚- L"¬äªKMYOSC–!Çú}ÈuZ=ÜBjÿ‰#¦Y0« Á¬¸³ž÷xQg5‹ž˜÷—Y«3{èõ}õŒçtÏ"p6—/_¦ßû½ß ­Èÿ⿘Ó-TZ*ÊǥˠÒJPÔÉÕÿL¥?·t,:2a ;G±Æ\ÈZÔlµ©QQä@ ¡ünF³æ1«Ÿ¸«Éy_ˆÇ Uš-j5›Ôbç“ÔŒ´*tJÞ¤Ô–A)4“¿çMXkI[»>“Ž5e ŒªŸ^¤ô¬Sª«4«/?Óã/ÇÝr nõ„>S3×ßsAì¶›T-E×'ÄâÊço—Y÷*E—.ÖX{gœöN*ÞN³r—LÃ0…ÛbRŒ§h¿,ONdA¸"Äq™µÑDXã²")sm/Q‹Ñ*ºmí‰À¤r$Ÿc–ä}©Xfý™¹òN¦I±¬Z[¨ï A6£îÃÏZ༢NtwUC¸«¦NûGÕã¬ç$xü@sÕö—Ùo]ï–3b!Ãä}½Sеzˆ@ˆ@ üå_þ¥O~õ«_¥9³YªI›3‰J×Ðbkäό褹D`Î=¯#zøä2›Í2Øÿ¹<åój­Àw«¾ïz '”•GYWäy™,åØyòù 4ñÕf¢‰—{EY‘’¿§Å/ Ášõ'äÐ&ïbÒË&³ãÈú Š@ý>¼º’×ÈùĆÛc¿Û`†ò…$˜T>™fÝë°ž÷»jçJ#³1IA’Dà¤W‘–è~Cþ?hÊ„E=é+LøüSÕ7¹°ŠÀèr$Ÿ#VòãÌU 9Ÿo°GÞ§–š-SÔ$ƒeâl©Ïd¢â’M.[,áØìS9»3ávŽ-P—Å(½ºLŠ¢ÃØJe 5²¸®‘óy¾éZ¤KºšÎ;ñ{z:{%ºØõÛ,óáxÔ•1‰\ Ùž¥$Wi³Ì˜^ýð„/iE ÏÕ¬ŒUkt™‹g£äÆföâD`¾F£‰¥•Ç/"ƒ–œèòË”|¯S%ȳ%ÖÞ,óg§šÅò˜ºîÈ AGY{•…Êiƒr‹e—¨^̸ÖϾŠmö¢M©YpÐHéd³ÍºB+¼½ƒi L*Gò9¢D ïN?ÊUZ"¦Îè7…°ËEì!˜$gÕ½ã.ZntȰ %ê9̬ ,³g³,í²ìª*æ±ÊD›ÉÎYR}%Iêu0ë9 ï¾2Ÿ m1jÝ$6#D D ˆÀ;(ƒÖ§ wyŸûa¹5tã»Õ‚–é0'&ˆAè¸;êçå”rΟ‰°ÑG–Ë6»Tвæ Ÿû›Ñ­‰É´óy&_¡¡~ãŽø¼ب:þ{r’¿ïɺ~JY­¬™‚—X¤–g9m´û–›Å‡ë@&Õp-#6Ûn¡ ²Gfr²\<[kT¶Ô@ÉB¹,ËÔ±"0¾|vI¸×ðµ3>q64´úÌR©”ÓÚÉ¢v%ïs™¬÷T‚™N%1ªÙ)û¬¸Áßñ¢ß¿ìËNLà>m³ø¸r$Ÿ#JÊþÁÛ4ü™]3ÜJg±Ë†ãó+wbÝO¼,½QV3Þ—õŒ±…jG^g:¢ŠöœåŠײÕ'ƒu0ë9 /D¶#t}e~Ç÷LÉç²@B€¼ãØ,þgÂ,OQ.{ö”6Y(¦ÇbßãçµÓkÅm^?e˜XÓ9Ëþ{VÄq2Kn§Á?Ÿ.bÑàõB‘:¦wo½J&&3¥—f’âz‹–ÏJªçÚ õ·—ìGqß½Ýýy‰åPubMí/ÆÄÖ½Íö™´*ÃÔZäÙXÆó_fÇ Zß*@B€w=r/¼¨í ær+n•©Ö,Ûgni’¥”€eÂú{%Ÿsã<-Ô D ÆRZ<šîB²¨Ý:/"׳[§r­³c‹’=P½\¤\–g_,RÝMlsw”€eŠÀ*˦š/TÔþ‚¨ˆÀ{{,u²Ýæ*ÝÐgã®tw/µŒ].‡ 1ÈGÄ#ßKLGmµíNt‚­»í¼÷ * [="³õ\s–¹»3²î;§…ð O@B€„œiaj3XåM±%‹Ènœ­úöñÜ-LÔt/âd;nõz40&wýyï¨'*[ü™`æ÷{IžiÓûÒpŠþ"ð 'ûý>ýà?  .ÌeI‘‰Jd¸ÂP&Ðj›ŽÇLjº6µÛ]½øÚ騠¡1ö :c8¢I\ ·mѰßeçéP8ö‰À, #0G}ñYeöy”LÇ4èu©ÓéP·7ÐÎ϶·Xp–]¸Ë>cY»§êxþ{»Óe™‡-yŒ6A³ëtÚmêtñeU1ÅÆ°/®Ûéö|÷³¬ÓíJVÔáÀôò $]ÇfY¯£ê4Íy“ÚÃ[dX³ŒÝú=óº ‡þ¿‰ûã³wÐÎ1m°h#Ïn¨¶×Ål\™ÍaB©öít4÷Ü}i7m– zhø\õÇÆˆê«÷^GöÑdª’Ã5…,5y6ùiŒ×St݈k²}c'æ•·#Ú)üŒ9ý·KƒÑ8´2ìñziSo`Æž·÷zŸ†ì»ús!ÚEümJæÓWïnßcÏ‹?×AÌõf–@wÝXúo|ÃÍ„û'ò'ôÖ[o¥þî¤'·Eá.™cµEJ±%³1¬Îr«ùY¿Â¯x±ÛlÿÒØý3™u±8O¶Ü[¶Ôs+¡k8±åÓQË—AxE Ö‘Údzšñgë¼ÓqÝ'}Ù¥…¥hJJ.ðYzã(ÁjR5¢\>‹©ÞõenîYÉ×÷jáòuŒçÑÕLàžuë®l}OÜI¯â&¹Z¼#Ú`êþÏ%Åæ0¦Ìg©YÌŽÏS×I@7Žn_±}P_ÞCOË]åŸ+7Z³[ }¯Öû…¯|Ù‹tRÝ8[ ¹ZþïOz¡òf÷kkànäf±.6}[¹ìý¿Šÿ;cOÀ7ò+"«õYu¬¼ï)µJÁú+J+aÂõË w‰ëO€ýéD D âÿñÃ"*—›Ë-´­Oó iU°äv0+…†r PS—“Ѩ=Ds‘®yìüE)ÜmŠÔ^ mf9©åä^­2Ö–ObWT–i›šye¥´áRS“~Ë'ä“ܾÉöã½#ϔع6}¢—É»®àš夘M܃±ìŽ pE‹ .%ÄåõE]Èdf‰×açáb8Sj©zã[Våb¶õñŸwv{¨ýU»#aó[Ðxëû3‹/ßË–gáÞQ;Û`óÉE°Ó&m±ï/Ûæg.󩔔Ȓ"Ñ«-{DŸœªþàœËb}%;sY!ìì¡tqf[!É{4å>Çü¾˜¨u)Q7òš|A£E&·jâÅ¥;¯·T_ìù[`¢Ì¦Ž8[˜¨¾Ý—™§K3|Þ³'D9òΖa“®(s©mFìíÌ­šò¸©!÷ãÍ5~šx½ørb,ƒ·7¶ þ€¶?ܬ þRï,ð~YÓóÝW>ö¾x2šF£™4Fì÷¶”̬Îö±ýá¨3½|³îe>LªåIެ̩uMá ï{øw÷w!øçþçs'Ø((«‹3t¬mÝRÆ&ŸŽ(½Tqº€bÁ&°¶3Q÷ÞµF«è‰"¶…ÌØ4™›_Ÿºí&ËBw'ýÞ$_}—í[[ X»6µ ~_ˆ­ Uš-j5›Ôj·¤8c{ÛFÅ>ZcvÝÑzÌõ°Q+‹óäbbõºHºÎ;j‹™L±Æ\òZÔlµ©QÑï)þ¼éÚ#~‹&G Ô‡¶K'DÄŽÚ9Ü~QmŸÓ÷;Vçæß–Yü®[£FAí ;¦J&`­›tÜs%Š@³-Ž«i–\înË]Qãûíì:wê´1Šv#u,­dóT©·¨?r\eÙ¸xnò~ÀúJ»%÷¶Í²ç$ê¼µ8ÂëÆhÜgD²þʾþ<1 æŽ;I¼^|9D ¸­ŒŽ•ißÁc3…ŒþàïZàý¦ÓßW-ñ¾jû+v ®.E;ø•æ»ZùfÝË\@5(”,ž¦?J|AOU1 éCˆÀû^®­­ÑÿñûDàßüÍß,”¥ÓÙŸÕË:˜õ¿G˜XÌù&ðš8°â’th“ñ˜ñIÿlªÞ›a÷Ç ËÎ%û>ÁWj1å•ßͲlÖ‚ Ïj] |žÅÜÞѶÙõ¹¯fóyå¦:[&]§÷jͽù9û?—gŸ¨‘áR?ïÜí±XR.F·äZãvÖÎIm빃Vu7ZuîJŇõœXÈFÌ zkr¡"WëG–3IJ1Çã\í¹’Ë̪yÍ\âX;êÔ©ÕirU2¹eY¹fºý$˲O³~VfV¼¨ó:°ÍEêü|¥Nh.(÷XŽè3®[NŒew3±Á¯luqГAÈQÁ¶S7°˜£OåË $·ç?vF x\ðsTùm¶ÚuF.Ž ŠŸWf«¬¼Ãž(w00;.è{VÀ´s_^fAÓ]%NìñPÝ×Ð}EÝWTð¾ûòOh¨>w±mˤ–p%)RψY5e/@Ô×çå™nÎ/WÏΰÕ3Û lŸ07LÑ~"©m ”/é^æ*ëÏýfI´wkÀWÏe™L­ÿÙlUÓ ´JbÀk°ûO>6¾o¦­' ïüXúúë¯Ó_üÅ_ПýÙŸÑc=F—/_^PzH×r4ÐkŒ®;fpï,TʼnÀ•RÛg¡ËówÔðlHDx“y“ÊÊ…Ït&ÃF3^nJK‘39–åõŽïפÛåP³û-jDlm$ãñ¸ûªå3Ù4–À„ëLUyüñzCj2ÏÁØN¶ÎÙÑ9yq_yÞÅöÚy¶ .BO•5”[¹‚ç–õ^¤‘vŽ^%£ÜX'2~¯¬Åª)wGXõ¹4r×M×r8–Ãr×ë›f»Ì®]¦‘µµÁ4ÞzS7³zy»×šÒJjO'ÔkÕwe¿_)v|.»½VƒÚƒqÌyåóÉå|®Ê~(³Ém¯þù ê½ÄëÅ—ÓÂxx7’üêøû‚u„ ¶U̹Œ?€›¯ Îs쬀ópðóZlùõ 줠øyD`TམôýÎÌ€iຠ4f+K¾2«Ùwq|ð¾óÒ ä³UêVÇ™°K¤³ë#_wKï(lÏ×úV@ùÞI¸—yÊì‹¢m´€w¯UèlàšµÁÙØc'1ÉÒ×÷‡W%có˜œ&|,k³…¯ñ¨KÅŒ«ø4Tq}U&nLö™ciˆ²¨W}ëÅ2Ç#ª‹ä<‰HX$¸–Gæk,“£¥]Ÿ½×TL`ð»N™Šõ6[×È´ó,O#gþ‘¡šˆûcç^ñ\pCSí]™)6X›³1¿­Æ>&XyõÔ[iµºSík¶T]“-Ô‚¬c9«q¼ÀÂ[˜è¶UŒ ‹ÓT"0W®³ìžÓõ4©nf‰@aÙäuÝÒ„-„wkeͳ• g‹ì æŽÉf;Õ| &0|^ç9òb;ýsA§xýЕqPÞ¢e…†c¨=fî úâ_¾L•BFì=öä|VÔ¤ëØc&^rþÅåF3ÆúÏ›ÔÁccEY^ßd§í݉‹Ð, “í3ªÌ£NÕ·œ+5´7ž˜Å[lÍd³šUŒUï:ÌÝ1£¹òz÷Ýc®LgNTÌFg÷œQ7Òª™‹Ÿ‡±8ÕZÁ¿X^jbž Ö_kN>˜ó2ÏûUA‹± nÏûž^…jGÕoüõ’Êi 걋;"ðÎ$O‰ ~}Ûõyú¤g*}-0zê÷ív­¯wºcgœG?G•ßÖÄRrPüÜî úKzÜ fLjÀ„€é͈U¼AÍ/¦C/¶Ã½¯Áûá€è©ðwÚ4iµ38Qmßs]PÒäûE`0ð]Ügbüî;Q÷23A€ep†œãØ`Í[. ïÿøz‹Ye&VÌ~vVüga—y‹&ì\Óy®ÏÆAñ{öX×dcd¥íÅrÛê}Ö2lŸ'Ñd’¦Ì¶¸oËZÔ’|Q§ÌÂi/¹=’‰w¡£çSq¿ó´¹5µúQô¹ì©ìcöœugÏȼ½xkýÞŽ/¯µÌ¬ß õ—t½¤rˆÀ»KF­x1 \AÛãÈ]‰r‚ƒƒ&ö`@°öû<ÇÎ 8‹¥lìŠ.“‚âçiòŸ;è;!`:Zú×ëн¯Áûá€h¿ˆI¹€¸–mŸáóäG‰À~ì}'‹Àè{™¯<»-µ6›³\@"ÉÚÝB·"ÝÛ •ÕkÒ È¹Æ_øºáV²"››H+lwrÝŒ3þpDàE`\ðëCáNF¬Œ›vwù"pVÀy´Å,ªüM&ÅÏ´¢g_«++猠ïi|ÀôÂ"pFð~bšgíÓT–À‘ˆ?àßµç Èß¹œFfõÎeÏ™ RØi«¹">3 >öìcƒ÷2o¹€„¼›ÜZ»*Xò ¾xU®µÈ€»t³l±m.Øõ®y[ó7tØö·÷š@Þ×WRðk_—[<£¥Ð]íwMÎ 8M´“‚wƒ"0&(Þ/Ù¬•oQ%rK/0»Þ3D`¶Lœ#]Uƒ¾¦ÉÁû³D`_ŧ5{FlL`®Ò–m¯6’m wÌyò¥üŠ&3)E ^¾ä{™/A@”±#ƒe½Ëú÷“âÛIÎþ@1džï%¹\ ïñÁ¯–*ïs£,·†ÑA¼*æ­ç7ϱ³Á£‚ŸãÊ?xrŸ»©zRP¼?˜‰–¯p—‹~lb˜L>ï Ìî9VAßIÓÁû™«B"P% Ñî+)x?-E¬#ÍNÅM,г¢Ò_¯øêµÚÑâCRäK¸ïÉèäÁûÔÑË÷Ã'ßË< ôº1¤ƒ†Öß²T*im1ñ2äŠÄE ÇFõͤr!H@B€¼³$¿ªÀáém-SÚ€ótÁÏóÅêLd•“ýîe@pt zRÐ÷¬€éyÝuÒïï¼âêl'ù»–ta¡òLÊm¶Ç¥òØ{£žD D Œ¥Àå sÙci‹Í{ÃEÁû`à‚ ‚÷Q/@B !`,…c)D ˆ@ˆ@¸@B€ÄÀ""D .K@K@K@ÀÀ0–€€ "€@€„€±"D D Œ¥ !S26hee…r•nè³q·">+µŒÛX&‹êûVh_}àþü@cø9êòÔ·Ò]cP€V²O’µä²êQ_aò4˜†ïEÞ㬶I_·³×¢ÎÈZJ;wMM£î»Îî{_ªû¶'j4º4ÅûVö«{–kƒç¶Õét@yö|Ô‡ÖŽžÑ]+oBù ˆÀ{|,µ©U̱Rh“«/&@+Ù*oóDöØÁ¨|l$~~2»B_©ö?û¿c j¬üÙÔbit¬Lû[¾¬åX9rT­7¨^¯»ÔêmÛþ{ñî1þ|óÞ×®3íS†õ‰Jç“âé Êî-Cý(x¦Mì;HÃiŠ:¯ò¾[]z[Þ«"°ÆúX&♫߮:eý)ËúSµ?ÙÑ3ºkåM(D xW¥¦iÒÉ“'éòåËs­x„ŪD†+ WÄ$½m:«í#êvÚÔnwi4žzö±ACc웈ÃMìÀj½5¦áÐðVë§c ‡4v'úSñ=þûÄ+c§Û'sê‰ÜñˆwÂ>ëv¨;0Èbe9cNÜòì~¦ã!uÚ컽A ì6ƒ»ï6õGšN ™VŒÌÒJ¦c‘ð—ß»G§~ êu:Ôî°úL£E ¨Ã!™ì{²Ü™ƒ.µÙýŽ£žÃ>û¼Ý¡þp°žÄ·g\}LM!KMv½ÉÔ½¯a¯+ê§70}õÆë}2Ê2Š2˜n[Z%Ñ¿ýYv°ìì;gLYö„F#öóT¶­¨U^Û2©Ufu¾R¤žáMÔÍa_–½;õC_¿™¾¶âçã³Ï#ïËœèmÇ¿7ß›Õ.òó MŒ8w—Ýÿt3¾¯NU;z²ýu¬úg¿'>™ÕrNK.§kíõÝvæíW§Áö1xݰþÚéö´þ“ÔæÞsÏï­ÓÐxÜ£\ŒÈ²S>£qåuï+¢í–Q>ˆ@"ð®Kÿûÿïô/þÅ¿V½¯|å+ôë_ÿ:õw'½ªø^ž¹(ŽûòçbKZªŒv%äâXVŸõ+ü÷ M\ bOZ‹z“€å§&¾×É £Ù.JWÓ¶©\åçMãUù5*½9E`Ð3GS ÉjÆÿ÷¿ûxeîW³áïf+Êú9¡z>ìÞ™eÛ‰´´{duÑ­†®Që=ȅĤ¯„:»lb߯f|LJ¬s–s¼G¶Ü ±=cëÃ_â>¬•2º)6•E&Xï’|­ïö÷^þ²[ªÿõ,ïç MÖÕœ÷·L•µ§EÍb&äŠÛ5íðb‰êMÃû¬]”ýbœxÛÉ:Ëhý)¹]"ë7_WÏO¸¯Þé…Úq¥ÐPÇG÷Ï\­?³œ\ȵJÁ{,Ò±ÿg°Nƒ &UsákJ/‚ø6ßw„¨ ~%²ô÷JÒ3îSêTrã Ôo.µ|Dà]1–rë_pòò_þË™Ë-´­O ó )f˜˜È©‰§#Œšâ¸,uÆžð±4ªèÕóùµ>Ô&ÜL4”:Þä8Sùhá7[æ*mYG0ZLôÈ8)>Áí3K¡Á,!ƒ'Ùµ¾"ãµ¼œèueܣѩ¸ÂÄh—” “BuÜ«ËëĸÛ9çÊf³.VO¡/öPºÝêª~Ù$;»"êô¬¸¯<³pôEÝñ{XþkU»ÌrdŒBÖKY¿LRtòøöÏOÌhÏøúàßs³©#¾Ç&صЗõSê˜n|š¨÷‰OÍ¢',¤¸Ëºßõ·ç“®ÔiÛlYµ-³ÎäW¼~ÐýOžÓTíUnÉ>f•€rú²OÌ }çáÖp^/…æhÆy¤Ë¥Þõg ¹]´Ï;NŸ’÷Wlþ:}•Y¹ ŽúÚ£ÈâtrVÔ¹œÅ„œêcIåtêµÔ”÷85Zò»,fU¯ÓPÛô+~×q{D%wa$©Í§ÔÌKAÖŸHAÖ*ecEVÚg4؜ŬJGÅ1O‡r¡"ø.Øaù ï4¶AeÞ°Ù‚æ~g¬ÐX,P”½ `ßr°S¿wÙáòõÁbß ŽOÞ­€÷/T`ul]/+ ÃüþÁ@ùåç/¯?‹¾·¯~GúްΉ\ý"ð +ÿçÿüŸ!¸gÏž¹Ç¾‚²zô,¿U¦=ÖŽ›t]k_z¸ÉD³ù¸lHQ#VåËLŒL„Õ"[$¿Ù"°eãóÊdº“áAÌSN -­œòB“áihbŽ ÌR©R¡Š¢\®(!s/f[Ô¥n ›2·=îRè·pf|m*wTl˜n±d.…†aÒÙiÚ3º>üm+¯Á'ÔÍv‹šÍµ[5!³J„ê×O„DÇ;F‰@Ïb7¥º÷æ`Y¿UšÇ–5 B G]§[Îh“‹±NIŠRkÖyf‰À¤v‰ú\Z§2‘ufåïoÎñ}µp¢÷OöýŒ×Çf–S<{š7s'å.Ê¡g:Ø>c“¹è©ÇÜ&µ²hs¿ðŒjó1U2{™tD¿›-údà¾úÂ2˜¡ ë­f“Z¬o ˜‘Þe•"ð.ÀÉ\–õe5›º± -þÃÁ ; Ò ŽO¾Æn¼‘D`|]ïœEý}òK Î_f–/í; ?kà÷»|çwèK_ú’OˆÀ»$«™ã¾â˜¦aÈMú›Iµ<ؘ©ëœ›îyð©oSAÉ“¤vh UywTPuô‹¸Ë‚h{" y Ú&•a3.8>)8}0í¼ïñÀA ­¬/‹ëöı,@ß ×Kd yd]Ûîu»ýaȵ")p;1ø7ö~â&üø¡Èo“ÉV ­&ÆP«¿è{LN`°™p¿^ ü|ÁùÑÉbŸ‰ˆ¾ž¶?ë/íÍ4Áì3û^ú:w4“?—1 ¢ÅãùãŽ÷'>`×ûËí닼âX»ˆgª#û³½ãòCÞo1¯¼ò }ùË_¦õ¯þ=ôÐC,™ÆtAèM¸!Rxç²G å&e…&hN¼WäÄI¥\H1É6…¥C ²°ÈìȨ-ü +XZ\Ê {Qó62©¼’d Lf‘÷2–Ö†rWKlÒ.‹úxã'5!{ì™Õåä¶1ñ›{¬”Úš‡w£ÌÐÿçXu®öŒµÁÔ»F±ã{'öZ jÆ)E ‹y³Óˆ@],F‹À©;ÆÚK;W¯’Qá¨z’ÖŸ  zkòyÔõµm¤En¨[àtk_°ÎdùVJz›®ûe¸œìøà¹bË™®CÛ«×F>Cæé“´˜!¯ÉÝŒ-Ÿer¶ðœÈx¼²f´Q.¨ËSwñ'OC}lí·¨ÑwÐe•"pɼñÆôÄOЫ¯¾º˜û 3õš–\5qÝÂÆñµŽ_sO{±¸A´öªìû–|ƒ’ÙJ‘ãÃí þíñjàØ¢òÁN,CàgoðH NL;WÀ{b ðfd@·Ÿ¬ ÐßL $×õ Ô(Ïå¸ÿÎÜN þØ9Ñ`«ž½~,é>ãÅH÷&ñÂMºÇÄ“Øûõåç ÎøL„ûú<ýÙ'Çó³‡úÞuî¬þùàï%&ãÅ£ù××Ej#·âÐYœIÎ鋾6Óí?æx@,^~ˆ@l!”œlú…ïCm¶ø0u©˜YqÅÑPÅšUÙ$ËdŸ9ï¢è‰‹»)8c–œœ: ¹Y·ïÇm 1k‹þÌ—X,³à©Ä'N‚Œ CÚ ¦Í\5e|d•-âô¨VÈ̈ œ-Ã÷2VïôsñÓxØV1‚-¶à§ S Vï|â>Kl •h,·Ø"ÐxDu1^2Ñ5MnÏÄ ·Z Ï•ël‘%fQ×(5zlAÒ¤N5ï‹ Õ».ÕxSntȰì…E tÿËS³g¸–½L±Á2¬2ßVcZ±íˈéÛŠ Yt“¢8b?ù;¥&ZýëV¹¸rÚf˽Gƒg#m–åuºc_ÆmƒÒbÙf-­<¹jof›÷Ô½TÚlq×ìS9»²¨—×6dd 5²wÁˆÅñÊyCÓm»e”"p‰üíßþ­›ÑLtÂry®ï; Î„º;Q)®jg½X‚ƒK¶Ü"S¬¸¿%'¦¥–ê6uULcT>0¹¦×?=¹ Ñ«†ÉÀ›»ðž=gYýL•è+º÷ä@òP]Ÿý‰˜P盆Z­l¹åŸ¸žØ·ÚÜå+™Š >®¸ÇP[Im±¾–æ#(׃¨ûÕÅù‚óûÍ|&´úŸØsõg¯ï%_gž¾—®ÎíP_7µ¾ž(äÿÅñäã£Þ=NÆCé‰a –óþqºDœMµ²rLvX~ˆ@ˆÀà3Î݃ñµ¶Ù£RV_`)¸ G6§#ªh‹C¹b!2ã£kåê”}ïßàïÎ;xß“ƒ„Ÿ£\Ù3’óDr妛q‘?[úÚƒ'÷¹±óbR› Ç4:å·†-×z™-å"ORL`6YFÝ‹=îûë7W¦ÁĹ//žÍ™ôsq›|-y½v%ï[Œ­«wnR{&×{ç³Ú"aðìýVs6í×»¦Îd~â-’…2Éj1ðÁ:p#6pÞõŽËç¨S•“~§”Éû\ŽÛšˆÑÄaÂy&ƒ†x';×-•ršLn—¨ËJ{äü›½OØy_l¨3ïåôezÍøX’Ê)ƤnÍw…jG|¬SŸ;蘹ƒê‹Îù2UøâHVfgMls‘„È[ Ìd³±…yžÑ`yù}eõæ|…†VŠ>9Gù —È¿ù7ÿÆ÷@pA8™Læt •Uv'¾ÉµóŠ@g’ç 6™b¹x±`èV›ê%^-›ã×~ì""09x÷Þã£D`Fds²@€~\ y°®òòóˬ¾{Ì=rª­ÞÌ ÜŽHŸØër¤b7øK¦Wɺ/\°>jäÜÔÒiî12AÂýúDà\Áùú=¤y&´úsoŽéÏ^ßK¾Î<}/]'¯&ЇŸ“YÇ­•E·®mW’—‰/–ñþñöLš°¤l5—»7ërÎF'"˜«üóÄ4³qybE¿¦VügwKçNäÅDWÁ'"ŒØл­ìÞ»Ãó©é¯g37cÛÖ—×°æv;gûNíå×¥=•åIqngN׌Ê!‘xžéB÷,Cä" ¯ÿ©=O;ZÑñ¦ªœÓ˜PžÄrÎQWz»ñ²[ öUç^v÷] ïk¡þ}[Ê(¸rå ýËù/C+#gΜ™3{bÍì<# v>è%[ýš»â"OÙÿ¹< :-Psh…'Í™€EFb‹ˆÀä@àÝ xOŽÞ´W·Š­¢ÚÛ(9<ÎÚ•­XV 9ßj&¯çnÏ lŽNJér§'Ürøÿ<•w¹³¸q™vš{ŒK`¿A˜>8_·(¥y&üõ?OvûÞÌ`ö9’-¤©ó™q=IâáïÎ:>:F¢Ì¼¤…–»Ó,ëýã|Ö,i®Ý¬}3 îGó–""ĉÀ†kí¨7jTÈ®h®{¨Ÿ{6vVò97>õv%“îûÑÛ/ð…´þ·ÿöß|ðù_þ—%d]L¨u÷¨±<“{(=lÄymåŽáËÌÈb›& ÆvLšæ¾¶a®\uªó‰}b,±À»ðžíÚÙ®kÉ䡺f.2õjS­ÂÚn¬Dt@tDàvŒœØ+¹›£‡˜¥®åùë Úpv°|RƒIÂýF‰ÀtÁùá øØgbfæÒäþìõ½äëÌ—l!Mϰ&Ї¿;ëøÐ"‰ Ïô@ûå¼ôgªPï»××3»í´ü “=;¥B^,®JU_5A½Ü'"°ÊÞÙùBE…ܦþÔ­S¹ÖYlû2x?ŠÀ?ü{ì1!þ}ôQºpáÂRRï'Ô:A±Y7`˜#æsõ%X™).Ù$«50´àѨɳ›–a¾øìXñ@I·¬ä2D‘'ïNÀ{r pL€~¶$6;vª*IO%¸ˆ$‰@à›«´Ø½2w¸~Sºm²ìUi·3±©‘“›“¶ˆ«øǵÎrãQKd¸IruW%»©§K}ÿlºÁêYßû¦\.ˆóq·´e”""Dà}7p%Ô:Í‹¬‹ jvÞ4ߕ׉>v¡2$ïFÀ{º@`=&Љì„úHT¸¼PPóΛ7S·yü=Æå§¼§ç'™ï°?ϺÎíN¶°x xúã¥Õ¯™xeYï‘x#åûf§ñ ÞÓ c-›#êÜïɦl¼²zó­оK@‚/\À;߯¯RªÑhŠú÷²…©Á’÷°{(ªý•ж÷æXjQ—%7»}ïm_¼o…h ?G¼+z-¶‰ºå¹õ߯LŽwª-x}ì«ð@€„ܥŌôàèßF•ø,t‹íÍhÙ¸C{ßÞ§"ðØÁ¨|l„w"D DàîÄÊZ%!ý‘Sl³}]»6µÛ]§‰ñÕÆ°ON‡ºý!M1Éãû¬Ý¦Nw }½RðÜ“ASˆÀR“gغ[£˜,Ûn7tNe9F]O…+˜Cê±rvº=–ÙO6?ç®Ý/Ûòg4b÷0¦~—}ï'oÐφ#šè¢Û¶h¤þ61ÏÐX‹§çeãånwXÙ厾Þìr !@~AEàÔÙ¶FÁ3ê¾ Ô+j«“(ËÔ„…•À±%µè”:•\à³Ë&œVÊý[Ý,ÓìóA-*ß:ÆTÇ7‹™ÀçyêšRLZ¥Ðwë}é†>îÕBŸU:ÆRïW¿—••ÿ(÷mzuêdn›ç¨ÊQ‰²Ìn5T¶Zo<ãzIå@B€ü»ƒÊ„^YêM6Å>¤9±ýŒ“Á—oQ’ŸwÆAwÍ86ß”‚ɵ\!9Qûyºbj:¤RFnkc§´òí`œý>¥;¨Õ®<§Ù©¸×sD”³ Oû˜æ,3ïDаR[ÛûýŠk²MÃùq™RK¹™òí[rB@¦Ë»_¹ÇjQìŸkŒLjq‘Ƭš'0ç”U«{(·Òa[U¹«<‘Ûîè¤ë%”ï% !@Bª­}²bP)™EJ|“®ŒÍëM"Ew%-–kÔî ]G¹mJ†*͵šMjµ[R¤0ËÝ8­Tû}z"0ëî÷ê|îˆDñÙJÅ·wí¨QP{ŸN©Ypö%-Q£Å]>¥ rönÍYùY›­65Ô¾«Îu—q¿5q^²—‰ªç–Éë·#ê·ÜûëÃl‹¿ëâm:1É`eO¼^B9_x8¨?@+ûnO–1ÿFß™ÒÀÀxwŠ@9^eýIb”¨‰">¾™,#tAwKÌRsh¹V»l6+Éd)—/P>_¢•^fSŠÀa='2‡N#îKnY4¦Vµ$ŽwÊš¯õ˜èu\A3ª¬ìÿ\ž•³ îcY÷[ Ý㈊¼ ,+ê¨U®œCÛï*ël¹Ô6Ã{Æ&_/¾œx/ø$L¾r{²ŒMÏ´é}iˆ•8dJDà])s4°ŸY¼ÜÀK@b«½=«}¿ˆ°Ç}ªW›ÊU‘%?¶…ûb†Å³õkÒ¥r¨'1a[Ã4Úƒôî JäÕTY’D`¿šî–#íû½ wc-³˜Á uuêRLY,éM=¿"2ŽGMéV©ß›5¤&Û2c0¶—v¿µˆ{”Ö¼¬ØÙJ7œ4gìX'Zì`™•»LÇþßñ×›&”ï% ï+ LfãšL§dºÌÍ£Cý¡O²Lh<#×¹Oø³¥âoÕ7{ÂŽ5|ÂqlŒ˜kÆtF6.V†3¦\¡äç`ñÓ)ËÆ3‘u™Èx3‘ùŒ¹pX–<ÞÞwŠrÇew›Ž cŸÐ2xV2Û+ß„•¡Ãêl`NR×¹miÈêÇ]‰e÷è/ãT\glÍ®_†87SšÊ°ÆÚÔôdù 9p›ì÷6+O4ŽÎבíï«Ç©ÌÔÆ¯oL,uî4Y×’³Ì x@&62¬3TVIFÚì9u©˜‘ñlÁÄ"¶!T®ÒbïÁ ý¦e9æ¹á|–)ÔhÈÆ‘Q¯.ÍJ¾éŠÀ™[DXRäåÊu6MEàtØPn –A“¹‡¶UB•b›]oL‘D¦Äö$³1e@•ÜŠÚnb,â¹ j ›}*gW\Ëè²î—‹ÀLàm£åZꚣ©OÊú«„2¶WâØs<îošp½iB9ù8Ü®¨‚…U ïõ nã³³q9î}¿dçüÅ™­i¾ú=lÞ4ìÀ@)ÿÞ³´ìen¯øl\ÎÛÓâ-‚8@T3ÏÅ0ŸTî¤ìnýÊŠ?vB‹Ç{„ÊÇ›´uîd™k¨{1ÛEñ{©m*·Xùùó?ø?ë ”!έã˜6ÍgýYݺcåò[ë®¶²Ö\D*Âí()ëZr–9Dà=7–NT5ØÌ•°”Õ3p2bD½Ÿmê7üïà Kbb*±htk>÷ËL¾BCË:ûž~¿ÿ[Ŭ; ¸µ-ë9-fnÔ©J!¤È•œä6l춤€ÒÆ­¶Ú„ž[øÊ9ý³Û.c¼Ôûå"0W„²Š„0Ùª[Î`}ð²ùÚ"W¦ÁdÖõ’Ê™ º÷ÊÀ•œ LËÆ5±•x‘+]²—e»´¢\FäËSfí Ç êqÎËÚuñHÈÆe žô‚î•PÊ–Ûòü¬Ìy•þÚÉÊ–«t¤5ÍÈ@oØŒbË=#»[ÔjªïᕯE&³{Ž:—1¹ºü¬]TƒO©£\_²"hý¤:ˆ˜ènCN›ò˜7h}>(Ú•—ÖYqNÏý¥[ΨögIòrUX|O}¼’³¼%d™Ã‹ ˆÀ{Ö«†-ä¼_,fEšX)<ì)MرÖÔŽø\~–ê<1ØÌûÃN»½AbYluOѱqâ3æbßáû-[ä9®—XNDà=x^Ï›¸®€IYÃÂ"0ZH:ûÕ´,e2ãX.v{‰¨rÏÊîN,Ÿ'³±×K®s)¦Ü¸ !¥P•q%ò˜Ybz'"°¯D S…zßuí÷-âIT"å¦*ë§éÖAr–·ø,s¼¨€„¸»$g gãJN*æ•ÀƬ¾¸³¥bÙšd˜#j•¥¥)Ç’Í$e K+¹¨¬fUPz·O]7°;N “Xn31»Û°¡6Âe¢ÆdŸ•T²•4"0¹Î¥k§ã.éÁ·K•”¥—Ê¢%¿¢‰ÀL 8U¢·Pg"|ÊöêTÝ/|«§Šõ6 zMW¸ò:HÎò–”eY×€„¸ëÄg gãr«™+÷1«&y|Y^fô4ç»ÕBÈÅ0'2ŽÆgãÒ7‹w\>uÄ“¸B†Å«Õ Ê1““.‡,ÍLÈUîÄìnÓ‘.N ®ˆ —ož:WÉc:ee‰´"ŸY"ÐÉ"çoÓð÷¹ÜIÙݦÖ2˜Ý#YÇÄ=†²½ñxÁÿ뛲yýÿúضT°cl#ᘿ£ÍõÏèûO½çë?ÇŒ¾{¹ùé :öìy÷óáV°ÝfõI&¢_Ü¢ë욟\úˆöÎìߪ¼ìßH»ÆÃ«WE¹8×/mÒž˜¾àÖñ¡Åú*D D Ààˆ±ô./Òym’~¾Ñ7}J±ÿä±ós¦í÷*~«ŽüœŽ?+ÄÞ¶ÜïG‰«g~}+özòüeúÜwÌ'Î$þ¯×铸¢Óõ —ëîûïýÎ;xk+Q܈½Ž=r„àbåvꔋÒp]øÛçæ¥+®Ø<{K?÷ú̶Ls Ñoéð£ò^†[ºýÜw_«B,Æõ‹¤>ùÚߺªD×Õ™B=êû[ZÁ>½JÏì ·èû-ÖW1BbÐ ~Kïºñx;0£¿ñ©6±f–g-,HÌ­ïð”F[Ÿk"iÎcÚÁðMø|ú s‘œx¿o|é2ù̯oº¢ˆ¾çÑ÷\¤°ô×ÙþTã<µÿù¦_„°‰ÿ¦šä;Â~ç8Oß7¶#ê"³bÚDÂ&âØÇœë°2¿w…ö«ò¬^pDä6yt‘rûÅ¡'Rü"p¨7ñ­kÒZuøŠkÅÔž¿-ÃuÕÞü³‡[+‹ŸH¾ú™[æáêûò\‡×]kÚÍ÷ìØ~‘Ü'ý"p è\cô"»‡§6½ûfçu-wz_8ìô…à½ÏßW1BbÐ ~Kï²ñø=:¾.ÅÚæ¥k®%ää “ðºåŦ=ÿÏÊ„´Á­_óÒ‚åÈœO>ýg}9]îx(]OOnÅYò.HwIþ]îþ¨MüŸ×\Ëýk3-M;"çÓßÒo”»¡RBÛ-tƒÊúg=¥ÕÁe:Ìb¥÷,TnOÌp1t|ãóÙ" É#¬L¯^‹´ò9Çþ†‰Ðý‡-zøˆÃeéÔÛÛs¯Ü㊫ßQûȄڗdYnîåÁÖZ}õCzø±÷bDà¬>¹¸<;üØîŸ~JåGõ¶pêôwtü‹<¢ÝûáÉÂ}ã D Ààˆ±ôî_v'îÇÓ'îWBèO.}FCã*½äEx}¢âÈæ9&JêÂÎùwip1¶ÜÁc]÷Í€»â™öù¹îS<¦í:ã¦î"ùëõ˜2x‚íÒà}Írå¸Bb5Q¹?•ÛbÊr3zéS%Bžú@ºP²¸ËOnD‰@£ùž´pþ†ÅJWÖÏé7ÿ,cö‚"0üïsáé;æ–¬³ë7tñÉ-šðJt‘Œè3ûäâ"Pÿw“Ç~#JFýó["çé«!1è|Ù“*ûׯÜÎù÷>zÖßâ™à 1pA‚Û;v“o|&¬"å¾ãŽxS%ãH, Æáމ<ì7·]²ܸʒÈÈ¿_ºpC%9¹Jg”EÐ/·©½º%“¡lÜ K7¤hm¿z5Òx“%ö±7¶7é“­k³ûÄúÇôð£ëÛœ"pvŸ\Ž •Më ×·¶½{ߺI›‚ hÒ÷UŒƒtæÌª•ùëú[d¿÷1|4ý1q¤ÚŽþk>׌ýí«î‹]w=HŸŒ½ÀzŸ°ì_þèK,ËØÃ‰ÙÖâ2kEaÑõB»\ɊɈeë«™,Ö¥[r@Ð3n¥.wÊó…Wœ?d“?˜ó‚×V‹ÔßìLgz»ùë‹÷ 1ò"m}"’¸6æÇÜL<†­¼²Ac˜4ÌÊwä´ŒßpÊš*ã«ïó7x¹‘\ßœšÜd.Yî`ù˜:Ç-9 8ò׳3Â-òÌ`ðƒÄXz7ÇþÄ ÁÒºáM /›ô|Û¦ï·×éÈ ïkcÏ|ÇÄ‹@öN4njÖÃÙ"0ÚýÒ»Öõ÷Ân•gnhV>Í”[¹xÆHw|úçËs["ãÄè쑇m²?ݦÑÀfBbr³kn_õ'⬳÷y´%ð™#^†KYV6¿¸)u×ÞDáÆãüœ~ÄÆ‡ÃÊ%×qé º¶ì*æ:«í‹ý"MŸÔêóÓ9Eà-^¾ ­®îÆbºã¨Öžy4EFÝ”}ã D 9³j%eþâ/­½)‰Í uÄ ˆÞ4œø}weçæzX\ÍÎFÆÌД­»•ð—OùÑÙÙÖâÜI¼ÔÈzþ*æ.qxöª¢žÉЍ¢ z‹•;ù|áUÓ˾¬[¾ókm³Hý%g: ¶ÛoEð½þ×Wû”*gâ1ìßðÅó©3Á=­&W™ÄŒs¢¾“²¨=:õV0YÿY}v’.#ÜÏ ?ˆ@Œ¥wïxì%l¡”[;Ž+¡LÆ1Ÿ(H-wéÓ¤œyõ¢ëÂùý_o»¿ûô˜ÀÇœ±Á;æìê…Älª7Ù³So›n|XD‚×Å‘/¢Ún—ã—~çŽMåEÊͬPûÓ³Zòk[®«ª_rq3¡×´Ä˜›Æ”e·ü$&1Ì…ôm©ÅÉ9n–] ÞïèµÖ71Œ“w3"aPº>©kŸ¦Ê: ZXµöàå ŠÀ4ñ}iû*ÆAˆ@ :sfÕ }ïýkž­ë·¾•›4Ç$¹ n{BЧþuÈMmÏôÙÈxP´ó¼~Éq‰`/Âö–û÷MãÃÔ™µâê®}éw1©¥g¸@|*-YÁAo‘r'/)ñ_%|æ°¼·ƒ¯z';Ã,© —#1ÓYxÅö䋵7ùRDï´q0+ÚžGcúæ£<Þô›ÚuSf‚‹³2ÎͬïÈÚk¯/ý8scŠHþŸnþgƒD ÆÒ»w‹[Ó¯ÈâËö'þiÞ67âetãÿn,Fšµ.¢\ÏhâRÄÒEn0g¹Ù܆'ÝñÊË-“€HóDàójî–*[枯¦ß"â×ë±í}D?¯²êÑÖB¹·“¾€-…–_¦ë“Ͳþ·²ÌE—÷m!Xü=1&ßÓyˆ@ˆ@ \˳²j¹—ö0ïq÷b‘/ë4Ç$û{/(¾šwÝ}¿¿@62=¥q û—¾²ZYˬ#µìU¿¹°íA)üàÏ÷ØÿÑ]Kx)wÒù¢Êü‰k%›øÄáó}æ:ôâû">pñr$e: ‹ÀÍÑT”Ù÷²ˆÀëL¸=øØ-+šEûÿ:¾oò¾4Úò„jºLpÑ"pfƹEEàßÒÙõßy+³/žì+ñáæf0øAb,½KÇcµ1v´póÉ>a.‘ÎÏ£ˆ8µàñiŽI#7g¸Ø9‚#>q _Pc›®¿·¸ÖïX†ÈuÏkÁ}Ÿú²öhÛlþ…ÖÕKŽ›ã• ¤zAÞ c¢ÜÌòz°<ƒý^ó”ûÓ«âýìdb½)ÄÓ{®%p¤6‹—u/3 zó$)b÷ª1Âxñí>ÆßÞÚ"#«V÷òÚÿ|“mí·­Èÿ?;eŸ\Ÿ[zå ìExKó4ZPnÂ"ƒÎ<vV-çáºùé Ÿ°ŒV7¼' ~8å1³‚‡÷¼ðq Ô'±þåÉÙÈ´U¥ˆx€½*.KŠ4™µ¢ËàºWp«sës^˜º˜L†fîGœÁ_Šˆ…Êp¾¨ÉÆf ÷ÅùË‘&Ó™&ì˜K‰øiƒÅ@¨ó]ßø­¨9MyÏ%$¸®²Ééÿ¸u-]&¸(˜"ãÜ¢"Ð÷/¿™&#ÜüÏ ?ˆ@Œ¥HÔvÇaûþ=xø‚`ï]Q¦÷TyÎ'»ÐßuåÞIB8u/MÐ1B~¡Yµâ'ã,ù„ò-OsLš Rßw7ae¸„¤,ÉÙÈ´ÏSÁÌZQx«lŸˆ˜‚ nð7­GmRê]gØþеà\gÙ®®ë"pr'ïðà3Úd»´¾ÍþÿŒŽþ0•h™¿i2i«uÿ¼%]6oݤߨ(ö³µgPPÞº¥eEc÷±uKlÜ›Üïn²¤>“92ÁEˆÀ4ç–"ƒ}&MF¸ùŸ ~K!!1è¤ÎªåZoÖ?aYÆX¦±U›žyqJþuø{™Îúy`³ø-:ø×‹Ö_šLg^?‘ím¹ûÚ‰ýŸõ‹@}¨8×ïä&ò^r˜4™àžVþ*;WêŒs‹ŠÀ­-ßgßÿç[Ú¶Rd„ o@Ÿn£^ ~Ko'ø&ØÜÍðgï*ˆ@¬<Þ·¼ÇÒìˬ^ûÿÿíݱ­„0EÑhŒ€BHÝ}у:±‡ˆœ FÖ NºZ­€§ûÿÊÛº÷ýÁùÓ Çûú+~~?N‚óPÃ%I°_ç ÷¨g•€4\"Ðõæž¿í·Ý³ Š{3îQÏ*(h¸D ë!=ã¿ ¾ u¾÷¤"† [ €€4\"D Óȧ¢‰@"Ðid€SÑD À–Š@§‘NE"[*F8MŠ@D á@Š@D á@Š@D á@Š@D ˆ@[ €hK m)"Ã%@`¸D ˆ@D À–Š@D À–Š@D @.D @.D @.D @úð¶"Ж @ÚRD †K€Àp‰@ˆ@"(°¥"(† († († († hK m)"D -@`¸D ë€á "D "P`KE "P`KE "P  "P  "P  "Ж @ÚRD ˆ@[ €ÀpaK."(@ E ¶T E ¶T E "Ðp E "Ðp E "Ðp E "D -@€´¥ˆ@ —ø³¥ˆ@ —€â@m"@ ˆ@D "€@ "€e Ôpß”uIEND®B`‚flickcurl-1.25/docs/html/appgarden-new-api-key-secret.png0000644000175000017500000006453612210726306020327 00000000000000‰PNG  IHDR€S©½?i%IDATxÚí½ÝS[YzÿËŸ0—çâü çGùOøáû¾Ê\ÐÇ5UtŸ®S¸]I;/™$@&NšÁ&ØNc;œŽ5e·b÷xpÛò‹†X¶GvF‘ma @–‘ðóœõ¬½×ÖÚ¯Úacúëò§ik¿iiïžg=k5mmmøþЄ“@@@@@@€ €†`,ÓéÁ[Ô=|‡úê¤[¼îÜTI¬g“1þÛz¼ÿMÎmîá¸F±³ú1‹ßÏf¨¸K¥D‰ë©»kœŽÑ~ø¥Í#q::8E“™âp,~mÌÀÅp[”fé&õrpø¹XO…Nq>Þ7µ¶gO^9óÐ÷XÆfö“Paºx#ú{ùé Jìii÷icÖp1Ü^„h–>Ú:;+oΧ?u>~rßœ'/ûËì`vŸ4ƒâý—·ñ~Æirqï à‡ÔÆ€=/€;‰º0÷aÝœ+s!Â;N©Ê‡ß8Ò±kï×#—éБ9±¯â=->_,ÄqMÞåc}.æÄûWœÉÒÉA«=ðqΔ\Ú"Mjm¦S}Äî.É´ö¹ãÐX£$½Xûw´çºhw)QèR þR`¿'üÓjŸb?â1ñžˆ×Ë}¼'öca € à‘úðcQ©˜j=r‹2•€êÜÁxHÊ9F§în?BÇÑ1÷úŽö_«£¤B';_ß=\hñÑÙ§.ÙÝéëk§·?öw¤j¬cNÑÁãשïÂCŠß¥ìŠóøsw§|£Šîþƒ1×yKžuF‘?"uÀ'íž¶ä1ÿà! J]¿æyÎ-€…ÇéÐî ºR”5j½§—éœÈÀõ¾A©.@ €¾X“žŒŒ~U×QòÎùÐùõÒ¶Ž)qÖ%—‡ïQÞXòHSp1ˆvœÚ*artpð©vœ;}}8ÅÇSž×ï¸{ñiùS\§ŒÒ†B o ¦êîª `a*âë…À9¿|èm7m]éÈï ð½@% ‡ºDú¬'^³à"ó•OáÂáq‘z»áŠS¢Þ(Œ½£îÛE35:é© * ÝŸ^£ûWœ³#c;}}¾œ§ä£U~Ó‡znÑI¹ô‹’ÖúFÀÓÜU@Èßa¿Hñ¸Œ¬%€>ï­q¼E]Þý?xöy¤÷”Ûn§oÛïø¼û4£±LUòwï…H\‘ºÝBÔ“®öÅ«,P÷a·¼-Ôu<ù»w<û·Æ½+gRÞ(£o1ˆ¿,ôݬF$³žãähç+b´Óׇ“½î-ê˜,y‡ˆ‰ ŽÓ¡ããô‘/q!NOìâžs]ΨXŸ#/ÄíHpTÎW?½C©¹5ÊežŠ~z)ÊœÿƒƒÚÀÜb°ò“Ÿ  §°G¼·çW÷#óµû¼\Óß¿í:_ï^ÿeš\ÁEÐt§Q}†_9õÀÄòLÚsƒM¸"p†;ºU×p%ÞîWÔEÆò-ñçÁaoº818w;}}½Ã¿øEJ+µSíîc7 ÊÏ-SfNK'W*¢ %C®GYº#´5N%»oîI€4Öå>§³ž÷?¸‚Øûž:û¼fÛE2 ß00î¾gÆ‚'M§n¢EŸþ_‹ô]OQ'Sõ\®£*¹v?¶Cfåp7æ°7†HÇ"ƒøT;?¨Dè‹§R±;}}½)`¿Te4ôœ[1¥\JVß >½©_^ÔJr÷r~RÌÅ*'}£>ÇsäšH«¶sKNõwð‡AçÝç=qƒã3X:0Ò8€ÁËø/ÔFHQÄaaRÇ·5ȵ'Šés }>çhªHÜN__ˆïûp¼\£±ÁñmfDmCžåúŸÖÑÆ¶Q€Ä].ÌÕÕv1!àžÀË A–©sÛ3¸‹A"D‹d$.Yë{} üæuîªÝ0y6(å,ú öTƾLG¯Õ-€…m£³»-€í±wÖvàvГ¾FI1c†’ ÿ-06É”ÅßQ #Ц¶=ÍY ²z G¿^öl³à.89|‹r y}í¾Žc>ѽS5d%u!@KÏ=©ÓÏ>¡Ì¢’ÖMÏöÂð@@1‹G@ýRÅ¢ ÁÇ?Œ–æên•Þ7í¦b¶!C¶þ{ø>ИËxúè¹ûÆeE%çuúHÌBq’,žZŠ €›ë‰y"‡ÝÃ÷D¿°;Núôs›øE›n8ƾóï“\Rßë·/¼}×¼çKô뛼x#0ìÌ^¦´;ºZGÈ¡ þ3’änÞ NÆ,p¹mô™ýÄ#KÔý©ìúÓq1³È=:÷U†2+@À÷*€þb$fdxP”Ò’÷›ááx„ÁxWž{^wÐoš3GîåúÇñ;rƒ&2E*ÌÍÑ©.oÊô㯖ôú(øIoµ8âäŇt.6%ŠjBúõYÒë•ɼ»lËã˜Ï¬-§BÆp$¸ øãØRýè—®«àDLgwd»³Ð@@ëîÀ½J²ö2©‹×"ÝÀ?ŽEºèÛïð9ðpøë¼Ãøã‹$ªú`Ø;}”¨¯nÙŒ‹¨›³Ob¢^1ÓÆWt÷- @9àñíOÇQÄ#NW—®4¾íûB=ƒ O…FÝ-ŸöT·z‡9í#7Ù©4}|$0]Ú Š=.Fûïà¶Ä‘ûÞHmúD‚n>§sý>±OoQÂ¥Üéëë'/fÜè K÷ Éü¨çŦÞ_ƒ)؇ŸPn.ë#¯:f¡»ßÞGfkìo…&.\÷Ó©eJ»Þïx}Ë46|-`î⽡œ±{møàð}S^)Qvf‰Ò™ÁåVŒ=°_~©@ÃÚß"eä¾.Pvnm—^¿¬Ùr‹²†³Êø\—˜Fï°s*½GÆ©ï«Yû".§ùûãë”ò™Í£ø8å™J_ß}12à‡WÍ=KS&âl&¹©'41cVk§.ŠiõþŸ)zõ>÷¿òš:>ùŽšM?rÒz¾ÔàímÐÈ ±Þ±×»xLæ6Z†WOžy&ièцãØÛÅcãeJ_ÏŸXØV»4V_Óè•Uß"¬Ô¥,5›¯û=ÎÝ/ÐDÖÜ×ì[åéEjæ÷øÌê.·±MJ~3GmŽö5Mc+ <žÆµ«Ìí<µhŸ¶á¥s¾´(ÐH[Uüšš›«¿75S<· Ñ@#Crý-”Ü3¢5CšwÆgöd„¤ø`Ê–³¾»%‡Øœ’ã ^¦“Òé‹)Á=:j=Øy}Ù¼Á ŒS¢ä'€æº;Ϧè¿þ‚xýqK(»åòã{rnàd¬ÌJ!ëÉ|}‹ZþdW0r[¨”¨•ovÇ^ÐÈ•E¹´`2–§±û•†ËÙÐ1!›ÛËhÇô–&ùæ=K9­-wÚR[Ô$hA>62½I©±§ÔôÉܶ¤$u~Z¬Çÿµ™ofé>+Ô÷‹÷„å¬×’Õì[ÃÓ–ä<óýòÖ(&Ïdåvš»g)–,Ròþ Z ®4(¸³ve³´lž“ž9Jå*”iîçðʵ``a²×–½‘DÎü†\HZ‚&"½ !lʤӔ+)—NP|"A3kÛ|†&'ââ±IÊä²hg(19!ž› ÉDŠ VĪ£k›£‰ U$Kl'ÅËÇ… ¤sáßâÖÍṈ̃¯3ù¢\†÷mb2Iù¢YLhâ+h ‚.…¥Ó*ˆôx^œƒ‰ø%3ùÈÏ7êÛy¬KÈØñ[Ô}\üüT—2k éOS.Q+R?xÜ\V `2Pã”r¥R®™ãNU/ØÆÊMÞÌPüz–2‹®/ F…Ҳ⹧â”ì}ÏóÄ+›Ú:Šb^bk¾_cMÎ3\7Óäݧ4qó9å*æqñßñ›YÊj¯eò3³4q=Cwç´÷ßÜN¡bPî±Ú‡¢ÝÅ!õõ )€ç,Ùí®8·@‰›¼MsYuó(_n×o(;_}¼8¿F k3«›þ×Ð'KR;ÇK”_ÝŒ°o☳bßž zÏÛÏ¿”?;¾ÑD_Ì}É®SQ—¹Ÿ%ÊiŸíòR…f– *ä^ËíM>*~‘S‚Ý<¸ì¨Äù§ò=ª~qô?¿ÜFòÙ²8o(™íäIÅÚ^X» n¯æþ‹ôîÒšy¾îWÏWæÊ3¹O“ÚñÊ/B¾ ¬Ýço¢ÓŒø5wM:/j)!W“)Ê ¯ :â9ÊMôz˜0Å­˜õ<×ÔÔN‰Bz]w% ´UHP»ëñ–Θï·èàu‹ç‹ K.ÝtÈGÐyˆu˜ç¡­³‹Z­×ŒfÊö2ÉŸuŠå‡’‘žoHpå9Brôz‘òwoI)‹Ím:ðˆ[×èäS ‹‘ð²÷9cŽ>Û:xö¹ü;{ýŽ#MÌt½d.[š¥]Ï|*n(b lþ{øyõœžåèây±.>¸çY'Ëè!ÇàÙ×(U²Úípܵì5J,šçÁ=à6óÑ…Yý›r÷'GIƒåK›1l Àüý¼'=Ü{Û’†Òkêt¥›û—¬Ï™A#Ý>©å±’|n´Çý\.ä3UÇ1­®š´äSôä}ŽÒOåvâó¦pŒò¾õ¤œ¤Æžyö“eQFu8á=Ž‘'¢ýgµå½¢<ÃϽ”g¾Éy×ñÈðÈô€v>YjB÷MÇÄ™¬ëùç”X I/ßÈ™¢³ºA±nç~Íy·õ#ñefþ­y‹Sòb­Òχ3R`ówM‰:ÐÿD>_Τʹ÷”ˆ·×-Ñà›¯Ì%çª} Eÿ;϶qóÆld f½' hÛo¨—û5ž)JAâþaMÃEùYo“¯uÙÎäï7¬þ˜–d $Í¿s·_ÚûS|ôRóœpJÙ\¿ +Eë+A¿Ïý¿ÜÐ0EfÐjc[ër[üÒ–¥¢ì‡6`ÉaؾîÏ9…¼²f ¹%¶~_N9]ÚÔ½$Ÿ/Üi§Áågö‰)O-âý.[‚ß!%oÑŒø«}±ÞS%[ê<:RñœfvÉSa~fDz5'~æçßȨyøù5û÷q„5)–ŸÉ¾ oW¡íÕ{.g´séü’Z¦Þcæçb,» QÀ† `s—ÝOÇŽ Š‚‰xR`2f ¡­|&%Ó´£N 3R–¤µ™éF#m§œ»Æ&)•JÒh§Qkð ®ÛÀNš±„q¨5\3vñG/͈ý™‰+yk³‹A”àµpJÜZÞZÏï<X2S¹?¼AI9“Èœõ÷5Jºz9zá©}Qß®ž¶äME·â‹zd2kö•›Z‘’w@‹òqš”g=)•Hx:cɲ3Í“+ο…Œ%ÏÆe·ï«'û*M±ëOL<|GH©ÚΜ¶¸k;Õc4Jkrf–Ôƒçÿ*EózŽ˜ËrÀC¾¸L¡3#††gíc{±ißÄùüÀz"€R?yF½"%Ø{†™Ÿ›y÷Óxýy‘N+ÐØ7Ë4jT <ª˜2!nÎcüÜxâߘè[ÄÍ[F[b$új)é±#QÃbÝ÷…ˆW×ÇU¦?…ÖvzïRÆdÔoY¤0Í´p|iKëg§ÉŠ8/º„—ÖEjT¤oErtlV>§Šd<¯õÀMñÅÁíž~éÉШlUƒ÷-)åfšzŹ/QL¼RµT·#%3E»å̲±Ì#³¤ÙSS«ésA•‘<³O¥·?¢¡S2ìè^ÒÔëŽÌݯu~Íþ}-ç«ê°vÞ^ ïþ[ícÀ‰}Kñ~³mŽMo@0e;õÙâJçâÔÖÑ+än¦*€­Cö±œñIyšëb!íÐo¡–f?Ik¥DÑLÛ¶ú¬‹«’[}R¨‘Ö­íëdoKˆˆå©·¹É7}+£Œ±‡6w%€ÅGy»rÓŽžxFmÝÏiì%;ýk>ÇdÅsϨk|Íêc÷Òq£9Vz•ç‹ÔÛ“u¤uÃ5S™BÂoÏÉ´¡j3ß<7…õÒs)5ù­Úh̯ʨ’–í~樒Ž&€fd2v>ç¬2+ú¾'-PE´ìóÿÉSjïM[wÎêÞàJIŸÏú¤x¿³Sµ¦f…!3ß¼°Ÿ7Óº9M.ï©7ì,2‘@A.»ñü*¬®?¬]…¶WѶj‰¾5k/C°®á ìhW ¥ vˆêÇ}ml©JU5-Üiõà ŒŽÐX\¤e ßÙµC–üÄÚ• hFت¸C)󛙥‘Q‘ÂÍ«uC×­  ’3?«Šl3µ¶µQ›Ek‹³ÄNñ¶ZëâØâ=¿Ó‰LMŠ”cR#”+&FiAF¢XX vÀ©Ðþ/Û)QýäN ²#u«`Ã’Ó“ŠRt~ПÑ.ΜþEó¹ƒæ´>€ÛÀ$GôĹHëáOèÜõ9™®-€æ1ªcùøbu˜¹¬KOYÇZZÑØþ§Žh:¿ýôŠtm¬»`@¥‘5#e½úð)"Ê9ve‰RKV:±Å=I|³Hñ'o¬þV/(£§f­mK%9¯†Øý§—e$ÒIÚf„»dU73Ú*Æ|AF¼š¬(åV4#K¹ GÔ«Å%€å)à‰+ bf_ºâjÙìÇæ—:¶¶=ôd³ö¾Y’åh» 4zãµ7,Òš2Û/Ò£†5ÖH㞘Q³ö+e;<–}[½Vp*×ÚÏ” Ì»*¬ýÚOÁêOè;ÔÌÒŠ|jŸ_¯†¶«Ðöú6šŠìÂè™9šœGê@ë$O-Úø--ŽèVø  .bÍm]ÔÛÙª½¦Uk뢑.­§š‹ÕþƒÍÍ-4"¤/¡Š(šÛ¨w ËNër±IPÄÎwÝu à„•jnêˆ;ŸËÅìqGÓeG¿æ¶êhmv¤‰k=¿³¨;0˜õŽ]xÑŒ†›ym#e°¶† Ó©Õ¯9½úº»¬™¨".Z¢Óm]Ä…Ôåg²tô°Ù玿¨ýéþZÜ€—ètOÌ®Š)A?8|]Œ/)R®7­‚Œ#õ  ñÂìx kŠÒ¢*73e_x+:Û˜àkyk /ŽÖup¦ G½±E+~ÆY¥Ú1V9sã¥cà&;Ýü–’WœU±Í= ”kD°*|î+'‰3¦°éQk)!ÇœbÐjÉ’±$R”z%ª™Þ.p0£bª(ƒ%ÃýE(õ«{ èâtÁ.¸Qcðų¾òë·ªUE1GؾÉëWÒ9xqs÷K«í:‘}òDúvÆï(Ó¼ßÑ/Æ-á;6]MÉ Ñ*ØçÉ[‘Ü{£:ÔTB¬³Õ]±Ûó’&­ˆ_øù5ÐÝE!¸]…·×Zç2P €Ö9B~¹H1LK¡XO_ 1L ¿¦PôIa˜ë wªXôlË(äkŠµÆÆª±îF£¯m$-Ù½íZÏïGŠ+¢ äÑ5D_¼‚x¾ìÓ^øñbCÆ3×´a79N§ÙíP¤œ +•ÀÁc N·ì¯yœ•=ù^E¤Ž‡É0|IT¤Šç}ß9¼†áLÖsÅÊÛ=Þ>ßÊã/–6²žB©v_Gž:Í0¢·Á‚\ïÎöOïh”x}o]ýúxLB3¥ÎÇQÏtieqÌE¦Ò óÖ®j´WÀ. &9Ðêªò­ïùFÍö'˜ l¿xfÚì>™î6g=ÁÀÈ@Áv‹ecÔÛÛKc‰Ü¶ž€†gm–Deö`>pnë\rÁ"ç  € € € € € @@@@@@ˆ@@@@@@€ € € € € | ×LŒ œ À>ÀòS¢æŸµô{iýŒ¨ã"Q<³wOFLì_SŸ8†/ıÔXvô ±¬8Ö‘§ÁËdnšË4_¨½¾]c]œ÷~s?FŸ5n½9qÜé•êßéßšÛè¸ùŽq…¨ß7AëÕíµO¦m„h@ìÁuSN[ïc‹x°ýX³Îµ ½öý½¨¨vßþÛïÉ1¯ÓÖäãmC}n™m°É¢å*nB€ý €™ê…- ¢Â<CŸYûø™øvqÙ¡M^¾¾]CHIëOkïk=L\2××û¸úXêêû»¡e~ël_Aòµ}ò—€Ìº÷Øj¾Ú¹N¾úþ^T’W¿?rcÌ[ïy_„ϸø2Öæjk@Àþ@q²‘TQˆýÖŒÒØ¾+{P?¯C?¯-U©}*€>òû>°«ßySíHÖÙ> ™éñoŸÀúH}°˜©ã3þJœ«}Œ‰h¼!¾d”‘ì+ü,8å9ðyõ&;±èóZDoò+&‘Ò¦ëÖò¯j/_°Ö[X ›w%€u«uœÅ:×#¢í? HW‹u^Yë]¯?Rê'€­×¬ã«ðs½í÷ÛÝæžU¥®÷BøùŽÒ>Ǿð®c·°V»lX´j½º­(ïw1ê~mX뵎9}­N¬£ÖÓ^ôã5vã³åjSµ®ÅÇÕ¶š ¿Â«èmA~Ævá‹ÆN?“Û9Ïïâú¾«_Ôûö*BW혶¹,{E‹!ýµZ|ÒÆŠ3£èºéú@­™B#úéQâŽÏòw|R„÷«7f; -¶•Zq.—¸òŽP\ †.x÷½×µï)ëFÚ{Õ¹ÿv_¾ˆëQ–\«ÞpÇ.z_×ÂçäU¸à´÷yÓ¥©5íXÅ:z¿pëÏ}Öqßk¦£Õqˆ~›ÅyŸsTgûL^j¼N\©î×P¦Žv©ï!Ÿv¦ú]¶\ ?GyqÜíý>]1Äû’ÔûqZím$)ÚõH„÷ûÍ^ñ.§úœ¶^­-~‘ÛaíÅXô¿– Ü©^KñÙJÿÖû|Ûµ_,Ôyâ÷õs­Ý©^ïÏ¢³}µYmd@ß·€>Ëöþø´[­mÅç뻫s×~Ó§¿±µÎÔZÄóì·_ ¾¾sß_ùx¿S¼ÙjLuÜý¦'Wj´ßKÎ>ö~þV;gê\‹÷sìªkY±ØSŸ÷%ʲªMô5¾7€îŽrň+Í6ïü5÷».†œ&χÝ%%úÍ2yÍù\ëgοõ(¤}£ÿ¼|¼Œ¯P¾röjûÓª§Æ/ùì‹Ø|ë7‚Ö‹Õ~—ñ ÎsÝÖﺭ|ˆà´ùìCõ}r^¼¶òõŸƒZémµž®ûÎ(nóÅíµÏø…Æ àä9ˆÚ.G>¯~‚Rßw"¤(Õ¹íóy_BÚ›cY×ñÇ.„÷¥¬%€‘Ûa=íå•óúÀËê×’ö;ûl¥®ùóµðkžë:¿Þb³Á×¾ ¶á·àð—‚ûÕ/p3õ]ƒSü>í?ô<×ø 5ìú®ÆfýûëŸ!ý¼Í¬Gè2dG÷~v= >&.8kŽø.k-¯Ž­÷1„|h_8­åF´Rì™äÄŽ´éq‘JÌW¿õ«oB¶X.V?8­—ªÕ¼¬ÉÒ¾=ÛiÌ©+LJ¿Úù˜Ð.öú·¹Ä5ï·cýâÙ!n,9q¬cwÌý­g=AÒ4¢]Hó«¯ «lvô|ì/«¼¯eŸýQ7…mï»»¢2é-ü˜¹ãÝž_ûÌsÿ+ NwêÑ,] ·#€éu­È][G»´oÔZTE.ûL;Δ—ýÙ²‘Ónfií<%^Õx¯zÏ©~“l¿V•ý= M×Ñëi/±/ü—»àL¿6ê³e§u?«]Øæ·¬.èz[(ÎjªÚëÚ7)ö!%ÚÇÄlíþ±n1UBª®uõ\ƒ·+€îó\Sx}WǧG-RþEµ '­cn¾>¢€}^iŸKñå¡ë3×~êÇ$ö+±Rý²¢"vСže­ñ¨8ǽ—œÑ|ö®ê7Ôß`”hÙ7díâ–·ÀÙÛé÷ÙŸYïMM}#lÙ-Ôö½ëQHdÔ½ÿ#® fë ºÀÊ ²&I|3‰‹õåÖêOÛûú…7e¯¶'Ó);Ù÷€ýpi•–îUä*`—yRLWÒJu®ÇssÉ+§{ºÄ1§ë«–+ ¬Þá¾ÛÌ;ÓS“, Ióg‹Oz3ª¶‰›\fm›ÕÜ®ôºÉ悾El—“]7/­°g(be÷Œ¸™ÆÅgiHD7:>÷—Ý(íÍÅõ‹–«›m­Hz¤vXO{Ñ÷s-Z¥òN?[;@Õ7Ð÷š³QíSçþ줢 €&{J¨ìÔ§µå:¯ÁÛÀ ÔxØg¨¡×wíz‘Q3#Síoª"kcóΨb:B¡”ˆøm%Ä5gôšY„æè*à@M2ýŽWÉxäe!/àC@uÑão”†ê{Pgëñ‘(wŠÏ}pw¼¢ë±sÿÛoF— ¡:Š@ô´AqèB/´õ®Çï";0­ í÷RKýndúò;Þw÷‹5пEÛíS\ðg^™{qƒÈ…T'nWƒúÂÕÛ.õtoBÜ˽Q‹°*éÖˆÑÎznìJêý$O½Ç5»RDh‡uµ­¡Vv£>[;@5 |ÛÍð¾[ë©2WQK•ÒT.5\R½×àí`äŠð]¼¾«ã"œ¶ÖÕy¿Mçó‘OF‹¬ÛDé»2V$K¾}­gYÈ ø«€ù¢W~ºý`­ DRKKrdnf^c±¹+¬;ûèD/o[UÀZõÑŒ)Ô÷ÉŽ ®Ô¸xÖ¹ž°á’âÛëÀÅúf'؉6dßµÈWJ\1ûÀ(.iQÀ Û²c§Ø{ßÙwNOgÕÛ.õ¾\|ÃRÑ·–ÚU¶v¤PÞàÄy‰‰›\J¤ƒË+uܬ댪~‹­oú¡í°žöR#X˧gMÑoÔgk§¨¯µÎ`]à i™gÕsìן³ž`ë{Àz?Gjù6q½Pפ8ñ»oOP@C_§ÿ}ωU$4$¢ª< w[P}=À~Ÿ;íxiþ(ËB^À‡6 þ­ÍÝ'ÌO¦óžÕQ>ªêѵȸ“}ww¦çTÈbs¯§øß¡¦Ì›uöy‡ ¨»]êi»>Wÿ­0±š ¨tu ·‡ìØNß.Ÿsû"B;ŠÚëi/aý÷ÖªÇË F}¶ì6õyí>nµúC éÁz׺ ´ôûD¸ê¼ž»y¯\îªÖù9òDwû¬î+Þ¡\j_»{ψ· ªê¶ÓÞÚ1¹ûâêÝRÜ}k. y{RÅE&¥}ˈ†<™Ôª˜\÷õ ´‰yÿª»ÞGõ_ ôÔ•fÏñ*><½Z•FˉýÛ½¿Kèà1M fî{‡$»xÖ³ž ç瀣ŸG›¥E;W¶ª™ " àNö=d°æ°>‚m¿}÷hGW2ÞÈj½íÒ9z ƼÿÐ<Þ[gpÕyÔo¦mW«7Á̈‘ä:Úa=íEZF¿–Ä/ùWïô³UÔf—I.Ö/€Žóx¥*‘ŽJÖ~«@d3ÍØEC¢WÏ5Xï~¡ªT¹úUoSïBëþiUw¥¯>Q„‚[?wï¤núŒÏ¨w ù¬:bí÷xd˪±Å{4pµÆ®¼3¬ÅˆóC£G*ä7§ÏiÖqð»ðµ¹:žëÕ‚ú7Ê]zÑy#oùÌ3þ™) ½xÖ±Ï nĹ\»«ÖX!XF>÷ŽéUîdßuj¿q?­¾rïCÝØ(Ùª§]ú‰IG”³µ>CòsÅÞ}úÜ©þDõ <®KÎAjÛúë0r;¬§½¸–åk‰cÀ›ýly¢J‚g‚š6Î1ž"ŸW[Ч޶ê²ä×w´žk°û˜[ú·Ñ¯´¸Ï‘þYìÔ¾è'.Õ÷ÙÊÝqžÏNWˆ£²Ûol¿ÏÆ£­gYŒ>äA2¹Rkì‘ÿ’¿ñvù ­ÒqÕ5<‚V¾ï®Si2÷‡GÙoöv⦑GÕÉ¾ŽŒÔ.ÑGâ/»$ÆoÄ}R@Oû©ýiûm° EYßôB£—|Þ§~gÄ#¬° ÅMÛW%€Ža¶¹ï…GÞñëgÀÐ"6œNÑÓuõ`:j»j›Zq‚¾Ž¨íÒï¦UÊó>³€ð6ÄÍoô‚3Òøj븷;qÕgÝQ+?ëi‡u´Ž–ø]K’»óÙr„|y´%̧ý%~ëm Ü·,þÌ¿}¥ëOÚià 1| ¶Æ‘tïo/W™øÏxž£~†p}wwÑgùz<4ªzÕ·}PòQuä5J“º–ϽÅN³þ\sY÷xšO!4à= `£æTT¬=Qz^ëÀmìc-¿ªv*/¬¿‡õ¬W_·¹&ÅŽcœƒ™¨íÒŽD^¨²Òy1¼¸ÛaÝ<îîQÜØÞ룶ÃzÚKQ[¶¼Ëí“çæÏÂŽ®Y;û\ÄsŠ:ð=®gYö›¼¢ZºFûÓòš6JÑoÐXù®¹ßAš ûO·ŠÏpÑrÍ;€~b@ €|x8‰ñ¿À6°í*ÎÇûÀÈ}7wÖÏ û*üÊìkUƹÛHsÛ)@&@ N@@@@@@À. à‡òïîÝ»tòäIúë¿þkúÛ¿ý[ú›¿ùÉàà ]¼x‘þã?þC¿ї_~I¿ýíoéÑ£G433CÓÓÓž>}Jß}÷|þÖ­[rÙÉÉIúöÛo鯸qæ7¿ù }õÕWr; o‡áÇÐ@lпR©DÿþïÿN===R•üõõõÑèè¨?–>æW¿ú•üù_ÿõ_ôàÁ) £äyøð¡K·ä¹ÅïæÍ›ò÷‰‰ ºrå ýçþ§Cþxû@@ø£t?ÿùÏé§?ý©-,ƒCCCRÀT4ŽÅE1K±ãŸŠþéòÇñ:‰„;ùó‹þ±üqtð믿¦_ÿú×öötùcX8Ñ@lÀ¿õõu)X*íË?ÿîïþŽèܹs¶ñ2,—.]¢;wîГ'OìÈŸžöeÒé´\†Å Šþ1ׯ_—r‹ÅlÙsËÿ~õêU4P@ñovv–>ûì3ýSø³ŸýŒþùŸÿÙ?äôïµk×dtOOùêø‡?ü’ɤùóëï§„#,vJþÔöüp|| ´¦W¨«'KÍ?úŽšÍDzÔ;^¤2Î àþÀÍÍMÙïN¥~YUê÷Â… vôOõÿã~x©TJÊž^ø¡dåojjÊù ’?Uì¡úûéâ熟C°qänÏJéS4k¿7u/Pçpÿ `±øŠ~ùË_: ?8úwæÌGôOUýr5/ _6›õ¤~ù'GUŸ>·ðé³rÚW—¿Zˆ`ƒ0ÊÔnÉ^ëp †ùøLrZ¬Ç{ï8O €ûQß¾}K?–Ñ?÷ýûÅ/~!ûú¹‹?¸ðãþç|#ü¯‹‹>Üòç@~žeŽ×Ï)å áÓaQÜ-,,­SnuSüþ–f¦K4q{…&₩|E “!RÚ+æã*dØ"µA¹ù å–6|Ö»Iy~N®7lûo)Ÿ[£„Z¿ØîŒû5ƒr¹u™š-/•)q›—]¥TÎØÖråé+Ú—£œkg²¦Ž•p1Üøfý,èøÉO~"#ü‡ø±ÅOÁ}ô8µ«dO‰Ÿžúå~~ò§ ?ïŽü¹…Ͻm%…»“Þ OX†¦©½{Ú‘múÑ3Šß_¦Çcœ"ÍSžEêIÞ^.m8×›W)Ö }ꌥ"u|âZ·EÇ¥ª€Í™Ë:Sµœºí_”ûRÏrÆÒÅ®äièʪgßgžÊåÛ¯¬áb¸ßûþ±¸©¡_¸ïÃ…Ü÷O1Žþq¥®ïOü1™LFÊ¡.ªâW‰Ÿ*ø`ùc™ãuº‹=ÔöÔïü8‹"G ÿõ_ÿUþ½8r¢*J­ýs4zå¥ 5™¦Î±E9óÜ~ÌL‘®S—%p½É7Žèßh·ùx×íõ€í¾±ÄSðÉsùf™&n,Rç %¡OirÕ;[4™,Ü.ÒÄ•j>­‹º\ «Ej³ï . €ûMËå2]¾|™ºººì¾jØ]ü^Î=ä‹’?~üþýûRðTч^ü¡ÏîÁ)d5 tPŸ?=åËüÛ¿ý›ì£ÈE)¼o»)€­ç‹Õ¨Ûý9[œFžTS¼“V„¬õ¼)S©KÏÌåz–ª©á¥K ŸQªýË-Ù¢–t,cPï1s» —ØeirIK]Ûûh®#êr¾ç¡²FJ?yéI À\9úÇC¿p_¿îîn;È¢¥äLÉKG÷¸èCî…efùSÓ¼ù¥}¹ „£‡<»‡>ž _êWEüþ›g áˆ$QÃûzþüù]À,%JZ?¹¬%hÇòŽŠØÔØ3‡²ì5ÿÈùúÌ3RØ<¸Rˆ±IÅÕ7VÿÁ·âwƒf²¯iò›jûÄ_[†W=QDS§i,·y9Ͼ”„ü}RN̿Ņp¿ àëׯéöíÛvÚ—SÁ,X,}*úÇ"Æb§„OOûª9~k}ð˜,î1þÜé_%j°é³gÏÒçŸ.ç!fv?(¢c%="öÚL‡ž¨!€âõ*ÝÛñͺ#‚§Gý(Ï—h ?ëÛÐO½éäjô’—ºœc²ËvÚò¸_PìÎB~Aö«Scÿq寊þéýð8eËsùªhŸ.€,ú¿îÔ/Gþ¾ùæ™>vGþô~~zºWEý¸åÔ©SRú8ò§Øí SKP+øè^¢Â|ÁJ£Î†§QWW©U“½–îçÔ9ûˆèâà,uœ˜ì+Xk¹™o^ö;´SÒç14à¾À7oÞÈ¢ Nÿ*€9dùs‹Ÿ[Õ, <å§|¹Ò—÷K¾w|æ"E  k^Ü´¡ó¦xŸ~VñGgàØNRã³ñj?_ ø˜UE<¼â»§Ôzì;ÇXC·+Õ¡k".§$6Œ¶±×¸€î\\\”3zpÔgýèé鑦ËÔü»ßýÎŽøéóüþ÷ÿ·]ñë—þå±þTä/lN_•>}ú´£ÊW¡ÄÏ-„»SÒ ”0†Œýç?̆˜2NLE·ô†ŠiW%vm—ÖdJ7ÏS×-Õqë\ß#äâ .²Ð‹?¸ÿ.€!túÌ¿óc~E,}<Ô §}YìXÒ8²Ç¿«þ~ü7èÌÛRs¥¯’¿ ´¯;¸;Àa¬®ÓŒ˜Ëw¤ÚŠÚ­6|JìZk¤e£.€ï‰òÌ<`3÷ÇÑ?.þ¶‹?Xʸ8$N;†{aäÔï;wì*_¯ïÞ½{îÈ‘C®æ(¢PšE B85Ìëgìïï§üǬÙçOÿîÅ`òüSÇ”qKßFñQ>R¿¼¨Ëà{"€Ïž=“éYUýËÑ?s%å²È©ñþô¾zêWî…ÇÌçó´*Æ´{õê•ÌŠdz?~,£,{<4Wsúy~~^¾†ÓÐ,u,‚j– TýyYX÷ZcÉŒç¤ø5{F£vgþ\¬¹³ç…£ßN–À÷D9‚ÇiWNÿrß?žeC üÌ©Y.üà4¯;úÇAŽôñ¸~zÿ?Žøñó•JÅqœ¢ë™|­@~Ë'O?Ç”×ÊRY Y:ÿéŸþ)0ýËp‘ Kë_ýÕ_IaD0bú—#q,Sýû‡ø9ôŠ>(3§oõ¹~0šçVâÇ"ÈòÇóO®.•Jrv{¨™·[Rðøu\1ÌRYX*ÈÇÕP4,‚k"RÈÈ}ݨ䅅õ/ÿò/éÏÿüÏ!€€FýÇBÆ\ýËÓ¾±ò¬*ýË}ô8m«Wýêsý²ü±ìñsJNçrêW@þç^\0S¾Ë…e) Žó ~}»ùV¥pT’÷G¯æßYR•üýÅ_ü…d`` À(ÿxæެqñÇßÿýßËA—õißXòô> GðT_¿WÅW´¾.†Éåd䎅‘gáÇhË;à4GüXò8Ú'£Ú2››²ïàÕ«Weÿ>.០ä(‹êO~ò[üAE4P@#ÌþÁ¸,V,€Eãô/÷Ñcùã‚ Žô¹£,ÜoÎÍÍÙÇ?Žìqá÷ÿ{ûö­Gký3Þ²²˜Ç dùãýá _.òà¥Jù2º"`„ë•u:î¼,ü`¹ââ}ì¿ßˆqüô¢A.üàÊ_Žò---‰D {}Õã¿UŸ¾íüãup0Ë}àˆ"Šp´‘#”ò'"å¥O`„œ²å>uýëëë“Q7•úåè_*•²}f¸ðƒ£~JþÖ×ßìÊ~±®¬¬Ð½Û`¡œ•}9â÷§ú§Žþ RÀ€FøÇcû©‚ N·rªUõÿã>xjÜ?ËWûrTŽå‘%pCLW¶;ùirD766daïG;;;íèÀˆÿ8ÕËEýãô/WýrôûrE¯Šþ©éÞx|?®úU³}p?@9ŽŸ(Üxÿ¸_!§¢¹:øÓO?u¤€Y`Ñ@tÕ´ŠÛååeYý{âÄ Ù·îôéÓvôO ý¢÷ÿã±y|?5è3ÿäù¹Ú7jŸ?^®"úrŠw;ÿ8 ˜ËÍÊA¤YõBDÔûÔ‰j\îKW,å8|IãB‹ññqõãÔ/ýÇ¿sß?úEÉGÿxØ–=žË—‡}áB®æ¨ ¯³V*—‹M8}ËÛ‹Å~- >Nó>±r…òíÛwä8z´ ûR9’Ç2¤úß¹Ó½ª¯ÿ\^^±— @~=„ðì<¿¯Jÿ²ø±`±d² ò Мªe±‹ò·711!Å£*ò§‹ ?Îpd#aCs°DH- 0WûÎ3 °ßÅŠeÈ7B(ŠAxN ³¬±ôñc²Ý–ÿòÅÕ¢Œî©éÞXùo?ÙWPØâ⢤ôªDƺ!#‹rè-ÿ¢~-§h9Âçîû§$P ppd/ê,!¶ßTýþüŠ=ãýÕQA̰X­½^“³{p_?Žþé<ó:y»sss2JÈýÃúíqe/Íýõ¸ .~*È)àÏ>ûŒ¾þúk¹Í¨ÕÎÝô‹D6ü /§¨½©‰ššÚ)UV—)ÞÕ&k4Ñ@"Üý"––1¿p#‹®TÞøGØÄs-ä©à¸O ËbP@®f©ã( Ëž» Ï@‚˜J=0û1F@Yíì3üLã0I­R[)Q4K ´IñcÚGSøPÀw#€RÒD”#aA…»6›ˆØgîSÈ©b.ÜP®.æ¡cþó?ÿS¦zY¹ò—áž}„+ŒÃ"‰¼~^æF´¼+l³0elQf´£*#Iç²FR“² %‘ÎÙÑœ;1ÎPÁ¨.›Ÿ1Ë‹¨¢ñ*GÑÿ1›/ã|ߟcÉa9bé±#m[Õ4°]ýûÿmˆ;ÃûÅZ+ÉC´pßA.0á9†GGGåÐ0<æ K$Ë\ÐX‚¦D¾‘˨~¯Ešš…Ðï¸wS‡FºlùkJ8—+$¬Tq•–ηòÔeýÝϹ¢ŠM›1(9ð¿åïÿ«÷>`À÷]YŠXxX´”²L±t± q»0qj|èÏOŽþÉÁ …FÝ>/Çû½(fá¹|óóyY]Ìz¬Aª¹èƒ—UP½f÷ÐIפÞïÏ X‡’¾QJ¥'©«Õü»Wôœ³¢†m£dpôo²×ü»uD¢ˆ*þêÇVDédà{-€oET…GŽó'"^,{,]<?ÆR$ 4¶ÞeäoCöéãJaž™c[ÛÞ¢Pó«P6«™×åŒ%QÒÓïB›šÚ(©ŠBŒ4u(1›ý“4ÚÙb á€Hv?ÂdÙ ‰³x¤SETiV–Nw¾µÄ‡…‡`‘‘¿Í·ô®ÿñÌ,\2;;+ÿvˆ×ÛÆÛ¨Šª´o­ˆãn `kï$vUp5wÄeD¯*x:ÍÔ̯JZBKúDú»] d&¨EÉx|==G_7={»Eï㟠P¤py@h†˜–û/þs52ïïn¤9 ¸öºlNegïI[íˆßL¬Ó½Ÿƒê´þJå2™‰QQ2cž£brÀ!ˆ¶< ŒrA޹˜eà|_E‹+|å`ÏÆFC«w9‚VOß=¿ièfE¾[·nÑï~÷;±e9¿0Ë G娄[TŽ~r$P àÖûÀ„±ËÓ@‹’¹J—yh3åÛÔÜF½]Ôâ.üÐ$QŠc²`oE PJË ÏN£}¼~î»§¦cIã¡[xê7–̺×o‚ðÜÀ¿ùÍoĺžË ^7çòèÑ£šU½µÖÏÒ«m#Çý[+KÙÜЦ~·èLÙ–Ó£¶ÌµqñFb]mŽ(_ÇФå3E¯Õz®“f´ÇÓ#íòñ?Jâ|/pË@„Ùšf­Ž±¹XãáÇr¾_þò—öÔkƒƒƒtåÊ9F§oëÙG(߬›û(û剿N Çb1šŸŸ7§«s_ù¸U…3~°òzù÷°©ïöÒTpF± e¸hl9ª„rŽFÚÌ~€-½ | 3ÅÊiTs¼»×²_‹P½‘:'ž[—Zîîî¦?ýÓ?¥ÿøÇtâÄ ÿÎõööÒ·ß~K«+«;R†·ÇâÃlúDéøy™z¶dQN5¨õ+Qà¢ú<²\²¼V‡»ÙŠñÜk¤†ZÅ!ñúú@ß¾vo¥±ñ¸{Ž #¤Q9÷ÿøôçþçô—ù—ô7ó7ô·û·õûOúS:~ü8ýõ_ÿ5]»væ^Îm?å,^ÆûÊã:ŽIüÊBËE*=ÌË8æÞÚ²ûøÙ}- ¬·ä^l0ùä(µµ¶Q{GÅR˜7€Ö(˜àˆ ‹STä(϶Á‘?†eïïþîïlÔééé‘AžšûôIÑܦ²Àñ8¼}–>Ž(òññ8†,¤iäexþ`{·­j¿?s¸—×;îóðA ?ÏÈ)á¨ÿxÊ5Níþä'?±£}üÓd)dXÿâ/þ‚Î;'‹D¶;Æ ÷áãmÿ×ý—¬æ¡b8ËL° #<-‹KŸñư¹^]-𢻇°Éwhìu>Èqœ’e)âèXTúõ¯M]]]’0Ôç( †¤Óéšcíùí§ìç·ñ–nÞ¼IôÙgŸÑ… ¤rÕ±,êà´¯pKZ9Ɉ6²ò Ïü;ÑC ¾WÈsÚ—+s¹ bÝêh§Lküãל={VFÿ¸o_˜øép_Á¿ÿû¿§Û·oGJËý46eôîuéµÔ•å)ŸÜ¯ðOþäOdzybb‚æææªUÁV•3/ϯeÔ¿2eÜ€ao €ø Pö…ãÝq„LEÊø§±‚£i###2úÇEQÓÀœVÁQÒÍ,k,§œÎýýï/ <8Ú÷OÿôOR9­|æÌÙ÷OVö¾£@|pÈÑ·1$˲ˆ¦±ø1œ&Ú/e‹ûòq0¨øC—A^†SÀ}}}”H$"¥›Yyèžø¿øýìg?“ëâ¡e¸êø‹/¾sGN'Cð½À-²úĽŽ4èqп˗/ËK`ø©"]yؘ‡EŠ6ò~s0“ÉÐ_ýÕ_ÑÑ£GeÚ—×ó/ÿò/ôÝwßíÎÜÀ{D¯_¿€=ÂdùãìN"g<óGóô~€î¨Ÿýãt1‹u,@.èàèd2™”øgögže„«¹_ßûø €†ZÕ¾ §_Y¥@m³‚‡Z¹té’3†%Ð/ÈòÇibž„+€¹_$q³Æí{ùò¥Ü¯ƒe“¥3•JIyU3~lmnÙǦk¿«â÷2úr‘ÀAÕìŒ7Ó«;©ˆåÊ[®fùãŽòqZ˜ÿfTŠ˜ 6~þóŸÓÔÔ”,8‰,™Bθà„Ç ä"ßýîw2ò¨öŸáßÕß|lúã~¿ë语…:wü;€~˜Ïç%µ-†·  €„úIMQÌŠÁcª)ÒøoYTQ‡£±”--.IÁ»zõ*]¼xQÍÂüÛ¿ý›´™ûüñz·#î´3O§‹û˜‚$0lY%ƵÖÁð4ïFÿO|ØàÎP¢£¢g Ï—Ë5Ns*”Ÿç4'GÜêÐqtSµ]ŒýDðý RÀ°E ~iTõ»"îøöíÖ;@=ž©„ªÔ±ªbë»–î ’Æ(2é~Œû ¢€~P莊é¤"l\èÀö®£€,|}ä}áHÏWÌ©_ã!ÿJˆ¥l£ô¬•Fv÷›„À&„.†ázòÇÛã‚%_ª?"ïêû$xîêÞ Tw­‚¿uºÅ@?È>€AQ3–› cã§}YþTäO3÷Ð5~)ì°¡]°Vú8ìAàô@õ;§~××ß„¦hiººÇ÷ ÛÇZéÛ >}A}ÿÂÒÇ~Û€Àª`X8õ‹˜g0hk^^ž?˜Çû“’Ø`ä¢P?‘sç4ž_”~~acFHÀ²` ©\¡°,…LUáòtqü7G¿x9î“'+uEqF¤Až·Ì4/¯'hy®8fÁd ±(X  Ïoª¸(Ó¦é3pèˇMË6nŸ¾Î°Tm­ñÿjè7sÈû,p×gÙNzØïq¿=ÂRÉ~?û‰˜ŸFÙ§ ~QfÑ_ÏÛ‡àƒ@î»ÆéKõSÉŒþ˜‚ÿVðßj9ýy÷²î¿ƒ^ã^Þoû<ì ¶^U¡ì^§þ:÷Ï(ÛRçEG_–SÞ@|ö.ø@ À÷1(„“@@@@@@€ ØÇF™Êes@Á¾¦<3A­ÍÔÔÔdÓÖ5J3å÷·O™‰QŠgŠx h8å4µÙâ×L--š¶Qùï“A±s’@N15d _'e¬Çò“½¶N«ËæÒ šˆÇib2E÷ºŠ9JLLP<>A‰tŽ ]ÌÏP:¡|1O©É šLfl©ô[ŸQHQ‡% c ÊÊâñ"ÍdÒ”™ÉÛël·ß_fÔŽøµ´wQl2I¹|žr¹< KÖŠëlq¤ˆ›š:(Y0×QHR³ã9Aû¨”ºä€ûu-”,¯/ÑëLE7u%„\&¨…oðŠ' € ^ÊvÊU§¹µ“&¬>xùÉ.óñ–šH¥(ÖÛfþݹêTý{Ç(™£VëoNᦆÚìhbgo—`‚fCÖ—O™²'híÏçEš:Eí2%=BE¼g4†\"Fí­®H^+%‹Åk5ÿn „¶DÜJ·ôŠí¤%|í”¶ª‡óé$%Ó3T+lîš°·º>!¤£­æö‡Re¼74š|2NC½42™·#‚¹TÜ. H´(ž!ln–‚xýÖˆùX3Ë›wýêµ­CIÏc~ëK‹4Òª"ˆ¼G4šÌh›]’RÅj!K˜ŠØµXQ<#Ÿ¤Ñ‘QšHdÈ('­` MäÍ×OtµÈ”oW,SÀ¤'è»>ÑßpÈ,S>—}Q @ÁÎ)\=íÛÚÚªEæÚd ¸œ±kïꥎ–ê01,l*bǼööêëÇfʾXs}mÖß"*Ø1šB O§bÔÞâªâmiw Ä<31àÅæ¶^JÛÃ4 ´é…$ÍÔK›éÞSÛFRŽm†­/7Ñ«U‹±E”Q¦¤[‡P@A#)Ša_xè—b1 øÂ(†>_.š¯<•\ØúäsEŒû@@Ao¶{À¾×:@€€ €8 ß[¼~ý:à€ @\ë@@  N€“@@@@@@@@@@@@@@@@@@@@@ @ @!€@ € € € € € € € € € € € ؃ØàZ€ @€B@'€ €€ € € € € € €À^FLê À{ŸE € € € € € € €€ Î @»@Àø{À[*W6ÉxGÛ“Û2ÐîÐýFå5µÿè;jòå%K~¯Û ‘ßQëØkó÷ãßÑ]*ÉçŒÕ×4ze•Ê{ìÛÄñŒLoÔ\6úþëÇmþÞveíý݈·ó>:ÎË»yõõ–§CÚ˜Œe—©Õ:¦ÿë䬸™¥äëÝ:ßë4Ô­Îßv´® š¼²D™ŠùwúÒ3j:±@E¿cünAlofko`òlœ~ðÃë”®xŸËݼ#ž»L÷Rôƒ?ŽGn ÿÌC±íq¹mý÷à×,S÷‘/éGnQö=|aH_§|šòmSuó¿¤CÃYÏsù»wäs_/ãž ûGKò¦Ú:<'nÌ 4r©ÊÐ¥å ÿÚбï¨ù¼)?—>ËR×7eù\êü´¼a÷Ø1¶ˆcxdÔ\6úþëÇmžÿuîÕ{Àm¼ŽóònÞG}½Å'yñûÓÈ7øÔXV,ÿœb÷‹”øvÎ|í.‰RYîÛwÔue…’Ê;Š8–Ÿð¾NS²¢Žã)5}ân˳ËÔv<ç+FûI‹§¤Ptß-¹ž«ÐéOY¤¦höE†>:z㽜‹W¼|Y¶Mý÷Àãy`Óç9¦Ý'uá2ýàð½~^7)Ö“Çpúq¥úxi–>âc;rò¸gBÁþ@–€¡'›5So3Š¿±B™ù ‰`ËyóBWç_¿%£´N±aqsûÑ Jäd«ò†R÷Wiâö MÞM%&†A™ì:Å:⹉d‰r¥ê¶óÙ2åKbVå>¤r5dNl'™ë¹ýšòKE)Gºæ³%š¸±,¶SÝÿýߤ™é’Ü߉d‘2KÕó¤Ž[ àÿ¶ð­ýšÉGkÕcÜeŒô>†œ—†½ÓÇ(Ÿ+ÓŒ8oîõš(¢xK¥Å>Åo¯:ίCŒV×)~†_›£Ô¼AËOæ=˜›ö¾§Åù2¥soªëYªP:ûÆ:Þ§´hwÁ36(9ž“ë=mRµÕ2MÞ^íϹŸ¼Î™¥ Ê=mS´Û|ÅySM}““8*D’×%ðXžr«ští//Ÿ›]¯F^íó¼J©ì›p©š_3?;‚ätõ˜Ìý3¨{-ÏϤØ{ý¡Ÿ»ÝL©›¥¢+íŒ2ÏeÌHÓuŽ4”{Qt<ŸŸ™¥‰ëš¸;W}ç–(ý¢*]åÅeJÏ”´÷¸(þ.úK¼øÜ¤¦²4qó)MNU×YŸ qêÇrüu??}èØgޟ좸¼˜“û>ù`I;ÿk”ûVû˜û0qwÖuþ7)›™5÷ïÁBàµD  æìÜ‚gæùpžÇÀsR™£¥ÈÞ ¬-…üwŒâsÖkW–hòf†â׳”Y4œçýEÉ!óÙÌRîv+:ö$,=jÐH·7µØ:fFøï3EÝÉVŸÿÄ›6+g ÔìIOæ(#.ÅGs>©KqAœ7kàïö;ÆR®K+vªPÇMš8“u=÷œK[Þý7Öià„w=#O6Çí@ƒF{üñ]`èûz^õ>¾”'JÕHiÐzŸYQ6ïùõJgòüSG»¸v_À ëŸö¤½'EÛ™6÷-gÝÌFO˜¯Wûg>ÿÒqŒî¶Ø{ß ™/=û©¢¥ÉóÎm÷>ÚðDCâýI=ó÷'/å>¾²¶}‹kµèy¿Zάú À¥çžuªeç΢{AsøçnwûÊ´¥Hõ&V´ãSJHô«‡÷„x}i½WM Çí(›É5J,Š÷pЖœu­:ÇD^¯zåów¼íxæ p¬Ï\·ãºpå9¯=z½(R¥·äzbs›Zºû²k,‹)óü?¸ç}ŽÓßòõkt®Ëÿ¼8¸Üõëòï±Õ}Š÷˜çÄ/¢W˜2÷飋s”·öïè×Kò¹ìõ;žít[Ï%‡]ç¹ô\žß¾©5Üg!€`/§€›>™¦f"ÅÛ³(#9¹9óÆv{ÝŒ´$Í›F«•Ö£_I+½Uð‰ Žu›7ãëV¸Ÿ·dʉ›Ö`Áü¦ZzMòFµ(þ6û²¨%WÍy\F’²vZMÿÆlnG-»A±Á§¶èîÏYÇb¥8*kÔÉrÙS߆õýW23¢¤Ê(S§ø»Ù#}Úï¢_ŸÏ¶qsý†%uã)àà÷1ü¼4ö}ÔÓºæzU´Øq~Õ{>\0#†«%ÙÑ<¿>ýÆ´×¾Ò"€ª}v}cÞh Ùl·ÚÎò“ù\lžß?³Ï£ÚWîçÇïgë¥×ÞhÚ#3ÅœàsU²Î­8yK2ƧMQâ/–Ð $Ë2ÚéŽx8Öµ¥/o¶‘Üí—vÑËLyWe5É}ÅûçI‰Š6Çòßr¾zÞ&‡§íseoÏúüæ­÷«ãF¥Æçn—‹@ŸJA8j÷+³¢‚ýO=Q8%%}7­e+ Ôy˜#ˆOÄr)Kºø=ž3Ó•‚“*rܯMÈŒç:qÜŠt©v<5e¿®Ì|uM¼.n¾OÖö?÷ÈÙÉ›æû“·¶sTD9U*ü`ÿëüÏÑQ)o"Š(¢q‡Xľ2ÙÂÊËžÒÓ³®mœºkn#w×<_ݼMcÁܧ³³v”×ûñWKÍxLI+¢)RÁ‡dÔö¡õ9X_¼b¦°.ª4ôT5ú_1—?ù{»`ÿK›£óŠ—40n¦QdÁ!â¦þ‰º©;ÅÁìß”÷ï‹blR~~]¤K"õµDƒÏl1oDÓò†jGä P¤D¬m´êE««2 åí×÷†z?© ‡¹ìнlRF¡¦©w¼@±ñ%ŠÝ(˜("0yŸý/.‰ýÍŠÔšHQŽŽÍÊ­W|½ÈÛèÎSü¾HýÔч©òì7Ô÷Ó>?J¾­¯`àû~^û>  ¾^%£ÙMûÆ3r̵Ž>€Õ×:Eé©'Š—¹òÜü‚ Ò¶,ƒí߈”hÖ”Áf)KBú––åßc¹·^ÔŽCEÉâZÛTí£ƒa}ú¶|ú:zέÖS?®|ÒŠ:{F½¢gÒªv¤ôD”2W¡wÓ_ vnÓÇÌmx÷ÏŒ¨³h‡î"´»gt¡ï§Ô'Úë@_õýë·T‰|ý1L ;bJC9cŠÜéŒá@³h$F}_=¡ØWiŠ]b àaÅ2–dÚòã¯EJsÆ\Ç)¨¥yeͽ-€Y±Íû|~Ã?wÚ])EÿŸÞ^Ûÿ•Vë¸þ¦Ì”âÄÊ&%XRWÓ’ºx©×Á#—M_¦CǯÑGÇoˆÏí¦™ÒìIÓäŸìW˜ˆqUìMÊèÜ-ß÷ؙΌÑG]õ `yæ¡O ÷K«cÑ’³¸”¯¼^èrČșwœÿì××íˆbyî9õuÅé᱌_ДF÷6XQ?Uá{Nôû“Ò-"§á…Mª§ZYl úe×ç`Ζ<ŠˆáA |Øhö!zA=Êö£p,û «Ñ%Óh â›­õXnÉ%"“}ë“ÆÒ«Ž­‹Ñô‚+zT*Èþ‚ÃZ_©\ÁÞNRÞ ŸQZïXþ¨@£7^Ë ¢¾ÿæq‹â¹ Gä¤%D¥œ_².Ä¢xezY¦ƒÒšn6V§éö··éömÁ·ßÒïgK * ?/ {Uº³TÝ®yÔ×[K£  ·}nQâÌ´-w…dUXe$0·XíÇz¾XSÚTÛÑέ‘]´SÉÑPH–QgP´Ë¡q3=mT !®/´ôµ{ýâØ.U T¡IUgrÐù#]ƒ>wQRÀ«ôûÛV{½ý-ÝN=£z®?*zw6eþÔÒ’Ž œqççöÁ:w}NsánUæd$ðEUÌ}R„’ª¶ãéºÐŒ¬‰!bV ‘²51J 2í̑͂¯œ-Ëç«("”3›ÎuŠh^~q–NŸM[¯Q÷LF¦r ?\’©d;íkE*iŽÖ/¯Z]tUnŸ~\ýÒmXÌis·–OÙç÷Z ØÃ)à¶3‹ÿF¤E5ÆDš4µ$ÞÍ.Yý„–hFTcNœ÷FÂÔ(fŠõݯø‹Cwž2«¢ w•:¬ÂŽ!­`Ó±%çßPú¶™v3û5©>€Ó4$ûY­šý”¬´­û˜V±Aï5‘ª,Q×±j±ƒaÉJsOžÒ¢š4sÁŒ–t/Yéîêþ›7Î,ŦßPQTlŽ ?Õ¤A?îêïjý­g â\‰´Ü£%3mìÓÏl7ú†½aç¥Qï£1_°úõ‰¶"*pcêœY‘G}½@s;ª¿ Šz·žY–•Ǫ‰/O៻w3´™Þý²ÚÎG KÎtMQzNTÎN¥ÌŽãië=¶ú§Étï–ì÷ö±õ÷iŸˆ™-€Ç§(³"ªßg²tô°¹ü©¨}+f¿ƒÙ€ޏvôòÐp†r+Ë"Z{Ù’>Öª)ä¹¥ošiÖƒBZÕ1~BÙ•5Ê>Hˈš·?ã–cyÞFuÕ¾Š×­ó|=BQZ…N}Z•XÇ9éíx¦¨3s}é˜ARžÏuþ{]Û®ö±Ë¸Ò~æMýµ}Óþ£_•ÚQ -ŸuˆÖð¬ÙoM¬ÇîŒ~¬ZQÉÂYОvVM¾Už}‹«)ØæcOÅ3ɼ¼áÚÏw¿¤´µ¯úþû|ÕìKeWNΊԮؿcÕ¨¤yÜúïo)y%çØ×fŽ–½ƒ*àÚïcØyiÌûÈÇ?yþ¹'©P_ïõG f ¸ä` Tags

Tags

Tags — Photo tagging.

Description

Photo tagging.

Details

flickcurl_tag

typedef struct {
  struct flickcurl_photo_s* photo;
  char* id;
  char* author;
  char* authorname;
  char* raw;
  char* cooked;
  int machine_tag;
  int count;
} flickcurl_tag;

A tag OR a posting of a tag about a photo by a user OR a tag in a histogram

Most of these fields may be NULL, 0 for numbers but not all. Either raw or cooked MUST appear.

A Photo Tag.

struct flickcurl_photo_s *photo;

Associated photo object if any

char *id;

tag identifier

char *author;

author (may be NULL)

char *authorname;

author real name (may be NULL)

char *raw;

raw tag as user typed it (may be NULL, but if so cooked must be not NULL)

char *cooked;

cooked tag (may be NULL, but if so raw must not be NULL)

int machine_tag;

boolean (non-0 true) if tag is a Machine Tag

int count;

tag count in a histogram (or 0)

flickcurl_tag_cluster

typedef struct {
  int count;
  char** tags;
} flickcurl_tag_cluster;

A cluster (set) of tag names

int count;

number of tags

char **tags;

tags in this cluster

flickcurl_tag_clusters

typedef struct {
  int count;
  flickcurl_tag_cluster** clusters;
} flickcurl_tag_clusters;

A set of clusters of tag names

int count;

number of tag clusters

flickcurl_tag_cluster **clusters;

tag clusters

flickcurl_free_tag ()

void                flickcurl_free_tag                  (flickcurl_tag *t);

Destructor for tag object

t :

tag object

flickcurl_free_tags ()

void                flickcurl_free_tags                 (flickcurl_tag **tags);

Destructor for array of tag objects

tags :

tag object array

flickcurl_free_tag_clusters ()

void                flickcurl_free_tag_clusters         (flickcurl_tag_clusters *tcs);

Destructor for tag clusters object

tcs :

tag clusters object

flickcurl_tag_handler ()

void                (*flickcurl_tag_handler)            (void *user_data,
                                                         flickcurl_tag *tag);

Flickcurl Tag handler callback.

user_data :

user data pointer

tag :

tag

flickcurl_tags_getClusterPhotos ()

flickcurl_photos_list * flickcurl_tags_getClusterPhotos (flickcurl *fc,
                                                         const char *tag,
                                                         const char *cluster_id,
                                                         flickcurl_photos_list_params *list_params);

Returns the first 24 photos for a given tag cluster

Implements flickr.tags.getClusterPhotos (1.7)

Added to API (not announced) some time between 2008-09-04 and 2008-09-19

fc :

flickcurl context

tag :

The tag that this cluster belongs to.

cluster_id :

The top three tags for the cluster, separated by dashes (just like the url).

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_tags_getClusters ()

flickcurl_tag_clusters * flickcurl_tags_getClusters     (flickcurl *fc,
                                                         const char *tag);

Gives you a list of tag clusters for the given tag.

Implements flickr.tags.getClusters (1.5)

"There is no pagination for this method as the number of clusters for a single tag is capped at 5 and each cluster may contain between 1 - 50 tags (give or take)."

As announced 2008-07-17 http://tech.groups.yahoo.com/group/yws-flickr/message/4218

fc :

flickcurl context

tag :

The tag to fetch clusters for.

Returns :

NULL on failure

flickcurl_tags_getHotList ()

flickcurl_tag **    flickcurl_tags_getHotList           (flickcurl *fc,
                                                         const char *period,
                                                         int tag_count);

Returns a list of hot tags for the given period.

Implements flickr.tags.getHotList (0.9)

fc :

flickcurl context

period :

The period for which to fetch hot tags. Valid values are day and week (defaults to day).

tag_count :

The number of tags to return. Defaults to 20. Maximum allowed value is 200 (or -1 to leave as default)

Returns :

array of flickcurl_tag or NULL on failure

flickcurl_tags_getListPhoto ()

flickcurl_tag **    flickcurl_tags_getListPhoto         (flickcurl *fc,
                                                         const char *photo_id);

Get the tag list for a given photo.

Implements flickr.tags.getListPhoto (0.9)

fc :

flickcurl context

photo_id :

photo ID

Returns :

array of flickcurl_tag or NULL on failure

flickcurl_tags_getListUser ()

flickcurl_tag **    flickcurl_tags_getListUser          (flickcurl *fc,
                                                         const char *user_id);

Get the tag list for a given user (or current user)

Implements flickr.tags.getListUser (0.9)

FIXME: API docs says user_id is optional but it is not.

fc :

flickcurl context

user_id :

user NSID (or NULL)

Returns :

array of flickcurl_tag or NULL on failure

flickcurl_tags_getListUserPopular ()

flickcurl_tag **    flickcurl_tags_getListUserPopular   (flickcurl *fc,
                                                         const char *user_id,
                                                         int pop_count);

Get the popular tag list for a given user (or current user)

Implements flickr.tags.getListUserPopular (0.9)

fc :

flickcurl context

user_id :

user NSID (or NULL)

pop_count :

number of popular tags to return (or <0 for default)

Returns :

array of flickcurl_tag or NULL on failure

flickcurl_tags_getListUserRaw ()

flickcurl_tag **    flickcurl_tags_getListUserRaw       (flickcurl *fc,
                                                         const char *tag);

Get the raw versions of a given tag (or all tags) for the currently logged-in user.

Implements flickr.tags.getListUserRaw (0.9)

fc :

flickcurl context

tag :

tag to get raw version of (or NULL for all)

Returns :

array of flickcurl_tag or NULL on failure

flickcurl_tags_getMostFrequentlyUsed ()

flickcurl_tag **    flickcurl_tags_getMostFrequentlyUsed
                                                        (flickcurl *fc);

Returns a list of most frequently used tags for a user.

Implements flickr.tags.getMostFrequentlyUsed (1.25)

fc :

flickcurl context

Returns :

array of flickcurl_tag or NULL on failure

flickcurl_tags_getRelated ()

flickcurl_tag **    flickcurl_tags_getRelated           (flickcurl *fc,
                                                         const char *tag);

Get a list of tags 'related' to the given tag, based on clustered usage analysis.

Implements flickr.tags.getRelated (0.9)

fc :

flickcurl context

tag :

tag to fetch related tags for

Returns :

array of flickcurl_tag or NULL on failure
flickcurl-1.25/docs/html/flickcurl-searching-search-run.html0000644000175000017500000000542312210726306021111 00000000000000 Run the search for photos

Run the search for photos

The flickcurl_photos_search_params() function runs the search with the given search and list parameters, returning a flickcurl_photos_list struct containing either a list of photos, raw syntax content or NULL if the search failed.

The following code fragment runs a search using search parameters and list list parameters configured elsewhere and assigns the photos list result to the photos_list variable (which might be NULL if the search failed).

  flickcurl_photos_list* photos_list;

  photos_list = flickcurl_photos_search_params(fc, &params, &list_params);
  if(!photos_list) {
    fprintf(stderr, "Search for photos failed :(\n");
    goto tidy;
  }
flickcurl-1.25/docs/html/flickcurl-section-video.html0000644000175000017500000001167212210726306017654 00000000000000 Video

Video

Video — Video.

Description

Video.

Details

flickcurl_video

typedef struct {
  int ready;
  int failed;
  int pending;
  int duration;
  int width;
  int height;
} flickcurl_video;

A video.

int ready;

video is ready flag

int failed;

video failed

int pending;

video pending

int duration;

video duration in seconds

int width;

video width

int height;

video height

flickcurl_free_video ()

void                flickcurl_free_video                (flickcurl_video *video);

Destructor for video object

video :

video object
flickcurl-1.25/docs/html/flickcurl-section-misc.html0000644000175000017500000010113212210726306017470 00000000000000 Miscellaneous

Miscellaneous

Miscellaneous — Miscellaneous functions.

Synopsis

                    flickcurl_location;
                    flickcurl_perms;
                    flickcurl_size;
void                flickcurl_free_size                 (flickcurl_size *size);
void                flickcurl_free_sizes                (flickcurl_size **sizes_object);
void                flickcurl_free_location             (flickcurl_location *location);
void                flickcurl_free_perms                (flickcurl_perms *perms);
const char *        flickcurl_get_field_value_type_label
                                                        (flickcurl_field_value_type datatype);
const char *        flickcurl_get_location_accuracy_label
                                                        (int accuracy);
flickcurl_photo **  flickcurl_interestingness_getList   (flickcurl *fc,
                                                         const char *date,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_interestingness_getList_params
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         flickcurl_photos_list_params *list_params);
                    flickcurl_license;
const char *        flickcurl_get_content_type_label    (int content_type);
int                 flickcurl_get_content_type_from_string
                                                        (const char *content_type_string);
const char *        flickcurl_get_hidden_label          (int hidden);
int                 flickcurl_get_hidden_from_string    (const char *hidden_string);
const char *        flickcurl_get_safety_level_label    (int safety_level);
int                 flickcurl_get_safety_level_from_string
                                                        (const char *safety_level_string);
char *              flickcurl_user_icon_uri             (int farm,
                                                         int server,
                                                         char *nsid);

Description

Miscellaneous functions.

Details

flickcurl_location

typedef struct {
  double latitude;
  double longitude;
  int accuracy;
} flickcurl_location;

A Location in the world with an optional accuracy

double latitude;

The latitude from -90 to 90

double longitude;

The longitude from -180 to 180

int accuracy;

Recorded accuracy level of the location. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. (<0 for unknown accuracy)

flickcurl_perms

typedef struct {
  int is_public;
  int is_contact;
  int is_friend;
  int is_family;
  int perm_comment;
  int perm_addmeta;
} flickcurl_perms;

Permissions as used by flickcurl_photos_getPerms() and flickcurl_photos_setPerms() which use public, friend, family, perm_comment and perm-addmeta. flickcurl_photos_geo_setPerms() uses public, contact, friend and family.

A Photo permission.

int is_public;

non-0 to set the photo to public else private

int is_contact;

non-0 to make the photo visible to contacts when private

int is_friend;

non-0 to make the photo visible to friends when private

int is_family;

non-0 to make the photo visible to family when private

int perm_comment;

who can add comments to the photo and it's notes. one of: 0 nobody, 1 friends & family, 2 contacts, 3 everybody

int perm_addmeta;

who can add notes and tags to the photo. one of: 0 nobody / just the owner, 1 friends & family, 2 contacts, 3 everybody

flickcurl_size

typedef struct {
  char *label;
  int width;
  int height;
  char *source;
  char *url;
  char* media;
} flickcurl_size;

A photo at a size.

Supported sizes and their letter suffixes used in the source and the url fields are as follows:

s: small square 75x75. q: large square 150x150 (2011-03-12 or later). t: thumbnail, 100 on longest side. m: small, 240 on longest side. n: small, 320 on longest side (2011-03-12 or later). -: medium, 500 on longest side. z: medium 640, 640 on longest side. b: large, 1024 on longest side*. o: original image, either a jpg, gif or png, depending on source format.

The 'q' and 'n' sizes were announced 2011-03-12 in http://tech.groups.yahoo.com/group/yws-flickr/message/7483

char *label;

label

int width;

width in pixels

int height;

height in pixels

char *source;

raw image source URL

char *url;

url of photo page

char *media;

'photo' or 'video'

flickcurl_free_size ()

void                flickcurl_free_size                 (flickcurl_size *size);

Destructor for size object

size :

size object

flickcurl_free_sizes ()

void                flickcurl_free_sizes                (flickcurl_size **sizes_object);

Destructor for array of size objects

sizes_object :

size object array

flickcurl_free_location ()

void                flickcurl_free_location             (flickcurl_location *location);

Destructor for location object

location :

location object

flickcurl_free_perms ()

void                flickcurl_free_perms                (flickcurl_perms *perms);

Destructor for perms object

perms :

perms object

flickcurl_get_field_value_type_label ()

const char *        flickcurl_get_field_value_type_label
                                                        (flickcurl_field_value_type datatype);

Get label for datatype

datatype :

datatype enum

Returns :

label string or NULL if none valid

flickcurl_get_location_accuracy_label ()

const char *        flickcurl_get_location_accuracy_label
                                                        (int accuracy);

Get label for an accuracy

accuracy :

accuracy

Returns :

label string or NULL if none valid

flickcurl_interestingness_getList ()

flickcurl_photo **  flickcurl_interestingness_getList   (flickcurl *fc,
                                                         const char *date,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns the list of interesting photos for the most recent day or a user-specified date.

See flickcurl_interestingness_getList() for full description of arguments.

Implements flickr.interestingness.getList (0.13)

fc :

flickcurl context

date :

A specific date, formatted as YYYY-MM-DD, to return interesting photos for. (or NULL)

extras :

A comma-delimited list of extra information to fetch for each returned record. See flickcurl_photos_list_params for the full list (or NULL)

per_page :

Number of photos to return per page default 100, max 500

page :

The page of results to return, default 1

Returns :

non-0 on failure

flickcurl_interestingness_getList_params ()

flickcurl_photos_list * flickcurl_interestingness_getList_params
                                                        (flickcurl *fc,
                                                         const char *date,
                                                         flickcurl_photos_list_params *list_params);

Returns the list of interesting photos for the most recent day or a user-specified date.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

date :

A specific date, formatted as YYYY-MM-DD, to return interesting photos for. (or NULL)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_license

typedef struct {
  /* license id */
  int id;
  /* license url or NULL if none */
  char *url;
  /* license name */
  char *name;
} flickcurl_license;

A photo license.

int id;

license ID

char *url;

license URL

char *name;

license short name

flickcurl_get_content_type_label ()

const char *        flickcurl_get_content_type_label    (int content_type);

Get label for a content type.

content_type :

safety level index

Returns :

pointer to shared string label for content type or "unknown"

flickcurl_get_content_type_from_string ()

int                 flickcurl_get_content_type_from_string
                                                        (const char *content_type_string);

Get the enumeration value for a content type string.

Parses the string value into a content type either from an integer form like '1' or a label like 'photo'.

content_type_string :

string

Returns :

content type enumeration value or <0 on error

flickcurl_get_hidden_label ()

const char *        flickcurl_get_hidden_label          (int hidden);

Get label for a hidden status

hidden :

safety level index

Returns :

pointer to shared string label for hidden status or "unknown"

flickcurl_get_hidden_from_string ()

int                 flickcurl_get_hidden_from_string    (const char *hidden_string);

Get the enumeration value for a hidden status string.

Parses the string value into a safety level either from an integer form like '1' or a label like 'hidden'.

hidden_string :

string

Returns :

safety level enumeration value or <0 on error

flickcurl_get_safety_level_label ()

const char *        flickcurl_get_safety_level_label    (int safety_level);

Get label for a safety level.

safety_level :

safety level index

Returns :

pointer to shared string label for safety level or "unknown"

flickcurl_get_safety_level_from_string ()

int                 flickcurl_get_safety_level_from_string
                                                        (const char *safety_level_string);

Get the enumeration value for a safety level string.

Parses the string value into a safety level either from an integer form like '1' or a label like 'safe'.

safety_level_string :

string

Returns :

safety level enumeration value or <0 on error

flickcurl_user_icon_uri ()

char *              flickcurl_user_icon_uri             (int farm,
                                                         int server,
                                                         char *nsid);

Get the user's icon URI

The icon URI returned is always a 48x48 pixel JPEG.

If server is 0 (or the other fields are NULL), the default icon URI of http://www.flickr.com/images/buddyicon.jpg is returned.

Defined by http://www.flickr.com/services/api/misc.buddyicons.html

farm :

user icon farm

server :

user icon server or 0

nsid :

user nsid

Returns :

new icon URI string or NULL on failure
flickcurl-1.25/docs/html/appgarden-edit-auth-flow-mobile.png0000644000175000017500000013275112210726306021007 00000000000000‰PNG  IHDR+#s„…µ°IDATxÚíýýs+×}ç‰óتý;2™à×T6É”ñÓfw¢ÂÖîNÕTÁ“Lâ ’IybTäÍöfr¡äË“€“˜pB¦3 3CÌЦ˜YmÐv+&l¦Ü– A¸úJ€ @ê+‚ù~¾ç©ý €÷ñ}ª^uyt÷yêÓŸ÷9ŸÏéµ{÷î²Ôß^«µ÷aév?2íທ„—QS}ojxïa¦„psbŤB|ÖÖ.A,OƒU Öz>âx>rÚÀžA“Š™8û>NšyµŠë¥Àr•›÷ËøœR³Z¤8»f,__Ø.õñ°Ú^sùßvñ݃Kb•1ú¸±RL\R¬$ +­B˜‚ûø¸óx>òu§8f3ÚÇ÷ ª_Q¬T³ñÀrųµo´q[£Œ£¼‰£8º>vµ×ÃY¾Ç½]|÷à’XeŒ¾‡&±¿^±’EÌX›š˜é¾6±2nP2´lIjŒo¶Ñêy·PzìÄÊÂöZÐÞˆeÚåaÌ÷Í‹b‡X‰g«dNÇdšf4ãéÕ %¡cö j·Û ƒåÁqüÔ+.®&(ŒJÆãÎ⮃LŸÑFÓ‹I·Q\h<^be‰öŠlïÄâvy8ó}y±§JÛ¤ñ‚{}ºä= pãb%Q¨_)CF£F¬žNg(“ÉP®p@M6«>m# ž^'­^§:CÓêd(ãÖàŸW óÎöV4ª×4Ò{ã•Ë\ZMйó6ˆˆih74ªiË'û·V§ÞØïÕ¬ËïÅo´†<Ÿi°òiTLÇÜ×NæYÙùïtµé€¿] :+ç´GÕrAÔ+'›+PÅ>&L8 ¨^)±@é ¥9é4;®H5½цŽòYçT)å)ÃŽ×Îæé ¦ûŒÕeÛ+¬½ý«4ÕŠ,ÿi‘ÿLz^îHCyj’^;põE~|._¤*?vê¾Ærí²B¾Yh³{¡TÈ©öâùÏR±\£¶9½‘º_]¬¬¶B¹ŠXÚ¬ÝJ,_Õ=ïw¼î퀠ü1éžûÅ{ÞA³Îî5õ›ZmϦ ãë_5uöo½ààñ+Kž«G¥t<Ä•$N©dìn`þϽÄrÚj;"µ<çˆ1#2µB ý®@>7(`¾8ÀÙ D÷·KŠíÀêºÏR3Àh4Ê”ˆª»T‘ÚÓEå‹S‰‰ÐóÄ2Ô0Ãë&¸½–s§Òr ê+A¥º_t5¿X :ö@µñ*í²L¾ ­Yïbõ®´“ÖUêþ!+SƒJ™Ä‚x·Œ½Ã˜å–é-ãk÷»¿_eª®ëöjYÏu²ÔÃxüÄJ,s@½AŒ^zAûnà1´Á«KǼ„¹=-Ž©ñÇD£å¾zÓ&¥–´_ÂEk\÷ i.ŽH„Š•…¤+®6hKÆ'0ƒ×-tœ×Ž-wŽTY]{ÙöZ\‡¾vŠà í0l{Õ%„ŠEššÓ«µ‹7ß½Úò;nÅÒe±•ºÄJòKï.£RôW++žU­t¹éÿ>ÁË’áÜ0#»¦I<öî­hý³š’$s{ɤâ7+VV1J˜(I{óX”Ç×|»ƒ…ÅÅܤXIR}""­ò¦˜P:½1@@9£Ú#ž×–êüÚ™Àk[Fï²í]‡ãf)äúiJ%bû8b—·D:Kù\&p…¢È æ«´‹«íZÈ*Hœ‰`ñ‘,é×T÷— °Å(Q,æg-–&}¼¼X ˜ñD"D@¦ìó÷jžU´dÉnÓ– ;{õÅßßïßäxÅŠÓ@2©” r±™û”·«ùKŠnxOiÜ«yŒÀ8UÙËø¦ãñJ~é>ƒÈaðŒõ¢ßU'0ÐþòbE¸¡ñm}=FßÔ`Ìf—Çö¦Aí£²nFÌà'léÛ@@ÌbÏóØ<ÈúŒÆ¹0 ¾¶ûøŒÏ¯ î­Ð^QuèŸeçe«8úS£œöåO^ŸõÅ”ûØ\ÍpÍüçâÁ×½l»8Û^Ëù…Rš½8Ñ2ºÍf%À•/IÚàšêþÚwK¸&%"ÅÊ æq}\bG³_š9 j> ^ÕʨY÷ô™¹øªWçýé·žU<É++>ÜÅW8]8>t•÷¬DÿË3ö‹ªDÑ‘fÈÆü‚jpÍbEÛ…äÊ[ǼniÛ/ijc*§<3Û¹º¯. ¡eˆcÊk ¯½Z{E‰SÝ7Kž*·}+d¶d« ùbYÌ»¾3wÅ65 gžLð^¡T,<ß—i—y¾Yž¼n^Ùª?f*`Õh÷r uÿ€ÄJ;@DUzþ{ÐÛ7×âÖ‹%ýßÉ-“îKÛeµ"ÛÍ»‹[^ÃÃxlÅJ,E…R‘ŠÅ0 T`;|V`¶oF4x¦wà b¾ßb% –Ïꎧr{Ö13pkÙØöF¬ä½ÜF½å:ç‹ЧØZY¶‹”$ÇþŽ Èæ‚ò]£Xñõ§˜;&eYØîP ±X†’‰øÂ^Y¬ä»˜oßÛïê~e7°8s &Ï,íV/$<ñ8«žþÍ ’vßð® ‘mÎWlb¾ûx½é«Ï¢0à1Þ L_í|FÙ3óéŸQ½âì¯A¬xg_—‚öÚ? ±â3H/ç;aÇþ,wíBâ¦VV¼ýÉŠY–•³IZõíìWn¶â‘òˆ•ê`¹¾ùu®¡îW °_¡n#ÅŠÇ….²AÅX/…»”z]ÉyªWs®:M¦nwӺ׵.Cm<€ÇX¬¬¸»V¯y7ŠP¬´}.:Ëã ´<ÅJÜÞú*×¾±2ö¯ÔU{Ë®¬Œé ²‹[AHgS7(V¼ùv»PE#¾¢X)^£XÑ®i70oÝÅCÆl˜3‹ún†êzÅãêÇ5<ˆ•(±bùš»×,¥˜X1ë…K +·Yg>WßÜï¯XñμóÏ,w7ɘ³yÀ; ˆŸNÇK‘߸X èOÙZÏwýÛÕŒï–/”¨RÕÈà/Zô½ß†Å»äÙKI{ó-rËÉûå”o¹sU&´Ý±r][{ÝÀÖb¹À÷œ´Ò¾­³ïúiú6Op¸}¥D KÔăï^Àãæ¶êû Êz`“EOÀ³?¾âjb%l[á ¦tàÛ]*Îb8ò,v#ç#Ï1Ϋw×0£š‹4 }F±¯Î¯b´²Ý´¼« ïû0š”e[éÆIʰ·¡—ÊjnR¬¬²:åß±‹o„àÚè`PõµQŽï7Æã¤{WØV °_©]ü±(|WªæÔ뎘Š0°]±2x±fæÀ³Ñ†Ùð½Ïˆ·íØ[V }O޵q‡ë*1ÿ{sð`ëÝÀ¸_xŠR H&ÒTm<`[3Ú½fíÜ´vù­‹C‚гåÕ T¬4£Ëðî‹ø‚·Þm•Z²íØ™1^Ñ{l…¤F%`lE‹•µD–jõsEõ‚Æ«­AÔñLY®>L{tMD–ïúÅŠ·½¢×ƒâ‹’9Òšl‡¯úoG/n¤êÓ ´åkm;à¾PnçLüUÛ¥YN¬ ¤è€íVf´T Š¥qíH÷芕°wûð•-½m^+lÛ´2}±dY7½j6dw°* Àã/VÖVN6Ã^†wÕ7؇»š-ò2 K ^7m–#íÃÞû°Ü{i\f–x¹âjFkÀ,éŠcç¦k0˜¶×"±0ù¢Ézd?ŒÅÃÛ+Uj^c»þU¡Xø#/Vî½ÇhQ¿ Þ1,P¬:çVÖwÌÀ£/V ×!V¸¡¢V+ƒ¥w8Š0¾Ù›®Í5ß;B|éÏî:6¬*Î<ï«p™q¾Q}¹Ÿü† †å ~÷[ʯåÚ Ûkñ5ÆÍƒÈ@êy?ʺbÂÞ¢ŠceãZÚeéz»^öx}uì÷»¹®‚¤Kï0R“í€É— îÜŸ©\CðȈÿÛç—…½YÛó>³Y¥t€‘šÈ”¨Ýk¸ã’n÷o>Š÷±Q pÿY VzþØTi¹­™ý/¹s»¬ŒCÊc®Cša°]©â;¤±wºäS‘Fñ¢ú3ìÞßèÞwr´©œK…ÄÄ(]¨Ìß—³B[,síèöZæÜðoS)“ €¹²æŽwPu«3Á«(9ö~ £æ‹§™·Íu´ w‰P­”£DÈË “æVf.w?^ªÝCðo¼šïÛÉË›fů0×Ï\:D4Æ’T¬5ÆÁyW¨²Uw\˜o«äL%p•´X¹ìíẮ“Îb zæôÏ=o&·Îm üÎ?fÏ &ÏÞdùYíetS³Gí¦.ÊÓl÷ȼ©à`ëîºu-ƒív?êçzÚkj켋ü½Å†éx0¯Û¦Áv>{0í"ú‡:¯ƒÁxúä PlÇ9£Ý´Û­m (ˆ€XˆÄ @¬ Vb±+±€XˆÄ @¬Ä b V+±€Xˆ€X@¬Ä b V+®é˜Æã1MQpeÄx:}ÜŸS´õÕÅŠI¥TŒÖbŒµ5EŒÉ4•5•ûHr—ŠO­ÑSÅÆ#ÿä®~©þ\+•©9¾¿y6´ª6M9øê%v%©nÞìuÅ$­}¨@w¯tΛ®/w_¼t=”Ž­Q,¶æ§$‰|kWžë.?o‘ýý”ø;êœ:¯¿D‘Ì¥Ê1 ƒ\Ê5Fæ+ÁýÓl)¶æÏ'§P7]ùsæ[´çSEÑž×Ó¶×7.L *•j4¾áþÍÛ9Éꩨ›+åiùr_nlY­¯\×Xv}8û“¯Ÿ©¿oêÚ—¯»Gçxw“õp³Ï…›²' *$­±1GþÜ'VÙ‹ –—òºë7úùÙ(¥çcÃ=¦-ûœºlþïx÷pØ…W+…¯Ì8å‹%*‹TÈg)¡*8SiÃøý/}"IÙ/5Ùü>´F?ŌЕgiyaHÖï§X×…qš«›ÊX-ˆûéÚ9Ïuš_ÊÒSŸøÒ•J7__޾x•zbÇŠ1)ž¦bIŽS‚BMª´é®8ׇ¤¸]¡äSŸ }A™…8›¤),e<4KI1¦‹5j:3qñÿbà +9vŠT²òÉÇUöÍ»òçÌw£ð!Zû©¼hÏëhÛëy>™•uucý[µsœÕ]¾>X)OË—ûrc‹ì+ùK‰•ËŽe׉³?9û™óïJ+Ügžñîò}èA?nÆž«q2[ªR½þ]úó‡à>±mâ8› É‹³~£ŸŸcqžµdž´zƒžÕ£eŸSWË¿süy8쵫ª0®ø]3TÓ6åxE¯¥©é¨dC¯SµR¡jÍ_ùÓA›jÕ U*5jöÆî8{ÀkÕ*;N£ö`Üy{mÒ›†+SÓŸ ·‹©I ­ÆÎ_%­á\õ™R¯Ù$c0uä…×Çñó¶{& vl­N½ Î1î‰sWYkš³lòÜ=Ó¤v]^»Ñ¸òÜî hÐnˆz©Õ›¡3}aùè5Ãë”ç«^«²ëjd°<,/â7Ó5õ¶kàëµ›ìü²nÆmêÝÎó?ç©5Ú*&é¢.+žº Êstù¢Ú=´ÍxþY»š¬}e¿¨³ò¹ðr ‘×p ƒŒñ’*j¢]üö_Äsj…ö·Ç±º&¾km±wˆ«^ýíe‡,°™˜X‰ûg>,å+—¯L*§c·†$Õ YðžVð¹<äªrU¦)Ôý]1`æÌ¨È%³r{^™•´\"ä±”×­"UR Iyþ‡áP³n9ñ½üÛ‘¯ºg9®yà¶‘Q";Àõ$]ÖÕuâ~wdјøóÑ£j.á9>EZOÓ«Ú+\îã˜ÁPω¿5sÞŽó:¸«þþf@þÔx³AO™béràŒÏ¢òEµû½ˆ63ëù7™8U ¿Ay€þê\vmWr¾c³ÍåÝ”ï·ñ\MÖCnÍîOâ÷¦&g³´Ž«~ùa6 .@ÅÆ`ayë;Îú¿§ùu\y2뾺Žg«âáV® úZµ®KͱëÞÍT µÄ]P÷òPõÅêÊõ$VâKˆ•»ªo}S —ƒŒwÜJ‹Ù,ˈâ £ªúIŠßþ{æ;C“L‡ß±t…bã@Àʳ½ò2À;ó&VœmÞ'¤{Z1é¯ÃX€ˆŠ$ÉB=`Ã1F±™áÎú·1NŠ•qèøèÍÓ`jP>”'ÓSnçØ2`.Ðaã¾W¬$#ÆÁqÄ8îËBÇ£iSÜ¿v»™5ùLJ–”1Ó¦´·ÿ¯pŒ³?-'VBúGÒÝsµÞ±3ü>[¡¯¨ñÖYþ–³í…¨q>|ìøŸC©QÕ¯V{.ö¡XŽŒ…}(ê^½Ï…;Žûç^t]GŽUŽ1ÒSï9íÕ¥î“åŸ;Ó•Ú1Ð&³ùTýÞ x~:ÝY]ã£jûï™Ò³®çÔåÚ?ü(xÅÊ]W;FÛ!Ñ6óÃ'VšeûÁaT2ªÃÈ›Z†(­A3s Î1e “b¦1ÈŠÎTl?Å\ÌR}^µ­ eû;Õà©òè e‰#ÙIÛjÐK´J¸¸ôl ùZS¬>xg%ËIùj[3تóuÓÑqSTÈNU3z aŒØç®®dÄxóÑúzÞ=8u)"Ø€9e×)%ÕuMëº »=ü®Î:pvP+ÿiª=j7ïPUoìF¨òÖ‹ò†¯áy*_d»O#ÛÌ2TãìXñ`5âÁ*´ŽüG^#`eD ‚qY6S¹1dveQv&Šz~_ù¸è{s#¯–IC(È•AϨb(§ëŠ]¶¬Êó >7*”gÞGÚ®:¡ç:sCcªD}‚ªí±ò••ç©´¾Y.W}­T×MÑ^‰¢î˜TàÇVç­`:Úr•z +IëšHP<gÄ(ÎÚÖôŠÇß¶K–zÐŒÛr /é²M¶ògå£b¯:ºïÏl$*1õ6cVäùb" ˜R¾Âay 3"£úD[Ëͺ?‹vO˜K’o\+Ò|2jÍî¾I åÂ2¸bÿöÎt–“αÕdÂ2nq-j|ôäIMÞØÆËGÆîKî¶ý·z¾$ËòüÓæA o¹s,Ôd=5™·,£óéìÿÑãQ-S÷ÌÜÂZäMŠãÃm„-{Lxß +Vÿh˜Ž2YmÅ#:Ç| K Ž‘Pî%æG*fݸ²d*3%fä›î|ÛåeÄJx€Ÿ{É1FÉ”[¬ð‡R>`‰/'5!ÄU/0_Ñ†Ö >Ÿ}³]ØR¬Þ2ÔèÉ]qÖÒUßu/'Vêóµ¤h_7ž`×dWe= Ïáå3ëí~vÙf–ß»s­}Ÿi¦sàZÔ·Â@yCzÜqBO6[‘q,a³:‘³ç!}Èt{‚‚mŸþ±¿m•'êæ½Ž÷¡x£Êåw«ÕµØÊY]îUk”űšt«”€[¬,[OW‰Yñ‰•x˜.￘½S×`a>¬ºJ/"îiAÌÊåÄJpŸã²kI®ÈÆ–+õ¥¡ýbårýÛ»š™²Ý‚„XÄøhºó45j.w—x2¹xv‘?o r©„Ë5¨¯7ÔDŠwŒ9Ü{‚óé5"Æ#åY­jBÄñóì)€<÷AöFXtÌåÅJ=ôžh0#Éš,Œ;ƒï³UÇî•aM€µk».ª×¨±Ûß—=X‘ýjµçBÔ}݇Ü«7ü\ð¹+ÔuĆ—½ÆrÏÕÚÑ×÷cOW—+Qíïû/ßþb—9×3Àiƒ}+Û!u€=ŸÙOÌì¥/"ûÛñ/A³ü¶rsùµ™:•Ù–n‹Ë(Ù2¤\^5YДð¯ q7°fÛb¬Òæ3àò³µLÕ7pÉY¿–js±bPV,9ɰnŽvÙ·²â|ø[ª”ßþ‡XÐ*P°1P/Èe7Ý`U? R¥!–þÄ HÖQfc¾Òe/?šó™¾\l ±b×)‚Ø,™vP¢J£·ÄCz^¾id»ß‰l3kF«Üœ,CÏó}iȘ†¢=ט^–kDÞãƒiφëîÀбbùÎ:Ju(!¹¨<ˈë:Þ‡ÒÜÕR.A'Ù@ôÙ/å#Ë嬯UëÚÚfVΘòñC¶¯ôѵÜ5übe™z Y Ù¡%\$„ëŠ>ulÕž”.YrvŠÏ)WUî>3Îǘ=ôò¹’í2%VÂv˺N±"ËçÜEŽgñ+ã+öoïvТÞíÙz>öÎǸèñÑ'ù|âî.¦k7ê=íÕ©˜/«±±êÑŸcK­0Kw#™O‡°pž± ùÎ&‹³²ò# ]&buåë›gƒ‡ÁÎc­NIßd9(%²E¶›Ìx]žÈÁÞsç iõ•,ë+æ×[LKÛo½].w}ÝY©®EÌAÊ æ“Ì>w)t´åJõt=bźOø¸Õæ»{•³²¼,0Ø53¯ߺrÜ®R&Sˆ|/Íý+S£¢‚½Ùö˜l—¦B*¶0f%t\ˆ'ëÊŸ™o}•þí=¯¦Æˆ{goŒ[0>:ó$E[‚ØnG¦c¬IøÆ“ùßÖù¹Ö7˜KL]îÞ“xscYf>FçÓymcáxÔ«fíÀkþ|1µ¼øßéoËsY±[B¬,;Ãï³ÞŠãÍÜÇ]¯Qc÷¢{5º_­ö\ˆ¼#ûЂ{õÆŸ Ã¥ûðUÅÊr÷É2ÏÕÚ18^+FE6¶p›/¥Þãu©t×ÓÔç2¼¬X¹Jû[±åñ ³ö\"`ëâeí*o^o3{?ù±Ýž>`±R ÚM&‘¢RÍ$ÞdÚ¹kV"S²gÜù,U6áÞA§Tï©€Ôƒ¹V»ˆUš» ô*‰½”-›t¹kYÁþrû¾’ÃÍ,Î Š„{f'®›ž'RÙ¬Ãå$`g.ŠT cйJ3ü†ñä£]+¸ÜãbÉé# ’›ŸŸìÎW|x@TÊ·Œë+O©ü‹˜—ûŒû¼"è½ürµEå‹j÷¨6³ãó]'øÍ6pUO©¿|ß{N¬’ÏåÇ£Gª/š—3–ï+Ê 9,ˆ:¢^£Æî«ö«ë{.,߇Äsá~÷áë½Æêヴ‘õËèzºN[p)öÇéìöÁ‚¿sÉ„í‹øp¼ñV[­…<üëê-ʃû‘µ¬˜[âíÎ×ÅM•Ϲ‹ÍõVc®U¬”ì™Âb©@)5YnŽQ?à1‚{¤YొÍ NxylÄJžíÌ’LåÔ~ÒC¾ØËzØ6wÅZðÛZÑÞ>õÆó–œ ™œýÞ’ûÁM•¿§'·À÷°Ä=Ê13lC¾«_*Ã^>Ö ^ÀcGó€m7O†>‹+±€XˆÄ @¬Ä b V+±€Xˆ€X@¬Ä b Và±+=Ê'Öhmmâ™ MoôZ&•R1Z‹Å(f§D2MÅjó•_åi-F%Ý\î˜i %jŽåÿõ݉úK¸9ÄÊu1Ö‹ÂЖĩ6¸YaPH¬9®ç&]n>±RˆËëçëƒ%„J“Òª®êJ¬4 O‰ã?”¯ãæ+×E5w †TIw|?¥^»IzÓ ñt@Z•*ÕµÓ%¿÷ ƒ¢+9­'Ž›dêúIª›óߺFÕJ…ªµ \ç™R»¡¾c×Ó ¯ÈS³^£ ÿ^cÇN-¡1 ¦®“10Ź+UåuL;W­V§SSü¦Ý3i´ £²p™Zô}¸XÉ×ß·)£ŽÍkñ»ˆZ[KS]¬ú ¨˜ô_ÓvÁ7)÷~Ÿ ZoJf=ï_Í©üÐ.CŽ];è7‚xŽÚL€ä<ŸgÙ1õü‡Äß?•û¦Èô]¡„÷øXFå?¬ÎÖ¨°ÌÊO‚X1*i('Šle¤I)Ëhn˜>q±OSE«Q>SÆwžz ¿+ƒÐÏ{µ¬}Îj£A¹¤üºBc£B1µ Se«m­(V:bñ,5Ù*G-§DNõ|ß«Ú~±qGÖ1JgæFw,™W/D4|°²°“W,ž¤B¥á7íjÞ^层ÕuËíê çˆ[‘¢¢`¿TrLZ1í:"S¢ÞÔ!‚¼n`ÉùÆóº‰Q2› £¢¦ò7víTÆãNô¢,ûS%6¦m*¦î]Ç 5µ}ñ\¬ÕF¶X)@¬¸-‰eX«`ræÂ4˜+|Õ ~>¶Úa޾g[³ïøõ¦AÇŽÕ±ãéå„ß!ÿ?äcæ7ÌWPpÈ•k+2$°³×2ß?‚«NÖ{VbyÏ‹(€XyˆS­”§l®Díñe¾ôàÁü…\ŽòÅšë­ó@¬Ä b V+(ð€G˜¯}ík0Ê+xø„Êt:…Qx¼Å Ò£—¸PX@¬ !!!!!!A¬ V V V++HHHHHH+ˆˆ$$$$$$$ˆÄ Ä Ä bb b±±‚„„„„„„±€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V V++HHHHHHH+ˆˆ$$$$$$ˆ€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V++HHHHHHH+ˆˆ$$$$$$ˆÄ Ä Ä bb b V V++HHHHHHH+ˆ$$$$$$$ˆÄ Ä Ä bb b±±‚„„„„„„±€XXABBBBBB‚X@¬ !!!!!!A¬ V V V++HHHHHH+ˆˆ$$$$$$$ˆÄ Ä Ä bb b±±‚„„„„„„±€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V V++HHHHHHH+ˆˆ$$$$$$ˆ€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V++HHHHHHH+ˆˆ$$$$$$ˆÄ Ä Ä bb bFb b±±‚„„„„„„±€XXABBBBB‚X@¬@¬ !!!!!!A¬ V V V++HHHHHHH+ˆˆ$$$$$$$ˆÄ Ä bb b±±‚„„„„„±€XXABBBBBB‚X@¬@¬ !!!!!A¬Ä Ä bb b±‚„„„„„„±€XXABBBBBB‚X@¬‹•¯}íkö`€Ge€ÇR¬@¨+ˆ€X@¬ "+±€XˆÄ ×ÂlB“É õž±2¹ ­[·è–b}}1ÿÿæáM:Çìï-ºcDGù[”?j]1-‘£Îè¾”{Ò9beʇ”ÉÍÌlÑññ9MV<î:iïØmRipãyëçh‹n=W¡‘õwþˆý-ûæÖqupßžŸ1Q÷ð&«§«ÞÃך§{Ôáí¸y$ÚôFË~ ã×Ã0F§X™õé¤R¡££c::TñƳÿ³ÏOô.ZöùF¨XÑv·hO3®,š6ص/Ìû#Vº§´•ߥÎd Cøp•ÿPM«w}L¨²ÁÚeëô‹™3Üt^ mò»š+•çèÖúóB¬Tžcüù Ô‘·ÿ·YŸ^§ e°óþµ~xñ剷ãkÇÃk+Þ²_ÇøõàÇàIp›uÄêÆfÅ=Ë(ÅÊ&] MꜟÑéÙ9Éý½ÙïÒpd¹'ͨ۹ ³³3:¿èDÖ“!]°óµh8ÔiÓ#V†;Ïé){ ôèkØÇé-©ï&Ã.u‡#ê·Îéôü‚†“ õ»}1zof’aôi4ê“ÎÎyƾï+a6cŸi{ÌhºµCz×ÂÁ>NÑïçS^“¹n ;v~"ëc6¢–ÎòwzFz«o—uØ:BnûH§¡9q^ìÞgþÙ,2켆A}sæ˜æÇ åqªNÌ>Ïûµúf ˆ²Úáì\wô yîáhDÝ YžV×q|D}ûÏßqõ­¾Ñuj÷½n‡Œþˆ•yH]•G)V*¶Xy.T¬„åßj;“¿%êîü˜×ñùŸ™]:?;eewß+V¿çí,ú¯³O,UçüÜF๗ïoji»Â`?fåͤXÙ8ÔYý^Èþ×™÷ŸÅ÷ãjý"¸Ïyó¤ÄÊF…ýžÕeÈuƒó$¯cò{¼%ûßE§Rvïø%ÛŽ·«ç\÷[p¹î×Ù'ôg1޳~%êQï°¾+ûÚìRí b庄qÁ°á™a•bå–£–)f&Ÿçÿß×Ùß&o{·KFЃox&®å=§+:Ûßô|·MúðÞ‚kLØ,éºç»1Ãyqèþ|ïx_ü«3#stqP¾ :ëÏØŒ©#l–·wñ¼}/ûÉŽ÷z[tÞ—†ÏÅá†ÿ¼û4 ª{&Ö¶½¿Ý>fWË]Ož™æþ©\ ;éέÓþ[~¨üèÐn·{*¿ëâ8ó^@lk¾¹ÃÍ >1’ç^÷·s"ݱ¢êÛ} CÔɺ•ÇÑ9­óßn+#­K;¼¿2q}±ËÎûRb%2ÿ!m·u\7žüuÿý²Ö•§¡É2ôß…uÎèžîûÎm­ ,Ûß&žû¹ÒzK¸yÝ<Ôm#8ü~¼·Z¿és}_ž˜p¯lù˳Î~»0OÁýo«rXöçyêŸûÛ¶¢#Ëu¿Æˆ¨>¹¨?B ùû¬Ìã í båa+{ÒÍæžyá0"¡2¬·N¤a6c†YpŒÅ„N¶äñ´\16l±bê‡.ïÞ¤C»ëÒx›E\ÃÊç®2Š']ùÝ&‹Y° ŸÃs6ãß5¨×ä¿}N¸¶ÙåcnDµ„lÅÊÅ´ëB×?ÝUÆ¢¼ÞÌê¸ù5e^»gû!õ1#mÛ2b&®ßîhìØ‘î"§VÃì6Sõ³}b,ÈŸ5›>okév#ã>œmÞç3º¦[HŒ.ö]Æ»Ž>!_«}'t*fž7…ëÍ¢úv^ç|]¨¼îM}.@EÛ‹ÿk\TÚe9±GÛõ]dç´K`)—4Þ¶ç˜ݢÛAöû]ê*oªó^ŒÖù½‘¼?¹ˆ•ƬI'Bœ3¡4\¥¿Yˆ«êþ«ðöZßaí5S¢.Œ#ïÇ•êuAŸsåÉ_ž¾£<Ñy²úŸU.nÍïaoÙ­>¢î¥[ÛGª~™àî—,o-è/7?F,è“QùSýfsÿÌ®øý8Z­}@¬<ÔbåØ˜ØbãÈ6:üb…»XììU蔹˜~ÛCÚ_÷\Ç<3ÎÜ ¿ÆÝ:íŸh¤œvªÉ‡'3Z‡×†Ï­=׬¤åâáõwòïuaðYÇu*›â\ý@#^'¯' i;vâxÛ6|>÷*ï~Ñц…»Þåìðúþ…Ý.añ<ç{ëÂæyžíÚ3¦Ñù[N¬ÌÛÜÏhØg®$Ò™+ßqeOªM«OlH‘8oßs»}շߨ^åÑ÷7ÄßÖJ’q¼©Vî­,V¢ó/aµ‡™ÿ×Ep5ûÝ뛬ߞh§t¼¿5_5d;º ûìºÌ]çüô„wçß-ªskååÔ9ã­êu_7Wèo÷Û½}|&V6lcq5±eÜ28 h¨üŸ[nFëªÿ²7·XßÝ}ÔíÆµN[Û^±^çr—© ÷÷®ûfÉþ*V.<®bV?޾Wé×%V¢ó´Êuæ}ÄƧýÙ%úË  údTþd¿q÷×Ig^«´/ˆ•‡X¬8w +³áÛQìD=LYkçTšëõ{Ê}Eø”ïÏ?S.[bÖ´"Ýf:ÎàÏ ŽO[,È4üòa¾MÙ<ŸÇ[ë,0½µ„Xa³õÆÌ½Z¡Ü:¬c'žã¤ùŽ|êÜm)`E&Ú‘+M·vÏŸõçn wJ“ǯ3ÚeŸû¸‡åOµ¡c3ñûÃ1ØžçÝ‘k–wÃa”:w—š¨¾j°¨¾}.r¶ÏÿÛ3ÁÒ(;îL.%V¢óo†ÎUºùêWTþ‡Æ‰t©¹pµQ‡NØV¹-æÚµ§ÜŒú–áØ=ñˆ•ð:·®{Ôš¯¼X®pÜlu±Â ØY°Xqæ%ê~œ]¢_D÷9+O VV"󴜷Ënõ‘¡\ÝÝ;71alb}¾y°¨¿ÜôÝ'£êݺ÷*Ž>)ëosåö±òÈŠ¾=ìL^›ûó·7ÙNPr«Í€wèÊàÜ?e»=õ/hoc`og}»B¶#’¡©Àê‡~Y_S.8Çì;¶ÓØÉžô?.%VnmìÒEH3én³¡Œ/TÌÁ|gyœµ¢Á¯g°¼´NUpîΩxȯbˆXøžÆv*c»ì©Ü;Z¼­³q²cÇsXDçO¶!S87ºÔ:³ê`9±ÒRÆŽÖÒÈ‘_”mÅ ¬SEĢåV²¨¾½ Ïöìàjq¼~h¦wíü„‹• ­‹£ó?ŸmÞÜ?»QYߟ8ÄVpþ•ðdýEku}›×e_Š•­ k6¬^T xÅŽYÙˆx?‡:ž òS¶»ÕüxÙæ+‰åR¶ÇV¨º£»>qéœýºg+ö‹È>çÊÓ,²<Ñyò‹elŒ£ìvªÀüm:c;”Y!|¥²¹ ¿Ü1"ªOF×»)coØ÷Çlçºóc+Ø~s©öíž>O[Ì­±‹ÂbåÁ‹•VàÖÅ–S¬mºÅJ^3£‹c÷®3ë|9ð!ǃƒç3äë®Ñ.s§ÙpžgkŸ:£{ ¯Ásî¶´}x¦ ØM—‹˜óÅmv`óÆ|מÝ{–ß ìåÆ[ãÂýÂ7ƒªÎëmîÛ3ŸÞkZb0ø¥Ž&ÛþtËå"dåZíùšá©g§Åù3[ÇŽ:Þ ÝÝy~ýmîq‹2·çŽK[{Ì5Õß_ùw—âªr¯YTß>Fr[ë {W0ëÿçC.?)¤ý·³o®’ÿ{;QíŸK埯0î¹Êόċ¡lÏn^Û{{2ø™åqQKw$v7œõÊ ëîdõþfÎwŸÛg¶ˆ1rÔ“,ã–í:~?®V¯Q}Î'sayÂó4ò•G¼`r=è:=WámçªßÍ=j™‹Ëu?ƈ¨>¹(÷f¬·Õnb뛲ÞìÕ¢ÛWÜOxÉ%@¬@g+F%#úD‘­Œ4)¥Œü‚;bR1a‰‚4U´å“1%jòÔ[øýòbå^¯Jqqýi¦[Hq×4³Q°EH"["­VRßóÕ &õjY;ÕFƒrÊå,}³q8@¬\;*(¡‘(hÌ PI­d¬¥”?#…†rÏ25JØ¢bÑ÷+ˆ•{c*%å¹2µ[IɹVZæb%MmKldìß|S¹•­%ò¤1±¢UröÊK@¬<:LÛåˆ`÷„ ´Ÿ‹‘’®Äȸ¡V4T7}¿ŠX¹ÇVG¤Àˆ¥ TT.]ÙjO|g‹•xÁŽE±7ˆçé$ x_î2-š€XyÈÐr {°d2©HPÌh?#™J[‰œõ·X þ~5±roªÛ®h’5Æ÷Üb…å·Ú“ŸÕÕ9bÙê<`Ÿý-òÑ«S©XbAøM¸ˆ•G‡(ÈÕÜÛëŤ#ÐÞ“ÂH¦Ó*®ÄŠYôýŠbEˆ¨y|,Sµ?wƬp!”IÏWRrµžk æT6Gé¸úm² ± VœñúÔó½è¾Æ^ÒxG‰‘¥3©¹ˆHæ©9vº‰…}¿X¬$ÙN_aîiÇK"çyŽQ2³“.j¶iWóöÊÌGŽt¸€ðPÀnÊHPGÄÊŠXb$I .jÆ& æ ߯G3’^VAók;Þ%VøÎeüÿ„?xŸË”ç}gŽÑQxD D ±ri±RˆË8‘à õE߯ðà ŽOº^Nyoþž¶%2^öÀã'R Zˆ•S­”§l®Díñe¾_%ަIù òO¥(_ÖÔ‹!b†Ìr9Êk¾ï—P` VàǦ@°+ð@…ÊM ˆXYl<¨ó+BEÆÃp.b T®U\@°+¡|ðÁt÷î]Úßß§ßùß¡_þå_¦_ù•_¡O~ò“â3þÿ :Ú€EÂâ2} b€X 5VÛí6¥Óiú£?ú#êõzôãÿXÀÿþ‹¿ø ú­ßú-ñ­h{ •Ëö)ˆbÅ7 úý>=ýôÓô™Ï|†Þ}÷]úÑäGô£IÞÿ}zûí·©X,ŠßðßòcÂÎÇ_öcFF¡>˜ÎÞ©’‰ñÅ^`¹«Û?Ul\éœÓAƒJ%ù.™±^dõñÕï>šmÏ_ZJÅX;Ç/üŒQ"™¦²f\9¿c½ÄΗ¤zÈ Kk¥25Ç7W_Z>)ÊSl˜×vÎïÛOé®õ÷‡ âïËŸÓY×ÓGWYU¹jŸ :wJô£ÕzÞ¼ ¨Œ‰6)éæÂz)&ؽRκw¶Éåêcˆ•kc<Óîî.=ûì³Ôl6é­·Þ¢·‡oÓ;ï˜dšïÐ`0³¡ßÿþ÷éÿøé _ø‚8&ôœS]ñ|ÝcdJ㵤ÏÕrqöY†Ú‹ ºB\¼É~±bÖ ö5sµÞµ …­ÑO‰²Ý¥/}"IÙ/5¯f¬æ¹±%Ë6¾]¡äSŸ }üˆ¶=3 ^çqö2Ï’0H ù,%T;d*í+å×lĹƒÄʸ‘Fký¦êNõkѧÒ4½.±Rø­ýT^ÆÍ/eé©O|éJbÅ]×ÓGW+WíSAçNªzO•Ýå˜ö=žwNŽ„õM& bŽqɉ³îmr©~бÄÊõñÆoÐïýÞïÑßþíßÒ‹/¾H†aP·Û‡ÿê«:ÿÞ9U*úƒ?øñYø9§tⳊó•F!!fF¹Ñš(X³=ÊóÕ–LÕ>¶×¬S•]£ZkÐ`ê+ñµ ]|_«7¼Õ^å!™¥l’ý›(¹~?ÝРÝðŸo:`F–Á +ƒ´j•å¥N†é6>¤ žq›zw§Ž™Ê¶8¦R­Qsà4êÇÔÖYÙÄù4jöäwSvƒ,liÒÚñ;ã¶áÊ«¡ÕÉ”ÕU“ÌÈ35Ö.UªëÆCÐörö𝂹ÚgÚ¦Ÿifåt®¬…µ7/ŸU_µºnç+ft]gís—9ÃÎÚÒœZíѤZµÂò^³ë|qÓ«eEÎçR"5çj`äùd[õL“ÚuÙVöÀ#VäŒþônnÎI“ôºÕ¾n£×d÷‚¸VU¶ýTõ3o=øûhpÈ{bÌþ•÷XUó¶Ér®ZA}ê…^ ßøß _ÿõ_§o~ó› ûT˜XYK\z)e‹çJnð=#ÅJ<_c}K÷¨³œuïlëX]«‰üjE÷Æ+×ÊøCúÃ?üC:==¿üòË—üÕW_¥N§#þ柽ôÒKT¯×iccCü.êœíƒ´p×iŒ¥«%‰b¹ÑÈ’ÿÝ@£832²bæqLÕ\Âá:ÄI‘Ö³ º¤ç;n åy‚PçNW ed®Ñ1°×y>BÎgÖóþï˜qZÇ; †»”çßå¾)ì5ÿq•mjP>±æûŽ»5òŽ2³zyU]û›w¥TNÇ<Ç%©&òaJ¡ç9g²PÀm¯ÄJ¼à[7älsA¸PEµ÷€¹’yË&Ým±ÂûÕ n»}õäÓîzg×hWr¾úÉ4ÕÌwT•kL%exšf]ô­dQw̤G/¸­ÒeÝg×sü»œì×f}¾’£ˆg«B”4Š)ßù⹚]Çóz¸ãê£QuxOÄsÔ[Q¬õ©_ýÕ_¥ŸþéŸð¿õ)ïùù$G:›"¬j»‚õ(Çê5–H8VV¢ï™b"¼œuï+fCº°:މ¥Ë᫼{@¬\/ßùÎwè/ÿò/éüüœ^yåa¨òÙÐ×_îܹ#þæŸñïøLég?ûYqL¤/´rÏ(êìáfÖd û{\—.*56[(ÿ–3Ô2v…¹LT•›ÐX—BJºÛXb¥P3\çl5xF¯YNÉX>+9mˆ™ÙxNsÌfËóåÕñ=Myiæ¦d*ƒ/ž9³ŒÌXI ƒ‚Ϻ ûoæ"$fSEeÜ1#¯$Ä t§ž³ ;~‡<*?õÂ\ÀÝ×þð7*eLJcjÚÓ¤ñ*òa^iª¦Ê¸X› ÁÖöb¥Y¶ÊÈö7„qš,Ëï¦Í[€È¶I²™àºlVþ†é qÿÄ }áz–*©öP9“†_ïÞ‚6(W¯*úp¦"ûK%½ær_Œ>ŸÕV)ÖVRøTÄŒvBˆ.§a<ÿ{ª®‘ j[΄7J²ÏVZ߯põk¿ökô3?ó3‚÷‘,ìSÞóÇŽ_÷å 6m—Eý”+»_-ºg„‹"‹›“í`Ò(B¬Ô…µCUü&eÇÕ êEéÒˆ±çJcˆ•¥9;;Æ7¸ÁÝ€Þ|óMákÎýËùßÜMãµ×^£ï~÷»Â¸àÇ, 0†ÅA›¦Ya`êSiDŠÕlÝp<(ëb–/F¹ò”ËtP9Pùrf׳"Wkb#`ŽœqåÆd­ ´™»…üJæ!ð|¦}>i08gp™»‰pcË’f0)ȆÝx`0wù³g0÷æ¶S«R©uPî2/Ò¸w âsk–Ý2„J)e\Y.- ‡”°ÏóàÚ>\¬ð,£2²½•Xáß§³ªhÌ lìVà~¥ÏbÍP;¿¿7¢9§ ´qHð57úX^øjSÍ28µãÚaç“m•(é¾¼ðº6’U|…³3—°vÛ®]Ss òѨ3w¦r‘R±y»]åæ}tQøî ÕA± Qb%¨O}ë[ß.`œú§ZاÅŠ> ‹2Vαˆ·`ùM”™«RÉîWKÝ3…†O„.jn˜—Y-³þZ9(H±ˆ±çJcˆ•¥¹¸¸Û‹r¿r>›>Å;F£½÷Þ{ÌíÅŸqƒ»m<÷Üsâ˜Eç­fx r‰ÊÜÀH–•O=3fùƒ.Wî ñBÝ5ÛÇ%±8ÛA*EÉdFÌœ7Ô»ç4ŠC‚eÇÍR€+…àm8bh2¾óñM¤ÁP.lN·6>[l0˜jŨàF45j.wžxR–u‘Á ¾ØËÕlƒ¡îÙ„`5ƒáúÛ>\¬ 45S_7¶÷ØÐ(—J¸\aʺ9+j·±x®(VäÎFqw°½ÃøŽnco™ ÊÆ‚ûï×cûÚaç“ÆhÞ¹B¡ò’[`$ǃÁÙLvÆáJOcu‘XYT'¾þ3– «Š•ëèSAb%ßÓT—Æ|Å}äøjDµÇ>+Úbeá=󬈸ÊÐÖ.†Î¾Êê;ÉîálYÇØs…±ÄÊÒð@ê¿ú«¿¢/~ñ‹b&”ÖV¢ü_þ¾[w zþùçÅoù1 Ï[ÍÎýÂÚA±–{B]<ÀÙê‹óøú•* åæl ÷ˆ cN¸ÄðímY)Ï7gjêb¥‡tƒ{AâG®Í †5*7§n6!³›j†6[sùVXùcYúÒŸÄ•;éšI{ †±Ç`¾í, ݹun.æš­¿ªÁpým`Ï7SHÌì£Ú{Ü«S1_VmÂyõŠpsqÎÿ.Tce`—šãèýLežScõ£Ï~I®¤X ØÔ³…é©—Q» N®"Vœ‚åª}*èÜq•G~ß‹“rÃÞ¦‚cÅnñ=Ë9Ú¡QTîªft;¤«®zí D•FcÄ @¬Ü¯ík¹ËÆïþîïÒ—¿üe1û)Œ•¬ß‹ßðßFo_;w1‰[î:ŽY¿©=û8wþçÌHHg;ò4µ¢œ-V+2ÖL|"W¡ÛõÆšY.7=ùKñX¶æË®Œ[i ÎÏgðóeçç³gïãÌ•Ã`»MU¥q(cÜÛ‡ÎÿV;›±2U›=ÛÀæ1ßQ;¡°ÝœLǵ*æ@ºD%Ù{HÚ.ƒÁÚî9ÆV§šÌ%«QQA´é «¿|ƒáúÛÞÚº8AÅæâÅ(óÒMɱuqT{Õw‰ÜµY¹Ûõ²t]aï”p¯ÊÅ&-ú‘åæ”-U©mÞ¦¬êc¶SQ¯Y£tl.–¢Ûؽ³“ŒqïbætkK8ŒÌàóY>þ1wÁvk×d‚íâd$Ïûkö€íÄÔkR1-ã+¾õbI‰&ÞÆûZâ~{ëaèè£Fd\—X¹jŸ +e¼«U¥”L‡XYtÏXíPd÷o¹êÝ– `¦¤±±Ç j>³‚±b Vn>ÛùÎ;ïÐW¿úUºuëýþïÿ>}ík_ŸqNNNÄgü;þþYô‹³éñ¹Q6÷½—AžÞwU´k%nÔŽ;Éé¦;f æø>_m¼ß oÏ”I £—¹ží.–«4ÝÁÒñùn8ñLY͸K#á)á÷îü›¡Ö)wœ3‘¥Æ€^³ué:”e.NÜ÷^ÎâÕœíêôÕS÷‹ÙšÌXq–9‘±‚£U„Ãÿ^D+ ×ßö¦Ü5ËS·±DŠJ5÷;VÂÛ{JõRÆ}< 6¦ÖŠDÂÞºØ ÚçmÊwa²\^x Æ”¹’¹Ú#–²ƒÕ£ÛØo€Ç'XÆo†^Œ<_À.T±´ÚY‰zOÍ_Fèø›WÉ%]®pEñbÍÛ ŒÕG6›F¸ï®zxÕÝG#êDÌøÇÝb%`å vÕ>å;¯Ê‡\YámWt½¿ÄZ¥²Vi#ï™ïgIW;h½UÛ­j¾0ö@¬ÄÊ Â]3¸ÑÀ]?ÿùÏ‹Ï}ìcþ7ÿŒÇÃ{sy‹Àî9Žü~|Å·BK·ùÓs>§ß8d˜Ó•Îmæ*>7ÍñêùÊ2›ãécØöí}©r³ç<¿j«¶ñ½@W±°ó9»y™Ì•Î=e1¢Ï{WÅøuع¦KÖÃâ>ºQ«+—íSQç¼Î{f:6#êî^Ä1û>{@¬<€–÷ß_ìÕjµÄ¦9üoþÿn¹•‡ŸºzssÐV›VÀªf>9ûIjû›hãèóÉÀîµÀÕ™G—EÂâ2}êÚÄ Æ+·áÊg;g³™€ÿý8ª"µV¤l¡øN þN\¦@Íñ“×ÉŸ„¶¿‰6Ž>{&Û2¶X{üÞò½Œ¸X¶O= Bcˆx€bå2"ãºÎ@¬X(4–W9+p%Ñ$Æs1é0þnñÑkÖ©Z­042̱’(’1hR­Â~£éóc§jh5Òêm±‚c]Û)VÆ=v;w¥Z£foº0߉¼&Î5›¤Ó*Ï)jŒœå¥©ë,Ÿ&ºÆ¾×¨}§§>“i4¨Êò_SyŠóT©Qy=]ü®R©’Öh»EÓ¸GÿŽÕK­N=»î¦d44ªñÏÆŽ•ªA›´šg^ãé,eÚ·æŸeJ5ªçâ#‘; ­’·ËËÅ»<,î$i]¯A=£NÙDLü–Ç¡Xnu±T‘šƒ*ù”C@°•¬ÄÜ lÚ.Û×M³z¬–óvÙ2Ãõûµx†jl%—ŒÉ²ð•&£"Ûr-IU¶úÒÖŠâøX3U~cjßsˆ“@±ÂÜÐ ²É¸ïºÅ†)\³r)µâáp1ËV}bÅ.[N›Ç¯8ëÑó{gÞÊ¥®ÉV’>W±4VV VE±ÂËkŽ˜ ‡Ñ7WÒe]˜7)›ÏðÏ]«˜ÐéÉók¹ÄÜðŽZY±Í(ƒz@ÕR‘Ê•µÓ¥bVœ,:_´°RŸyò)VX°}ò—Šl5Å0XÐ{E¹I׬v£Fìúõ&lƒ‚R&n_Ë+>Ú[4õTÞjYùûXÆ/n¼beÊ67¨²U±b™m€`° öJKYÄÈàÆ€Xy„ÄJ¢ÀÈ jÏüdz|V¿á2ÖjÖåæ4Ÿ¹—®Tîû‹™»>‰Õ˜¨˜•{mÊX« É,å2‰y|È "ß¡ÛGŸo‘X‰;&he¥Mi«îRY*• ”Vâ.[ë1ÑS"0É\²Ê”O©ÿ³¡©W|ôn\Ìe,íX­)©€ü(±â\UJ3W´r1«Ú•å{Œ›bå!‚Y©€%ÁÀˆˆ V V`€±ˆˆ V V.'VÐpàþÄ Œ1p@¬À÷Ä ++0ÆÀý±âáƒ> »wïÒþþ>ýÎïüýò/ÿ2ýʯü }ò“ŸŸñïøoÇÆ}RËþ¤•b+ 1Æ Òv»Métšþèþˆz½ýøÇ?ð¿ÿâ/þ‚~ë·~Küæq3ÚŸÔ²?‰å†XÄÊ#fŒqã´ßïÓÓO?MŸùÌgèÝwߥM~D?ú‘äý÷ß§·ß~›ŠÅ¢ø ÿ-?&êœf£H1vý5ñDŠJšq#e×K)ZKÈ\á˜ë.{£˜dåL“>uÔE½ ÊžÈÕ¿R% ÌïX/²ß?Eõ»òÿ†v@Õ¦y­uuím>nPÊÓÖ±XœR™5zÓ¥ò4ÖwÙqI»ÜQL *•j4†Xx¼ÅÊx<¦ÝÝ]zöÙg©ÙlÒ[o½EoߦwÞ1É4ß¡Á` fÚ¿ÿýïÓÿñÓ¾ðqL´X‘z®t@’r)O eÈ–›ãk/{£§µØjbåºËnÖó¢|%Gù´|\ðYjÛ¿mS†‹·œæÏÓí %Ÿúéc.êBôåê×+V®½ÍY>yÛ&²y&"ŠLä(—I©r'H,ÎÓ]Ñg>´”Xiä™Ð[˯ÔÖ+€XyÅÊo¼A¿÷{¿Gû·K/¾ø"†AÝnW«þý«¯vèü{çT©TèþàÄg‹ÅJœSÏw½ª0¾3•¶c–¼Mµj…»FÍžÇ ÷¨¡Õ¨Z­RMkÐÀs>ÓЩÊò¤émÒ ‰•ÅJPÙ_xáúßø úõ_ÿuúæ7¿¹ZÙMi´§ÊMõYr1¶ÊHH‘Ö–« Sã@ü?_иצvÏ$£Q£J­N=& ŒÛ†X54ʲ¾ÊìóU7&é¬Nx~´ÆåV©®½Í™X‰³|îö3u™ÿµL…¦öçÁù+½f]´oµ6oû©iÐA6.V°´ö ò·+€XyÄÅÊøCúÃ?üC:==¿üòË"NáÕW_¥N§#þ柽ôÒKT¯×iccCüî2beP/ #=[ëIS+ø\ÅrU)dÆÍƒW² 5Õ9›ß±«º•ýWõWé§ú§üïÕÊnR1Áò‘>ƹQù:Дeÿ&KºtíªdÄŠCƒ­žÔÅ*Á¼ Ï”žÿ~ó®Iù˜Ã…._gb¨A™˜ÇÝ*]^y…áÚÛ\‰.¾¼ßU¹»[,G=!æÂóï+cªæžöM‘Öã«*ŽÏcyDüb+¸XùÎw¾Cù—IçççôÊ+¯ƒ•Ï´¿þúëtçÎñ7ÿŒÇgá?ûÙÏŠc–qK¦3”ÉHÒ©„mHÖMö»iSÄ9Ä2ÊØžRM¢IfÄO©œ”⤭ÄÉ@ ›«>Åû5F£½÷Þ{,àÚŸqã•»=÷Üs☕ÜÀØ*JVªq:hU0ºå£x<Î`ÿ&’”d§¬›Ô®än=1J¦œb%/fëëc‡HŸ­&Vn¢ì÷¦ºXõɱø‰´sÕcP¢-Pº¿âÝÀ+VlÀêÐr¡’õÅI°úJR¶¬¯ÔO®½Üb¥–‰ÍŒùw–ÛZm²ÇvãÂ7™Ì0±ç®³E¿…XÄÊ#,Vx@õ_ýÕ_Ñ¿øE1ËÎ Vk›Zþ/Çß Š»=ÿüóâ·ü˜eÄJÝi,²ø ±ÂÂf¼¹[Ô´Y–î;ήLíVfÛÝÞ«k©"– i—m±b[hÌ­çWß ì&ÊÎã-Ê)KdÅÙ ‹õù€òñyìMûÞ½¥ÅŠ \W+éªãZSÒJTiôVê'×^îûi[ÆŲՅùw­¬¤; îÌsý€J•†pí²êl|oño!V±ò‹n”rw ßýÝߥ/ùËbf]œK%ë7ÇÇÇâ7ü·Ëm]ì+÷Ô»P¸ T±a̓F›¹|ÕíÕ—ºr•ZK¨ÉÜ©zÍšŒIá±7Ö±)ª5{ÔÖÔ{]«o]|Ýeç´E¬ ¡ÉÛno÷lÚïŽUu¸IEˆSŠ€D¶H c¬â?ØjMIc»ƒTÍ'/³ríåVîjÉb«ê2ri{ëbK°EåßY±Ttc@M«}“e³¢b›ÊZ{áo!V±ò‹>“þÎ;ïÐW¿úUºuëýþïÿ>}ík_ŸqNNNÄgü;þþÙâ—B¤›–éý®GùÄüÝÓ( ç.N *Õå ~ÓåƶÎfå»< 9koÔ(åØY*™Š­`e—y“+ ‰BÝS/2ž%Wë9ÄJ•o÷K!M:H«÷´°€qþÿŠŠë±HV9âµ—›‰•¤oç6溗ÎSÝ»vK Ë¿÷e˜íšŒg±w KæHWýɨæì•+ÍŒþ-Ä Va±Âán?Ü åAÔŸÿüçÅlúÇ>ö1ÿ›Æ¿ã¿á¿½î|›,¨{ÀVP¦¾ø±øOkN/}í]öe˜²UéÔùSÔ‹9½÷H–{ùüËö˜Ë¼Dtño!V±òŠk¶ýý÷ß;AµZ-ñörÿ›Æ¿[fUáQäI-û“Vnˆ@¬<âÆ˜`=›ÍüïÇU¤ ìOV¹!V±òc€p0°bbÀ¤@¬àÁ@¬ V Vˆ€XàÑ dˆ€X»n0þ`ü@¬ncaF“ÉÌþÿl2aÛ2?,uÄóÆòó˜¶ÿÃU×ãê±òÐ3éÓ­[·hsÿÜ÷Ýð|_|·«uʼ÷uÎŒ‘£[t1ºÙë´Ž¶èÖs]éœ#:?>!c"ÿ>ÊߢüQëzó=iÑk»Jkä»öñkïÊ…øÿ¨uDëìw·´æcâ;&R,¨Ÿ caQÛµyÿ<´ÏéýÿªBñˆ•eëDÕ·y.Ú÷løàût«ÂDÔ­mÒtôú—ØßÏI±Ò=¥­ü.u&ÑåZ¶×T×Îö_í¾ŸÀp‡XX@¬<’°YømaœîR×0·„A}Ú·f3 :?;¥ÓÓs2†“¹á=ìR§;tMÝŽAæLžgh44‡tq~Fç­nàlø¨ß!ýìŒÎ¾íun³u" ŸÝ“ vþ‰2Z6ébhR‡]ëôÌOY†nhºìÿ“a‡ÎNOéLo©üû¯3 ©Ûw€Ùˆ:çìœ<ïÃ%Ê5¡–¶+êöøÂ /K¿KÑÃ-)¤®ïÍL2Œ>sbõÉ¿(ã²beÃ%V6¨åuÍžÉrŸv}ÇDÎz{êÇ®ƒsº¬þÂÅJpÛÍF}Òö6Ø÷;¤wMßÿ­:±Ïåu.¨ï0\Eâuæ©—“®¬ïáo‹}z½o¸úš!Üÿú´Ë㺘?ßçí( iS· ùêðãXãU‘‡Í£Žm¤ C^]Wùëc<´\J¬ØGô¹þ]ÑF›•3µBÃú¯>ôÕoŸ¯†˜3÷}vÎ×^Zpïo©ëôÅyÎöäuÕ$€$[j‚b^×WºïÃÚ?¤ï@¬ˆxœv³ÝÁ¶ìekVötè÷=3 ÄÊ|¶7ÌmȤn·K­ NOŽh›¸ò|‘çö0–Ñrl¯2LDl7°e€23`v*Ì•…Ådh§t¼¯Ê…UG «‡°ëÌq#à4Š˜+M—¹ëŒfÑårûÙÏÅÊ¢º¶Ê8Ÿ‘—e\¿±²¹µMÛÛŽYqfì›!Ç,'V&t²­fÌ·wéXãî9£H±Ôv÷úóÿòØuWDGÄ~ìÙ«'s¤èØSF¼jµO Úm¹#ª¿ÜR}wxj×»l£uqèB¬Û߉À}åæt¶ËÛ› &¹ÚrK¬Ðí±ïdùF¥PwÞryÅJTŸ³&$–P ®ß€X—€s¾õÒj÷¾Œ¹Ù²WOå ’\rÕõUîûÀz î;Ò}¹ŸžŸ W³Vö++ˆ•Geð°’FönaGÒ°ž¸EͦËÐw#§‘¼Èȱ™Z‡+ÉÆ¦4–ÃŒç¹=Ƹí»>ñØ£ ËUd666ìßÍ-ÚbúIgh…]Ç+V‚Ë]®0±²¨®£Êè˃Z¥ÙôÅ#—ð¹1£}oCº"iÝÉÄ ÿÿ´Ã]Q‹ÝÀÂ˵X¬¸Ý »ÚŽøL÷]÷5—kWçˆ×›– —ZaØ9¡sþùö é|…a³Bç'Ûsñ3ëˆU—½3]¬ñY^·Ï¨²9ϳ\uÙbqr·ªsûÄûŸÆv–[ËŠ•°>WÙ¼e‹'îÒfÌî…Ôo¸xuï¸Ú½ïý¿³Ÿ»ëú ÷}Hûß÷6&È`¸C¬@¬ V ±â58¸øÜ¸²Ü]¸‹Œ×°°b2–+Ö¹·.ìàZq¾£Åun%"**_þ]æ×ž'2Få¹ÛY‡ízuB­ál)±b]Ç+VænNÒ·~‹‹_Ö#ËeØ3ÏÊÊ‚ºŽ*ã½€U„=n íhîwv°Ë‹• >wÜyKµQÇ^ Zß;[b·µÅýxÙ{?\¬¸ëúJ÷}`û‡ôÛxƒ]Ûb2ƒÄ Ä bå‘+%VL¯ÑËâNÙŽ=CãœvÖ¥Ÿ>Ÿ¹í(ÿöÃÓÛéœv×oùÄJØvªeølé4š°Ý|ÎíX ¾Mkä¹ÕlëæÞÛÝh²ÀàŠYp>í±Ɇý {õ€ÿ>R¬x®ã\9èm©€c¶{Øãˆݤ—ÚÑå²Ü½öØl|wtWˆ•u³² ®W+–›’Ì»Þj±ÙN¤»#(?ÌíoÛ.ØíÖ>i§Î-ŽOX,Ò$D¬°:†ù.³X%³ß¢ýÍˉ• _t¢w}ÿ·ƒó7vE\”U×V±FkkkÏThz£×ÓA&A±XœŠ  ˆ•pÆzQIœjƒ›¼žI%Œòõ:+áT3q‡XY£TIw|?¥^»IzÓ ñt@Z•*ÕµÓ%¿÷‹•â2b…K¯×¨Z©P­Þ¤qÀ÷u~­ »–9¦ÁóÐvý®×¬SµZahd˜è°båÑb\§¤ZQÉfSR°Ä²d8ÄE>¶æ3’•us‰ïW+Óv…ÞóÅ2T·V|uJ­]3Nš)ÝÚ Iÿ÷…šŽ VŒJFó‰"[iÚ" `Ç“ÌÅÅZö1ú·ÿößÒ/ýÒ/ч?üa±‰#è3'Ê÷ÿæßüú¥ûKô‘|„ž~úiúÌg>#ê€×vbå¡áõ×_§ÙlFHHkâý›÷soßÿñ,\ĸ±þ©O}ŠŽŽŽÄ*Ìx<~b„Üûï¿/Ê|||L¿÷{¿G¿ýÛ¿Mõz]Ô xbb éˆþÙûoÿþÃøÔjµÄgOj²ê„‹—W^y…~ó7“þëý¯¢Ž0È++HH÷Q¬p£|oo~çw~‡îܹ#ÜÄøo>ø`&þ}¢˜Î„ë‡×_Uj·Ûbµ‰×¯+ ôÄ Ä Ò}+ܽé[ßú–0Æ5M#Ó4…+Ôd2ybà¢Äû¯.TF£½õÖ@ÔÑüÿQü —0bb é>ˆ•wß}WħìïïSó¢Io¿ý¶0Ð9ÜX·øÖ_ükZ[[›ó/þ5}æ«/Ù¿}T‘‚d^Nï÷¼~x Ë~ð:88 [·n‰Ï0Ø++HH7(V¸KÓ׿þuzî¹çDy³Ù¤^¯GwïÞù{ï½góO›\¬üsúÌßÓß•ž£_üç\´ü"}ý­÷\¿{\àå¿ûî]±ÒÄë꥗^›lnnÒ7¾ñ ¸ƒ++HH7)VøÊßž˜Ö¿øâ‹beåÕW_¥7ÞxC¼Å|ça¬s¾™ÿ—LœüKªõÞ¡wØçG¿ÍÅÊÿNG¯½ÍVcútö÷ÿ޾Ӧö?г™géï¿÷†X¥yûí×è«ÿ}›žÍféÙ?Ù¦¯~ï5ñy¿ùOôß¿ð÷ôƒ7Þÿçí7èÿþþ?PǽMoüàôß¾AoðïßhÒßþÓôì³ÏÒŸ|úóôOí¾ý»·ßnS…}—e×øô¾*~ÿ¶‡w>Ÿ¿#ËsW•Ó‚öÖ[o‰-žyÌ r¼Žø Ô_þå_ŠºÃ€@¬@¬ !ÝXáîMëëëôÕ¯~U¬ð¯nß¾-Ëk¯½& õ;¯ßaâåuúÇÜ/0qò ô•W_gÇ~þüÃ\¬|˜¾öê”AÏüÿÿOØnbÏþìØïÐ3¿ ÿÿ¿°w™ü¯ê»ï~‹:ßúKñ÷øâ÷DPÿó]uì§è{ìšüº{¿ÆþÿÏÒ;ÿ³ÿ‹<öÿüðÿI?ÁþýÔßêâ7üŸ²¿û_å9þÃ稣Î!¸ãøÛ ÿî/Ó¢œ¼^Œ;†(;¯ƒW;Q'¼nxœœˆ•(^wðˆˆ$¤+Ü Ïçótvv&V¸Qn‹fÄóßðUÎ?þÑÿ%„ÀOüìÏ ±Àÿþ‹o¨ï_¦¼%¿ÿ¥3û˜ÓϧÄgù/¿dÿn;Å÷oH{íŒþ~žß*»~»¶ö³TçÕèß°ÿ§>Jo¼üwô üÚÿÏ—ìs»¯ñê˜7è¥/ý¿âÿ_zé ßoƒèv»çg¼Ü¼ü¼,ÑÂëæå—_¦ï~÷»ôçþç‘/ÕÄ Ä ÒÄ 7ƹ{S±XîMüon”óÏ-#žÇ¯t{ò߯>÷3ðÏè?ýÕ_Ósû!,~ö×7©q§Ç¾oÑs?Ë„Æï&Žý«owÔ÷£Fï~ŸïcB”|ìùÒ¯?'®÷üùqß§?øY)†þïý=ÿO?ô\ãŸÑ/}ìcbëå_R¿ûOÿCW^V…—Û1–pá‚åûßÿ>íììˆú®`Ä Ä Ò ‰îÚÄÅ _Yé0w'þ™%R¸›‡Çmpjü¿1ð¿Q­+ÿÿâÞ'„(ø½ï²ÿߦ?þ¹5ú¹õ´Ï?û‹Å„ÃÏ­ÓËögoÑíÚ‹ãÖÿñeºýëâïÏýãé_ñ¿û"}ŽóÏ~o¾¸þsìØ?£ÛÖ±·OéÏÒÿÊv3ûÏiìsƒ>÷ËkB¬üÆ'>AŸü}"ý Ú;5yYgyùßo¾ù¦.¬Nø¸ÀÝãýõ_ÿµ¨;ˆbb é†Ä (ög&v·²ë¹Îu`ÏЇáø÷ò¿‹€úã×åÿ‡¯|‰~’‰†Ÿ»õeö›WéO~žýý‡Çâ÷_÷Ã>{áϹàø9úò+ì7¯]ˆ)@~›töý·ÿüßÚ‚äßï|Û>—uüðõoSæ'Ù÷?ù‡ôŠ}Ÿ££7Þv]Û‹}|ÀçNœßñ:àuÁë„ ¾ºò /Ч?ýiQw+Ä Ä Ò Å¬pœÇ¬ð{nˆóUK¤¼ãØ l¾ØORþù¯Ð?üÏÒoþ¼OÿÙ÷w(Ïþÿó¹šë˜Þw?+~óó¿¹EßíÜ¡¿òYú—\ˆüË-º#~Ó£ÏþŠ<ÏO~ò\Ǭ­ý<=ßRçêRî“[ô•ï¾D­—jôôOÎÏ1xéÑ´öóOÓ?œòï_¤ø¯M_y©§Žý.åóizþEõs@_Ùú$}rë¨gåóÅçé“¿ùIú‡—bÛfçŽ`¼.xð•.ðøVϼÎxÝaÀ V VnH¬pcœoÅûÅ/~QìtÅ rþ™õŽçË¿õÏK!×þý¿Ÿû* Ä÷=úÌ¿X£ñÜ7|/U|éïþ3ýsÇqÿü_?Gç=Ç÷{Ÿ?÷;ò3óœ>Êû‹Ÿ¡žužÁwèW]×þEÚýÖûw¾µK¿èú~>ó­žü¾÷ úÎóó¼þ"©å¶ÏßûÖÇügë…õ¾.\¸`áö÷w'êŒ×|bb é†ÄÊt:Áõüý$<Ãz!$“û~ô#þ;Žó³•™r×­yùs0L&ºÝ¿Ù×]áN&“‰¨ .X¸XÑužyæQg¼>0à++HH7$VxÌ7Âÿæoþ†666DÐ8_Eà†:ÿîIO¼x]ñî&÷'ò'¢®x!^€XXABºA±Âû;ÿ›‹”?ýÓ?‚…¯®ðU¤¹`áâ„ׇׯ3 öÄ Ä Ò ‹Îûï¿/\›¸Xùíßþm:==‚ÅZ=xÒ/3/û| ¶uþøÇ?.ê†×w Ã@@¬@¬ !Ý'±Â s.Xø[ì?÷¹ÏÑoýÖoÑÓO?Mÿå¿üº¸¸ú“’xYy }©TuÀë‚× ¯^G䈕‡B¬Ü/Ÿt~\ ׺Ÿ×òŠ ¾šÂÝÀ¾õ­o‰—E~êSŸ¢ÿïÿ=ý»÷ïè#ùÈ/+/3/;¯^–kxbåóÚk¯‰ c¾#¼ó~&ø "ñá÷¾÷=Ò4NNN¨V«=Öð2ò²ò2ó²ó:àu`zb V+±+àáa6[ÎÎf7sþ›<7÷ôçðzA=ô' Vz:';tëÖ6µ&OvCöuÎŒQÀw#:Ú¼E[G­+_£u´E·ž«Ðè’Ç›3ÚÛÚ`íuËfs{Ÿ.†ó7ŒwŽ·Ùç;²='-ÚY¿Eëë·\Ljã/®Ñ§Ê–õ›C2X{Œèüø„Œkì“κŸ™-:>>§ ÀvŽYY·èbôhöÛ«ö©ûÙ¦Gù[”¿†ûhyôçY—Žv7Õ÷ë´S9sÔãˆNwìûeûðÔUÇÝó#ÚT÷ÕúÖžë¼4ƒåg+$?Ñל /hßÖ7éè¼=ÞîŠq¢ wóÏX>&o†Ü£÷±Í—cF-mŸ6T¿ßØ>¤ÖR×Q…åsó¾Þ߀'F¬´*üa½Iúè nÈÉ­³Áwÿ"X¬T6؃"и_ CÛ£ü®v)ÃrÔ:R´Mªœœ‰—žï‹|s££3±Ú3ÏþŸ—íÉÊµÉ¿ßØ¡£ãc:::’T*t¢ûl“VE\cߠكš¡kŠ÷Å5ŠgÝ·×…ñ:õÊ˼ñÈŠ•«ô©û-V4f”íiÆ}ìGQýÙ¤Êæ-ÑöGg:V¤0Ù>1ã";öäœÎOö¤À¯È1`ÖÕ¤ñ¸sD:›äØ÷àõ¯”ß lËüTNu:;V×TÆ_ô5‡´/ ÚmÒtŽvÖÅoOŒ™n6‰Áß=â!~_ž±Ì¸_+÷±Í—¤«íJ‘²Ë¯y*&»nÝÚU¢6úš“Α·ÏM´9+7$V¢Œµ~ç‚ÎNOéì¼E¦w&n2¤‹ó3:=;§®9¢¡aÐp²Ì±3êòïÎÎèü¢ã?¯ep »ÔŽhÔï°ßž²ßJ£c6ìÈóêû!ÀÛé]R·c8Î|M³u"ŒþÝ“ š“@±²qÈÊ×ÑE9[]Ó÷›Ž~N§,?z«Z³Ñº}ÓQ.æÎe—£Z÷îuiW‰ï ˜\pYR¬\8ÄÊfe‰Ù®Ùˆ.NvŃSce©¼ÌLƒÎY½Ÿžž“1tÔÍÌ$Ãè“ÉÛåôŒZý¡jû u[ºü¬+Å_ŸýŸ×Í…á6Žx›ê¬-x{\túʘœ°™½]ñÐ;fm=šEx]ö~áhf·oßèˆzµW£º2ú#»îg£>i{¢.uÖŽR¬°þ?4©£ú±«œAÂ10ßþÊë©{4ìÔ1×áuÏÊÝ7gŽ>µÚõ"ïÕ¶uoŸ1c¾?‘¿™ßë³Åõs®³ß9ڢߕm%ÎoxèˆûÜúíЈs–ŸBúóü¾‘â¿Òšçïtwƒ­8žÛÆüÆ¡nwq¸)Œ4ƒ½`ôlw]p–8™'ê\þÉŽ¨¶ó ~¯nkóIaÈ®ó¡èkZe9îLì¥=>^ìž Üã-i€ª1©ÓéŠUFk<çù›áÑ/¬ÿÏÌnðxÔ÷MÙÎ[Öù£ÇI»ÍÙXèj/Ö–-qÜ™ç¸Uúüê÷cXY—»Å󊗓խΟ±Abå>µ9ó:÷syÈÆÅ+ï,àYwkóhž×‘.VYö·K\S®®¬ïŸÃ8bå~Š•¨Ù“9[tÞWÚᙜ¹÷°a.8Ö¤ãmïq»ÌðçáâpÃwþõ­-µ¢ PƒåÅ>ÿÿþÜ݃ ´bÅD7#®9¢C‡›Ô†oEºyó°sÒQ×hÑ®ÇÍj}ç$p¦Û™¿ rÝÚØ§a`S)þÀ2 ŒV‹úÊ`+Kˆ•ÑÅ¡» YuO÷}y´fƽ¿¿µý5W=ZlyÜÖöUZGÛ¾ßn°‡œ5nd΃¶y}ï+£rt.ûÅÖ±2Žº´£ÊoÕýùáæüüÌ(èz®gqÔ2CÜ®‚ótï\G}ˆ~cÍò«™ðÓ]y_³ÍyŸZízQ÷НmÕŠÞ¦ëüÌut´Ò³ë¯K5<ÏÿÏÚjÔ: ¬ó[{º0ŽÏö7=ßm“>\m| êÏþÙnÖþCƒ´ã#ªiÔ1ç+­ü¾9t¬´Nì8µÒêjs9™°Qñ¯¾Fµ¿?Ïlã‘»Û숱í”}}Mãd[ ©ù¹ôà eôúïqO¨{ƺ߬üôOå Óîi_‰:ùýI—ûºÿ^Ù?ë.Ñ÷7©õvÔ89a«nÞvT«ÅC]Üãî±æX•k•>¿ÚýUÖEcwÐ=êvÚÜz~ÜÚÖĵLýP=ëtßäÏñ¦çy¡..sMù›­'Þ­ˆ•û(V¤_37P;j0Ua ²%lî¾¾Kæ=—‘qÈŒ“ÈcÕ¸uÒU3FZ¨aÚªHÞŠÞ†ùÙž|Pª‡4òäàè[n·Ót¯©fÄï‚ÜÀ6å©+¯3kö‹SÊÐ1/äìÓîY? ,ÏÙù³Êu¨|~»gû¡u0R…ÖŸÏÆNÌ>u»]ê÷û‚aˆXÙ² ßÍMÚØØ`¬3?äãÀ§4ð6dYFÊ…Œýv¨ÜfNDY7èl8ÏÓÆžF}>ÓhÞU¢nG±“Ž2N¶e½ÍäƒV Öž‡åùÞºýÐsåcAÿ=ßçÇI£ÛÔ÷熎hãc»ÞœuQ™?`åub^¸g&4*ßÁ"÷êõ1wYÚ¦å*²£ž>µÂõîEß+Vlî Ñ7<—ÆÍºr7›tNϧ0™±eͼr·9Àî£çnÑsÏ_¸4–¯½u)2t¶Ú`R¶l•CZËOÑýHÄúØ¢un(wØ*\ÿÔw/Zurb¼àÊê>ÔU4¼íÂÜå*ŽÉ‘ãî,Äu~ÍVÀÌ}¨ë»¯7ì %þ™/›G²Ow”°&€„1Êî/kbÀv9œ)ád˜Îûâ[qí²•¥¨qÒªÛ]54QîO›ÇmÒ¶-:q“;b5b•>¿Âo”5rìV«rö±l<®TQqe7ÜæBDì(·ÆcuüN­¬0áÕ·…Ž&&16—½æðtñ$bå:ÅŠˆœ³¯Â…`[þþ®5Ë㘅qý‘ǾÝR+2, p¯B§Ì•Ëœ,çï+ó;@Ê™¿ £±ŒX ¼¦ów!¸«œlEi]ü¾+wö<9ÕèäD£S­" Ïc×-V¤Á<òÌ`å!H¬è{žYJÛ +ë[´¸Oûûœ=ÚcAœ“À¸˜yü†53}êœÑ6Ïç³ïžÙ¹»\Ëõ`½µwn¯qÃÃzøÎF¦[­ æ‚qrDÛŽú*q$2Ÿë¢ýõý ñ·5loŠ>8 ¬{絜嘈|o„Ä(Eå;Ø}ðêõ!ë^·…'7„&¾>µÚõ–+G–»‡Õ7-$´¯Z>ø<0w—Ž5î>3š×‡S¬X+#Ûòž´üÞ¥»Õ:í³{I;9!ÝW¨\÷¯:FŽ1£è~ÔQbeïÔ°E‘MÌæmÛEÌ/VŽ;o©o}I±Þva.T]Öô³cuŒ\ýºæ*†«UŽSÇXr¶Ëûxr%òÖºŒrñ©ÆxËh}‡|¬ÓNéxËžœZÔ÷£ÆIÙŽ{®ö•.ƒwä3Æc° W£‹ï±å»¨¬Qc·¬ßu1¡ãr»sþþ>·¹uìñöº½R6¶ÕdfìíÍW{y¼ÖR׌xŽ VnD¬tŽ6ÅÃ{`ÐêoIa²{Úõ-ó*òXv­I_§ým§»ÇtFKˆ÷ÿ‰oàT³ˆÖÀzÍÉEôÊʺg¥Ä*çK¶kƒ\µàl2×6Ð[nb‘bÅm,†åÁzx:g²åÊ [QJ#kÃ6B/³â©KyÍ w»ï¡¼éøÞ2.BþÏÛ7l#ãd×áJÁêL¸o]B¬Ü›uÄ~ÅUðY|þï!»î6 ªæ³•óz‰+Qåð¸Eä;Ø`»z}xÝ·;}j•ëEß+¾ú÷öÍÈûeHÚᮽ›pµ©èbå\­Äî;Ü­Ykû~Zgq$[ÛìžÚõ¹-c¢ú‘tÏZwm,ÒÆ[Ͳ„[+À lÔ?¤ï~ø}ÜvAFkkæ±ZÍ »¦ÃÝþ­J°KSÜÛÂ@¬H²Õ‹ ¹3ÞyëDüFÓå¬:ò£‹Š½c•½B»¹ÅÚe;`ÜöÔ[©ˆ'E^ƒî!& ·}+Q#ÇdÂj÷ز¿]TÖ¨±[º8nºÆM¹aH˜X¹ù6·E“µš¸½Óã¨sJ{Ûìžc‹²VG—ºf䨀X¹¢Xi…Æ‹ìáøLçn7bÀR;ƒ8ú¬@>PEÛe¾¹G‡'j&ùB³Áq+Äõæ*bÅòÇæù™E]S °Î`[ßn`ûŽ‡Ï‘šy–³¬·vÎ\];¦ÓÖðÚÄ 7ÈÅÒ=sEëLün&û ÄÊÆ’;™¹VV¬ÙuGXnUÜ—ßo.6.,c@{ûèÂvíq,–€h-µ­*›µã6è|dÍÎßrƒÕý$P…‹•Eù^U¬,[ó-©o ÃI’ÝÙÊbå"B¬8ï•Ë‹“íhtDg*o#¶9ÃÑ–e¹ÅJG¹¥ìœ"bK¸ñÙ³½Ÿ¶|n`ÑãS´Xéj;¾pq¬+Ro9„…ôÅç"h"]“œ[i½å‰qñm]Ðvn÷,9ùãšP†ëQçíÈkZÆõ|t$û­­ß*ŽµÃ”ËMG¹.ÉØ .þújC~MY—ÖØîÚ1qÔa®m'®­m£ú~Ø8)ŸAÛÔ™9V¶ÖÙýÐð=cY®]Ë÷ù廨¬QcwÐf Ò•.È%ïþ´¹hwæÚÈ…çú†œ ÛŠß8=d»ç9¾3¥[סˆe[âš>7CÄʵˆåÁL5MÁÝ/ÎÙNLj§©õc2L¶ü}ª–ˆwN…áÐ9–Çî²ÝZNì´'ÇNºr@ßÜ×X¬s¹8\Ðí«ˆ+?‡Ì°éçölžxˆD]S °›{GlW«IȬè:±í~‡Ýsð©Ü‹ÔlÕî±Îv¿a¾Ù‡[KƬ¬ V„wÅV={§’µmlÑ5­ÉŒÍCê ‡¤털g…µÝÜ}ÏG¬æî¬Ö¶µ[lw56ö/hoãVHýúã-¢ÆÉY_³Û±ËwS[Eó E¬‰‡=ïÔØ¥+fQ®t­öÛè²FÝóí}y;v­þ`ŸÚ\ÅŽYã¡t— ÞæX¬Vr±ÄÆFÓ.·G—¸¦µ}ñu³>+ÏÖxY$+W¤° Ñ-‡ ŠÁ 'çÎ[›»Ç.ßâ‹ãùÎ';{»*–C^áÇÎ\ÇIãäˆú³•ç 3èùÄŠrcc/ØÚw*nîl;f¹¢®É‚æw6ìS‚‚ùdó€\¶í­=›È^·¿åÞ)¬r8»%„Äs–Xq—ËQ‰ÃÖ)ínzvÍÙØbï‰èÌgä…Q°e¿rëÖò/´tÕ¥˜ÓiwÃq­õm6kîÜSÓgäÏ]a¤È vÉ0ÝnOì<Ò?ZÅ.˜ó€ø¬£0È=®+ÞÊM§aeÿÿ<°îûgûöJÌ÷.üåðæÛ¹r™ïƒíêõÑ“³—ëóÝò¬wîluåZåzÑ÷Нm½}3*¾ª£ÍgéÕî\§âe«R¬ä… ËVð˜£f‘»ç—ÙúÖ>uBÚ>j|òög_^SW^7vcÛ¤K‡[ÎÝœö/)ecÉÑŽËô¸ìÕvþüœÉX%ûÞÞ%½?[êš#¶ésgÆm6o©íÝAmV ÿ‘jcïÿ­Ýªö6Ý»|_ CW£ÝnqÑã$osg;nZ/G4ÙVãÎãÖí V»ÇV»?¢ÊºhìžõÏ]í¸ÅcEBìïG›[+{v[ZnyA»O²*Ûëcþ2הϟm5¡%ûúóXebå¾0›Éf.G“™ÇŸnŸÎÝ8f*¶Âåæxìß]åep,XÙMV(‹Ê?Ûƒáz4cþê&{—Ì,ô;sÁ{A®~­Ñˆsf¬FfD}^µBê“?¨'ªäªØ^à¶Î䥕‘ù~øÎ{é{åÒÌTŸ¹ÊŽ@ò>]*oWGfê^š…÷}s9Ln¢î.uÍåêax¾¥¡Zù›]rì '£ÆæÑMÔõÍ–UÞ³‡¢ÍWä3f¶Ò5å Û'ŒC Vͱ|pÚ¯°·¢ËU>;:DÇ׺ú·C»€\Ò]ocÉ7XùŽžíÀ÷¥ V #:?>¤mþ¶[Ê^…ŃàePðPÃße²¹±Ã\ì¥ËÌ•ô¸—/ Vb±+ˆ€XˆV€¿àqr__vu±2¹ -þ"GÅúú:cþÿÍà štŽÙß[—~ÛñœåoÑÖqç>–Q^3Ôº¾óm²2=~/S›™-:>>oI¾¾6gç2NiÓê_ûgv˜tŽØgù…×èmÑ­Í#=ÖɃìWü]I'dLþÝâýå¹Ê}é/×:6²zß yIc_×èÌ=¦ýÂsk¯cŒxÔÅʬO'ööù£c::Ü‘"ec‡ŽŽÙÿÙç'z—F­ û|ãZÈ•ç˜ÁúüÅ}}àj»ìe•×öösV† V†Ã‹Ç®#·×Y; #ïúÚœ·²)Þj¬é:µº=»Lº§´•ߥÎdÑñtk½òØ‹•Õ¯&­CÖ>ët1y<ú·¡íQ~W»/ýåZÇÆ°zgJël\Þ¿=–ýÂ{ë¯cŒxœÜÀf±ÊâÝ“äMºšÔ9?£Ó³s2†ÏLV—ÎÏNéôÔÿW¬<ç+3Ó?n2¤ u½®9¢¡aÐÐaØö;tvzJgç-2#ÞÂlö»4Ílw¤.?îìŒÎ/:‘ÇúÒÙïÎÎuvý‰Ë¨Ø8Ô©o\°|Ÿ‘Þé»Ý›f#jéçò»V_}>a×í¸òÑ7:Ôu”ÙìvÈèh2ìŠÏ'ÃŽ,Ÿ]¾àëñÏM2Œ>s¿bõÈëø,¼mf£>i{LÜÚ!½k^[›OÌ>îóóîR«o²zrö õ»}×ìçи°Ë<š¹ÅŠi·§AŽÁêd&û„)ûÉy«ë™IUßFÔ½õÓêzß®<±ûogo9x8ùéÐh$ësæèÏQï§îzwÕëåÕ‘/Öïçõy¿^¢_9ëÇÕçÃêaqþøõ[Ú®0/ VçWɇ·_²úbewŒÃ®áèóÑ÷âjeu×y·o.¸ƒë"¼/çÕ'VD{w¨oßçQmÀÎy¡‹:6ØUÙäõîfëDˆ•Ý“ VîIô=¿R¹d]öÍ™ãžîSDzö¾Î~!¯c27Ð~Kæù¢ÓéÞñZŽ3¼ýÄäj¿àryDz•ú,@¬<ü.aÜ]ÇûÀ”ä[>ŽZòA0ÔýßïŸuŠ•îé¾ï8{Fmxf»¹Î{aŠóœì¬{¾Û¢óþ,ðšÏóï÷uö·IÇÛÞsî’1 šÝõ—W]›»Cx¿Û<ÔU¾uÚöæ{û˜= ñùú¾úÝè\ ·¶Ž•±Õ¥^÷L(^nøë{cŸ†Amv=Þn‡ívbLf"7ç¿Y?¤î5µ¹»,¤æ}`tñ¼ø\IÃCÛõ¶éŽXu±Ä ¯§þ™ê3Û'ÌÑáºó÷›Ôš¸ÛÞý½dç¤c¯*n•qÚdxûµh×sîõßLîDÕ㱪óþ©\½Ü=í+7"ùýI÷nt¿bõs¶¿éù~›ôaP9Y=¼½Zþ,*­·®Ø¿Øw´¯ÊçR÷âŠeõ¬Ì]ìóÏ÷Å=~ûW˜ÃûBx^m±Âó`^¨{q“t."ûˆIG[õ\¹ð_Îòб9âž_­\Îö°î×uQwýkíÁ÷á+kPÿ{Þ‘§þ¹ «èÃÈryÇ2s…> +¸XÙØS®ê¡, oË·Ý.ft.[>#Â%VFòZü!;Tïa¬nЛ!;áòõ]º0ÝÂCfhôOw•°‘FçÌzxÛ†È5'-qÍ­iTÏ M= ½î¦|¸îžªÿ÷iݪ—‘˜½µ¾Ãò6SF¶|(ŽXÙµmK8Iã´«Œë­Bì³ò­K#ÊÔ÷ç¹È˱ø¿ÆW«²%ËzÞußÏèëÍÛíT¶ «§­[Á³·ÂP¢àP kks÷yí!¯ñœ˜•¶®·«„Ĥ+Ûf“Ŷ±²Ya3ÉóòL~þ¼/úl6ÍÅpÃÄêG§bÆuS—–1m‰^®]«Œªn²q-ÛðdDzYß3ÑW™ÁcªÙï‹#™ÿ3ï,·!Dèæ‘,×éŽ2ZwÏæbNô‰¨~ÅûË¡[N:2?ÛšX­r×C…üY¢vCýö*ùXä"eÍÎGß‹«•uà6øœrŒºƒ…U`_ˆÈ«,ã›Á¿íÌóÕÉ{"ª ¬1l_µ‡e”oÝ›#6ÔØ·èž_©\Îöp¹¼¾~áh3q,Ÿlº5k¼×±ÆkµÒkûH=#˜@Ù¸%ò÷Vd¹ÜcÎ*} Vq±rlÏÈOèH=äd4Ÿ1¬°å}N´S:Þß²…E˜p°fýO³[¦\mر%<Nw4Ç[V+A÷âje½!V¢î〕 ¾•W÷ªóºc<‹n)Rcû}ˆ²ÆeÙg£ïù•ʵH¬\[¿ð+âØÂ®c×ýSq¯:'i¸[iWµax¹ÜåX¥ÏÄÊ#-V6U¤Ûè°Œ:þ0ØØØ`°7·hkk›N:£Pá Þ Ç9Fùù·Åƒg÷´ëÿŽ=°;G›bw¨I€a¤¢]Ï&}ö·7]n=þ|r†¤îŠ|ÌÝ‚g#'ÖµßWpèÈ6ò­™Â½3]ÌðòùLáöñ™Ë_ÝPÎÚe#HL¢¯Õnˉ•ëhóÄÊFp½%VÖ-7»¢Ëcq‡Î)Õ¸;á¬îr§ÙØÚrì€wäs1’.[¬ÏÞ5l÷Y~Î&+? >ñït'WÑØLø…Ü9êœÅ ðºÓØOë¶ ŒèW£yØ×[ß MVß[[,hä9v¶Zþ‚ÒËäc±q/®TÖH±u{â\"úBT^m±².'6öÏ–j±ÃkÂÅ1NŒËöý¿àž_­\—+×Ð?]Ç5¡Å`€{ï¢örž•> +´X 6:fƉŠ%q„£°­([ÃYøÊŠzȵæñ–+ÔáÅ똿¥\eäw'ö̽ŒƒØ!Ãqn»X±Ùê~„ØlxÁv<;Q³i,è³s*Äúo¶Ù¤³ã#:S³ê#¶ €ð/3¡þï¼~†¾|s×…¹{sá°cm6è|dÍúÉîqg²šX¹}½EÆb˜¨˜\k›/+VäŽaÙüzÇ[ë´Í¶0•³°‡s·î:7[N¬xw0²V…¸@ýh“µóÈ%nœ«GG/D7ç++;g.—<];¦ÓÖ0à¾jÍ·"[¶‘4r­>Õ¯¬ko —A{¥çB£ãÓ–Ü´Àuìjù³„ikvÕ|„¸—æ÷•å†u/®VÖ{‘n`á÷qPlUp_ˆÊ«¬¶ZÊD­q´åÓÑmàÃØ½|+Z¬TÄX¹hŒY¾\v[;V°åŠ{Ââêýb±â¸Ž5¹Ä⹘ß;Ÿ{ýÓ=qÏ|ó ª\î±l•> +¡X±žìa ±y†ý ÚÛ¸²§sëâ>í©@ÇS¶3ÌÐ8§eˆòÀÕα|ðï²X…ÛØã»|·wC:f»Ã0·°S„¹sðð™_sÖ•Föæ¾Æv2ÙN<'ÒuÀ·§¿4xÌÌ9ó‰7û-Úß´ü³ý°sUÇ{ß¹§K'{2ÀüP—FâðlO©Òa¤Ú»Ý°­zCÅJôõV+*î$x»ê˶y°XY÷ˆ•Y_³Û´Ëwz:‘õ´w>to ¥õ½³%¶Sµ|åשrÎvêž+7,ËÝNŠ­ÃêÊQw2hØ”þñìûãó öˆ]; [Ì$+Ãt÷XgõÎbD·BcBœn…ÖN{§»ÖL¼*¬œýÊê»ëÛê°® ýHmÐpbƒÎcWÉŸå’¹ÇVøº£»Wȇwö[S1F'lw.CíÐ$ƒÈ£îÅUË.V¢îã íµƒûBT^Ý÷I_ÝRLGµÁDõã]V7Žï‚cVäý¿¹wÄvÔ›,c–-—-¨Xʹѥ֙Z%ÚpƬ\G¿蟾ØÇuìgÄPMNl³wÌ m‘ÈcMš‘åre‹úl÷ôyÚb.­]ì€XyÄJ+pëbË%Æi¸9Ü–øÌãÞ¦{‡žã‹aèn`yuþs­ØÝp·ÎJÝùJËÅñ|'Ÿ½]W¬qvh»‰‡Ôîqˆÿ±óš3×9åìˆú©QGs½,“?øNÑ<ÂQGV­t2™Q¶åòc·6°bo6Fªýÿs·±á+›öÑ×[Ôn^춘ò½‹ëjsoyæíá})d÷¼âjÓíÃ3åÆá® åÖqÜyÛ×ÁbÅÙÇvì]ãfCæJâÜ¥hk¹ú0±¡fÞgl;Ùmµ›Ùú¦t%bBÇZ 9Ýßrï2V  ]_‰T+ ØûÿÅýJÖÓi}kŸ:£àcWÊŸ9ß]jŸw—ÏÇ=ßç‡ÛŽí6Eûʯ¢ïÅÕÊêíoyû¥á÷±GXEö…ð¼zï1K„È2F·áÚ qÝ%f}ïŠÚQýê ǘ¥ËÅ·E>vÔóíî:îµkëþ6npëA×鹟lœq=#6÷¨e..—s,ãb*ªÏŠþ²ÄËibå1`ÄfMö>”ÙeŽM\çöb°ýÓ¹_öL¹å8žïÍ&ìzì “ÙŠï“Yö¸™ÊÛê/c›±cx]ܯ7(ßïë]µÍ¯Þ6Ëàts™ˆ|†µñhä}ÇÁŒŸ:søË WCϬül2’ù½o³²²~ÌÑd¹~±tþfì}<³ɇ•‡ÙÊí½ZY¯~‡ô…+öÍÈ6Pçœ,už Íf—¹ç”KÕsp¹¹~±ÊuFç\T®›êO±b›_>»¾_¡£Š\Uá†"vo+‰•u÷{$–M†ÚŠv“ŽépwÓó^ ˆ•'ÚФíÍM±ÓÔ^…ù‹OP/`µUˆ3¶¥éÑyÿRÇÏÌííÐæß=h‡Ž ˆ€X@¬Ä @¬ Vb±+ˆ€XˆÄ @¬ Vb±+±€XˆÄ @¬ Vbåúyéõ ýþ:ýO¿Ù¢µ¼ 3x»òöå팛bå‘*ÿóG_QÿÀÛ‚bå‘ϸÃràíbå‘®_OžKn\ˆ•G£0àŸ8pã@¬@¬ˆ±± VÄ €X+£X‰üAì¡4Æ[*߯±Êz‹ôÁ–7.ÄÊc'Vr_Þÿ€éÇôƒ¯wDË«ô½÷ä/Þ¿3”ß¼Koª£¾wÐqý>õ÷#ùÅdDiõ»Ù÷|Mé3Ÿ ËßmÚmLhæÈÝì½ í~ú¶ý}mpO|þí/ÜžgçkJ›žsç¾=•'úàG´ùq÷µ¬s½ùýžë\w>Pçrü>U~‡î¼wÏYqtw0¢Ïýé+îó”™—çÍFWþQ­3s‡—±¼}b<¹b%uðÞÜBþàÇ.Ñrû˯¹W^>×%hvŸáŸ¿B_(»7tü~þùû­>3ø{t—ÂÒô¹@±Ò¡LçÏœÂàüiK‚o«"|¯ìKöõ¼ç6è¶ã,· —Xùö{óóW>­V8>å?Wêïßs‹ —Ø›)Qã<Ÿ?ÝýaO¬¦TzŽ#'?vÕ‹¬cˆðŠ•ÏüPYÙæ;¶+’m<¿gRÜñÛò»Œí7¿ý†{Źòð©¹8yáó¯ñ0´ p&>ÚbîSs‚òöaû¼÷è…)œbÏôèŽeØ·Þ‚à[¬Üv‰ëzÎU›DÙ£&ïчbåç×ïÝ¥Dйìÿsv—2ªÌÞ~›ÞWŸEÝ8òvðªró–Ù —UüÀZ™úT×>ÿËžÕ*ˆðĈ•Íï` ‚;-“>÷ƒR¹×J=düÿ˜^îXnTcJ‹ïÞ°]Á~ð÷Ò(O}yìùÍüøÊö«ôáÜ«ìŠg^ Œß(ß‘+)³Nß-b¾ðü}—RŸj¹Á¾ü:Å?Õ¡³|'>ý–½2+\ˆÉsïŒm1UÛ~%X¬ˆÕ%Vžv]çJ|á][œå6?º\Þ,—­÷=n`éã÷hØÑAÙp ‚oÁáNöÑ®'fåUúÁ᥸óuÿ¹bŸ¿¸Jãfª,™¶¢òå·è{j71<’7ç¶ÇϼA_ùþ{ôƒï¿eï¾–`Ÿ}[çýö VÀ“(VØnUÖês…ŠĻӕ+Ÿk}`»&Ù+æövÂV ½¬o €^ xÿÜ’;\Ù®gìº_ùBǰ·\Ðd,‹3ÀÞŒþ)wPü|'³{lUcf—ãîÄhïÖ?¸sÏïRöñ®#ÀÞ¤”%¾>nÐ !bå{aò¹¹sÜ·^µ…ÚÚÌb<±n`™¯ÿȵuñ݉Ã80¯:ƒçÝw®1sÑÇ¶ß ØÚøå%bV˜¡^z§È«óàsß¶¾?V¢'|ëâ¡c»a{'3×öÊŒ?}Û]µÏwüçú”3ß8âLÆ®ø“÷'nº»"VgÁÖÅßïùâZfï}àr{Ù³}4Ä x‚bV^an_cšy i¶%/°Ÿ»<ýÈ·óÕZî-{«ÞD ½C\Øñ.W+ÜëUúŠï…‰?r¼0ñ¶ý.–on]<£Ïü¡ãÅ•åŽ?æÅ´Þ{Ò·ÿ~Áñ‚Igl‹säÌÁ;ôæÄýRÈÙdJßþzO•ý¶û=1b… ¢×é…;øð_~öà‰°—¢åÃlkݳírã}ùÇß,±ßyûð§^yèòÿ”Ì[âã­ë)#Ûz9v‰ãqã@¬<¦b<êàÆ€XX+bb@¬€ÇJ¬üO¿Ù‚ÿÁÛ7.ÄÊ#Áÿñç¯Ãˆ‚àíbå‘à¥×'ô?ôòO¼y{ãÆ€Xy¤ Ÿq‡KØãëúÅÛBb Vb±+ˆ€X@¬Ä @¬ Vb±+±€XˆÄ @¬ Vb V+±€XˆÄ @¬\?SÇŒ)ˆ•‡1ÕË9Н­ÑšE¾ê±&XÅòuÜbå&ÔóB”¤|+*&¹`‰SµÇܦj6 :U+UjƒHw²^³I½Aêµ*Õm«• ]«Q¥R!­aÌóÐ( ±’)×Ù1Ì ­×&½Ýs­h´õ& ¦÷óÁßîñãøg&¸ò·¬q‚£To’©~34©V­°|Õ¨ÉÎ&êÜÇJ±Ïkd4ëìØ*iºASÏJLPyyÿGÔøî;T}ámª}÷½yþ§SjÞžùî„4ö]µþ.ï:Ô[ïSû­)«÷¨z2¤Ú‹cU×bkáo? vë]‘‡*ŽÍ·>povGTcÇU¿;bù‘ùr–·wû]qÞjý½ú++ åâÌÏP;è{£"„LN©DMê Ò]*süv-A7”q}ÆV%Òe2=¿³•ŠzŽÿ£u>S“+/!ù¨çãîÏ„[Žz¾•‘‚ë7…A•œïØlÀj’ÿØ; Ì{l‚‰™ç°òˆˆÛŠ}äeZsaP“üæ‹ox>ç¼BÕîűõ/¼âÿþ™7çuç ò·Ó å?õ²ïûâK3qlóÀ|hïJ‘SݹíùîUÒÞ±r…ø apÇ Fô½qƒ’J@˜ÊXgÈà+ƒéâ󮥩nô¨Ý¼CÕ w5K‘6°VtŠâ|™ª!Ä—É×åjM£ÀÄGÌ‘'æ&–Pßå£QHŠÏò*Ʀ]ÍÙbÄ›7)vâ2¦<ïZª¤„Í€Ê"Ÿ|5é^ô±Ü Œ—1ÆÊ(ꂹÓeøÿó,ßÓèòºÎûc*?#ÅI[­F ¾ÛþÅ™/É¿ãŸÈUwߣ´}ñÿF¹#ûÂD®n¨cÓ'ïûòõ[óÅ×]âäÞtLöÿØ«Ãwߥû;±ó¶‡ÌGyžoSý]ž_)¨r/¨k¾?’ß?;ð¬4ˆ•UÅŠscX)5ÇKWºH5\ÿçâ¥\9 rù€*!Pâ9Í%F–+Î|Èßç¿o¸Îçâø8ÕÍ{ö*MÅ)L5{'êX™H:H³ï“Ô/(¯·¾¦P¯;¡&sÁª¼EùO+QñâT‰•U«z™¯bÜ!C¶ZòÑ7bsFù*‘á+Ñ¿5ßby¸="­þ6•Êw(ÎÊÞeBFŠšãÇs—¯ú±²ÂÅJý ·Es_ÐÁ—ߢƒ“+}Ý·º VVv3¹ C=±d`ºeÈ«àóiÓv‰ŠÇãŠ%“IÊ–u!F"WVÌù÷Aù7ñ%ÄÊX/Ê¿Çn¶ŒÐñ•Ñvã+/ Êë9oûäu‡ûT‹’ÏzÅÊmj¼ïøý?¾&>ã.X !\ ‡(˜Qñi¶ÃD†_¬„ÿvÚ}‡R7®ø32\¬Œ[oúò0nõl±b­ØÄŸ~EòÑW(ñÌ«”|Æ Æ»$ V.‰QÍÊû’îåTL”WŒ©ÇP_Q¬X++éª+_;(Q¥Ñ³ÅE¡1V¼È\¬¸ó±ºXa14Ó{ö*M±1_¥™6KêZfä±Abež·åuwBY.ž}“ K oyÄÊËT¾=_Õ¨m·Ä ÉÀ wä}á¾.V‚+ãYnSÕ˜¹V]â¶Xy™ /Îæñ/â\Ò LþÝ!Ýlÿâ€J'ïÁ bå*Œ©œVÁáÙ"ÕÙ®[z½JYéˆY‘â‚_¿aŒI/©”Jƒí´U³W)®E¬(ׯl©Jmó6eEð{Š*l'¯»V:&Ý·šÓ{ ŽúÊhåM3”7H¬<Ó£æ;3¶£Ö;”þè˶8°ÄÊÚÓÕ»?"ýÿ‚éŠCIì Éxç}*o¿¢ÄÍ¡1+A¿m(ñqÐú™Žïâ:SÊ?-cTJl7²ÚßYÁörugªÄUìÙé]¶KØwß”<óÄ ÄÊUPµ±Î¼¸X°ŒMé2•°EÂ݆ ÏÕ¡b%Qh¸>«ä’®Ý±Ò…š½¥ñA:>ßelܤœc§­D:eÌ{ó!ÅJ½I€Šq °¿7Ð(¥ÎËÝÛ¦†F™¸£Ü±UÛ!q9®c;¾2J±ÂcV•×MÓåö2¥¶ïÈ€öò{óû§[s­O¿eÇYÄIî$8ÿQ¿¾ÅÜÀ>êÜ%ìåže×|ú µ[ØûTxVí&öÑÛ"ž…ǤXîƒízO~¦ˆ=ó:ép€X¹ÎUs0 ¹ÌË{”ÿ)¶zѸ»Ò5¦,ø|À®aNƒ¾ÓÔñùØäyß@9§4»w3“å_êØË–×d?x‡Ûó;gÌÊ”½ÛdðîýAóO¿)„špüj¿ý±øÜ|׳*óþ˜ —×ìí’E¬ÓNˬϑe¼ûˆ•Ǹ¹GO¥vé.:ÁÕ;ÑG^~¬A@¬€Çé[&å>ÍâYÞÙ ¡þ&ÛaìíзÖ_ö·¾|¼ó·_£ÄÓ|§¯×¨ˆàyˆ€X@¬Ä b Vb±+ˆ€X@¬Ä ,æÿ©U/”¶IEND®B`‚flickcurl-1.25/docs/html/flickcurl-section-machinetags.html0000644000175000017500000006612012210726306021027 00000000000000 Machine tag

Machine tag

Machine tag — Machine tags.

Synopsis

                    flickcurl_tag_namespace;
                    flickcurl_tag_predicate_value;
void                flickcurl_free_tag_namespace        (flickcurl_tag_namespace *tag_nspace);
void                flickcurl_free_tag_namespaces       (flickcurl_tag_namespace **tag_nspaces);
void                flickcurl_free_tag_predicate_value  (flickcurl_tag_predicate_value *tag_pv);
void                flickcurl_free_tag_predicate_values (flickcurl_tag_predicate_value **tag_pvs);
flickcurl_tag_namespace ** flickcurl_machinetags_getNamespaces
                                                        (flickcurl *fc,
                                                         const char *predicate,
                                                         int per_page,
                                                         int page);
flickcurl_tag_predicate_value ** flickcurl_machinetags_getPairs
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         const char *predicate,
                                                         int per_page,
                                                         int page);
flickcurl_tag_predicate_value ** flickcurl_machinetags_getPredicates
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         int per_page,
                                                         int page);
flickcurl_tag_predicate_value ** flickcurl_machinetags_getRecentValues
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         const char *predicate,
                                                         int added_since);
flickcurl_tag_predicate_value ** flickcurl_machinetags_getValues
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         const char *predicate,
                                                         int per_page,
                                                         int page);

Description

Machine tags.

Details

flickcurl_tag_namespace

typedef struct {
  char *name;
  int usage_count;
  int predicates_count;
} flickcurl_tag_namespace;

A machine tags namespace

char *name;

Name

int usage_count;

Number of uses of this namespace

int predicates_count;

Number of predicates for this namespace

flickcurl_tag_predicate_value

typedef struct {
  int usage_count;
  char *predicate;
  int used_in_namespace_count;
  char *value;
} flickcurl_tag_predicate_value;

A machine tag predicate-value pair

int usage_count;

Number of uses of this predicate-value pair

char *predicate;

Predicate name or NULL

int used_in_namespace_count;

number of namespaces this pair is used in

char *value;

Value or NULL

flickcurl_free_tag_namespace ()

void                flickcurl_free_tag_namespace        (flickcurl_tag_namespace *tag_nspace);

Destructor for machinetag namespace object

tag_nspace :

machinetag namespace object

flickcurl_free_tag_namespaces ()

void                flickcurl_free_tag_namespaces       (flickcurl_tag_namespace **tag_nspaces);

Destructor for array of namespace object

tag_nspaces :

namespace object array

flickcurl_free_tag_predicate_value ()

void                flickcurl_free_tag_predicate_value  (flickcurl_tag_predicate_value *tag_pv);

Destructor for machinetag predicate-value pair object

tag_pv :

machinetag predicate_value object

flickcurl_free_tag_predicate_values ()

void                flickcurl_free_tag_predicate_values (flickcurl_tag_predicate_value **tag_pvs);

Destructor for array of predicate_value object

tag_pvs :

predicate_value object array

flickcurl_machinetags_getNamespaces ()

flickcurl_tag_namespace ** flickcurl_machinetags_getNamespaces
                                                        (flickcurl *fc,
                                                         const char *predicate,
                                                         int per_page,
                                                         int page);

Return a list of unique namespaces, optionally limited by a given predicate, in alphabetical order.

Implements flickr.machinetags.getNamespaces (1.7)

As announced 2008-11-18 http://tech.groups.yahoo.com/group/yws-flickr/message/4545 and http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/

fc :

flickcurl context

predicate :

Limit the list of namespaces returned to those that have the following predicate (or NULL)

per_page :

Number of namespaces to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1 (or NULL)

Returns :

array of namespaces or NULL on failure

flickcurl_machinetags_getPairs ()

flickcurl_tag_predicate_value ** flickcurl_machinetags_getPairs
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         const char *predicate,
                                                         int per_page,
                                                         int page);

Return a list of unique namespace and predicate pairs, optionally limited by predicate or namespace, in alphabetical order.

Implements flickr.machinetags.getPairs (1.7)

As announced 2008-11-18 http://tech.groups.yahoo.com/group/yws-flickr/message/4545 and http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/

fc :

flickcurl context

nspace :

Limit the list of pairs returned to those that have the following namespace (or NULL)

predicate :

Limit the list of pairs returned to those that have the following predicate (or NULL)

per_page :

Number of pairs to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1 (or NULL)

Returns :

array of pairs or NULL on failure

flickcurl_machinetags_getPredicates ()

flickcurl_tag_predicate_value ** flickcurl_machinetags_getPredicates
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         int per_page,
                                                         int page);

Return a list of unique predicates, optionally limited by a given namespace.

Implements flickr.machinetags.getPredicates (1.7)

As announced 2008-11-18 http://tech.groups.yahoo.com/group/yws-flickr/message/4545 and http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/

fc :

flickcurl context

nspace :

Limit the list of predicates returned to those that have the following namespace (or NULL)

per_page :

Number of predicates to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1 (or NULL)

Returns :

array of predicates or NULL on failure

flickcurl_machinetags_getRecentValues ()

flickcurl_tag_predicate_value ** flickcurl_machinetags_getRecentValues
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         const char *predicate,
                                                         int added_since);

Fetch recently used machine tags values.

Implements flickr.machinetags.getRecentValues (1.12)

fc :

flickcurl context

nspace :

A namespace that all values should be restricted to (or NULL)

predicate :

A predicate that all values should be restricted to (or NULL)

added_since :

Only return machine tags values that have been added since this timestamp, in epoch seconds (or <0)

Returns :

array of values or NULL on failure

flickcurl_machinetags_getValues ()

flickcurl_tag_predicate_value ** flickcurl_machinetags_getValues
                                                        (flickcurl *fc,
                                                         const char *nspace,
                                                         const char *predicate,
                                                         int per_page,
                                                         int page);

Return a list of unique values for a namespace and predicate.

Implements flickr.machinetags.getValues (1.7)

As announced 2008-11-18 http://tech.groups.yahoo.com/group/yws-flickr/message/4545 and http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/

fc :

flickcurl context

nspace :

The namespace that all values should be restricted to.

predicate :

The predicate that all values should be restricted to.

per_page :

Number of values to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1 (or NULL)

Returns :

array of values or NULL on failure
flickcurl-1.25/docs/html/flickcurl.devhelp20000644000175000017500000022450212210726306015651 00000000000000 flickcurl-1.25/docs/html/flickcurl-section-people.html0000644000175000017500000012617012210726306020032 00000000000000 People

People

People — Photos taken by people APIs.

Synopsis

char *              flickcurl_people_findByEmail        (flickcurl *fc,
                                                         const char *email);
char *              flickcurl_people_findByUsername     (flickcurl *fc,
                                                         const char *username);
flickcurl_group **  flickcurl_people_getGroups          (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras);
flickcurl_person *  flickcurl_people_getInfo            (flickcurl *fc,
                                                         const char *user_id);
flickcurl_photo **  flickcurl_people_getPhotos          (flickcurl *fc,
                                                         const char *user_id,
                                                         int safe_search,
                                                         const char *min_upload_date,
                                                         const char *max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int content_type,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_people_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         int safe_search,
                                                         const char *min_upload_date,
                                                         const char *max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int content_type,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_photo **  flickcurl_people_getPhotosOf        (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_people_getPhotosOf_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_group **  flickcurl_people_getPublicGroups    (flickcurl *fc,
                                                         const char *user_id);
flickcurl_photo **  flickcurl_people_getPublicPhotos    (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_people_getPublicPhotos_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_user_upload_status * flickcurl_people_getUploadStatus
                                                        (flickcurl *fc);

Description

Photos taken by people APIs.

Details

flickcurl_people_findByEmail ()

char *              flickcurl_people_findByEmail        (flickcurl *fc,
                                                         const char *email);

Get a user's NSID, given their email address

Implements flickr.people.findByEmail (0.8)

fc :

flickcurl context

email :

user email address

Returns :

NSID or NULL on failure

flickcurl_people_findByUsername ()

char *              flickcurl_people_findByUsername     (flickcurl *fc,
                                                         const char *username);

Get a user's NSID, given their username address

Implements flickr.people.findByUsername (0.8)

fc :

flickcurl context

username :

username

Returns :

NSID or NULL on failure

flickcurl_people_getGroups ()

flickcurl_group **  flickcurl_people_getGroups          (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras);

Returns the list of groups a user is a member of.

Implements flickr.people.getGroups (1.25)

fc :

flickcurl context

user_id :

The NSID of the user to fetch groups for.

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: privacy, throttle, restrictions (or NULL)

Returns :

list of groups or NULL on failure

flickcurl_people_getInfo ()

flickcurl_person *  flickcurl_people_getInfo            (flickcurl *fc,
                                                         const char *user_id);

Get information about a person

Implements flickr.people.getInfo (0.6)

NSID can be found by flickcurl_people_findByEmail() or flickcurl_people_findByUsername().

fc :

flickcurl context

user_id :

user NSID

Returns :

flickcurl_person object or NULL on failure

flickcurl_people_getPhotos ()

flickcurl_photo **  flickcurl_people_getPhotos          (flickcurl *fc,
                                                         const char *user_id,
                                                         int safe_search,
                                                         const char *min_upload_date,
                                                         const char *max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int content_type,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Get photos from the given user's photostream.

Only photos visible to the calling user will be returned. This method must be authenticated; to return public photos for a user, use flickcurl_people_getPublicPhotos().

Implements flickr.people.getPhotos (1.18)

fc :

flickcurl context

user_id :

The NSID of the user who's photos to return. A value of "me" will return the calling user's photos.

safe_search :

Safe search setting: 1 for safe, 2 for moderate, 3 for restricted. (Please note: Un-authed calls can only see Safe content.) (or < 0)

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

content_type :

Content Type setting: 1 for photos only, 2 for screenshots only, 3 for 'other' only, 4 for photos and screenshots, 5 for screenshots and 'other', 6 for photos and 'other', 7 for photos, screenshots, and 'other' (all) (or < 0)

privacy_filter :

Return photos only matching a certain privacy level. This only applies when making an authenticated call to view photos you own. Valid values are: 1 public photos, 2 private photos visible to friends, 3 private photos visible to family, 4 private photos visible to friends & family, 5 completely private photo (or < 0)

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

non-0 on failure

flickcurl_people_getPhotos_params ()

flickcurl_photos_list * flickcurl_people_getPhotos_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         int safe_search,
                                                         const char *min_upload_date,
                                                         const char *max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int content_type,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);

Get photos from the given user's photostream.

Only photos visible to the calling user will be returned. This method must be authenticated; to return public photos for a user, use flickcurl_people_getPublicPhotos().

fc :

flickcurl context

user_id :

The NSID of the user who's photos to return. A value of "me" will return the calling user's photos.

safe_search :

Safe search setting: 1 for safe, 2 for moderate, 3 for restricted. (Please note: Un-authed calls can only see Safe content.) (or < 0)

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

content_type :

Content Type setting: 1 for photos only, 2 for screenshots only, 3 for 'other' only, 4 for photos and screenshots, 5 for screenshots and 'other', 6 for photos and 'other', 7 for photos, screenshots, and 'other' (all) (or < 0)

privacy_filter :

Return photos only matching a certain privacy level. This only applies when making an authenticated call to view photos you own. Valid values are: 1 public photos, 2 private photos visible to friends, 3 private photos visible to family, 4 private photos visible to friends & family, 5 completely private photos (or < 0)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_people_getPhotosOf ()

flickcurl_photo **  flickcurl_people_getPhotosOf        (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of photos containing a particular Flickr member.

Implements flickr.people.getPhotosOf (1.17)

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

user_id :

The NSID of the user who's photo to search. A value of "me" will search against the calling user's photos for authenticated calls.

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0)

page :

The page of results to return. If this argument is omitted, it defaults to 1. (or < 0)

Returns :

photos array or NULL on failure

flickcurl_people_getPhotosOf_params ()

flickcurl_photos_list * flickcurl_people_getPhotosOf_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of photos containing a particular Flickr member.

Announced 2010-01-21 http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/

fc :

flickcurl context

user_id :

The NSID of the user who's photo to search. A value of "me" will search against the calling user's photos for authenticated calls.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

photos list or NULL on failure

flickcurl_people_getPublicGroups ()

flickcurl_group **  flickcurl_people_getPublicGroups    (flickcurl *fc,
                                                         const char *user_id);

Returns the list of public groups a user is a member of.

Implements flickr.people.getPublicGroups (0.13)

fc :

flickcurl context

user_id :

The NSID of the user to fetch groups for.

Returns :

list of groups or NULL on failure

flickcurl_people_getPublicPhotos ()

flickcurl_photo **  flickcurl_people_getPublicPhotos    (flickcurl *fc,
                                                         const char *user_id,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Get a list of public photos for the given user.

See flickcurl_people_getPublicPhotos_params() for details of extras.

Implements flickr.people.getPublicPhotos (0.12)

fc :

flickcurl context

user_id :

The NSID of the user who's photos to return.

extras :

A comma-delimited list of extra information to fetch for each returned record.

per_page :

Number of photos to return per page (default 100, max 500)

page :

The page of results to return (default 1)

Returns :

list of photos or NULL on failure

flickcurl_people_getPublicPhotos_params ()

flickcurl_photos_list * flickcurl_people_getPublicPhotos_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         flickcurl_photos_list_params *list_params);

Get a list of public photos for the given user.

Currently supported extras fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

user_id :

The NSID of the user who's photos to return.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

list of people public photos or NULL on failure

flickcurl_people_getUploadStatus ()

flickcurl_user_upload_status * flickcurl_people_getUploadStatus
                                                        (flickcurl *fc);

Returns information for the calling user related to photo uploads.

Implements flickr.people.getUploadStatus (0.13)

fc :

flickcurl context

Returns :

non-0 on failure
flickcurl-1.25/docs/html/left.png0000644000175000017500000000071312210726306013674 00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ1&¹³[(XIDATxœµ•!OÃPEïÛ*ˆ‰ŠID%~ꊯ˜ÄÕ"pæ'öŘ`sÜ–¥rKf–´‚¤â h—mi—ÇIžz}÷ܯIû¤–.pÚö\“`xä‹ ˆl‡?l·[²,H¬‡¯×k<Ï#Žcþ%\’AUx[S³7–n6ù¾¯år¹ßèõzE‰‡’s’žŒ1³ºö“²æÅj@œ—NL$ݤiª0 ¿5/ð}¿²\E‡Ž¤KIo¥Í“$a0üjÞdF£bŠkIê„‹æAh>ŸW¶lC'?“tk;|/t*I»ÝN«ÕÊZø^`Œy•4ë÷ûšN§r]×® çJÒÌó<«’½À“Út»Ýú€à`±Xàºî1@p´ä€¸d½÷ŽZ')høÖÚK¬ ª$V?%Å]€­+³L’sgUKà"ÿw5â3O·•ÜòIEND®B`‚flickcurl-1.25/docs/html/up.png0000644000175000017500000000062612210726306013371 00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ2.œE€Ù#IDATxœí“=JÄ@F¿o‰] !+¤œ2…Å[ZÌ<@/á<€¥…XÛ Ú­20v±³ˆÂ…Ïj0»lþvV°ðA`˜ ïÍ ð—t*iùâHÒ­~xR~'IUUÉ9ç#OÁ‘my–eJÓTeY†GvÉ@x¤O#ß;2E>9²|t$DÞ9nnBäíÈjµò‘BRIsIªë:HîŸ8ŽU…œùëùPÖÚN™1fc­sNÎ95Mã§–ɵ¤ ׿ŸØŒ1~¸pEòe$ïIž°€Ç î7nrDòf!;Ã`¨çÝ'äykíÎI’øáû䲤sI_]ÿÇy—‡‘€ÅÀ^^I>O>Á¡ø­§²š?YBIEND®B`‚flickcurl-1.25/docs/html/flickcurl-section-auth.html0000644000175000017500000013437512210726306017515 00000000000000 Authentication

Authentication

Authentication — Authentication of web service requests

Synopsis

const char *        flickcurl_get_api_key               (flickcurl *fc);
void                flickcurl_set_api_key               (flickcurl *fc,
                                                         const char *api_key);
const char *        flickcurl_get_shared_secret         (flickcurl *fc);
void                flickcurl_set_shared_secret         (flickcurl *fc,
                                                         const char *secret);
const char *        flickcurl_get_auth_token            (flickcurl *fc);
void                flickcurl_set_auth_token            (flickcurl *fc,
                                                         const char *auth_token);
char *              flickcurl_auth_checkToken           (flickcurl *fc,
                                                         const char *token);
char *              flickcurl_auth_getFrob              (flickcurl *fc);
char *              flickcurl_auth_getFullToken         (flickcurl *fc,
                                                         const char *frob);
char *              flickcurl_auth_getToken             (flickcurl *fc,
                                                         const char *frob);
int                 flickcurl_auth_oauth_getAccessToken (flickcurl *fc);
extern const char* const flickcurl_flickr_oauth_access_token_uri;
extern const char* const flickcurl_flickr_oauth_authorize_uri;
extern const char* const flickcurl_flickr_oauth_request_token_uri;
const char *        flickcurl_get_oauth_client_key      (flickcurl *fc);
void                flickcurl_set_oauth_client_key      (flickcurl *fc,
                                                         const char *client_key);
const char *        flickcurl_get_oauth_client_secret   (flickcurl *fc);
void                flickcurl_set_oauth_client_secret   (flickcurl *fc,
                                                         const char *client_secret);
const char *        flickcurl_get_oauth_request_token   (flickcurl *fc);
void                flickcurl_set_oauth_request_token   (flickcurl *fc,
                                                         const char *token);
const char *        flickcurl_get_oauth_request_token_secret
                                                        (flickcurl *fc);
void                flickcurl_set_oauth_request_token_secret
                                                        (flickcurl *fc,
                                                         const char *secret);
const char *        flickcurl_get_oauth_token           (flickcurl *fc);
void                flickcurl_set_oauth_token           (flickcurl *fc,
                                                         const char *token);
const char *        flickcurl_get_oauth_token_secret    (flickcurl *fc);
void                flickcurl_set_oauth_token_secret    (flickcurl *fc,
                                                         const char *secret);
const char *        flickcurl_get_oauth_username        (flickcurl *fc);
const char *        flickcurl_get_oauth_user_nsid       (flickcurl *fc);
int                 flickcurl_oauth_create_request_token
                                                        (flickcurl *fc,
                                                         const char *callback);
char *              flickcurl_oauth_get_authorize_uri   (flickcurl *fc);
int                 flickcurl_oauth_create_access_token (flickcurl *fc,
                                                         const char *verifier);

Description

Authentication of web service requests

Details

flickcurl_get_api_key ()

const char *        flickcurl_get_api_key               (flickcurl *fc);

Get current application API Key (OAuth Client key)

fc :

flickcurl object

Returns :

API key or NULL if none set

flickcurl_set_api_key ()

void                flickcurl_set_api_key               (flickcurl *fc,
                                                         const char *api_key);

Set legacy Flickr auth application API Key (OAuth Client key)

For OAuth this is not sufficient and flickcurl_set_oauth_client_key() and flickcurl_set_oauth_client_secret() be used to pass both the client key and client secret.

fc :

flickcurl object

api_key :

API Key

flickcurl_get_shared_secret ()

const char *        flickcurl_get_shared_secret         (flickcurl *fc);

Get legacy Flickr auth Secret

fc :

flickcurl object

Returns :

shared secret or NULL if none set

flickcurl_set_shared_secret ()

void                flickcurl_set_shared_secret         (flickcurl *fc,
                                                         const char *secret);

Set legacy Flickr auth secret

fc :

flickcurl object

secret :

shared secret

flickcurl_get_auth_token ()

const char *        flickcurl_get_auth_token            (flickcurl *fc);

Get legacy Flickr auth Token

fc :

flickcurl object

Returns :

auth token or NULL if none set

flickcurl_set_auth_token ()

void                flickcurl_set_auth_token            (flickcurl *fc,
                                                         const char *auth_token);

Set legacy Flickr auth Token

fc :

flickcurl object

auth_token :

auth token

flickcurl_auth_checkToken ()

char *              flickcurl_auth_checkToken           (flickcurl *fc,
                                                         const char *token);

Get the credentials attached to an authentication token.

Implements flickr.auth.checkToken (0.9) Must be signed.

FIXME: Cannot confirm this works, get intermittent results.

fc :

flickcurl context

token :

token string

Returns :

permissions string or NULL on failure

flickcurl_auth_getFrob ()

char *              flickcurl_auth_getFrob              (flickcurl *fc);

Get a frob to be used during authentication

Implements flickr.auth.getFrob (0.9) Must be signed. Does not require authentication.

fc :

flickcurl context

Returns :

frob string or NULL on failure

flickcurl_auth_getFullToken ()

char *              flickcurl_auth_getFullToken         (flickcurl *fc,
                                                         const char *frob);

Turn a frob into an auth_token

Implements flickr.auth.getFullToken (0.5) Must be signed.

fc :

flickcurl context

frob :

frob string

Returns :

token string or NULL on failure

flickcurl_auth_getToken ()

char *              flickcurl_auth_getToken             (flickcurl *fc,
                                                         const char *frob);

Get the auth token for the given frob, if one has been attached.

Implements flickr.auth.getToken (0.9) Must be signed.

fc :

flickcurl context

frob :

frob string

Returns :

token string or NULL on failure

flickcurl_auth_oauth_getAccessToken ()

int                 flickcurl_auth_oauth_getAccessToken (flickcurl *fc);

Exchange tokens from the legacy Flickr auth to ones for OAuth

Calling this method will delete the legacy auth tokens used to make the request since they will expire within 24 hours of this call.

The OAuth token and secret should be saved and can be read from flickcurl_get_oauth_token() and flickcurl_get_oauth_token_secret()

Implements flickr.auth.oauth.getAccessToken (1.23)

fc :

flickcurl context

Returns :

non-0 on failure

flickcurl_flickr_oauth_access_token_uri

extern const char* const flickcurl_flickr_oauth_access_token_uri;


flickcurl_flickr_oauth_authorize_uri

extern const char* const flickcurl_flickr_oauth_authorize_uri;


flickcurl_flickr_oauth_request_token_uri

extern const char* const flickcurl_flickr_oauth_request_token_uri;


flickcurl_get_oauth_client_key ()

const char *        flickcurl_get_oauth_client_key      (flickcurl *fc);

Get OAuth Client Key (aka Consumer key, API Key)

See also flickcurl_get_oauth_client_secret()

fc :

flickcurl object

Returns :

client key or NULL if none set

flickcurl_set_oauth_client_key ()

void                flickcurl_set_oauth_client_key      (flickcurl *fc,
                                                         const char *client_key);

Set OAuth client key (aka API key)

See also flickcurl_get_oauth_client_key()

fc :

flickcurl object

client_key :

client key (API key)

flickcurl_get_oauth_client_secret ()

const char *        flickcurl_get_oauth_client_secret   (flickcurl *fc);

Get OAuth Client secret

See also flickcurl_get_oauth_client_key()

fc :

flickcurl object

Returns :

client secret or NULL if none set

flickcurl_set_oauth_client_secret ()

void                flickcurl_set_oauth_client_secret   (flickcurl *fc,
                                                         const char *client_secret);

Set OAuth client key (aka shared secret)

See also flickcurl_set_oauth_client_secret()

fc :

flickcurl object

client_secret :

client key (shared key)

flickcurl_get_oauth_request_token ()

const char *        flickcurl_get_oauth_request_token   (flickcurl *fc);

Get OAuth request token

fc :

flickcurl object

Returns :

request token or NULL if none set

flickcurl_set_oauth_request_token ()

void                flickcurl_set_oauth_request_token   (flickcurl *fc,
                                                         const char *token);

Set OAuth request token

See also flickcurl_get_oauth_request_token()

fc :

flickcurl object

token :

request token

flickcurl_get_oauth_request_token_secret ()

const char *        flickcurl_get_oauth_request_token_secret
                                                        (flickcurl *fc);

Get OAuth request token secret

fc :

flickcurl object

Returns :

request token secret or NULL if none set

flickcurl_set_oauth_request_token_secret ()

void                flickcurl_set_oauth_request_token_secret
                                                        (flickcurl *fc,
                                                         const char *secret);

Set OAuth request token secret credentials

See also flickcurl_get_oauth_request_token_secret()

fc :

flickcurl object

secret :

request token secret

flickcurl_get_oauth_token ()

const char *        flickcurl_get_oauth_token           (flickcurl *fc);

Get OAuth Token

fc :

flickcurl object

Returns :

auth token or NULL if none set

flickcurl_set_oauth_token ()

void                flickcurl_set_oauth_token           (flickcurl *fc,
                                                         const char *token);

Set OAuth Token

fc :

flickcurl object

token :

auth token

flickcurl_get_oauth_token_secret ()

const char *        flickcurl_get_oauth_token_secret    (flickcurl *fc);

Get OAuth token secret

fc :

flickcurl object

Returns :

secret or NULL if none set

flickcurl_set_oauth_token_secret ()

void                flickcurl_set_oauth_token_secret    (flickcurl *fc,
                                                         const char *secret);

Set OAuth token Secret

fc :

flickcurl object

secret :

shared secret

flickcurl_get_oauth_username ()

const char *        flickcurl_get_oauth_username        (flickcurl *fc);

Get the username for the authenticated user

fc :

flickcurl object

Returns :

username or NULL if none set

flickcurl_get_oauth_user_nsid ()

const char *        flickcurl_get_oauth_user_nsid       (flickcurl *fc);

Get the user_nsid for the authenticated user

fc :

flickcurl object

Returns :

user_nsid or NULL if none set

flickcurl_oauth_create_request_token ()

int                 flickcurl_oauth_create_request_token
                                                        (flickcurl *fc,
                                                         const char *callback);

Request an OAuth request token from Flickr for the application API Key/secret

Requires the OAuth Client key (API key) and Client secret to have been set with flickcurl_set_oauth_client_key() and flickcurl_set_oauth_client_secret() respectively.

Calls the Flickr OAuth endpoint to get a request token for the given callback or uses out-of-band if callback is NULL.

On success, stores the request token in the fc structure.

fc :

flickcurl object

callback :

callback URL or NULL for out of band

Returns :

non-0 on failure

flickcurl_oauth_get_authorize_uri ()

char *              flickcurl_oauth_get_authorize_uri   (flickcurl *fc);

Get the URL for the user to authorize Flickr OAuth of an application

Forms the URL the user needs to start at to authorize the application.

This function requires flickcurl_oauth_create_request_token() to have been called to build a request token / secret pair.

After this function, the application should pass the verifier to flickcurl_oauth_create_access_token() for the final step in OAuth along with the request token and request token secret.

fc :

flickcurl object

Returns :

authorize URI or NULL on failure

flickcurl_oauth_create_access_token ()

int                 flickcurl_oauth_create_access_token (flickcurl *fc,
                                                         const char *verifier);

Get a Flickr OAuth access token from request token credentials and verifier

Calls the Flickr OAuth access token endpoint using the verifier from out of band authentication to get an access token to enable authenticated calls to the Flickr API.

fc :

flickcurl object

verifier :

verifier from OOB authentication

Returns :

non-0 on failure
flickcurl-1.25/docs/html/flickcurl-section-commons.html0000644000175000017500000002551212210726306020217 00000000000000 Flickr Commons

Flickr Commons

Flickr Commons — Flickr Commons and institutions

Description

Flickr Commons and institutions

Details

flickcurl_institution

typedef struct {
  char *nsid;
  int date_launch;
  char *name;
  char **urls;
} flickcurl_institution;

Flickr Commons institution

char *nsid;

NSID

int date_launch;

Date launched in unix timestamp format

char *name;

Institution name

char **urls;

Array of related urls.

enum flickcurl_institution_url_type

typedef enum {
  FLICKCURL_INSTITUTION_URL_NONE = 0,
  FLICKCURL_INSTITUTION_URL_SITE,
  FLICKCURL_INSTITUTION_URL_LICENSE,
  FLICKCURL_INSTITUTION_URL_FLICKR,
  FLICKCURL_INSTITUTION_URL_LAST = FLICKCURL_INSTITUTION_URL_FLICKR
} flickcurl_institution_url_type;

Institution URL type

FLICKCURL_INSTITUTION_URL_NONE

internal

FLICKCURL_INSTITUTION_URL_SITE

site URL

FLICKCURL_INSTITUTION_URL_LICENSE

license URL

FLICKCURL_INSTITUTION_URL_FLICKR

flickr photos page URL

FLICKCURL_INSTITUTION_URL_LAST

internal offset to last in enum list

flickcurl_free_institution ()

void                flickcurl_free_institution          (flickcurl_institution *institution);

Destructor for institution object

institution :

institution object

flickcurl_free_institutions ()

void                flickcurl_free_institutions         (flickcurl_institution **institutions_object);

Destructor for array of institution object

institutions_object :

institution object array

flickcurl_get_institution_url_type_label ()

const char *        flickcurl_get_institution_url_type_label
                                                        (flickcurl_institution_url_type url_type);

Get label for institution url type

url_type :

institution url enum

Returns :

label string or NULL if none valid

flickcurl_commons_getInstitutions ()

flickcurl_institution ** flickcurl_commons_getInstitutions
                                                        (flickcurl *fc);

Retrieves a list of the current Commons institutions.

Implements flickr.commons.getInstitutions (1.8)

fc :

flickcurl context

Returns :

non-0 on failure
flickcurl-1.25/docs/html/flickcurl-section-comment.html0000644000175000017500000001441312210726306020204 00000000000000 Comments

Comments

Comments — Photo comments

Synopsis

                    flickcurl_comment;
void                flickcurl_free_comment              (flickcurl_comment *comment_object);
void                flickcurl_free_comments             (flickcurl_comment **comments_object);

Description

Photo comments

Details

flickcurl_comment

typedef struct {
  char* id;
  char* author;
  char* authorname;
  int datecreate;
  char* permalink;
  char* text;
} flickcurl_comment;

A photo comment.

char *id;

comment ID

char *author;

author ID

char *authorname;

author name

int datecreate;

date of creation

char *permalink;

permanent link of comment

char *text;

comment text

flickcurl_free_comment ()

void                flickcurl_free_comment              (flickcurl_comment *comment_object);

Destructor for comment object

comment_object :

comment object

flickcurl_free_comments ()

void                flickcurl_free_comments             (flickcurl_comment **comments_object);

Destructor for array of comment object

comments_object :

comment object array
flickcurl-1.25/docs/html/flickcurl-section-reflection.html0000644000175000017500000002375112210726306020701 00000000000000 Reflection

Reflection

Reflection — Flickr introspection API.

Description

Flickr introspection API.

Details

flickcurl_arg

typedef struct {
  char* name;
  int optional;
  char *description;
} flickcurl_arg;

An API method argument.

char *name;

Argument name

int optional;

boolean flag (non-0 true) if argument is optional

char *description;

description of argument (HTML)

flickcurl_method

typedef struct {
  char *name;
  int   needslogin;
  char *description;
  char *response;
  char *explanation;

  /* argument list */
  flickcurl_arg** args;
  int args_count;
} flickcurl_method;

An API method

char *name;

Method name

int needslogin;

boolean flag (non-0 true) if method requires login

char *description;

description of method

char *response;

example response (HTML)

char *explanation;

explanation of example response or NULL if missing

flickcurl_arg **args;

method arguments

int args_count;

number of arguments, may be 0

flickcurl_free_method ()

void                flickcurl_free_method               (flickcurl_method *method);

Destructor for method object

method :

method object

flickcurl_reflection_getMethodInfo ()

flickcurl_method *  flickcurl_reflection_getMethodInfo  (flickcurl *fc,
                                                         const char *name);

Get information about an API method

Implements flickr.reflection.getMethodInfo (0.10)

fc :

flickcurl context

name :

method name

Returns :

flickcurl_method or NULL on failure

flickcurl_reflection_getMethods ()

char **             flickcurl_reflection_getMethods     (flickcurl *fc);

Get the list of available API method names

Implements flickr.reflection.getMethods (0.10)

fc :

flickcurl context

Returns :

arry of names or NULL on failure
flickcurl-1.25/docs/html/appgarden-edit-auth-flow.png0000644000175000017500000012577112210726306017546 00000000000000‰PNG  IHDR$.NæÌÖ«ÀIDATxÚíýýs#Ù}ß‹ó¸U÷ïpã×T®JøéúÞx ·î÷¦*UTœ%ŒãR,–¥8¢u7*ZÈÒ6[¤l:“JB&´¸ŒEÈ”@IX‹(ˆ+HËÁ ³K,ÜíÙVó¹çœ~@w£ÑHÎìÌìëT½j8ºû<õéÏûœÏçỗàý`†J H$€ @‚A |IO [iY\LK:=‹‹’ÞÈKgŠkõšI/,Ž8>˜Å…´ä‘ç²ZÖ-TXKö3‹²è•KýÉŠõ¨®cI«ß.v}ôžØŽ9Ü^Óµ÷ûÂÄíÒybÚ!pNˆ.cÁé{½Fø.Hn&H,YKÎÈÌÌ5Hd¤5QZÌÄ?œt¡5|žVU6’êû¤¬›UV§¼Y®Ýê£20{RÍmHR]3‘)Žm—ÈúxÜÙ^sùžÞvº'Ä-cü= pMA²‘º¦ I­Mµš`•Ö‚Ç'ýÇç#Sôz53½àû>%Å ’Üb2²\ÉÅüCo¨ÎyA|åME¾ñõñ¸3®½Ïò=íí2tNˆ[Æø{àQ ’äí ’L"fæÙ*˜ë[$’ÌŽ,Û¬”:·¡Š™ zêÉØöÓÞï“´Ëã˜ï‡/H, <:A’\̉ÕëˆeYñtz73†BÆŒÕlÈùù¹CCåÁw|/, n&Ù…ëI°²‡ÚPåÙ á»VzºÉíÛÞïãÛåñÌ÷õIR²ç–tÆÜë½ ïa€[$©µâ2Ñ(åeMˆÏÏ/È‚¤×ö¥ªfÇ{ÕXc¦Y.J¡X”¢¢P(JÃ1`úóìš$³¶Ù‚ó)7;S—y-jU(Ì[+&Æà¼T|¡ ò©þÍ¥ÙvYªíïÍo %û|VC•¯ ó‰àµg3ªìúwe'и]Öʪœ½¦äv×L½jÓk’õŽ%ZRÌn©àä™×ÌÏ«ã6$_nÆ´¡¯|îù; ÉnedAo®½˜‘ý|yÈ ´½Fµ÷ðjKCòû*ÿó&ÿ óƒrÇÃ=KÊùý@_Ôǧ3’ÓÇö‚ט¬]¦È·êçê^ØZK;í¥ó¿(»y9·z¥î§$Ó­4N#H:­sÕn[*øÝ©{ÝïtÝ—Î#á;RÝ/áó¶ªEu¯9¿Éç¥tÚ(¡ÓTý+ïœCý[<'ààÉ$¥kf )[óÉnI™›M\Ãekøó0‰taº†Î÷CçH(CqnŠàö Üv†\–ì îñAÅnð÷p»Ì©Fº™%¥a·J»’Š«»¹ 9ï+_R¶” yžÄ‚”¬ÑuÝ^“¹>•÷Ócê+%[ÅaaÕÈ ¢¨c÷6ž¦]&Éw£°[ïfn+j‡ª›Ôýc"Hz ÙZH‰?[ðvîr](ÃeÜì*×îW ¹Àu›ùÅÐu¥ÉCàÉ$‰…}i¶šÒh6¥E£¡¾k…Œ©VôªÃÄ1(£\”ÆÇ¸ ûùÇSȤ†v jöª27qpûîTbH<؆ßxþÔHA2–ùl MZ… ã”Q3þk'&;ÇÜ®síIÛk|µS ûç>ãµ™›@Œ¸ÌKµw³v ç»™Ÿ|'«ÄünÈ ¿IÝ?‚¤)™‰wíKÈVÉòV³¡Õ©ùÝj@à‰²Ä¢4ü›T,$nibž öà6®Ã³“6³ÊEea.ùpÉ4†‡óáÏe®)H´qÝ“N32ô’’S/¤ëu:Sù‰=>£¦SÞv«‰ n¿¾ 1.czKÜá¦7è¨Y⎷Q@T»$d·lÅÌħ<‘8´of£y¬î/†ñ}íàñ Cw¾õ`ŠöŠ«ÃáÙr]¶¬¯?•vç‡òg__õŹà±é|#0ƒŸNF_÷ºíâoûBzX Í«—º†µUÍF¸ÝÍJ¡uKuë»l¥±‚¤•¹)ÎASð^Ù’\f6B :+œV1Ôg;ª^ý÷ç€ ­žÀÓ¾B2d|«x¿»…Ñ9Í{Hb üÉé §Ô†/ÊXM ‹¦Ö- cP¯ÍN½ío"ìB±uñšÙžµ#»s¡êtq¨.ÖF–!"®(S{íéÚ+N€–‡f»çvχVºÔ¬þ¬Z5ÈlìÚAêï;ʵð\ª ž,dž•¹Äè|_§]ùVy »d-æ†c˜"Vq(·P÷ï“ 9JÙæð=î›3I÷åŠÃßÙÛ GÜ—ž{iÖn·ðîh™€'Z$ædmkC66F±&kj笆 =4³=cÛ ?jA[ gg;={kÓŽ2bó‹‰ ‚ÛßA’ OGî®›ÛPØÙîê~j—­¤rÙŠ&‘\˜Øe«¸– ÅÇìG®^o 0ëõðÊžÒÖ`å%1´#ž\·†ês£Œ»À¾ËVyºsè™áÐ æðÌè ßÔ~ ‚$<‹:qàñPpûû$H†ŒÎëÇÝDÆ2x±8“]{-õ°VHÂýÉߘ”–ì.ÎÊ´o!¿q»¨•‹¹ ɵ&[©\çê~Ú ö)ê6V„ÜÝ#6…è”·F»†Ý¾R)æÒ:K]C‹a7¸9çað„ ’)w­ŠòýŽ ÒÆû(H·Üi&'Üþt ’¤·}òM®} ‚¤3¼â–kNºBÒ‘ý…»S©•€ùʇ(HÂùº;Å#9¥ Ù¸EAR¸¥]¶Âu—1Ž Çjùó0®ï.H±œŽU ôã<‰ëûü]ukî}$VqíšbÄ ž=­³!·š¡7•?ZAžA×;‰¹®i6¨­þÕAæ*½×ëL¸ýÐIDZÌ7‡®¿¥v Ó»neÖ¶$›+HC¿lpèý/*þ$£^ÌÙl/»;û¨\¶¢òmïµ0²=zAr[Ûþ†]¶féÈ÷€œïÏm;íNuhß‹Öܾ‰)‰›\ºàItÙšvÿþ†,†ƒNg7BAÆÃñ7$£¶ä¢'ûC»6%ULEFÅR¤‡ÈDÄW o£óÞ«‘KÇ~C†ïPßÄ0U»T…W Rá÷ETeQmC›LÍÊ‚zë÷ÖnVª­‡)H¦YeÞ Ko>Ø\ •j£´:~ØàNJ9¼R6MPûTí2¢w{ªö®ƒs1Fô“+HZ/—\Ømna•†Þ÷£Û¶ˆõÊŽ|Œ»YFà#‰á÷Êð0xâwÙÒ~Ús27†ÙÔ¼äÎ;‘†œÔºaf¦›Õ¼ÚiæúÛþŽä]ÜÍK~M6²Õø2F¼"9æíîQÛŒnyÁíAãÊàΖ›j¥Á’R6aPÅ ’™Ô¢ä‹yÙHo8/)¼™a¼œ\صWzMÙ_LÅ–ïöI¸½â/GÅû̦¥PU;g÷‡vÊÒ†h¹µ–LþÜ rß(·Fý¦íRÝ‹˜ÝŸ“}µ Xã¼$[Q±-Þž\A2êÝ7z…ª|Þr~+bËã¨ÖÈ—+î:ãM3·8b×­€§CÌLlz!ÜMßÔ>Ú-lœ¯zœ‘¸5æ¥i½ênlpû¨÷"LöÞ–÷– ^08a1[?ñ[ÞoÁ(Û^ãMÄLzìË‹±ý0‘Ý^s[Õ[l—ÆðêÎ\#û‰$¢Þó3®ßEïÄ)HýÁê+d‘;ÑÀ“!HÖnChc¤°6µ iM¼sPŒ­ÞèlŸ“ ½Ã`„oûøYZ_°~kZzŸC„{‹ÿÍá“í¤4æ7JLfÔ߯}+×Û^ã¯Ñ©îÇ/úÑb aÔÛÂGâ[¡¸•v™¸Þ“Þ^Ý?Ú öÖƒñ.i‘«ó[ïøq&Î#&¢¹qÎMáÆ • ~Ëú¤¨7H‡öû·ª9™0DS [rÞ,ý÷gƒ®*á|l„\9:\„«ÎAÒžIÛšl[ãá½ÝK:#ÊšPn>…FCíö”ŒÙyL½ó$3køŽ«3SþM9üΊsÙMÏðÉOÈüZvð>™)Úb’kÇ·×$×ÐÆý¹l-ÌŽyéÝB0þÀ©ÛÂÆBôjHZ½?§‘Šo´Ím´‹v_jI~+-©/ô›]P.`Öd÷ãµÚ}Ã[îNgÄíŽsãI”›fz~„0LÌÊF¾:6.-¼Ò´˜ Æi m3¼\m€Ç^<Zê-ÙårYÊÊç¿iõnñÜ=ón÷ÜÖû¿£ŽÕlHUç§\Uù™î…l=«)çÕ²)Oõ¼)Öà Èuß\^v¯ÕP»n=Šú¹öêY-/ï&ÿæxã³ÓÔmµ¡v{ÚÅôç\ºZÞgPR;¹5Ϋ^»7Zˆ ‚$@ HA€  ‚$@‚A H$€ @‚A H$€^G:Žô¨ €cÆÓÞÓþÌè!H&Ã’­¹„Ì$33 IÍÎËn¡Á óDr_6ž™‘g6JOtþg·Ë×8Ö’üÖ®T;6Ͼ䪖=À–·Ô=4+Eëá^§´1+3Z“û7:çî¯`_¼v=uJ2Ÿ˜‘DbÆ7NÙ¤2Eu®mû\÷õy7ÔßϘ¿ãÎYÖõ—Úk¢r´d?=#3Ùèþi•6$13œOÍZÑ äÏŸoÓžÏl˜ö¼¶½½q¡×*ÉÖV^:¹ëvžUõ´Q¶¦ÊÓäå¾ÞØ2]_¹­±ìöð÷§¡~æüý°®}ýº{òñw³îsáaÙ Y›uÇÆ´üÑcpŸ¸eßH©¼Œ(o°~㟟¥­ùÁØ_ Ži“>§®›ÿÔZx¼{ì©ÉZJWXR2[²±±!k™EI9•¸=ÇÀ ú/}rV¿T}bó¿ö¡ù9ehN=ÛRÊc±ø(I§h ÐtÑr Ò5s?ݺÁºNõK‹òÌ'¿t£Ïï/__¼I=©c͘”œ—-{œ2¬­©‰“s¹oÎõ!ÛÈ¿›•Ùg>)å1e*­%ÕDÌÚDBukÖŒ‡óy9o”ec!iþ¿Q²"Éš=v®mÈ–›O=®ªÿ@þüù.­}Hf~.cÚó6Úö6Ç…RFOXeL]=´þí´sRÕ]¦Øš*O“—ûzc‹ÝW2×$×Ënò÷3ÿßM MqŸ=U„Æ»ë÷¡÷û¹ðp쉎3N.nå¤XüžüÑcpŸx6qRM~È‹¿~㟟sž™ÙŒŠ%i…V&}NÝ,ÿþñçý± g®£¦´rÌ4õÎ%­+sf^ª¾Šl”‹’Ëf%—®à^ë\ò¹¬d³y©6;Á‡´zˆr9u\AÎ[èÚ<—rµÈGÏj˜ÏŒ‹DÏ’R!¯ÎŸ“BÉ¿zÓ“fµ*VÏ—}\Ó§Ï{Þ´¤QRÇæ‹ÒŒê¦9wNå1_ð—Í>wÓ²ä¼h_»tÞ äù¼Ù’ÖyÉÔK¾X9c7*Íêè:Õù*æsêºi¨<4T^Ìoz-©–σ[ó¼ªÎo×m«qWš÷{ƒü·ìóäKçNþ,)›ºÌ†ê2*Ïñå‹k÷‘m¦ó¯ÚÕRík÷‹¢*_ð!þ!߀{ ßPÚ_0ĖʧÕs­Npl¨Ÿ*Šå†çšcúæy3pßœ—í¶h•vÍaaWµ©êÛ¶Á–’¢ª·²n»ÜðuG•Ç®oe´6ËvŸðõÅðuz÷›r·Ñ ÔuÙé£Års‚rª¯ñuݳšR.Ÿú‚ê§ÕrÙwouLýèÿ»}ñ:õ$ö¬Ïð÷~Ã^_»q78Žx÷˜ªO·œ®¡Ôr~ÓjTU™t›†ï™åõX˜Ú¸jõJ&?Éta„ IJi¤ ÂĞyó·m\ŸpǨóRÁÜËÅjK:ªýªè†ð¸ÐRîf<ÊÚý"º­²¿˜4Ï‚‚ûnÒ¿£ÛÖ®ç\®$ÍfÁÔ«_Dá< ú\Ñôqýœñ_wPîðØÒóŽÉËÃã¯ß¨N®1:jŒǣƲ¨ñHç]Ý?VÏËW£ZöÆsS†ór¨]'?ÆßŸüýÌÿw°ÌÎ= ú‡î[9óܳ¯ÝðúZs¢±sô}6E_Qc[p|ñ•ßq‡5ÎÇÝîs¨eÚU•±Ñм_Gõ«iž njèòŽxÞG÷¡ø{õQ<÷σ±u?V òTÜ]0ãä¾² ¬Þd÷É4ÏiÚ1Ê OfÔäS¹`Æ7¿Í7¨ßèç§×fª]ôäÊÜFÁ´Ë°ý󜚢ý½q¬X0ßUçf‘!é$n½·cœ2Æf~¨‚$9<ƒá*X{©É’ÝùDÈaVò »pÍÂÚ{B:g¯®TM£¿Ûˆ˜kdíå­ÝóA…eçíå<ý š »@Ìm9ƒœ%ýŸqP4³gió½ý·/_ÅÐÒYu?ÂÅbÁbêÜn"ó»eç:Éa׌٠oðõ3œ¦äÒ©ÐñsRh:Ç4sÞJUð8eÓæï‚5hÇAÜwþþVDþSRz½$ ¡2%æw#gnÆ•/®ÝÄ´™UÌD¸´$%×6b¯Ñ_ýK¤çÙôб‹ûÕK±sC¿M¦óv=¤g¼þd~oìY©B=P¿z°Jk‘î:¥ÖØòDÖwRõÿP;êëòd‡ê:¹˜3˜Q努¯iëz«Ú Ü» Ù†³½æÜËWN_ÌM]OQ‚$9 ¹ïô­o9âd!¾g¾{e‰åó¶Ý–Ô8±‚ì­ ŒÄýù%Hüm;ºOØ®d³Ãu˜ˆJñã‚ÍìZ1b%Â7F©Þú ú÷#Æ8[tFŽá<µz ɤ¢òd…Êí[ZÊ]yÔ¸$³1ã`'fŽe#Ç£^ÕÜ¿^»Yyû™4»å,ç2îÿSãïO“ ’ýc6ØÓùæØ±sô}6E_qÆ[ù[…´g/Äó£ÇîÖðshn?d8Çõ«éž ‘}(‘–ÆØ>w¯>ŠçÂ=ßýó ¾®cÇ*ߪ÷tᕉî“ÉŸ;½©Ú1Ò&eó9õ{/âùéw= ŒkjŒÊ‡ì¿g·>xN]¯ýG?RkaAr?ÐŽñvH¼Íüþ’ê®÷phdœNa7JÏ56õàçŒ ûÎ9zªòSF°”:-»2²žß`:᪷°j.ÿaï;§Qçv(ûs®²;â¹3°ÍïŸûm1r™Ø2ùªYEÏ.îÎÚ¢sw&Úi¨LÑòuÎ9)¶ìŽ“53s)cpxçÎ5e¨„óQûF&8wʶPPƒbO]gkÖ¹®å^7åµÇ°Û„¿üÐÍÿ¼M9¯Þ“œ1ÐTgo9å-nØ7u®1:ÏQå‹m÷^l›¹ÆhRkžVÉ<<퇩/ÿ±×ˆXá0]Ò.›å¸ù(äo»¦ìJø4‡}ד¦ï ¹übÂ6v¢ÜÙNê!äw3ñʶèä¹UcÊ3è#ç:3ƒ]è:c¢ç÷”äÎ;Žïª}žlí»±å Ô×Tu]5í•Ú(û&ô±¹Áƒ)¡о¶œ¦ž"ɬûÐL¥$™L*’Tmk…‰ïoÏ}Êy˜tÎ÷íÁz«l·ijM­à¹ùÈz«‡Á{&4«¨ÄHÂyÐ6"cHìó%LTŒÞœã»;*¯£ Ÿ>qîŒËk÷þÜðâjF¹ feYO8ÍxýbhbÂq7iݰ‡g,wgýc«¥ÄcÒãZ…¸ñ1”'g‚Æ30T>¼¾|({;Ï—Ù]ûü½ê~¤¯·\ËÛõÜÈÛy[Tãb|>ýý?~<ʧÎ=30¶x6y³ð~#hhMzÌè¾5Z¸ý£dùÊä¶•ò ðêw’±3ê>›ª¯¨1nA_ѹçœçKRÅdŒ©×¸±Ûß—zV¸Õ =OâúÕtÏ…ð}ÜðÝÇñ}h̽ú°Ÿ SôáØçWܳzâkLúÜy0U;F†1$|ãR¶ù¬à=,ðˆŽnÛþ{廃±ÿ&íïÚæé\plJeŠ£Ç¾‰í(›ù}$=çá­+ÔÜx3Á†®nÍ™FúæÉ†3˾¦–~öew?+[i§@Å{²ëÌB%çdk_/ V[æ¦Pâ@:Íœ½¤W°ìÁ/(blÕ˜H'$c|7Õ.ÍFC-ýÕRê®df}³tö¹µãý¾eÏDyõ8·›¯ÂX?ä¢é IïîËþî®ì«º30¡gšæ<2û®; ±?/~§;÷®n+uíìþš=8Mgùì ¬Qí^Šm3;ÿ‰€0(¯¥œÎ ÿñ×hž¶³0Y¿øpêPÏŽ »¦´äüü\JzéswCæƒû"öÁãÿÛg°¹³8ÚðÚpÚf\y†êÛ1š¢®3ŸQû©%ñóó†YFŽ+—¿¾¦­ëœ6’Z@Ú3±3 Û`hªHÆ›Íô€“×ÓHA’˜•t&-é´fQ×rC®OA#?éäÉï¶tnÜ\3–©µ@Þ3þ‡Œ“%Fª#i·\s‹n>‹‹²–­^SŒî%ŸQî÷[NN HÂe,éûo„¯¿¿ÿߤÏÛžœjå¼1.~|¾'­¦ÕËRA¹m­-š1-ö¡ìÍb&d~Qå· \¶:“Æ´¼q0>ŸƒëìïfÕ»Nš¿ÝÙÞêVÊöˆ4êÆsA~nè6žYÌ{A ×Ï>~쌾Ϯ7¶ë z^¬‘žW¯“’A_ޏŸGö«éž Q¿MNÔ×ÇÜ«ù¹ð`Š>ûüŠyVOsÉž;Óµcdß÷Ÿ§™óÙ|>AOÙþƒºñý7i[„ùŸê÷‰([pr»ê6ãnM¸3.zg˜òFj(ÎÄmŒ¯æ×¼g¼™ËÔ¬ZÞ“]³[JSö3 ¦ –› Ñ1 Ž+Ä–òë4³gZ!*µ8gfÖ«Á|{ÞIÉè ºàò`Bfç‚‚D?x2ËqiÓp)# š‘ùŠîsêÁ,jRín6§êmAJM{·™™ùÜÐu¯'HŠƒ™gùÏ»n2¥®©‚vËy]>«Óî§'±mæú¡ûgÂÎ÷çÍgË?8ë[£9û¦ ¹ÎŒ լÂo¹YÕ‰= >¢Y¾àÛP ®çcßn›qå‰{h…¯~ð$G ®qå ¸éêÚÔ XÑÞu)_Ú5ÇîlHû!$“ÖÓMbH†Ir”‘mß o¬ÖØ|¸3mÙfLÒ˜’ë ’è>aÆåÀD‘½²š˜X' >$×ëßáUÉ9ϵ JlÅŒV0O½F>àš’œ?K¨Ÿ7‚¤çR·Ñ¨¾^r&KÂã`ÂçŠϰ39‹¹‚júߌºÆœ úø„G{Œ;æú‚¤8òž()CÈŒ;£ï³iÇí]áNrç¼>8®^ãÆîᾚ¤ŠíWÓ=âîãø>4æ^}ÈÏ…aCvŠºŽÙ¤âº×˜ì¹3];õýDÈc$PÆÉI\ûÇþë·¿Ù½-ð ðÛ ÑcßÔvÈûÔ®gèSƒ vÛ7PýíûMA/«Aú®ãÚð3³Ê²«¶C+5UœÄÖ†Z2´—B-¨düÝF¸¸³f U1ƒ™lû³™…ÜÐàd«ÿaEk«ÆIICÍòà†4Üà|wh…Äÿ€wÕ¥îøÃª¨Õœè~qÍ^"+ûƒšŠû²•-™e:³’±è+sc°bå-Zƒ»tbAâž×/tÔlWaK²¥æâAùz±í~/¶ÍÜ™©Ýj/bÉxÿøkôF r)c z3j¥Áåº1dB>‘Þ¬öF1Œ9B¸¾¬þÏšs8±8®<“÷:áÏÀ-Ò^.žUƒÍŸ~)[.}M[×î­ö̧?ìöµ}f]׊aA2I=Œ!±óÉh#?eÜLÊ=ß6ç³¶û”=ˤg·RíêÒ‹ÏGG=Ø2é-Ͻ3NŒÚ…ê6‰]>ÿÆ#öx–|H‚¤sÃþÞJÙÔ»7ë®ÇÞÁ?>ód?Ÿ´kŠX{(÷šEÙÈì:c› -gMNL´Rl»ŽŸýØ|úŒ€±ã‘Zuðâ4“’·Ü™SûžÚ*GÍâOvÌÃ$EGŒ;£ï³©ÇwËUÕγæ– ®œŒ¨×¸±{ܽ߯¦{.Ä®L` Œ$ë¹ð`Š>|‚dì}2ÑsgºvŒÜ¥*í³ùJÎêœ!HRÑ“OS’›´ÿ°m®ìå™1cß´vÈ£ßö7%ûj¹H±»‘±—ï|Ûþº+‰ù-©¶Ôƒ0ë%©A¡ç U¡ûj§f£(‹É§³Ù•£ýñòÊ»Õ(I:5»TÝ÷|aÝ­;È.îë$ÎewÑñ5.4Fvb^]C-Aæõ—œBÌ®©r© ÞjÞ¼ïÀ]øÒ&”ÿ°ö§Ë;Ë„îR¸£´ÓY³{†›¯Ý•ÎGÏ>‰¹5)«]ªçý³»f°•¯ê4û%_ڼ爓äâ®Úù¥êì8 dú9ŸááT%ç¼ [z÷‡†ä2³ccH¢Ë×îñmæ4'ŒŸ~9—q‚ò ¡üÇ_ãÁˆ`9½•à¹u×n[efÕ®ƒ¶r·é8žÞÃRqOn~Œ1«„jÙñ½Í¨¢¡Îã®2Ù¾ÂöÀ“ZÜP»´tÆÚñå‰ÐC×ñŒn_YT}¥¥ül7æmŸ×o¿_®`}Ý›ª®M Àœ@gOdòûŸ¯-§ª§Û$î}¢Ç­s½kÖî¢]^Œ˜awè„™½ícç<' k±ïmy”‚¤×È:ÖjkIµûÑÚ\bl ÉÈq!fœ,:þÅz‹å›ôïðy ΑVïtãÆŒþ<ÙÂ,%ûj!Ë7Ö¤†Æ“ÁßîùSé}Õ7”ûJÑÞ'±O¿4cÙÂ`ŒÏ§ÿÚ±ãQ3·è;ëç‹UÈxÁöç#úÛ$Ç\W$&$ãÆÎÑ÷YsÊñfà:ŒKˆ¯×¸±{ܽ߯¦{.ÄÞDZ}h̽úП W÷á› ’Éî“Iž;ÓµctüTB6ÔØ¢m¾9ç])a÷Ç`=õ†Ü{'$7i7Ö;¹ lAŸ=—ŠØöwR»*œ×»ÊÞŸýØšÜí=A²µKKjN¶òÁÀìªê´þݨR [Þ̹žmZLw¦Ù*6 Ðý¢uvçÊVc¢ö›ÙˆÎ¢^L¶8p­rìí­ï¶|.aIe4¤‚34ÉÑj¯ÚÑanqÑç±ã‚>NpaÔÎéluôMÊÇy~-àÊ–˜MKÙ÷ Ï¦ç×A²ƒ•„47´äê$Ï8ù710W—àyM ùZô ÆÆ•/®ÝãÚÌ &LvsÐ7TËg8=ãä9þ!Zƒ½ôêZO¹d,$ým7çø…gkKØê‹‹s&ÏF|uª¶vûþü\`ºýù¤·K‹½‚– l>÷‰¸ò õǺNií™À š‚mšTƒic|¹Âõ5M]›ÀÌÅ@°`øÿá¾8M=E­ÆŒzYUðeƒÁNé{Ì?nÍer‘ãBÑéë[å×#î÷!^™|0r•n”‘3*¯þö þ×'‚ãkrn>F¸Å Æx!H¼Ý‘TÙ¿vrýþ}ߥ†Æ8·ÿÄþ<}£–÷&Ñl¶¨\±ÔØ’¬¸>ã‹i²ÿîIq+¸dB¯”÷FÍÌÏúQ&W`eãÆ#«ÜNÚû~ôór‚cF÷­gF¼D/Ü?†ïÍËVü3ú>ëL=Þ˜|Ì ´Øz»‡Ç «O3®_=˜ê¹0î>݇ÆÝ«û¹ðÊÄ}x\G“ÓÝ'ãŸ;S¶cÄ$}bv6`󚽡{)üüŒzf I°n¢žS×kÿ° ›ð‰µQcßtvˆ)ó5_â8óà–YÄ€·Ôl’ Ì@'SßµÔJC/biÙ|gß>Ìu‰ÚºÍÏYæüûû›¼õ®_®N/.À©c®=¼?½ýöU+òøI°¯Ý²F½óA×óÞ}àŸmèu,slïméW_“–ot»G·™?†Ä+ߘüÆ]#Ü×:¡þiÅÔo ïYñ×0ßj'µOxoŠöŸ¼<“_Ç®ëÖÐý_®õu¼Ý4ÿï׸õ¤¢gÇæ|C®KebÄLá£dš>äŽ×ÃÏk‚ûüú}cÔsbš|N>=Q}Ѻþ˜1y_q\†G.ÇÔkÜØ}Ó~u{Ï…ÉûÐûñ\xÔ}øv¯1ýø`ÛHãúe|=ݦ-8‘ ûÇéGà²õ¡®Ó³)Ï7ðñx³«à43â_tÞÜzyq–ӼŸ¶xXåóïóz{/À­ ’-oÆockMæœYÅÝj‡ú§í0¯‚}X™uð$ðD ’ŒÚñdv.íì·ü8äK½°Fm·‘~‹q#¿ám=úÐó¢–‡×ÒÞ{=«|ú=6é1¾ø0Á=ª‚Ô΀z·¼¹õ®j‹z§Žê¾Úª59;òY  HA€  ‚$@ HA€  ‚$@<ñ‚¤)™ÔŒÌÌÌHr!+½‡z-K¶æ2“HHÂ#)©ÙyÙÈUß§ò;yšIÈVÙšì˜^Sö×¶¤Ú±ÿ_Þþ˜©¿¹7 H¦¡SÞ0Æ´MRò­‡kü¯¥f|× 2¿[}_ÉZÒ¾~¦Øš@ŒTeÞ©«¢#HJkϘã?”)rC‚dr É€(˜Û*û¾ïIó¼*åjC:½–”ò9ÉæòrÞêMøý°ñ¿á’t¡iŽïX Ù_L9ן•¢5ø}£\\6+¹|IZóôä¼ä|§®Wn„…DGªÅ¼dõ÷ulÏ-©–ËÒhYæÜÙ\Aåµ# u®|¾(M-0z–ùÍyÓ’N«*ùœ>GY,çÜ­Ò®$M^ÕŠJ¡*–:w§Y•o}ýëRº{ß'\ZRVyÐyÌ«ÒñåÏ­³žªrÁ®³rÃâf€˜ éeÖ™í_\œ³EAbQ>‘ID­f$d׸7û~´ Éýߟ˂sl¦Ð2¿Û ¥™™y)šÕ›–lÌ_Ós—êTe1þ>%ùfO¬bfxU&û7^ÒêÚQ¿1$Ór®DF:ôù¢:¦˜ùùûçÒß2yèg%>>±àäTÍÈÚ$+4O‹ idlc8µ¡V8ª2çÆ%kH@Ì$ç%[ÈKf6áØiŽý>N´F~ÞÌ/zçÌ•J²Ÿžµÿ?Ÿ•N#+ g5%§VÎ fÅ"‘\”ªZ­È§!“\\± ò3ãk•Ö<ã?9¿( ŠR'xmÿoR‹[RÈo9¢M¯ýPŠ»‹1“Ù•²Z *­Ùù{ƸlË¢ó}b6­VwöeÁH³[j¥Å_g ’W«3i§Î’™7|PIË‹çH­”ûPKw»Æû¾Ü>0ž×Jû8«àÌþ§¤`ûþz‚¤˜q\¸R)(ARȦ½UŠf+ï¸LÙ+;s ²¶›w\º1*7?ÚíJ¹m5”k–'6B«@Ñ‚d^Î]á¶¿à ŠN¯ä”Y)õÜŸ ñò§¾wbL´rÎgÁ:sW‰:Î5SÄ ÀEôÎwG—§VÐXß*;~Ç5ÈS*ÞcÜ÷“ ’†,&.[®ïGïÈ劜jnMRCnOój…¤#[³®ûӰ˘'6Rk^LÈHA’\óâV¼ÀÿdFZž›Û@pùI¯º;ø­ORò3\‚>h‚¤Ny« ³³³)ÇÊ nÏ ÙsGÈì;¿ ’èïcIÁ$JD7æ=!TPBÈ]!I.æìs6‹²µ±¥‚Ë«&Ð<·¿+»i4ÔêÇþš·b²[}ÝÛ1kaßÎUÈ8.Z»rÏ'6Æ U/¹¦ý›¢#8:?>ARêD¬x+D Ù?ï9‚cc´ßAÀ]ôÊ^¼H: ¤.oÌúÜš|ñŠÙùù»Ô|Öìÿý° ‰ÛöwÖ L÷oE<·˜–y/cWîû¾›ÏlÉîÆâ@)p¾??8ßÜœ—ŸÔZ1°ú1^Øç\˜¬Ö¤ójg0«è¬ëw¨l¨x›` IË[¥Ñ¢dn~n“b¾GÀ\øã$ʽÐ÷ÍœgÄo”î9ÆsBæ†ub6ã¼Ðó}Ä IÄY‰ä¬¬eKsžËx«5n€xÙu‘ÚOûâHlá°æ½X±#…ùÀùS [Òìù„NØekvÌ?¨›„̦ñ³Qpò× ì¦ã@ÊvÙŸYsEï\6æSÁݼÖòÎÖ¿A²álà ’5 |`‚Ú'Á5žnånÔjYS|Ó•}>µjau"¾WÛøªïôõ"ß.ßqŽíô®'ÖôÎcúÿ#ÎÑQîj­È|Eå›$×$vLF2bǬI¾òðÞC’È„^Æ€ yÄt$¿•‘Åô–œw®óý“‡ _K§%³‘¼]A€  H¨@LÁ§?ýix‚ùú׿Ž!xÄH¯×À'_H$‰Dzò’#@H$‰DB‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$‚$$‰D"‘$€ AH$‰„ @H$‰DB‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$ ‚$$‰D"‘$€ AH$‰„  ‚„D"‘H$‚$‰D"‘$€ AH$‰DB‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A‰D"‘H@ HH$‰D"!HAB"‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"!H0ÄAB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ H$$‰D"!HA‚ !‘H$‰„  ‚„D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$‚$$‰D"‘$€ y˜‚äë_ÿº7 À“†<±‚1€  ‚$@ HA€ GD¿+ÝnŸz€§Ht+²zçŽÜqXZZR þ¿rP‘nýHý½*•vÔ9Úr˜¹#™ÃÚ óQ3ù8¬·I¹»õCU¦Ìˆ2é[59::“î”ÇÝ&µ£M¯M²µ67[¸~WåÎsYi»gÕßvß\=ªSG÷íÙѱ4ºÎ=¼¢êé¦÷ð­æéÔu;®š6}¨e¿…ñëq#ž\AÒ¿”ãlVäðÀ1z—7åðHý_}~\¾v-«>_)H Û«²ShÜX-«kT¬G#H.Nd5³-õîÆîÁ’*ÿ1Œ¦9îöèJvYµËê”+5±úÜha…ÉllA’}Nî,=oIö9%²Ÿ¯PGáþ_;P}zI*ŽQ®û×ÒAå1Ê“nÇeÕŽ·.HÂe¿ñëý#ž—­~ݬR¬dƒ³…¶ Y‘Ê•%õ³S99=“ÆU×ûÞº¼«¶ëJÔ—‹zENOOå¬R7ž»WRQç;=­ÉÕUYVB‚䪡Îsr"§ga#<þÞqåš´ïºWrqÕ–ËÚ™œœUäªÛ•Ë‹K3£ù oI£q)íö¥”Õ9OÕ÷—Žøê«Ï ;Ê0º³)å ˈï8‡Ëzt>ík*7««º—ŸØúè·¥VVù;9•ríÒ+ëUíØˆµõò\YÝ q¥®Qoó£ó¬?ëÇæO·ÑK«ï›åÕÇ]ÙÇ9ub]꼟JíÒŠJn;œž•}}Â>÷U»-»<µ ßñ1õ=|þz o]6ê¦N½¾wQ—Æe[•ùJ.œ<Ú‚$ë ’çF ’QùwÛÎR篙º;«4uïòž\EÕ½dëáß®)£ª¬§ÐŒñ剽ªu|10¨N6õoõuâò×–¯Ý8ù]2ÇY"êd½0´²v°Õ'Úö¹—†¿Û<¶]§âê;x†©“%7í3YÒ¿]=r ± ÙÔýU èÊÞ/ï ’Øüh»ÕÃèº åÿª<|¿ì^ØFe£`—!¢ÿŽ­sÅÅÉÞйÝÙýIû[7t?gko—­ð±+eÏÐ}?>˜®_Œès—CyRâ<»:\ž%õÛ±yŠî«ÙJdÙŸ÷åéòl¸m³å«Ør=ª1"®OŽëÏ #†û¬Ç)Ú$ï· YÞ±]bXŸ¡è3úãyõØ6¾úÊøŠŽyèÊñªýЫX®ÛIJ'H¬òAÀˆ{ЭËö’m õc®áæsÛ1|»öw+*†À5nÎÔÌýECšUýÛ猚W>åòc Ývͺ®á[q\G,¯.ìã.O¶ƒÐ¾^ßÎqƒkÚy½8ÝQ})¬»†J7ðÛÍ‚:¶]íÎæ¬jymæÔÏúqcLþÜYñA[Û.2v†¿Í/õ̬ íÊ^ÀàÑâaÛ×'l×mß®œ˜äã&3®¾ý×9Û[2F¨®{«¼7™¦íÌÿ Z8z"d2AŸ_Û^DÆæÉE|þ]å¸é¶=3ëªÔÔ†v¿ß– G¤[Îy*í±uþ mߟZ¨Ú«%ÇF€+1t5MsÅ2Hû/«ÛkiSµWßöñ{?NU¯cú\ OÃå¹ô•'>OnÿsË£EÁÁ=.»ÛGœ{éÎú¡S¿ÊÈ×®’*oŒé/ŒÓ'ãòçô›•½S¯¿šºÒ÷c{ºöÉû.HŽ]OPz†Å° Ñî›;Y9Q®V¤õ•ì-…®cš™cmtWŒ·${Ç)Ká¤`? •azs cÜÜÙ Ì.ºîat¿Ñ`ÿ½dŒ:÷¸zvÅœë2ÒP·³¯gË^,ÃѺ÷ òwò>,,.Œñ¬w{–wi¯âµË¨øš³%cäê¼^n{3Ÿñù›L Ú|˜öÕ¥rû¨KY¹ÝewŒhZqûIJ-í{æµï¸ú6œ—LyÊ{ËæowE¨q´â¬=˜ZÄç?*~Ámrlþ_5Íêw›ªoª~{\8‘£½ÕÁêŸÚ)íêR]W¹ÖœËÁöà»quî® œøg®zÝ+[Sô·¡¸0·/ \5/ ›Žˆz?^£_Ä÷¹A¬šÿ»pœY|ž†ËSÓíy_¹<1ué]åR¦]='ë/sŒˆï“qùkWì~Uð­¢^íxu0mû‚ä}$+^°iа}Ý˲쭯ÜŽÃ;g©‡îº‰U©>sÄîLàòò²ÍÒ²¬¬®Ëêê¶ÔÚ£¯áúœGÁ†›aA²bŒ¯ A¶20ì#ŒúáŠÙ¨aè…‹ ÜW3’ëf5¤̭ܽã1ÿö.hÚ½´gà™ÍøüMbúÛ<Çpyp1[^]õves ¥ÿ,¯Ó¾{žá=º¾£V€vNËFÄêõ¬õúÑ©™Õ_ö ÂéI|þV‰¼«ˆöˆËÿé™ë´äô_õïʪê»ë¦]®–du=,HF×¹½{ÓrðûÀ}3a)H*!·.·ÇßÓô‹Û$ñyšæ:ƒ>âŠß“Ëþ5úËC#ÆôɸüÙý&Ø_»õALÓ¾€ yŸ‰—­hAÒ¿ª¨ºŽ¦ ,­ŸcrÉç3þÀq51>Þ;gƒÏ÷*3û™µ]\êþ€ËJAŽNj*°sô5ìöºÔûƒ|­.©`ðÚ‚Dͺ7úÁUÇÃ=¶:ÎöéÞ”†/Ÿeíb±²olØ+Fw¶O}Ÿ]\.Æî@f¿¤Œw¶|às>*Nú600¿aFû³+ü¢˜­]öžþ]›ºÎÊžýWßCîlžþ²œy3º¶áuTï^KÄçß5þü«mƒU¬¸ü_5Žm÷—ŠOŒµër¬¶™­)7¬Ç%èÒ5/ŽC‚dt»×=¬ VP\·5íò5½ QFj?Zøów?ö¯Ñ/âûœ›§1+$±yšLl{ewûÈ•½J»sfùb´ÔJÂÒŽ|k\yØcD|ŸŒ«w÷ÞËúú¤]+S·/ HkA¢·Ví;ÆÕÊ^Aù¿[j‡%{w¨•ˆ=þËŽQ¹w¢vQº¬ÈÎò ¨Ý=ÏÒzVêj§¡FùÐ f>Vq!£¯Ñ¿,8î2Gê;µƒ×ñŽí¿}v5‘ ¹³¼-•Ë+©ŸÚ®1ËNPoʼnllç®Lèë5T^j'N@ìæ‰yOcl¸FöNAí¦vù9Þqbjt@m{ü–ÈãM/¾ÂÝD >v긳ƅÔNÝ:˜LÔƒ¦P¿’¶/¿v ´ëÿ$Y³sfÇX8. ãê;ÌÕéŽÐlŽ/xÁà^~F ’¨mãó?˜5^Ù;1»<¹ßûUtþq©úK¡váëÛº./mA²šUíÑVâEÕ‹|õbH–cÞ_á¯D÷‰Ú5jp¼ÝæS ÇýkG­4]´ï Hÿ,~ÜýØŸ²_Äö¹@žú±å‰ÏÓ° ŽUñ•Ýë#WN0üºœª¿ÜɽâXÓ_Å×'ãëݲcaÔ÷GjG¸³#7À}e¢ö½8y^V• â;o H ©Enûë.ùûÉáJPdÌ1}©wsYÒ³Á‘2;˜é^Z^e^(×—eÿyV÷¤Þ~0öú8ÿ.Fë§Ž‘ºpçò¿¼Ì &^솳¼}ìÍÖ»Á´Ú@+U‚/=k(cÔ½•í#o3|MWðE¿ØÐR[‡®ÜyÜ@X·]bßÑruÚi|þ¬Ú‘¯Ž—e{{ßá6¹°\)ÿNF«;ÊNÕß²^åhïÚ¤PÇf\}Ѷ·„^övÛrÿæ3Ö2ƒ#zûûæ4ù¹ÃÓÞIc¢üë•Â@ù•!X¹²Û#´KÖúÎŽp¬ò8®Îmס²l/ûëUÏÝéû›5ØÕmOÑ&æÇWOvW=7ŸÑ÷ãtõ×ç‚y²Æ–gtžÚCå1/Y\ŠºN3ÐGtÛêweGjÖør=Š1"®OŽË߃¾jãug—®¥»Þ¼ËâÛ×ÜO¼èAòä½Ï¤+–š lwûcÛWþÞ–Õù>}«ÝîS\?à¾ÒÕùÑ×ë?´òNZÝ)sÝ2üÛÿN–?ç»kÍ~öÕl¬:v¨}ü®9Ý¡ö½q}ߣòï¾Ã~K¸þM·?}þõqºìýíѽÁŒs{Ô}1eù»SõÙ˜ûqÂzßçVž¦»NtýŽ+×Ã#âúdlþº %N6Ûj·±¡—N^·.A7Æ¿“Ó“'þ”±±ê¬4­Þú[­¯‡$KÁ÷Mr¥’ì§÷°ù‡€ ¹-YsÄDj­ Œö–l9+3óûŽ?k%Ç•Ê*HÊ㾟B<èÈÖ¬}®…|K­ˆ¤+&A2/ç® Ú_ð~ó-Çl&•‘‚$…lÚ[AiÒIAòxÑ;ß 0O9ÁíÁ±UvG§ä¬L¤¤hû~Aò@­rØ""1¿&ŽûÕb®i¾óIrÍ‹ ñò“9Ž˜·wïŠF’÷B:åí¬5;;ë’D ¸} 8²çŽÙw~$ÑßO'Hôʞۘ͜”:‚‚Då7×´?+:çH,æAòêo“fQ¶6¶Tà{—-@¸ÕnycÖÜî‹QÌÎÏ;qnlƸï§$F( Ó 9ïs ‰; óƒ‘t¾ؾxn1-óIç·³»@îûi‚ì÷é³4>¼‡Dm'Ì ž<Ô  u€ ‰ #ù­Œ,¦·ä¼s柳k©JfNÖÏÍIf·à¼Ñ'XTúZ:-™üÐwðä „ ‚à}" Àc!F%€G+‚(@fÔùô ʘX+¶Ÿ«wŽ,$ôK¤Úü¶UÐ/?LI¡ŸÇòƬyc»5UÙÎeQ¿Ä1¹(ç½Ûª¯û²ñŒz‰ãvÙûû™ÒÎÙk•dkË~×J§¼¡êã)Þ2Û^¿8sk.¡Ú9á{éeBR³ó²[hÜ8¿ò–:߬G¼´3¿µ+ÕÎë¯BfÖ”g£dÝÚ9Kºo?³!÷Ý¿?´fþ¾þ9ýõp;}tRArÓ>)H:%™3ý(%ùf8-Y›M˜6Ù*[cëe#¥îÝuá¯{›\¯n{A2‘×éÈöö¶|æ3Ÿ‘jµ*o¼ñ†¼yõ¦¼õ–%–õ–´Z-3«ùƒü@~ï÷~O¾øÅ/šcFž³W6D2S ’¶ºU[H'Õg r>Îh[Kš7¶O#H¬âšwÍt¾ykFÁÚ‡fäçLÙîË—>9+‹_ªÞÌ ÍhƒÊ.[çnVfŸù¤”;OhÛ+£o-¥ë<©^h¹eŒÎµÌ¢¤œvXÈžß(¿ViÍœ;JtJc˜VÝ9ýÚô©ù}éÝ– YûÌü\Æ¿Õ/-Ê3ŸüÒI°n§N³:r“>yÎNQfzŸÛ –£×Ø÷îñŒdTßT"!á—üøëÞß&×ê§Œ=€ ™Ž×^{M~çw~GþçÿüŸòâ‹/J£Ñ^xA~í×~MþÅ¿øò­o}K^y¥.gß?“l6+Ÿþô§Í1£ÏÙ“ý9=;8XÑ(­¥Ì §6LSkî¬^S2zÕd!çÛ¬%§®‘Ë—¤Õ ’äšœ7Êæû|±:æííNfeqVý›Ú ü¾Ó<—ófKZç¥áóõZÊj(ã©!…\Nå¥( +h|È1jZ»Ò¼ßóÍ8ž›c²¹¼T[~ý#çeU6s¾‚T›öw=uýE-Êæ¥pÞ2¿kÜmòÚ(GÕIOÕUUZÊk”òª]rR,7n¥í/..ŒÁ¨ÑßO×öö,´^Í ´Oï\ÒzÆX•Ó¿B6ª½uùÜúÊËÞwC‚ÄjJ¹\Vís_Jû öL¹jK«ç¶GUò¹¬Ê{Þ«óñmM3¿húp&=gò÷¯êÅžÏn«¦eÉyÑn«Òy+$Hì™ùÞý¦ÜmøW-)Ýö ¶–º̵rvÛ÷œ~®‡á>]'ö=ÑQÿÚ÷X®n“ñ«#·Ñ§âÉLj-0)QÞšó ÿŠlô=c ’d&¯úVÁÜ£þvð×½¿MÜcË…¼Éo¡4î>cìÉÔüÍßüüîïþ®œœœ˜¿_zé%ù§ÿôŸÊßù;Ç ÿÖŸýèG?’b±(ËËËæwqç<ߟ7®5¥ŽíV¡…Gj£¨\^앎–þ]« IeH,šÄŽäÒ)Ÿ›fN M×h› }§øöy¢pÎ=Ÿm8†äŒì7ï¢ÎLjóYÅÌðwÊÍ™ãýFÁ}ÉèïÒß²ÞùáãÖ ªl½†dR3Cßi·ŸRÆWfU/¯8×þÖ}ÛÚO„Ž›•¼É‡e‹¹Ð9g׊7n{í×ÿÊ+¯H½^7O×öŽ I® ­fuJö¬ñšqwŠkï–rû —Ívõó‰îW­¢çÊóµãÏë]]ã<›ªŸÅýª3ƒׯQåêÈ–c\ZVÑô­Ù²oF<î|Ñm5¿[2~‹iý]Úî×Vq°"ã\ÌáQÚ˜:_2÷êxP÷}4®N"ï‰dZšS ’›ö©(A¢'2æçÐÊyn[MI«zM¤R¾’ø{f#5ºüu$VÉv7õ“˜ß½ZËØ’éùîw¿+ò'"gggòòË/ÃáŸÿó.÷ïþ]Ã?ûÈGÌgú;=ãù§ú§æ˜XßdÇ•b£¬`VÞŽ)Qwж;I^ÍúÙÛ3Ív,‰roÈ9.=²mÌÙ®1® YË7àÅ\ôÌ\uwÎŽMѳ‹½’™aM¦ ¾Yiû|çøfÁ6äæ•K‘åuÉ…}{¶P$óÆhÐ3A£Àû[¹ó˜Yܹ Ç€S†€^H¬É½bÚ3¼xmÔ8ù)® DÚ}sí?îFvÁ1mƒ©×,تɇk\ÍK±Õs ˆ™Ø»AÛëíW_}UîÝ»gþž®ícIu×3cÛ[Å htv×þ®WÝ÷D†Ý6³jF·h·‰*Éò‹‚¤dÙFìÌÜ–Ó-Ù]HØÆ]óÁ˜6Ž(W3gúðBÖî/Ùù™€«aüùܶšSme‹›¬™™Naå7~÷œk¤$wnÏh—¶ì>›­}×¼ÉÌ ?ç^ÛêÁßGÇÔ‰wOäíz?Ï¥}rrArÓ>%H’æÞÏ›ûÆuÛêïšúÙÍ®yýjÜ=cÜ U›Ý–ì›ò§ÌŠÛ¨vÈ™ßÌyqn­â†í~ÈØs£±$NOO¡m(h÷ŠoûÛÆ]Kó×ýׯ¥âÇ?þ±|ï{ß3„>f\P§1öÏ•ñ¹hŒÈrÏ6ͪˆ p.ù†E3[—ôî¾ìïîÊ~vß ‚·gh‡cHìU—„ïA?Àž9ÕcQÍÆž+×ûÿsv"Ïgyç³ÿL¬r 1.g‹Òe4²¶èòoVC¹fØÿ·š 务\lò9ÙZ[4ur\/ì¼Ø¼ß(0Ÿ»³å®±³5çP®ûIÉg褼óܤí_ýuã÷¯}ýõßÓµýhA¢7;p ÇØöv‰þ~~qM²å²Õ þn°|¶_âÎ4û¿в…qºÐÓÆ#žµa§ò¢gøó®QYhù®=ê|v[¥¶ÊCyÑum;ñþþ­Ü·ÎÏÆ «gµL>JEåz´»!s‰AÝÚ}t\ ÝN;ŒŠÍ%HnÚ§F ’rK Zx©rvLüƒÊojW¹myýj¢{f­4$4ǵƒ6¾wUÝUý5»¿f BÆž=€ P©TÌÖœ:nDÏ`^]]™w´Ûmyçw”‹Še>ÓF„v±xî¹çÌ1ãΛ[ÐÁ¿[²«ˆÙ]ÇÇ]¬úa–Þ2®ɵb`Ö0™LÚ$’jg¦9™]03à%ç¡Üô¾#T;Õ­·7¨ºá‹iY:ŸÄ·‚”ãnæwAÓ³žÑFå¬üd#\~z|Àõ&9k—uœQPÞH Åb¸ÆfÁ3 Š¡Àÿ錂ÛoûÑ‚¤Upf܋֨öî4 ’žKÜVvËÖ@8»x%Ó¹HAbï” ¸û ìø6—©!‹‰èþ¤ûuÇ»ö¨óÙgÆ¿Òàä%=ÆNF`«éŸÛO2e Òq‚d\ õGL+HnÚ§F ’L©#½²m°çUFZ¯*äšê³ OŒ½g¡•@ù#ÚÁÝÐßWU}Ϫ{xq·ÌØsƒ±$Á`]húŸþÓ’?ÿó?73šÚpp·áÔÿê÷è]p´«ÅóÏ?o~«{ÞÜâÀO{ÿ<2Õu%(š‡´ZEñ_Ü—­lÉqÙ Ï*V+C”ÁfÜWôÖ°*°Sç[Ó³ÊfÅFm­QÇ^Ñ3²[íE¸ÄŒ˜¥tfZó¾ÀÚ¬*bQ¾ôûIÇõÆ Ìˆ&CFA'dؾæ*Ü¿íl:˜u¿©Qpûm?"¨]o`µÇµw§Y”Ì®Ó6*€¶œ5.)þä‚2تΪ…Ììs½ÁJÊFiÜÛ«º3éÖ˜6ŽÚÙKï–¤Ç{NRÿæUžlãÁ˜ó ïîÔqŒè­j'~f~!;È‹UPõ?ý’½Ò1§b²z¡M¬P= ×1ur[‚ä¦}j¤ )Zæ¾7;øÍÚ›dè~Ð+­ùVÞÆß3‰´¯JŽk©ßó¹@ÐzaK²¥&c‚Ar›[¿j÷Šûoÿ­|å+_1³˜Æ0p’û›££#óýÛø­_î I×µÆ7{×ófn ¶?¸2æÖ¤¬vº©6ìY_geÅQO¥³ÒT»É¸3Ä»ÕP>:¶Ïvb1?”Ÿ²cÀÚFàà| }¾ÅÁù¼Yø¤r»h¨]œr¶hûì·Þüíì¦Ê”«6=#ZÇD|×Ùal_í’dù®•rbl÷¥YõžŽó€Qàn•œP«LUåêRÊ:«óYU'ÃFîuŒ‚Ûo{wÛß”lì+w,ÅîFÆv)òmû×Þç»Tz_ÎU¹Ï‹»¶›‰zçBpö¿á¸ÃÌ›~äº$-nåäܺ+‹N˪€šÕ¼Ì'‚(¾ƒ;&Ù±ÁÝÁü.h)Ÿ!}>×ç>¡â Ôn[çy;.ÀsGŒ2„ýuq_ípÔ¬ÊÆ¼ïðí·A¢Z§å]ËÜOp=\ùúh#¶Nn*HüÛþ^·OÚöן¼sÿÌÌÙcƒå$ãî·6Ô½¦ÛÁ^=ˆo×]oa« Æž†ä2³Ñ1$Œ=Éõѳ–o½õ–|ík_“;wîÈ¿ÿ÷ÿ^¾þõ¯›Ï4ÇÇÇæ3ýþþ,þåx¾YñäÀðøÂÛ•áw9œç×ãìd3›–²ôáOø¾Ïäªûÿg¼ϨÀdcØ*7±¨]»ÒÙj0@99Øe&¹°ë̜ۆÀ3ÆÝÿ·ü,ÊBÒwÎÔ¢”Zúó¼gÛn>‹ÊIûÂÛ³ñ\ÚsKúÚIðådUeøËœZp’¸Ÿ?¼1z¦4 n¿í-{7ªPÝ&Rs²•¾ƒdt{÷¤¸µ<^ì6zîÊBÊÛö× ”×mªw7rÝStLDO¹}Ú#1çˆÇ·ñ°‘/ภòbìù"vwJÌ;;icî™Á ù|ëã²éÙ€ÛÚ†y¹d+è²¥êcqqÎÚF êá•`©3sŸ ’TLPû¨U’›ô©è#·*'&ÂYÕpßïá®6¹«­±÷LJ÷³Ù@;šÓ¶ƒZñ]Ëm~À؃ @ÜíF¡ \ú…/|ÁÌ\~ìc3è¿õgú;ýýÛ‡——Ž |mYØï;7|û±íâb¿'Å ÏïÇ­ƒ‡[Voªs[‘ùï™Ï-«3}~{v™­Nï)lû˜ö¾V¹ÕNn¡ßGµÇMÛøA¤[רóùƒ©u™¦{Ë{Oùì›>^ÝÒ×QçêMXãûèôŒZ%¹NŸu®k1¦ïô:VLÝ=ˆ9¦å½ã†±$i¥äÝwß5»àÔj5ó&eþ[¦¿›leäñ§è¼¡8j›J7H´`}p:ô©íFǟϦž‰\ey²‰Óö©[$Œ=€ yòS=kÙï÷ úï§É5AŸù Y\ËE¾sB﹟^X“jçƒ×±?mÿ0Ú8þ|ê%j»ÕüÓù6ëqBb’>õA#Œ=€ x‚dRQq“c$TÀXa%.¦ý= Hn$J&…º@¼/¢„:@í‰BÃ|ÖkeÞ])I¿=/I.›•l.'ÅrCzž ™ ’(A’ÚF«*yu|®P'£Îí®HT‹yÉšcKÒê s¾NSªåª”îoü‚dc„ ™uIÑ”%•)˜(J9ÉæKÒ´ì’Bfxå ±3FûD‚$L2-çŽhˆ;÷ƒNÕR’oöb§ó !‹ w•'-7$k%ß±MYsV‘f·4 Hn!vÄ5¬Óùæèß©8 ÛhOÊVQ­@äלx;îbRA2›Ù—Ra_æá0»U{î|:é˜É ’qÝËæ³¾’9YpâCüBç&‚D¯%“Iƒ_ íV;@tìÇø v+&¨}6+’]Ly+&[ÞŽZ@Ü ì‚cp'e·Ôò‚ÚçÜX%Tü«Õ^ЈŸX˜¸'f$mùI0n%"œø‘…ýs[„2ö±ó»rÏ;÷œŠwÙ’dìÎ`ƒ|%æ¶¼]¹Ê» ¸“  ±ãG2^ ‹íF† É­á7¸•±ˆ™HJ¡¥Ju×ûzcCR3Ó»l9¿_˜¸D¥ ­±ç>ߟÄ ÌÍ9¢CAí=#tœ¼Ïn© ÷á²6s‹-“þr/æÌo†‰*cß{GKÒün°ÚåÚ¥E7 H&¥×”ÝÅ`ìD"5/¹ªë¢Ô’ÝßNX©9™M\©ÊvLÈ3kŽ qݬJúňΊFZ}®YóE'~$þÜÚ­¬°1tËZØ’fïwî™”ãf¹ñ îûBÂeíIq+øH÷| 'Þ-Kj­8Ö~a¢ØþzðÝ-@Üœ^Ç’V«%-«ù}ÇRßµnöfrKßêô¦?·“·¨c§§gò¡Ï×éÑqA€  ‚$ý¯ÿµ,..ʧ?ýixÂÐÏpý,Ç€'VüÙŸý™|÷»ß•_|ž0ô3\?Ë1Äà‰$¹\NÞzë-év»ð„¡ŸáúYŽ!O¬ ùú׿.ï¾û®H$‰Dzò’~†ëg9† HH$‰D"!HArAÒétÑI$‰Dz“~†#H€‰D"‘H¬‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$‚$$‰D"‘$€ ¹_ûÚפÓéÈOúSxÂÐÏpý,Ç€'V|å+_‘jµ*wïÞ•z½þÐÑ×áZ\‹kq-®Åµ¸Öí\K?Ãõ³C žXA H$4ºÝ®ôûÔ H>ÝŠ¬Þ¹#w–––ƒÿ¯T¤[?R¯J¥u޶fîHæ°6Õuk‡«r繬´o½L*?+wduÊü<.ÔÖU]¯K­k×ëêQÝ«cûï÷1_+£½nÐÎ¥N.%»êöÿ¹²jrtt&Ý[ÊóÙѱ4ºOF?íûÊ?ÜæuÕu27¾Îe¹ §6%@<ô/å8›•ÃÃ#9<Ø´ ±åM9ý´æ+{üp{×é^œÈjf[êÝ›M²,©6Ü« HAòäѯ›Õ’•lpÖÖ6FV¤reIýìTNNϤqÕõ¾·./äªÝwþß—‹zENOOå¬Rk„ÛK¿}%—Öà—u)«cNÏÊrau#ŽéªóÖ×¹lÔ埋º4.ß0†ÞòAY}_‘““S)×/¥:ß•úîôäD]¯æËc_}ÞP³âWRQå<«]83ãm©—ÏÔ¹N¤\»Yžzýb0“Þ½’†Îoןÿ†÷ÿ¾u!g§'êœÁº¼8Ñ¢pS}Ûà~Î'Hže|«kÕTþNU»ÔWC†{dÞû–4—Ê5I•Uç#Ô¦n›è:*«r•³+#I÷êBµƒ¥ê¿f~¦ ùîDõíÖE#².âÏ;\'q×ãõ7EÅíªÎ+ÇÛÆð.¨ººÿR ;˦=ÊÖ5ûΠýk…m#HŽT9Úýöý4ªíôuT?¿ ÛvßoO^V·¨¶õ·éÕEÃÜSýv°ìãÆ€¸>m·cWýk÷§Óò ÞÂ×Ñõtyq¨;¯¾ÕqíþørYµc#H¶+ª=ºñ÷‚äñsßZ¹£¤J„ ¹3ÄaÍ2úçõÿ÷ÊêoKŽÖÿÛVÆuÄJÀžþnO,³Z²=|îŠK Y×.eæ:êÿí3ctÜY=rŒ— ÙÔyÏ–+Lø|+eÏ0<Ý[ }¿.å+Ûh9Xò¾"µ7k²½<×Òæñaîά5lèòÄ^mÚ>±ŸnÝþþøB”åáúÜ;½p~w$™u]¦ ‰U6mæ?×òÞ™SG£óÞ®D¶é±“ÿ¨6å²U9Xþíê¡iÛøúÖloèXwµ-þ¼þ:‰¿Æ°»àúÐyu…ëä _øƒÁÿ—Ôu§ì;Ýáþá’­½ßOG¶]WŽÌq;rå›H0÷m¶6qYÍ}]±ë¾Ü ç^®¬Ê~;<ˆíÓ‘í¸¼gò¾N³ò¼/O]µúº:vÓ¬žŒ.W°ÌXÖžì@<‚dyÇq±²*>qà3 »5süê±mˆôÇøjG¸=ç̸[¶±}âùðï- çAs¶§Œ“%[ÄXå½b®udþ_¸¼/Ym°-mJÅê;Fmì´ÍqcéA·n+ë5ÃÚvŒDuì¥ZÁQ+§Æ RF§å̾Vm¡qžemA´rhÇ4œl:†ÏöéÀ(Óyw…•ç®Ö—3c”­ Ø ’š^¹P3ú®QYѱ9*¿õn?6ïƒ6=±óqU6«c¦ÞU;®úó¨Ú{S×Ñr´ ©eW͹œ:qÓÍ“‹øúnÛýíŽ`¶qmɱÉó²œ^ÅŸ×_'ñmîã5Y¾c¯LxýjgÉ®P[öê¬b\Õœ>7Mß¹^©œ»ÓOãÛÎ͇+~¯ÎöÌÊËéÕ”erÃrWm*CeÆôi¯Ïìz»8Ý Œ Ã×yÎäɽæö±}Ou/ìñd%Wˆ-׃vÙ|`&5úSÜÃ’Ç^¸6ž=ÃeXhãhs'+'eå²Õ“à ’®;«*ËëÛrT8rG tKÆø.ï-›¿ÝU‡ÆÑŠYq¹òŒªÁlñEaÓ3Ž*ÆPZ’½ã‚Ž¥pR°Ê¥¨cíÿk#óXýîXsRÈÚÆÐ^y(§Ú \Ö«öjÍ%w&Û23ÏzÛÚÕ3´ª~ô9 'r´çlU¡É‰mŒêë®ÊÞaA* ×u%>ïn›êºó·©Ži°¿ ¸£UOÔEÇ—ø¿³g©µ±W߯:+'~CÚ²W¾öÊVìyýuߦQîu–\\\H­R–“ãCY÷‰­°‘î™®ïDôßÀ¹ãúé˜~׷ůÝûr¼ê_)¼~YÂÄ_ö¸1`\ŸjGgœpûûðulAb>÷¯ùÜCãÊåŽcöù§»‡$µ Yq‚qÆKÐXî^–eoÝïÖ²,Çõ¸ýÿ+)l#Á=n5[ã²sZ6«(úß•u€¬g›½ü,ËÐu ¯r{0[»¼¼l³´,+«ë²ºº-µvèXeø¹®Þï—WÔoUÿñðîNöªÍªŠu°w$:S¾ìÚ€-¨–c®]q][–œó©WVÕ9×Cõ4y IãTdË~ת¹“÷¸6m›àkÿwn@ö(A²b\ó®ü;`9犫ï™™êåÀuüÆjÜyýuߦÃÁðÇÛ>"U'ÆõoA2Uß™XDôÓûãûíµ£b3ìÕ€³«ÈÀÿiÊ:^Œè/cúôІjœYžTD®ÊÅ—+pþ)ïaÉc-HF.ðUQ;u;¤Š•¨ŸØ®?3‘~—­Ó£C9ufêÛ*ÀùpõÎÀý"@_ ›KžÐ9k»³Ö¶ÁqTïFzþüW²¶+IÝ¿ÊP)ÈÑI͸ÝufW7Oy(Žä¤a:®N¶(8T3Ö—²íùÇïÈ¥q-;¶Ý~ü;µër¬¶ƒ­]õ§_!QyÏÛ³ìý®%å£Mgfúؼǵ©›G¿«ír–$þ™ì Sn}®¸ú¾ï̺ÖЮëÝA¥{ÞÀ Il›>ˆ\í[?¬xßù ßQ‚¤û`Ú¾3J¨Ø’þƒ1ýt|¿ë;îK«Fü+½þ¨ëÅ”Õu!óú€p—ô—}’þ2ªOO*HºC‚$\¶¶­.Éïü—Ør¹çÏÖºÓßÃ’'WèíWû¶a²²WP;e)—ŠÊ±1 V"Þµ0$W²g öm9S~÷ÖeMöVîŒtº:Ýq |Û§]>ð‚ç/Do§Úö­¸y\ZÏJ]íòÕ(:ÁñÇžQé?Ö¼/Eû›•ÕŽ=*¦ä`5Æÿ|à~æîTvâåÜC®ŒÑ§ Û‚Ú‰éê²";Ëw"¶TlÛßú¡-Ȳ§Ê=Níôu–µƒ}O.û±yoS7ë¦M.Ü:Z‰!YÙ;‘KµÓÒñβ _ß—²ã†Ÿ¨]’®gv¬ŠÙe,þ¼Qý.ú¡ÍÁ³~¨ÜÖ”€«ŸxÁé:X:\/'Bo=m߉v9´·¾hßí§ãûeÇ èüìœEo3<¦¬ýË‚r¬v¼k8»]é¾[*ûdý%ºO$Ã×±‰›¿¥Í#5ž¨ÝËŽí{ÿ¿~ý˱åzжϿ²s(µËìÊÉÞºìM¹m9‚ä¡ ’Zä¶¿¶øJÀ9\ ’Œ9¦/•£àîLKë‡Ê}(ʈÍx/Fl× —3jãädÔKÍÚö®Ržïýÿ,`(ùË`9ƒ ñ‹³lÀ=liuOêíècõg'Ž?¼Ëfvô‹ò.Átè¬.„ÿof·ÕJÒÎJpG¦£Êðv½ƒzõÿvc»ìzp£íãÚØ¼Ç·©6Ïl¿|×…n}ilP{`‡¥“7º¾õuʲíw7[ZW«eÝ Î¬“¸k±‚î>ªvvÖ»‘:žkRÛmÏ=oEN …éúÎðŽhën9”ñßOÇ÷»Ëû^;¬wG\3¾¬vðùúë“+Hüeÿ~eL‰éÓf¥c9(HV|+pþë”*Á#êú^òÕÁúÁ©YU/—z7Ò¦ó½Úp ¾.ßÿwü Hý®Xj…¤ÝíOq\_¹k©wN´ÕËÌì"w4É´¼xŽÔZA³·dkÎ1þç÷àö€X+uì㬂³‚‘R+㾟R´ò’4ÇÎJ©ã~–s>ÓçSyNºÇ[Þ*OÊ$–÷}ºÐŽ[)·’Ç‚Þùn„ÛÓŒ·º`¯& ÄVÙ’ãæe €øï§$½ª“§dFZ^¼Èà|Z¹âb!ïoå%áÏÏlXtdwŽ@z@( ʳ¾àv_Œˆbv~ÞqŸÒn]ú%ã¾$k©Q«2Jp(—¬­ÙA`üÜüœ÷}*S4ç¨îÎŽI&«:Z5r‹ƒcææ%åÝûƒõ$ïViÍ1Òç¥Ü }ßÌy¢b£tÏ ™_ˆƒÄlFªÿŠÇ¨ï#VHfã‰Kç*P=øn~-ØÒ·´›–d"a®»^Z‘)í.z+=n€|™­Aò¤á d®…‹r™jµ¬)¾¿æ\-±B¦¼¥Vafçd!“U»n)±FÖ zºˆõÄRÇ·¬$Oª ±c2’;fMòýís¾?½Ââí € yJèH~+#‹é-9ï\çû‡“§rnKæœ@|'’ÞÊ vå@ HAòøñ /Èw¾óùîw¿ ðT¢û·îç R€ y ©T*ryyiv²xÑý[÷s)@<†4 ùÉO~"ï½÷ÀS‰îߺŸ3H‚ä1äÕW_•~¿/$ÒÓštÿÖý|Ô=ÐëõäääDÖÖÖäcû˜üãüåWõWåÃþ°‡ÙÉMõ™Ÿ'åûøÿ¡üê?þUùÈG>"ÿøÇåsŸûœ©] æ ‰ôÉOúS_¢ òO}êSrxxhÜ»:ÎfõèÝwß5e>::’ßùß‘ßüÍß”b±hê†AA‚ !‘’ ÑŸý·ÿößä_ý«%µZÍ|öAMnhòòË/˯ÿú¯Ëý¯ÿÕÔ;‚AB"ݲ ц÷ÎÎŽüÖoý–Ü»wÏĘèß¼÷^ßüû¢×7nZ]zuèüüܬé:ÒuÅà€ AH·$H´+Ò·¿ýmcp ±,˸-u»Ý Zx„?Óu ÅH»Ý–7Þh™:ú7ÿæß˜qß@ HH¤[$o¿ý¶‰ÙÛÛ“j¥*o¾ù¦1Â5Ú wùöÿ™™™ðKÿ@>÷µy¿}R±EÇ œáïuý蘒þð‡²¿¿/wîÜ1Ÿ1À H$$Ò ‰v?úÆ7¾!Ï=÷œ Ü®V«Òl6åþýûÆè~çw<þzE ’¿-Ÿû‹#ù‹­çäWþ¶&¿"ßxãÀïžtùï¿}߬éºúÑ~dþWVVä›ßü&®[ ‰tSA¢WôÖ¾:˜ýÅ_4+$¯¼òмöÚkæŠÖ[oƒ\ó­ÌßSäïI¾ù–¼¥>?üM-HþO9üñ›jUåRN¿üßåð»çrþ×ûò™…ÏÈ—¿ÿšYmyóÍË×þûº|fqQ>óûëòµïÿØ|~Yýkùï_ü²üðµ7Íÿßzó5ùæþ—/ó‡ÎqoÊk?ü¦ü÷ýoÊkúûתòå/|V>ó™ÏÈïö ò×ç—ÞïÞ|ó\²ê»EuÏ~ñkæ÷o†x+â3óù[vyî;åtÑŸ½ñÆæ}-:†D‹5]Gz%éOþäOLÝ1È H$$Ò ‰vEZZZ’¯}íkf@ï(u÷î]#J~üãcüÞ«÷”@yUþ*ýËJ€ü²|õ•Wձߗ?ú°$–¯¿rOÂWäÙŸÑÿÿÏ¥ë3ÿÿŠ:ö»òì/ÛÿÿßÔ»>þwç»Ol[êßþó÷¿úóï›@ú{gÛαŸ’ï«kêëîüsõÿŸùŒTÔù?ó¿ÙÇþßþ¿ågÔ¿ŸúŸeó}Oyßýïö9þÕç¥îœÃpÏ÷wýÝ=]¦×L9u½4î5LÙu¼R¯›:Ñu£ëèøøØ¬(éºc@ HH¤mtg29==5+Úðö„ˆ2Ôõoôj‰æ¯þÃÿÏû?óó?oþû‹/¾æ|ÿ’dáñï¿têsò…9óYæ+?ò~·>§÷¥ðãSù×ú<¿±øíÌÌÏË®9oAþ¡úÿÜNäµ—þB~Y_û_É;wð?ãóšüèKÿ¯ùÿ—~ôÚÐo£¸¸¸0ø?ÓåÖå×õà ]7/½ô’|ï{ß“?ú£?âM÷ ‰tA¢ n튴±±a\‘ôßÚðÖŸ»†ºŽ'¹hÚÿ~í¹ÿGúKþÝúÏòÜÇ~Ùˆ‡Ÿÿ+Rº×Tß×也Wbâ·ž7¿uùò¿ûyõ»_•oÜ|Vú/3Çþ§ïÔï?&¥æ=Yûe}¾áñ±çÿFî}ã9s½çÿF÷ùôÏÛ‚çÿùاåù¿þ›Ð5þ–üªz£¼Þ¶øWßý»/ÿM /Ó¢Ëí WœhQòƒü@677M}±Û‚AB"Ý@h7$-Hô I]¹&éÏ\!¢]’4:ŽB“ÿ½ÿCúÿ‡ä/ìÿ¿¸óIcøÿÚÎ÷ÔÿïÊïýÂŒüÂÒ_y¿×ŸýñßWâà–ä%ï³7änþ÷ÌqKõ’Üý«%ó÷çÿêÏåïë¿÷¢|^ó·~gGþ|éÔ±(wÝcïžÈÎÿ}Ï%ì×>_PŸ7äóÿhÆ’_ûä'哆ߑOÎRvN¾¼L†¿¼úï×_Ý'ªNô¸ ]ÙJ¥’üçÿüŸMÝ!H$é‚D‹?üÃ?4»F¹ÁìÚ×¹j×AßWWWæßoþþÿi‚Ø^µÿõò—äg•0ø…;_Q¿yE~ÿÕß¿{d~ïòð1ê³þH‹Š_¯¼¬~óê7Œ±EÆoJY}ÿ?úÇžèø—›ßñÎåõêwdágÕ÷?û»ò²w_Ã×Þ \;Œw|Äç~üßé:Ðu¡ëD‹½Jò /Èg?ûYSw ‚„DºA ‰6²u ‰jׯ¶^ p…È[¾¶»lý¬džÿªüåÿøSùõ_´EÃÇÿÇ‹êû{’QÿÿÅt>pLó{j~ó‹¿¾*߫ߓ¿ú§ò÷´Øø{«rÏü¦)úOìóüìoÿeà˜™™_”çkιš'’þíUùê÷~$µååã?;8GëGÿã™_ü¸üå‰þþEùËÿúŸå«?j:Ç~O2¿þqyþEçÿVK¾ºúÛòÛ«)M7Ÿ/>/¿ýë¿-ù£–ÙòؿӖ® ]'zÅD‹8½M²®3]w ò ‰tA¢ n½íŸÿùŸ›¤´Ñ­?sßAâAà·?z1âÌ/Éÿûù¯IË|ß”ÏýÒŒüÒsßz±àþâ?Êßö÷·ÿÁsrÖô}¿ó óùsß¼gfÉGõoåsÒtÏÓú®üÓÀµE¶¿}Ï;ǽoo˯¾Ÿ‘Ï}»ißü¦ü’ÿü:¯¿¢_ìø½ó7¿ýÍ1ÿÑ=ÆÁ}‰'Z”è ö¿ø‹¿0u¦ë‰AA‚ !‘n Hz½ž h×ïïбîKõËò“ŸxèßiüŸMEÛ²w³jY×?‡ÂR¢àâ¢%íÈïÛÞ5Ú7¸†Ÿn·kêB‹-HÊå²<û쳦Ît}0È H$$Ò ‰ŽÐ†öù/ÿE–——M ¶^ ÐÆ¸þtèºÒ+%Ú¥í÷ÿ÷M]é:#~A‚ !‘n(Ht×k!òðF”èU=ûOˆ-@týht]é:c€@ HH¤[$šwß}׸!iAò›¿ù›rrrbD‰» ðAKºÌºìï½÷žÙùŸø„©]GÚ‹ÁA‚ !‘nQhã[‹ý¶öÏþóò¿ñòñ\þìÏþL*•Š1Â?(I—U¯omm™:Ðu¡ëD×®#vÉ#$ÊG\_‡kq­Gy­° qÑ«"ÚeëÛßþ¶yaâ§>õ)ù—ÿò_Ê?ûgÿL>ò‘| ÐeÕeÖe×u ëÂuccP@<~üã›À^½³ÀÓˆîߺŸAz%@¿P¿üïûßÿ¾ 9>>–|>ÿT£Ë¨ËªË¬Ë®ë@×ì H$€ :ý®Ù®µß8ç˜çxÔПG× õô'ÉcAýxSîÜY—Z÷ƒÝx—傜6Úßµåp厬Ön|ÚáªÜy.+íkoÕOeguYµ×•õ=©\ Þ¤]?ZWŸoÚíÙ­ÉæÒYZº8ÆwP‰¸Æ¥dWÝ߈õ¾µG[ÎŽŽ¥q‹}Ò_÷}«&GGgÒÕÑú‘*ëªTÚOf¿½iŸz”mz˜¹#™[¸&gLî_ÈáöŠóý’lfO}õØ–“ƒMï~Y?8 ÔñÅÙ¡¬8÷ÕÒêNà¼6݆ÊÏêˆüÄ_³U‘=wlXZ‘ó‹øñîdÛŒµ‡ÿŒÕcòʈ{ô¶ùdô¥VØ“e§ß/¯Hm¢k¶%«ò¹òHïoxªI-«È+Rn€¯[‘%5ÀîU¢IvY= " øéhv$³]¸–ñØ®:­ÉŸšøí™|kâÞuÛ3£þŸ±ÛS•kE¿¼)‡GGrxxh“ÍÊqyøáÕ­eÍ5vŽôùÒ¿fÚjæá\¹EAâ¯ûÚÁ’1PÛ¦^u™—ŸXAr“>õ¨IA^;…Æ#ìGqýÙ’ìÊÓö‡§e9ÉÚâcý¸áÕ±Çgrv¼c‹ø¬=ô/ ¶¸y(e5‘±jîÁ¹¼Q~»r¼nç'{R–Ó#皎Í+Ù3FëºÊe9Ü\2¿=nŒ˜±VúøíÓ+Üä« ø¥(AòÛ|B. Û¶ÙÖ×<1Zwîl;Â5þšÝú¡·Ï,ÚArAg]Ö+rzr"§g5±Â3jÝ+©œÊÉé™\Xm¹j4äª;ɱ}¹ÐßžÊY¥>|^ר¸º‹«¶´/ëê·'ê·¶aÑ¿ªÛç-×½^ÿ¶~q0‚.ê ß¹£¯iÕŽa¿}\‘+«)H–TùêeSÎÚ…5ô›zùLNT~ʵˑõØo_ÉÅ¥å+—r½òÊQY\ȶ#<Â+Yö ¿ß²IÅ'HV²ÌZõÛR9Þ6Ç‚*CÛÉKßjÈ™ª÷““3i\ùê¦oI£q)–n—“S©]^9mß•‹ZÙþìÂx—êÿºn* ¤Û´¬ÚB·G¥~éŒ]5C·mlGª­Ûýx#îB½?ãªÝ÷Ú÷²Q7õê­*]Ô¥qÙöê¾ß¾”Âβ©Ë²jG[¨þeIÝéÇrF‰ÃÈ|Ï4ÞN}<«‹†Ô¾ëèºWå¾´ú¾>5Ýõbï§m»Î½}ª öË®ý›Á½Þ_?geõ;_[\^ØmeÎßQ7÷¹ûÛ«F̘3Éø4¢?î[àgkƒül/«•Ã3Ï`_>({ßUVŒ!ÖP/Ù<Ý^2Fš+@úcç\Ãqm ú^]/ & Œ±º¤Wvâ¯é–å¨ÞõV†vôx±}-bVm#Ó“êõ ³ZèŽç:ƒ1¼kú…ûÿ¾u=Dõ}Ëî?g5÷üñã¤×æj, ´—jËš9î4tÜ4}~úûqTY'»ÍóJ—SÕmY?c£É#js=æÕëÁçò•몼ýˆgÝ•ÃA^Ûe³Z²sv5Á5íU’¥½3 BÉm ’¶;³ VåìÒy˜^Ú3ð!ö*Ö˜c-9Z·­öÃy¨,iuÕYppÄÊžþÿÞÀ5C ¦få£lÅ\³->—¦å¡•Ûe+œ‡Íãºsšl‡\¢–6#g¬ýù‹*×å=¹Še΃H?¢þZM.£ôÛeõ sgµ]¢Œ¼¡Òu]ß{ŽáØ>³ûÅê‘c]ȦS~·îÏVçWþ‹Ðõ\kÖ©è|GÝ;·Q¦ß¸³õÎŒöɶ}_©™ÉAŸšîzq÷ÊPÛ:+s+ó+7ÏvÔŠÍöp]:ãÁóúÿª­ÚµƒÈ:¿³S6ðéÞJè»u)_M7>EõçáYkÕþW )Jö° uk°bªï›ߊi×[IsVLmnO,g‡WQãÚn¸?÷=Q»Ælš±íD}ÍÆñº#–ç*,;†íð=cî çžqï77?—'öJÑöÉ¥#Üìï/”A_¾WöN/&èû+R{3nœìªÕ³p;:«¾WesÇš#§\ÓôùéŽ»£î‘.[ ÍÝçÇõ‚¹–U>pžuå¡ ž£•ÐóÂMú¹8É5í߬~à]À$·,Hl?cm„ÖÓy8ƒO-7kÿì¥m©X†Ä2@bu¹Õã gæ§0Òø¬emÿÚlùÒß§;öÃàÀy8؆œ=-{†…å ¬‘×tfÌï¢\¶Vüål;O]gî,–2˜cƪسHÛ§—eyÎËŸ[®Ç÷âtod´£¡p9˜UíZ—rqq!———†«‚dÕ5nWVdyyY±¤ü‚"޶·l—¥í¸{©ß^9..Ǧ¬Ërz5ÈÓòNA.õŒ¡ußn›¶¡Ú­;Ⱥ]o}ûajăj‹åÐñlgÉ{°ò1¦ÿžíéãlÃÚ*ï ŒÓÆG^½ùë¾’eP¹3¨ÚÅÃùê>zîŽ<÷|%hˆ©|í,ÙB¢¬V \cÉ3tÝr8ÆÔäãS|?2±7ž0ÃGuµšvy2t/ºurÜx3Â…SÕýH·ÎÑm7ʵ-ë›9ºèp\³1?ÒMHÝ×ËÞ¤‘þÌ(+‡vžl:bÁä1§º¿\ñï¹öqe|úbE­œ^¨¢¸qÒ­Ûmg’§ë¸*­KaÝ™ÝÀ8¹iV¦éóSüvLYcÇnguÍ;V'Æíi9.Îë!·¹ ›Ž â‘sFüÎY!QâêÒ33Q±2é5¯NÆO$‚dZAbÿ,ªYî_·ß­ñͦø ûØc߬9++*ˆo'+'ÊíÊêNækçwð´gð–MÌÄ$‚$òšþߤåT+CKæ÷ö®rÇ'9>.ÈI!k—mPØFq;4•‡(ARÞ Í6z†f„ YZ•½ƒ=ÙÛÓìÈŽ œìFÆ© â)ÜæÿÌ´u6˜Eͬ\Ûj‡ç3o%Gî¶ß¶Œ ªU”»Äñ¡¬ûÚÓÄuØù\2í_Þ[6»3º£Ó¯"ëÞ-9º&ßË#b†âòíêwóú°ë¾ì‰Kmìt‡úÔt×›Dº®nßtŒ‘}Õõ‰×Á°ÛrTЮ.íA}ø‰»Â±nß“®ºíµ${ê^*KAÝWÆp\^=ŒcÚñý¨î’“†'|Œ0Rî*ozî\Âä¨þ†3s]žPŒn»QîNª”OœcìUܸkNcœºå8ñ%§Ûº¯ig¯(ÞY²c®´ÀtÆx×]giSz¬+œÈÑÞª75®ïÇ“v;îÚ×vï»g?cBFùq ªLyMþÛqe»íú]2“69ÿïq›»Ç­/y+Ž£ÆÖ+gB@?3vv«¶:~j¢kÆ<ÇArmAR?\1èn„ÑZ~ÃÛ'CË»z0Š=V]«{Y–½u¿kƲ×Û’àÿýFÇÐàè̺ƒãÈkv+ñ+$K¡·œ?ªxnöêƒfE¹¨ÁÜuéŠ$AƒpTܤFÚ^!Q+#W¶!µìš×Œ! Õ¥}Íå``ùЃwÅ÷½ûÀ¯Œø¿&_ö ‰ãmŸÛƒª3ãju Aò _7ñç gãõ¿êºë*YÏ:ê%NÄ•#ä"“ïh£ìæõv\?ªGô©i®¯ Õ¸oÆÞ/WR8Øövé1n1Ùr¤ 9sVT÷|®ˆîì³w?-©¸ŽÕuuOm¹ˆcâú‘íJµØÌ£n .µ*劳Z„ËV7ªؾô£ï³è¶‹2L£Ü(œU™Q×´Çð`P}-í¾ãðžñoVÕ*DÅÞqî¬vl~S(Û³ãZ¬·+Yo'(o¥ueUµËzĸª#µâ7Nš¼FÝCJ$®­(µ}ÓÝc“þv\YãÆnÛq%0nÚ›tŒ$¿Í=aä® .Åï Ø®ŸÈκºçÔ¤BAÅœ]3vlÉ‚¤62~cS¾ÏÊÚEÆ JÎŽ¾ :7èNFqÇ^(_ÙÃcgFLù&«pu„›ÌM‰ë­óÓ»¦3ˆú\‡vÙÚ«ø0‡Î ²=[zgó4ð€)Žä¤vuk‚DÝf™]¹Õ»Ã.!{cÉò„;„VHÜYr_¸.PÚ·~ØØÿÀ¯¸|çÜë‡Ï Ço”¸"¡6Ñ–¤jfÓ‹#X–³¶;Ë~'€U÷ÝHñ3ZŒË÷´‚dÒúlç|ÇGÆX¼èO-H*1‚į\_Xj§ C9uòÖV"®ºPPÔ’ÍãF„PX5.wÞ¬m¥ G'µ!—­øñ)^\6‡f²Í±FØ"wÕ'lßx-tº¶‘ßS+¦wB1'CÛ¾F´]Еʞà L:8ÆéaýÍØkºô`5³mDùÕã¡Õw禀KãfdÇ:hwél¢¡¯i×¥;¶v"lוÚq`[ظ¾?jœ´ŸAëRïûfóW—ÔýPzÆ qós Œ—ËÆ™7+gq×tÑ•Cµ[TwÄìæ’ª­r¯.Μ KÇÈ™uÚ>*«]e”¯ôÁê„1$SãsõDŽÔŽ05µ#ÍqVV—Ü%õÚÈm¯#H¼T”¡p¢v|ºRõio¹i‚GòK<𻎰Y?TÎ]µšvzà¹hÁåÎêíZ/TlLãäyYWî£Þ™puºãOv›´]·g'¡pÝWp½õñ4‚d\¾ã·‹¾~}¸FŽíè‹K¶ŸwX,M(Hâî•ë 5Iáç3µƒuY“½•;Ž»Š-H–” ñÜBT_:S2TÔ¢eÞɹO—Ö³RW»‡5ʇÎFÇC‚¤;f|Š]isð•=³C\ý4x?qcÒ+¨jW§Ëš=VØÁƃþ¹~x¦îùº¬Œêñm~gйߖ6MÝ]ªw¹[®^Ž»¦;a±r õ«+)nŽp¥ÕvW;wqƒï®§î–¯«j×25^VdgùΈúŽˆ'û—¯/ôÎ\Î6Ëzwra§ w@¼c7†°|5Õ=6ÝoãË?v¶ÆÕíxáößÈ öGÔæN,—;Ú®­Ñ[›UG-ˆÔØhyåvÆÑ ®éný{ª„[ÿR•guSN¼0A2ÉK›"v÷¹ãsi(ãÈ¿£ÕÊöQÀ×·r4ØQdsgÛ‰­°¨ÑÇöÇÙÈ¡\öG¬àøgŠõƒmH8.gê%S{¾àÀ•ÍußlUÜ5U úæ²·ITÀ¡ÞÙk«¶ŒõfÕ ÔöVƒ;peÏ"g©ŒXxÎ$Ár¹â!.ðªv"Û+¡Ýh–WÕ{ꃙuóà_õ^Œ¸zgò—:êÒ̪•e{Ùw­¥u5ûíßs~eȸ­ØB.Ú} º(©óØþÊN,5ØYGÏ£;äfži\ñOÞÿÏ"ëþòtÏ[Qù~e¸á|ûWbóa”ݼ>šö,äÒ`:÷4«‡u_¹¦¹^ü½2Ô¶á¾ïT/ fÛ]¯NÌ GmA’1î&«ÑcŽ3|q– ¸|-­îI}DÛÇOáþ<”ׯI ¯Ë›¾±­{!«þ]’ö|/êTcÉáfÀõó¨í¾×vÃù9µc‡¼{{[Ê—ý‰®ÙV øw<\WcPôvÔᜠQè´qøÿî.P;+ÁݳŽ*W#W•ƒ.lñã¤ns;®¸/´Ô6Ýþã–¼M ¦»Ç¦»?âÊ:nìî_žÚqUÇnŒjmî®ÐyméºÐEíꨂû³ëK‘cþ$×´Ÿ?ëΤ•ÝןgµArkô»b©Èv·ò§WÁÒ'—‹¾ëpIˆŒº»Ö5'«‡«³½½ ÔÍ_ÿšc×Èq2nln?Œº~¸eµïþcÑæÓ ö3¦?Õ5íMÖ„’G‹ÙrU@{Yõöo{uDÏr^ÑàVWñ6e»ÀCàv°]ë–'Üì`ìwجG¾O $™¶œȺ~Ç…Ú…d'«â3x!Àc~×ÇÊòÆ#ÜêÅÃÊíó¨†{‚$@ HA€ xdè—vé ÿ$OÝŠ¬ê—:,--)ÿ_9¨H·~¤þ^½ö[}´å0sGVê°Œö53‡µÛ;ߊ*ÃáÓ÷B±¾U“££3ó6àÛksu®Æ‰¬¸ýkïÔëÝú¡ú,3öõÃU¹³r(í§zðx?û•~—б4ºOGÿ®éþò\ö‘ô—[U½¯ŒxQáe¹ §öSÚ/B×¹…ñÚ?–a˜‚äI )ÇYõ–õÃ#9<Ø´…Èò¦©ÿ«ÏËÒ®eÕçË·òÐÍ>§ŒÒç+ô¡ZØV/l¼µ·|«2,«2TžºÎ[;XRí|` ¹ÛksuÞìŠy{o¡\–ÚEÓëÝ‹YÍlK½;îøe¹³”}êÉûÕ¯ºµÕ>KRé>ý»QØ‘Ìvá‘ô—[GÕ»š4ZRãò^¥ýTö‹ðunc¼öe&€ yâÄIݬ–„géì‡îŠT®,©ŸÊÉé™4®º¡© 9;=‘““áï‚ä9Ÿ é[ÑÇu¯¤â\ïÂjËU£!W>ãõ²^‘Ó“9=«‰ó¶aëòB®Ú}ÏuèBwz*g•zìqí˺”ÕïNÏÊêúÝ€á°|P–ËFEåûTÊõË +R¿-µò™ý]íÒù¼«®[äã²Q— _™­‹º4.ÛÒ½º0Ÿw¯êvùÊñ勾žþÜ’FãR¹J©zÔu|:ºmúíK)ì(ÃÿΦ”/¬[kó®u)'{ú¼ÛR»´T=ùû@W./.³˜WŠWæv?(H,¯=R¯7Tôí>aÙýä¬všu¾o·å¢b×Oí"üá®×t;‡Ë¡ûÀ™ÉO]Úm»>û¾þ\7õ~¬÷@½^©¼úò¥Ú¢¡ûA×}ݯ'èWþú ôùQõ0>úúµÂ¶1* Uç7ÉG¸_ªúRe÷…W _Ÿ¿§+k°Î/.­1÷qt]Œî Ñy$¦½ëréÝçqm ÎY)›:n¨1*»¢ë}Øà·jÇFlWT¹»ñ÷üTå²ëòÒêûîéK©7®T{ßf¿°¯c)—ÍËšçJýrDÿ ×ö8£ÛÏŒAö‹.Wx,›ªÏ H÷-íZ~(ÚÝ;CÖìÁþª<üýÞéÅXArq²7tœ73vuê¹ùÎ[±ÌyŽ7—Bß­ÊÙe?òšÏëï÷ÊêoKŽÖÃçÜ–F?j–u{¸¼ÎµµëBø»•ƒ²“ﲬ‡ó½~¤€ óùÒžó»ö™12î¬9Õ…lêºWb°r°<\ßË{rÕf£®§Û­rÙnÇnÄŒâÊà7KrqKm,˲”Ûƒ>Ю/·m㢰nÓM³zâ ]O—§NŸY?V†n[–ü¿_‘Z7ØöÁïm6ëÞêàÁJTÛ#û€]Ý~5Ù{ióxhF¶ëÔã‘Sç—'ö*äöÉ¥ãòc|q?¾_©ú9Ý[ }¿.嫨rªzxsºü¹dkoÜ !A_Ù󵯓ωîÅ)ËZa«ìéÏ÷Ì=0ú>^)ÝFçÕ$:VŹW¤¬üØ>bÉájD=g+Cã—¿¼fl޹ç§+—¿=ÜûuÉÔÝå­ö‹èûpU•5ªÿ=ïËÓåÙð–-_Å–+<–YSôYÉ H–w7çÁkŒk×Ðö\$úrf«C†B@´íkéé•ó€>6鲜ª™®cý°^Ú–Š|Ø(câòdÛ/¶aÙwОq?âšÝš¹æê±m8÷ç!v…°ìèö‰óÿKÙ[rë¥mf2ï,mª¼õCÚ~ðµUÙ ë®8² РǀÞ,¨Õ„=U¾%ÛP²Ê{£ÛäåÈü¿ DU-»j—õì"pŽá|Æ_oÐn'vÛ¨zZ½= kŒcøØbæÖÚŽXÑÑâò\=^ògñm` Ñߦ~?B,¹ã²Ýgãïù©Ê5NÜZ¿>ÖÄ•ºŽ;^_ž˜{Õ?£]@/œ6]®`9¦é³’Ç^¬8A‡AÃÂ5Üô€¿¼¼¬Pÿ®¬Êêêº×Û#ÅmÔ.ûÎé3¼Ï¾c.Û'Ãß©‡rýpÅìºÔ0~Êíx7±îeYöÖW.8ÃùÔ\Iá`Ûäcàb=«Øu¯ýfݬl2Ûž!ïÎøíœ–ÍL­þWÏø­üLJ‚¸U»,GûÝøëŵÛd‚ä6Ú| A²¸î ’%×eë‡øò¸†ÚeÉéGÚõ¯yp}Y^]õí,w8äd»W©>{¿á¹âØå׬¨ò«`ÜãáäìÕ05£]±wd:S1ºî jç¤%OôÅô«ö ¼ë--ËŠªïÕU›ÓÛŸ.цçuò1… ‰¹§*k¬ ‰»Cq'1}!.¯ž Y²'–÷N'j³s\`RÅ7NDŒËÞý?枟®\×$·Ð?Ç]'0i¥D^„+î¸öòŸš> € yìI´aÑo;±>£¯]—cµcíª?z…ÄyÖñ ®ÛÒAåUc°ßqÜZìx;.aS¾s—µ;”šu¾ŒqÙê_UÔNbÇά˜ ´¬Ÿ°44klÉéÑ¡œ:³ãmxoü½ÍŒæðÃuP?WCùÖnWånáž,ËYÛ½³ªGõît‚äAüõÆ„£„C÷VÛ|RAbïÄUï®w´º$ëjûO{6õ`à‚£ÝÜú“ ’ðÎ@îêŽv?ZQíÜÿ*PÖWÆŠÉãÊ`…dó4à>W.ÉIí*⾪ ¶Ö6BÚn#Ûuûl\¿r¯½jÜû¼›JAŽNjöFc§ËŸ+>ký›æc„+X{p_¹.Sq÷âte}ë²5ú>ŽŠuŠî qyµëF­z*áÚ8\õ æø6ÃÔ½|'^dÍX9nŒ™¼\^[ûV¢í•›à¤ÄÍûÅ$‚ÄwwIÅjÁ¾s6÷.OvÌ=ó­ý¸rDziú,‚ä $ÞR øµãÍÕeEv–ïŒØ Ó¿íï¥ì8Á…'jÇ•«Æ™l:Ʀ­Ù÷ÍÃ;pìtÚ(·÷þ×.CGj×åÂuâ>nžD<`×ì_؆ôÊ^Aí¶c©nŽíeþ¡=ïmã@ǰœ)uë²&{+®¿ô°‘ë_qÆNAïˆs!Ç;vP÷AÙ6¯NwCÔvh—¼ Ù‹QÛÜŽ$ñ×›VTœ8è­ž¯ÛæÑ‚d)$Hú—¯M/ôJÇv=íœ]ŽwÅÐÒÎé[‘º¾ëK’=S;3]œ9.S®kœ-0 uUW¾º³u-Û_]}tVQïIØö‚¨ÍŒ°c|n•U½«˜ƒÕ‘1~@w»“mwF½ÿuãš]ïwÛv~Ùìª]?V»;Y¿˜8}õ¾šþCɇ›‡þÔí=]Yo~è 7ì›±màœ³;ÑyºÒï_çžS.§ž£ûÈÃëÓ\§yÎqåzXý AòÁl‘«gÉ÷Ô[ä³öêˆ6Ù¦$KÁ÷,L.ŒÎ6®+rpx$Û+¡÷. Hžzcòìè@ÖWVÌN;Yå¿Ý¥^`ºÕ„SµèáÙ嵎ï[59ÜÙ”•e½+Ϧ  H$€  ‚$@ HA€  ‚$@ HA€  H$€ yœùÑ«]ù¿þèUù_~½&3y ž2t»êöÕíÌ € yìÄÈÿúÑ—1Ü?èvF” H+ôÌ9ÆúÝÞܬ’ÇÜ´>xî[ܬ’Ç'Óé8¸Y$@‚A HA2 ÉO¼lH<–wÍÉß㬟ø¨]oɾ¿eäf@<‘‚$ýwäÝ÷Ä—~*?üÆE„0yE¾ÿŽý‹wï]ÙßâB^wŽúþ~=ðû¹/·í/ºm™w~×ïÁ"=ùܧFåï®l—ºÒ÷å®ÿNW¶?{×û>ßz`>ÿÎïŽóòÕ“•йÓßéÙ'zï'²ò‰àµÜs½þƒfà\÷ÞsÎåûýÜî[rïþŠ“û­¶|þ^ž/¢Ìº<¯—.ìß}ôÇ’¯÷çÑeÜ]¿‹ €§[Ìí¿3°‚ßûi@˜Üýʃ+(_¸-ÛÏêÏ_–¯¶#ºyåûýàówk—ʨoÊ}•Þ“ÏG ’º¼`ùæ7þÈþÔŒÑÿ§ßßõ "ïzás7ä®ï,wAòwçÏ~ÖY©øÔð¹æ¾üNP@]ß.þó §ûÓ4«"Ù¦ïÈîOõb×1‚Aò” ’ÏýcI[oynCžüŽ%Ißowïý4`P¿þׂ+!þ„O È _xÙ„+ÏÈV†þGkÊÕi@TÞ>ì÷¼°o‹£Ä³M¹çïµ×Ñÿ‚'Hî‰{=ÿêKj7¤ºïȇ}‚äÿ×ïÜ—TÔ¹¼ÿkv_œ2xýMy×ùüÊÔ/oû¯8î]á27ä%§ ~è®0}êÂ;ÿK¡U' ‚ä©$+?xÏ3úïÕ,ùü2—þ±¢.sÏFø?•—ê®ËSGæÍw¯yn[?ü²mxÏ}¥úÍàøìú+òáô+êϾO±{Ï^é×/ƒBå‹oÈþ—/dîSµ€Ñÿï¼*ÉOÕåÃ*ߩϾá­j ‰[ö9¯îu<Á”_9Z˜U"Už^ΕúâÛžK‡âFRë²òÙKê£Áó½tôª¤žõ•YÕoÒYú~×]éËw^xCÒêøù?PmðlÝ9‚Aò´Æ¨‡×#܉®ê–ÌûŒáù£®·jüè«Þ1nÜÆnÝY=i¾iþŸuܵ®~p4QÉ¿J1¼ZኜQ1&/ĸEɳ—Î †r7ûÔË>ÁóF̹~"é´bŸkþ¨\AQ<»%_ýÆ›²¤ÄÒÑ›²ûÅWÆäíçþ5ÿ•vÄ÷v1$ðØeKŽ«`‡×ß ºdIë-oß…¸ÿƒ×U0{]k‹'@tp»Õ`Å3àUÆÔ†É»VO^o9X}%~Þ ¸†]Wô»ïÉ•>ŸÆ+Ë@<ë³·eA‰­Wdùb>Üs½°{á­\¼«òùn¬ ©ËCr"ìNÖ§?(s«/÷­N0 ^ÕÙ õŸ„6Ǹ H$O• yY>÷ûòÃÚÛÞNT‰OÔåóßébBŸ}+v¼‹÷»Nðy÷íÁʇ/c壓åÍu¯z7ä²5ôŽ\5Û²¿Ûýßù¢Ïõ룡’Wä‡ï.Žo Ÿ+ñ…û‘«-ñå”ea_­Œ|å ù¾³K—°>"oþ-ƒŸ}M¾úƒwä‡?xÃÛÕ,¥>ûŽsžwÿ¦‰ @<­‚Díå®(·¥äGÂ;HÙ‚äóµ÷<7"oÂzÏÛŠ× n÷ä]#ÿ…W#ƒÌ??áÎQž›˜ºîW¿X÷‚Ú]w1;¶ÄÔî ÿT0}°Cص:Ñ÷Êq¿ënß¿÷`Øýë¾ vKæ\õ‰†¼0B|TpzzàÈöýW<1¶ïl € €§Úeká? lû{¿ë3À[Êë£þ€õ Q.õë‰õ·"¶~i‚eŒïF½sã•AÀ÷Ж¸?u„Íèm¯|[õz;„¶&VüÁ›ž°Ê¡>|®Oùóýž/y·tw»obgÆlûûƒæPœIÿ÷n[/…¶^F Hž²’—•‹VGúacYmg«ƒÚîI?ÚQj&ý†·Íí &¸Ý' ¼ø“›ízõŠ|uè¥?ñ½4ð®÷®’ïDnûÛ—Ïý®ïå»õáË}/È¥÷÷ ¾—,úcMü[/ì¿%¯wƒ/Fìw{òo4²ß ¾G%RhÑóª¼p。 ÷—^ ¨>Aí¶0ù°Ú–öÃj«ÙäG_ºÆñ—Ä'îš¼}øS/?vyK~ÊÎ[êµÛ)£Ú¶8qã¹Y$O° 'nV ‚$€ Á@G‚ä}ãùõFúÝÞܬ’džÿë^ÅPÿ¡Û››AòØð£W»ò¿~ôeŒõºu{s³ H;Q¢gÎqßzzÝ´tû"F$@ HA€  ‚$@ HA H$€ @‚A H$€ xêIO:Ž¢Gƒ H)î¦%93#3.É9ÙÊŸ?²<4 û’«ZàZ–ä·v¥Ú¹é±–l¤fdv£DçÉMÄÈþ|ˆä|Fr…¢r»2Ÿ´…Éü~õáç¡S”„ºVºøðI§”QåJH±sÓc-YSu”Èéü€ ¹.­bƹ¡™þ–lÌjQ’”\S¹põZR­6¤Õ(K.›“R£ëúÕ¬V¥ÙjJ1Ÿ“|é\:Î C¹—l6+…Rc‡Ò®$ »EuŒrkžKù¼X™8/W¥Õ{™ýûó¦>N–U¢ªdÿ6B|•öŒ¨Ø*VÅr~ÓkU%ŸËª|奪Î3J¸µI2SFµ¨ŽÍI¡Ü^hE%ª¼‘¼û)}ï-ɽð¦ä¿÷Î ÿ½žTïvÅz»+õ]®ø¶4Þö‰¤7Þ•ó7zª>Þ‘Üñ•ä_ì8u!¨Æþö=9¯½mòSâ°úÆ{ã­‹¶äÕq¹ïµU~ì|ùËÛ¼û¶9o®øÎˆúIˆB:©Œì9ú¾‘5b%]h‰å¹ýXצLÂ÷Û™””^/ÉBà3µº0¿+Vè·IµâPLë¿ÓÒrÏgì”ù(f’ÁÏŒËYZšC+k߬•”Ðɦ‡Ž]ŒX>öžqÙ ›RÅÎó¨òF…»-I|ä%™ Ъ2ê­_ }®yYr?5Ç¿øòð÷Ͼ>¨;±¿íu%ó©—†¾ßøQß[ý«Fd> oÛB&·y7ôÝ+RxƒAA2&&ÂÕɵHCùA§$³ŽH°ƒ<¹¸/ ½"Ñê?ï̼M9¯Þ“Ü‚v ›“BË]™Ù0ç[È5ŒàÐñ+™¢½êRZS#áË“réJ9ßG壴6k>Ë81/ç¹´'8Ây³MÒ·eŸwfnË/-Ù5ùÔ«BâÕ.[ºŒ UFSÊõmAÿ?£òÝ‹/oà¼?•Ýgmrî¬*´¾×4F}æÅ¾X?²ÿN~¶e¯f¼ýŽÌ!qiþ_Ú­Û¿}¡k¯R8Çο;”ÿ¸ßZ/¾ zYPÿOlª:|ûmI©¿S›ozyXø¨Îó])¾­ók‹¦ô Î5ßmÛߦZ1I¤pHGΨG ’­jg¢óÚîL¥Àÿµ@ÙÍîËîî¾d÷׌I¦ Á1© ñçÃþ}Æ÷ûRà|QaŽOJÑzà­¶dý⣕÷VcâŽ.£BûóêûY)uÆ”7\_½÷¤yÑ•ªr—Ê¿!™Ï:ÂáÅž#Hj’ó­6”wõjÄ=i‘¡V=>úšOPö%óQGH ’øßZo¨<ÜmK¡ø¦líÞ“¤!_|[‰[¸ì7~:pÏ*Þ3+$Z¿x×ä1ý•–ìå Ù?nق䣯­R‚$Òe«1ÎeËã© ƒÁ]cÝ øîU=÷¥d2é’ÙÙYYÜ-Á»Bb ¾ÊG”€IN H:å ûïNP„M"f†Êè¹ué”1å ÷üøUŸ«SMf?$w¥ô®ï÷õcó™v—*qÒðþ}Ùø¸ZQQBbXŒþmïâ-™ó¹\%Ÿµó I§öúP:µ¦'HÜ•—äÇ_¶ùèË’zö™}¶!¥·$14r‹vPûVyHTìÎ%Lw¶Ñ ãS w…d>|/ìoI¶ÔôÄZ©)0Üø æczA¢bZz¼Õ–Ò`µ¥WÝr®eÅ%HySÞÀy»²¨EÀg^—†kð7Þ ’—d÷î`u"¿^3+-OdÜó‰Œw«ÕhAý[;¾ä®äýÀêIÒ$/ÉÚ‹ýA<Š9—í²eÿ]—²?ÀýÅ–l¿ƒË‚dÙw²7¤¨v³*s²èl»B%,:wsò±ÙI6Ò…kxKÜ҆籰UP;i5$—™õÅØB_¿ÔèHyˉ É–ÔVyoµáV‰ã¦µ¸•“së®,š€ó9ɪ²šêZó ÛÕªÚ{0æØ«¡2ºy+XcÊ%HžmJõ­¾Ú©ê-™ÿèKžpÉÌÇR¼ø‰”_°ã5’_´q!©Í+i¼õ®ì®¿ì˜÷FÆDý¶äŒýÚOÄò}—2×éIæãvÌÈ–Úå+ÿn€»½JÓsTâ3M)_¨Ý·¾÷º¤ÿìÉ$´$·¶`b'ü;ciAà”¶{SÊ÷KvvºØ)HRk¥ÀgÙôl`שùµ¼·ðþ|r°{W§*ißV©ù9/H=œ[¤‚ùNÌITPûƒVAæœójW´^£ I_¹s’;'8¶>TF[è’qå R ¸l½$së÷ì òÝwAí¯ Ü©>û†ó㊠?éãèüÇý¶÷†rÙú¨÷­{’þŒºæÇ_svázWÖ>ãìÒõÑ»&¾DLj¸®~çŦý™CâÙW¥Œ»‚dÚÕ«Õ’–5É ›’ù9µ Qº?Õ5z*໥®aõ¢¾ëHÏ÷yÇÒyé<„rö¤Ó îf—»s­c¯[Þp`{ë-uîÐïü1$=õîÖÛ?TÿøëFŒYÇO÷ÛŸšÏ­·C«+ïv”8ù±·Õ°‰=Ú¬…ä5vZo¿Ç€€ y¸tª;òÌܶܧáoÞq>òÒS m € '”Þ–¤?«âKÞ±)Añuµs×›#ßÎ~Ýßåã­wdcýÇ’ú¸ÞAëDzAÀ:‚A@ HA€  ‚$@ HA€  Àÿ~¡Òq„¾OIEND®B`‚flickcurl-1.25/docs/html/introduction.html0000644000175000017500000000347512210726306015653 00000000000000 Flickcurl Overview

Flickcurl Overview

Flickcurl is a C library for the Flickr web service API.

For the latest information, see the Flickcurl Home Page.

flickcurl-1.25/docs/html/flickcurl-auth-build.html0000644000175000017500000000534212210726306017137 00000000000000 Build Flickcurl library and flickcurl(1) utility

Build Flickcurl library and flickcurl(1) utility

  $ ./configure
  $ make

Add the utils directory to your shell search path:

  $ PATH=`pwd`/utils:$PATH
on bourne shells such as Bash or
  $ setenv PATH `pwd`/utils:$PATH
on c shells such as tcsh

You should get an error if you now try the utility:

  $ flickcurl photos.getInfo 1234567
  flickcurl: Configuration file /Users/dajobe/.flickcurl.conf not found.

  ...

This is because there is no configuration set for the library. For the flickcurl(1) utility, it reads the configuration from a file ~/.flickcurl.conf which contains 4 parameters used for authentication: Client Key, Client Secret, Access Token and Access Token Secret. This section describes how those parameters are obtained.

flickcurl-1.25/docs/html/flickcurl-section-photo.html0000644000175000017500000072416312210726306017705 00000000000000 Photo

Photo

Photo — Photo.

Synopsis

                    flickcurl_photo;
void                flickcurl_free_photo                (flickcurl_photo *photo);
void                flickcurl_free_photos               (flickcurl_photo **photos);
const char *        flickcurl_get_photo_field_label     (flickcurl_photo_field_type field);
char *              flickcurl_photo_as_page_uri         (flickcurl_photo *photo);
char *              flickcurl_photo_as_short_uri        (flickcurl_photo *photo);
char *              flickcurl_photo_as_source_uri       (flickcurl_photo *photo,
                                                         const char c);
char *              flickcurl_photo_as_user_icon_uri    (flickcurl_photo *photo);
char *              flickcurl_photo_id_as_short_uri     (char *photo_id);
char *              flickcurl_source_uri_as_photo_id    (const char *uri);
                    flickcurl_photo_field;
enum                flickcurl_photo_field_type;
enum                flickcurl_field_value_type;
int                 flickcurl_photos_addTags            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *tags);
char *              flickcurl_photos_comments_addComment
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *comment_text);
int                 flickcurl_photos_comments_deleteComment
                                                        (flickcurl *fc,
                                                         const char *comment_id);
int                 flickcurl_photos_comments_editComment
                                                        (flickcurl *fc,
                                                         const char *comment_id,
                                                         const char *comment_text);
flickcurl_comment ** flickcurl_photos_comments_getList  (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photos_list * flickcurl_photos_comments_getRecentForContacts_params
                                                        (flickcurl *fc,
                                                         int date_lastcomment,
                                                         const char *contacts_filter,
                                                         flickcurl_photos_list_params *list_params);
int                 flickcurl_photos_delete             (flickcurl *fc,
                                                         const char *photo_id);
int                 flickcurl_photos_geo_batchCorrectLocation
                                                        (flickcurl *fc,
                                                         flickcurl_location *location,
                                                         const char *place_id,
                                                         int woe_id);
int                 flickcurl_photos_geo_correctLocation
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *place_id,
                                                         int woe_id);
flickcurl_location * flickcurl_photos_geo_getLocation   (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_perms *   flickcurl_photos_geo_getPerms       (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photo **  flickcurl_photos_geo_photosForLocation
                                                        (flickcurl *fc,
                                                         flickcurl_location *location,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_geo_photosForLocation_params
                                                        (flickcurl *fc,
                                                         flickcurl_location *location,
                                                         flickcurl_photos_list_params *list_params);
int                 flickcurl_photos_geo_removeLocation (flickcurl *fc,
                                                         const char *photo_id);
int                 flickcurl_photos_geo_setContext     (flickcurl *fc,
                                                         const char *photo_id,
                                                         int context);
int                 flickcurl_photos_geo_setLocation    (flickcurl *fc,
                                                         const char *photo_id,
                                                         flickcurl_location *location);
int                 flickcurl_photos_geo_setPerms       (flickcurl *fc,
                                                         const char *photo_id,
                                                         flickcurl_perms *perms);
flickcurl_context ** flickcurl_photos_getAllContexts    (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photo **  flickcurl_photos_getContactsPhotos  (flickcurl *fc,
                                                         int contact_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         const char *extras);
flickcurl_photos_list * flickcurl_photos_getContactsPhotos_params
                                                        (flickcurl *fc,
                                                         int contact_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_photo **  flickcurl_photos_getContactsPublicPhotos
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         int photo_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         const char *extras);
flickcurl_photos_list * flickcurl_photos_getContactsPublicPhotos_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         int photo_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_context ** flickcurl_photos_getContext        (flickcurl *fc,
                                                         const char *photo_id);
int **              flickcurl_photos_getCounts          (flickcurl *fc,
                                                         const char **dates_array,
                                                         const char **taken_dates_array);
flickcurl_exif **   flickcurl_photos_getExif            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *secret);
flickcurl_person ** flickcurl_photos_getFavorites       (flickcurl *fc,
                                                         const char *photo_id,
                                                         int page,
                                                         int per_page);
flickcurl_photo *   flickcurl_photos_getInfo            (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photo *   flickcurl_photos_getInfo2           (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *secret);
flickcurl_photo **  flickcurl_photos_getNotInSet        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_getNotInSet_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_perms *   flickcurl_photos_getPerms           (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photo **  flickcurl_photos_getRecent          (flickcurl *fc,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_getRecent_params
                                                        (flickcurl *fc,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_size **   flickcurl_photos_getSizes           (flickcurl *fc,
                                                         const char *photo_id);
flickcurl_photo **  flickcurl_photos_getUntagged        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_getUntagged_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_photo **  flickcurl_photos_getWithGeoData     (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_getWithGeoData_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_photo **  flickcurl_photos_getWithoutGeoData  (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_getWithoutGeoData_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);
flickcurl_license ** flickcurl_photos_licenses_getInfo  (flickcurl *fc);
flickcurl_license * flickcurl_photos_licenses_getInfo_by_id
                                                        (flickcurl *fc,
                                                         int id);
int                 flickcurl_photos_licenses_setLicense
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         int license_id);
char *              flickcurl_photos_notes_add          (flickcurl *fc,
                                                         const char *photo_id,
                                                         int note_x,
                                                         int note_y,
                                                         int note_w,
                                                         int note_h,
                                                         const char *note_text);
int                 flickcurl_photos_notes_delete       (flickcurl *fc,
                                                         const char *note_id);
int                 flickcurl_photos_notes_edit         (flickcurl *fc,
                                                         const char *note_id,
                                                         int note_x,
                                                         int note_y,
                                                         int note_w,
                                                         int note_h,
                                                         const char *note_text);
flickcurl_photo **  flickcurl_photos_recentlyUpdated    (flickcurl *fc,
                                                         int min_date,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);
flickcurl_photos_list * flickcurl_photos_recentlyUpdated_params
                                                        (flickcurl *fc,
                                                         int min_date,
                                                         flickcurl_photos_list_params *list_params);
int                 flickcurl_photos_removeTag          (flickcurl *fc,
                                                         const char *tag_id);
flickcurl_upload_status * flickcurl_photos_replace      (flickcurl *fc,
                                                         const char *photo_file,
                                                         const char *photo_id,
                                                         int async);
flickcurl_photo **  flickcurl_photos_search             (flickcurl *fc,
                                                         flickcurl_search_params *params);
flickcurl_photos_list * flickcurl_photos_search_params  (flickcurl *fc,
                                                         flickcurl_search_params *params,
                                                         flickcurl_photos_list_params *list_params);
                    flickcurl_search_params;
int                 flickcurl_search_params_init        (flickcurl_search_params *params);
int                 flickcurl_photos_setContentType     (flickcurl *fc,
                                                         const char *photo_id,
                                                         int content_type);
int                 flickcurl_photos_setDates           (flickcurl *fc,
                                                         const char *photo_id,
                                                         int date_posted,
                                                         int date_taken,
                                                         int date_taken_granularity);
int                 flickcurl_photos_setMeta            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *title,
                                                         const char *description);
int                 flickcurl_photos_setPerms           (flickcurl *fc,
                                                         const char *photo_id,
                                                         flickcurl_perms *perms);
int                 flickcurl_photos_setSafetyLevel     (flickcurl *fc,
                                                         const char *photo_id,
                                                         int safety_level,
                                                         int hidden);
int                 flickcurl_photos_setTags            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *tags);
int                 flickcurl_photos_transform_rotate   (flickcurl *fc,
                                                         const char *photo_id,
                                                         int degrees);
flickcurl_ticket ** flickcurl_photos_upload_checkTickets
                                                        (flickcurl *fc,
                                                         const char **tickets_ids);
flickcurl_upload_status * flickcurl_photos_upload_params
                                                        (flickcurl *fc,
                                                         flickcurl_upload_params *params);

Description

Photo.

Details

flickcurl_photo

typedef struct {
  char *id;
  char *uri;
  
  flickcurl_tag** tags;
  int tags_count;
  
  flickcurl_photo_field fields[PHOTO_FIELD_LAST + 1];

  flickcurl_place* place;

  flickcurl_video* video;

  char *media_type;

  flickcurl_note** notes;
  int notes_count;
} flickcurl_photo;

A photo or video.

char *id;

photo/video ID

char *uri;

photo/video page URI

flickcurl_tag **tags;

array of tags (may be NULL)

int tags_count;

size of tags array

flickcurl_photo_field fields[PHOTO_FIELD_LAST + 1];

metadata fields

flickcurl_place *place;

place

flickcurl_video *video;

video (may be NULL)

char *media_type;

"photo" or "video"

flickcurl_note **notes;

array of notes (may be NULL)

int notes_count;

size of notes array

flickcurl_free_photo ()

void                flickcurl_free_photo                (flickcurl_photo *photo);

Destructor for photo object

photo :

photo object

flickcurl_free_photos ()

void                flickcurl_free_photos               (flickcurl_photo **photos);

Destructor for array of photo objects

photos :

photo object array

flickcurl_get_photo_field_label ()

const char *        flickcurl_get_photo_field_label     (flickcurl_photo_field_type field);

Get label for photo field.

field :

field enum

Returns :

label string or NULL if none valid

flickcurl_photo_as_page_uri ()

char *              flickcurl_photo_as_page_uri         (flickcurl_photo *photo);

Get a photo's page URI

photo :

photo object

Returns :

new source URI string or NULL on failure

flickcurl_photo_as_short_uri ()

char *              flickcurl_photo_as_short_uri        (flickcurl_photo *photo);

Get a short URI for a photo

Encoded based on description given in http://www.flickr.com/groups/api/discuss/72157616713786392/

photo :

photo object

Returns :

new short URI string or NULL on failure

flickcurl_photo_as_source_uri ()

char *              flickcurl_photo_as_source_uri       (flickcurl_photo *photo,
                                                         const char c);

Get a photo's image source URIs

c can be s,m,t,b for sizes, o for original, otherwise default http://www.flickr.com/services/api/misc.urls.html

photo :

photo object

c :

size s, m, t or b

Returns :

new source URI string or NULL on failure

flickcurl_photo_as_user_icon_uri ()

char *              flickcurl_photo_as_user_icon_uri    (flickcurl_photo *photo);

Get the user's icon URI

The icon URI returned is always a 48x48 pixel JPEG

photo :

photo object

Returns :

new icon URI string or NULL on failure

flickcurl_photo_id_as_short_uri ()

char *              flickcurl_photo_id_as_short_uri     (char *photo_id);

Get a short URI for a photo ID

Encoded based on description given in http://www.flickr.com/groups/api/discuss/72157616713786392/

photo_id :

photo ID

Returns :

new short URI string or NULL on failure

flickcurl_source_uri_as_photo_id ()

char *              flickcurl_source_uri_as_photo_id    (const char *uri);

Get a photo ID from an image source URI

Turns an URL that points to the photo into a photo ID. i.e. given an URI like these: http://farm{farm-id}.static.flickr.com/{server-id}/{photo-id}_{o-secret}_o.(jpg|gif|png) or http://farm{farm-id}.static.flickr.com/{server-id}/{photo-id}_{secret}_[mstb].jpg http://farm{farm-id}.static.flickr.com/{server-id}/{photo-id}_{secret}.jpg returns the {photo-id}

uri :

source uri

Returns :

new photo ID string or NULL on failure

flickcurl_photo_field

typedef struct {
  char* string;
  flickcurl_photo_field_type integer;
  flickcurl_field_value_type type;
} flickcurl_photo_field;

Field of a photo structure

char *string;

string field value

flickcurl_photo_field_type integer;

integer field value

flickcurl_field_value_type type;

field type

enum flickcurl_photo_field_type

typedef enum {
  PHOTO_FIELD_none,
  PHOTO_FIELD_dateuploaded,
  PHOTO_FIELD_farm,
  PHOTO_FIELD_isfavorite,
  PHOTO_FIELD_license,
  PHOTO_FIELD_originalformat,
  PHOTO_FIELD_rotation,
  PHOTO_FIELD_server,
  PHOTO_FIELD_dates_lastupdate,
  PHOTO_FIELD_dates_posted,
  PHOTO_FIELD_dates_taken,
  PHOTO_FIELD_dates_takengranularity,
  PHOTO_FIELD_description,
  PHOTO_FIELD_editability_canaddmeta,
  PHOTO_FIELD_editability_cancomment,
  PHOTO_FIELD_geoperms_iscontact,
  PHOTO_FIELD_geoperms_isfamily,
  PHOTO_FIELD_geoperms_isfriend,
  PHOTO_FIELD_geoperms_ispublic,
  PHOTO_FIELD_location_accuracy,
  PHOTO_FIELD_location_latitude,
  PHOTO_FIELD_location_longitude,
  PHOTO_FIELD_owner_location,
  PHOTO_FIELD_owner_nsid,
  PHOTO_FIELD_owner_realname,
  PHOTO_FIELD_owner_username,
  PHOTO_FIELD_title,
  PHOTO_FIELD_visibility_isfamily,
  PHOTO_FIELD_visibility_isfriend,
  PHOTO_FIELD_visibility_ispublic,
  PHOTO_FIELD_secret,
  PHOTO_FIELD_originalsecret,
  PHOTO_FIELD_location_neighbourhood,
  PHOTO_FIELD_location_neighborhood = PHOTO_FIELD_location_neighbourhood,
  PHOTO_FIELD_location_locality,
  PHOTO_FIELD_location_county,
  PHOTO_FIELD_location_region,
  PHOTO_FIELD_location_country,
  PHOTO_FIELD_location_placeid,
  PHOTO_FIELD_neighbourhood_placeid,
  PHOTO_FIELD_neighborhood_placeid = PHOTO_FIELD_neighbourhood_placeid,
  PHOTO_FIELD_locality_placeid,
  PHOTO_FIELD_county_placeid,
  PHOTO_FIELD_region_placeid,
  PHOTO_FIELD_country_placeid,
  PHOTO_FIELD_location_woeid,
  PHOTO_FIELD_neighbourhood_woeid,
  PHOTO_FIELD_neighborhood_woeid  = PHOTO_FIELD_neighbourhood_woeid,
  PHOTO_FIELD_locality_woeid,
  PHOTO_FIELD_county_woeid,
  PHOTO_FIELD_region_woeid,
  PHOTO_FIELD_country_woeid,
  PHOTO_FIELD_usage_candownload,
  PHOTO_FIELD_usage_canblog,
  PHOTO_FIELD_usage_canprint,
  PHOTO_FIELD_owner_iconserver,
  PHOTO_FIELD_owner_iconfarm,
  PHOTO_FIELD_original_width,
  PHOTO_FIELD_original_height,
  PHOTO_FIELD_views,
  PHOTO_FIELD_comments,
  PHOTO_FIELD_favorites,
  PHOTO_FIELD_gallery_comment,
  PHOTO_FIELD_FIRST = PHOTO_FIELD_dateuploaded,
  PHOTO_FIELD_LAST = PHOTO_FIELD_gallery_comment
} flickcurl_photo_field_type;

Fields of a flickcurl_photo*

PHOTO_FIELD_none

internal

PHOTO_FIELD_dateuploaded

date uploaded

PHOTO_FIELD_farm

farm number

PHOTO_FIELD_isfavorite

is favorite boolean

PHOTO_FIELD_license

license

PHOTO_FIELD_originalformat

original format

PHOTO_FIELD_rotation

rotation

PHOTO_FIELD_server

server

PHOTO_FIELD_dates_lastupdate

last update date

PHOTO_FIELD_dates_posted

posted date

PHOTO_FIELD_dates_taken

taken date

PHOTO_FIELD_dates_takengranularity

taken granularity

PHOTO_FIELD_description

description

PHOTO_FIELD_editability_canaddmeta

can add metadata boolean

PHOTO_FIELD_editability_cancomment

can comment boolean

PHOTO_FIELD_geoperms_iscontact

geo perms are for contacts

PHOTO_FIELD_geoperms_isfamily

geo perms are for family

PHOTO_FIELD_geoperms_isfriend

geo perms are for frind

PHOTO_FIELD_geoperms_ispublic

geo perms are for public

PHOTO_FIELD_location_accuracy

location accuracy

PHOTO_FIELD_location_latitude

location latitude

PHOTO_FIELD_location_longitude

location longitude

PHOTO_FIELD_owner_location

owner location

PHOTO_FIELD_owner_nsid

owner NSID

PHOTO_FIELD_owner_realname

owner real name

PHOTO_FIELD_owner_username

owner user name

PHOTO_FIELD_title

title

PHOTO_FIELD_visibility_isfamily

visibility is for family

PHOTO_FIELD_visibility_isfriend

visibility is for friend

PHOTO_FIELD_visibility_ispublic

visibility is for public

PHOTO_FIELD_secret

photo secret

PHOTO_FIELD_originalsecret

photo original secret

PHOTO_FIELD_location_neighbourhood

location neighbourhood

PHOTO_FIELD_location_neighborhood

deprecated

PHOTO_FIELD_location_locality

location locality

PHOTO_FIELD_location_county

location county

PHOTO_FIELD_location_region

location region

PHOTO_FIELD_location_country

location country

PHOTO_FIELD_location_placeid

location place ID

PHOTO_FIELD_neighbourhood_placeid

neighborhood place ID

PHOTO_FIELD_neighborhood_placeid

dprecated

PHOTO_FIELD_locality_placeid

locality place ID

PHOTO_FIELD_county_placeid

county place ID

PHOTO_FIELD_region_placeid

region place ID

PHOTO_FIELD_country_placeid

country place ID

PHOTO_FIELD_location_woeid

location WOE ID

PHOTO_FIELD_neighbourhood_woeid

neighborhood WOE ID

PHOTO_FIELD_neighborhood_woeid

deprecated

PHOTO_FIELD_locality_woeid

locality WOE ID

PHOTO_FIELD_county_woeid

county WOE ID

PHOTO_FIELD_region_woeid

region WOE ID

PHOTO_FIELD_country_woeid

country WOE ID

PHOTO_FIELD_usage_candownload

can download

PHOTO_FIELD_usage_canblog

can blog

PHOTO_FIELD_usage_canprint

can print

PHOTO_FIELD_owner_iconserver

server of owner's icon

PHOTO_FIELD_owner_iconfarm

farm of owner's icon

PHOTO_FIELD_original_width

original photo width

PHOTO_FIELD_original_height

original photo height

PHOTO_FIELD_views

number of photo views

PHOTO_FIELD_comments

number of photo comments

PHOTO_FIELD_favorites

number of photo favorites

PHOTO_FIELD_gallery_comment

comment on the photo when used in a gallery

PHOTO_FIELD_FIRST

internal offset to first in enum list

PHOTO_FIELD_LAST

internal offset to last in enum list

enum flickcurl_field_value_type

typedef enum {
  VALUE_TYPE_NONE, /* empty field */
  VALUE_TYPE_PHOTO_ID, /* internal */
  VALUE_TYPE_PHOTO_URI, /* internal */
  VALUE_TYPE_UNIXTIME,
  VALUE_TYPE_BOOLEAN,
  VALUE_TYPE_DATETIME,
  VALUE_TYPE_FLOAT,
  VALUE_TYPE_INTEGER,
  VALUE_TYPE_STRING,
  VALUE_TYPE_URI,
  VALUE_TYPE_PERSON_ID, /* internal */
  VALUE_TYPE_MEDIA_TYPE, /* internal */
  VALUE_TYPE_TAG_STRING, /* internal */
  VALUE_TYPE_COLLECTION_ID, /* internal */
  VALUE_TYPE_ICON_PHOTOS, /* internal */
  VALUE_TYPE_LAST = VALUE_TYPE_ICON_PHOTOS
} flickcurl_field_value_type;

Field data types

VALUE_TYPE_NONE

internal

VALUE_TYPE_PHOTO_ID

internal

VALUE_TYPE_PHOTO_URI

internal

VALUE_TYPE_UNIXTIME

a unixtime

VALUE_TYPE_BOOLEAN

boolean

VALUE_TYPE_DATETIME

date time

VALUE_TYPE_FLOAT

floating point number

VALUE_TYPE_INTEGER

integer

VALUE_TYPE_STRING

string

VALUE_TYPE_URI

URI

VALUE_TYPE_PERSON_ID

person ID

VALUE_TYPE_MEDIA_TYPE

internal

VALUE_TYPE_TAG_STRING

internal

VALUE_TYPE_COLLECTION_ID

internal

VALUE_TYPE_ICON_PHOTOS

internal

VALUE_TYPE_LAST

internal offset to last in enum list

flickcurl_photos_addTags ()

int                 flickcurl_photos_addTags            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *tags);

Add tags to a photo.

Implements flickr.photos.addTags (0.9)

fc :

flickcurl context

photo_id :

photo ID

tags :

tags to add as a space-separated list

Returns :

non-0 on failure

flickcurl_photos_comments_addComment ()

char *              flickcurl_photos_comments_addComment
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *comment_text);

Add comment to a photo as the currently authenticated user.

Implements flickr.photos.comments.addComment (0.10)

fc :

flickcurl context

photo_id :

The id of the photo to add a comment to.

comment_text :

Text of the comment

Returns :

new comment ID or non-NULL on failure

flickcurl_photos_comments_deleteComment ()

int                 flickcurl_photos_comments_deleteComment
                                                        (flickcurl *fc,
                                                         const char *comment_id);

Delete a comment as the currently authenticated user.

Implements flickr.photos.comments.deleteComment (0.10)

fc :

flickcurl context

comment_id :

The id of the comment to edit.

Returns :

non-0 on failure

flickcurl_photos_comments_editComment ()

int                 flickcurl_photos_comments_editComment
                                                        (flickcurl *fc,
                                                         const char *comment_id,
                                                         const char *comment_text);

Edit the text of a comment as the currently authenticated user.

Implements flickr.photos.comments.editComment (0.10)

fc :

flickcurl context

comment_id :

The id of the comment to edit.

comment_text :

Update the comment to this text.

Returns :

non-0 on failure

flickcurl_photos_comments_getList ()

flickcurl_comment ** flickcurl_photos_comments_getList  (flickcurl *fc,
                                                         const char *photo_id);

Returns the comments for a photo

Implements flickr.photos.comments.getList (0.10)

fc :

flickcurl context

photo_id :

The id of the photo to fetch comments for.

Returns :

array of comments or NULL on failure

flickcurl_photos_comments_getRecentForContacts_params ()

flickcurl_photos_list * flickcurl_photos_comments_getRecentForContacts_params
                                                        (flickcurl *fc,
                                                         int date_lastcomment,
                                                         const char *contacts_filter,
                                                         flickcurl_photos_list_params *list_params);

Return the list of photos belonging to your contacts that have been commented on recently.

Implements flickr.photos.comments.getRecentForContacts (1.12)

fc :

flickcurl context

date_lastcomment :

Limits the resultset to photos that have been commented on since this date. The date should be in the form of a Unix timestamp. The default, and maximum, offset is (1) hour (or <0)

contacts_filter :

A comma-separated list of contact NSIDs to limit the scope of the query to (or NULL)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

list of photos or NULL on failure

flickcurl_photos_delete ()

int                 flickcurl_photos_delete             (flickcurl *fc,
                                                         const char *photo_id);

Delete a photo.

Implements flickr.photos.delete (0.9)

fc :

flickcurl context

photo_id :

photo ID

Returns :

non-0 on failure

flickcurl_photos_geo_batchCorrectLocation ()

int                 flickcurl_photos_geo_batchCorrectLocation
                                                        (flickcurl *fc,
                                                         flickcurl_location *location,
                                                         const char *place_id,
                                                         int woe_id);

Correct the places hierarchy for all the photos for a user at a given location (latitude, longitude and accuracy).

You must pass either a valid Places ID in place_id or a WOE ID in woe_id.

Batch corrections are processed in a delayed queue so it may take a few minutes before the changes are reflected in a user's photos.

Implements flickr.photos.geo.batchCorrectLocation (1.8)

fc :

flickcurl context

location :

The location (lat, long, accuracy) of the photos to update.

place_id :

A Flickr Places ID (or NULL)

woe_id :

A Where On Earth (WOE) ID (or 0)

Returns :

non-0 on failure

flickcurl_photos_geo_correctLocation ()

int                 flickcurl_photos_geo_correctLocation
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *place_id,
                                                         int woe_id);

Correct a photo location.

You must pass either a valid Places ID in place_id or a WOE ID in woe_id.

Implements flickr.photos.geo.correctLocation (1.8)

fc :

flickcurl context

photo_id :

The ID of the photo whose WOE location is being corrected.

place_id :

A Flickr Places ID (or NULL)

woe_id :

A Where On Earth (WOE) ID (or NULL)

Returns :

non-0 on failure

flickcurl_photos_geo_getLocation ()

flickcurl_location * flickcurl_photos_geo_getLocation   (flickcurl *fc,
                                                         const char *photo_id);

Get the geo data (latitude and longitude and the accuracy level) for a photo.

Implements flickr.photos.geo.getLocation (0.12)

fc :

flickcurl context

photo_id :

The id of the photo you want to retrieve location data for.

Returns :

non-0 on failure

flickcurl_photos_geo_getPerms ()

flickcurl_perms *   flickcurl_photos_geo_getPerms       (flickcurl *fc,
                                                         const char *photo_id);

Get permissions for who may view geo data for a photo.

Implements flickr.photos.geo.getPerms (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to get permissions for.

Returns :

non-0 on failure

flickcurl_photos_geo_photosForLocation ()

flickcurl_photo **  flickcurl_photos_geo_photosForLocation
                                                        (flickcurl *fc,
                                                         flickcurl_location *location,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Get a list of photos for a user at a specific location (latitude, longitude and accuracy)

Implements flickr.photos.geo.photosForLocation (1.8)

fc :

flickcurl context

location :

The location (lat, long, accuracy) of the photos

extras :

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media (or NULL)

per_page :

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL)

page :

The page of results to return. If this argument is omitted, it defaults to 1 (or NULL)

Returns :

list of photos or NULL on failure

flickcurl_photos_geo_photosForLocation_params ()

flickcurl_photos_list * flickcurl_photos_geo_photosForLocation_params
                                                        (flickcurl *fc,
                                                         flickcurl_location *location,
                                                         flickcurl_photos_list_params *list_params);

Get a list of photos for a user at a specific location (latitude, longitude and accuracy)

fc :

flickcurl context

location :

The location (lat, long, accuracy) of the photos

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

list of photos or NULL on failure

flickcurl_photos_geo_removeLocation ()

int                 flickcurl_photos_geo_removeLocation (flickcurl *fc,
                                                         const char *photo_id);

Removes the geo data associated with a photo.

Implements flickr.photos.geo.removeLocation (0.12)

fc :

flickcurl context

photo_id :

The id of the photo you want to remove location data from.

Returns :

non-0 on failure

flickcurl_photos_geo_setContext ()

int                 flickcurl_photos_geo_setContext     (flickcurl *fc,
                                                         const char *photo_id,
                                                         int context);

Indicate the state of a photo's geotagginess beyond latitude and longitude.

Note : photos passed to this method must already be geotagged using the flickcurl_photos_geo_setLocation() method.

Implements flickr.photos.geo.setContext (1.8)

fc :

flickcurl context

photo_id :

The id of the photo to set context data for.

context :

Context is a numeric value representing the photo's geotagginess beyond latitude and longitude. The current values are: 0: not defined, 1: indoors, 2: outdoors.

Returns :

non-0 on failure

flickcurl_photos_geo_setLocation ()

int                 flickcurl_photos_geo_setLocation    (flickcurl *fc,
                                                         const char *photo_id,
                                                         flickcurl_location *location);

Sets the geo data (latitude and longitude and, optionally, the accuracy level) for a photo.

Implements flickr.photos.geo.setLocation (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to set location data for.

location :

The location

Returns :

non-0 on failure

flickcurl_photos_geo_setPerms ()

int                 flickcurl_photos_geo_setPerms       (flickcurl *fc,
                                                         const char *photo_id,
                                                         flickcurl_perms *perms);

Set the permission for who may view the geo data associated with a photo.

Implements flickr.photos.geo.setPerms (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to get permissions for.

perms :

Geo permissions

Returns :

non-0 on failure

flickcurl_photos_getAllContexts ()

flickcurl_context ** flickcurl_photos_getAllContexts    (flickcurl *fc,
                                                         const char *photo_id);

Get all visible sets and pools the photo belongs to.

Implements flickr.photos.getAllContexts (0.7)

Returns an array of size 3 [prev, next, NULL] flickcurl_context* or NULL on error

fc :

flickcurl context

photo_id :

photo ID

Returns :

prev, next contexts or NULL

flickcurl_photos_getContactsPhotos ()

flickcurl_photo **  flickcurl_photos_getContactsPhotos  (flickcurl *fc,
                                                         int contact_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         const char *extras);

Fetch a list of recent photos from the calling users' contacts.

See flickcurl_photos_getContactsPhotos() for details of parameters.

Implements flickr.photos.getContactsPhotos (0.11)

fc :

flickcurl context

contact_count :

Number of photos to return (Default 10, maximum 50)

just_friends :

Set to non-0 to only show photos from friends and family (excluding regular contacts).

single_photo :

Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order.

include_self :

Set to non-0 to include photos from the calling user.

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

Returns :

non-0 on failure

flickcurl_photos_getContactsPhotos_params ()

flickcurl_photos_list * flickcurl_photos_getContactsPhotos_params
                                                        (flickcurl *fc,
                                                         int contact_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         flickcurl_photos_list_params *list_params);

Fetch a list of recent photos from the calling users' contacts.

Currently supported extras fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

contact_count :

Number of photos to return (Default 10, maximum 50)

just_friends :

Set to non-0 to only show photos from friends and family (excluding regular contacts).

single_photo :

Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order.

include_self :

Set to non-0 to include photos from the calling user.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_photos_getContactsPublicPhotos ()

flickcurl_photo **  flickcurl_photos_getContactsPublicPhotos
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         int photo_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         const char *extras);

Fetch a list of recent public photos from a users' contacts.

See flickcurl_photos_getContactsPublicPhotos() for details of parameters.

Implements flickr.photos.getContactsPublicPhotos (0.12)

fc :

flickcurl context

user_id :

The NSID of the user to fetch photos for.

photo_count :

Number of photos to return (Default 10, maximum 50)

just_friends :

Set to non-0 to only show photos from friends and family (excluding regular contacts)

single_photo :

Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order.

include_self :

Set to non-0 to include photos from the user specified by user_id.

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

Returns :

a list of photos or NULL on failure

flickcurl_photos_getContactsPublicPhotos_params ()

flickcurl_photos_list * flickcurl_photos_getContactsPublicPhotos_params
                                                        (flickcurl *fc,
                                                         const char *user_id,
                                                         int photo_count,
                                                         int just_friends,
                                                         int single_photo,
                                                         int include_self,
                                                         flickcurl_photos_list_params *list_params);

Fetch a list of recent public photos from a users' contacts.

Currently supported extras fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

user_id :

The NSID of the user to fetch photos for.

photo_count :

Number of photos to return (Default 10, maximum 50)

just_friends :

Set to non-0 to only show photos from friends and family (excluding regular contacts)

single_photo :

Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order.

include_self :

Set to non-0 to include photos from the user specified by user_id.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

a list of photos or NULL on failure

flickcurl_photos_getContext ()

flickcurl_context ** flickcurl_photos_getContext        (flickcurl *fc,
                                                         const char *photo_id);

Get next and previous photos for a photo in a photostream.

Implements flickr.photos.getContext (0.7)

Returns an array of size 3 [prev, next, NULL] flickcurl_context* or NULL on error

fc :

flickcurl context

photo_id :

photo ID

Returns :

prev, next contexts or NULL

flickcurl_photos_getCounts ()

int **              flickcurl_photos_getCounts          (flickcurl *fc,
                                                         const char **dates_array,
                                                         const char **taken_dates_array);

Gets a list of photo counts for the given date ranges for the calling user.

Implements flickr.photos.getCounts (0.13)

The return array fields are: [0] count [1] fromdate as unixtime [2] todate as unixtime

fc :

flickcurl context

dates_array :

A comma delimited list of unix timestamps, denoting the periods to return counts for. They should be specified smallest first. (or NULL)

taken_dates_array :

A comma delimited list of mysql datetimes, denoting the periods to return counts for. They should be specified mallest first. (or NULL)

Returns :

array of int[3] or NULL on failure

flickcurl_photos_getExif ()

flickcurl_exif **   flickcurl_photos_getExif            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *secret);

Retrieves a list of EXIF/TIFF/GPS tags for a given photo.

Implements flickr.photos.getExif (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to fetch information for.

secret :

The secret for the photo (or NULL) If the correct secret is passed then permissions checking is skipped. This enables the 'sharing' of individual photos by passing around the id and secret.

Returns :

non-0 on failure

flickcurl_photos_getFavorites ()

flickcurl_person ** flickcurl_photos_getFavorites       (flickcurl *fc,
                                                         const char *photo_id,
                                                         int page,
                                                         int per_page);

Returns the list of people who have favorited a given photo.

Implements flickr.photos.getFavorites (0.12)

fc :

flickcurl context

photo_id :

The ID of the photo to fetch the favoriters list for.

page :

The page of results to return (default 1)

per_page :

Number of users to return per page (default 10, max 50)

Returns :

non-0 on failure

flickcurl_photos_getInfo ()

flickcurl_photo *   flickcurl_photos_getInfo            (flickcurl *fc,
                                                         const char *photo_id);

Get information about a photo

Deprecated for flickcurl_photos_getInfo2() that allows passing the optional secret.

fc :

flickcurl context

photo_id :

photo ID

Returns :

flickcurl_photo or NULL on failure

flickcurl_photos_getInfo2 ()

flickcurl_photo *   flickcurl_photos_getInfo2           (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *secret);

Get information about a photo

Implements flickr.photos.getInfo (0.5)

fc :

flickcurl context

photo_id :

photo ID

secret :

secret (or NULL)

Returns :

flickcurl_photo or NULL on failure

flickcurl_photos_getNotInSet ()

flickcurl_photo **  flickcurl_photos_getNotInSet        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of your photos that are not part of any sets.

See flickcurl_photos_getNotInSet_params() for details of parameters.

Implements flickr.photos.getNotInSet (0.12)

fc :

flickcurl context

min_upload_date :

Minimum upload date.

max_upload_date :

Maximum upload date.

min_taken_date :

Minimum taken date (or NULL).

max_taken_date :

Maximum taken date (or NULL).

privacy_filter :

Return photos only matching a certain privacy level. Valid privacy values are: 1 public, 2 friends, 3 family, 4 friends and family, 5 private

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

per_page :

Number of photos to return per page (default 100, max 500).

page :

The page of results to return (default 1).

Returns :

a list of photos or NULL on failure

flickcurl_photos_getNotInSet_params ()

flickcurl_photos_list * flickcurl_photos_getNotInSet_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of your photos that are not part of any sets.

Currently supported extras fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags.

fc :

flickcurl context

min_upload_date :

Minimum upload date.

max_upload_date :

Maximum upload date.

min_taken_date :

Minimum taken date (or NULL).

max_taken_date :

Maximum taken date (or NULL).

privacy_filter :

Return photos only matching a certain privacy level.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

a list of photos or NULL on failure

flickcurl_photos_getPerms ()

flickcurl_perms *   flickcurl_photos_getPerms           (flickcurl *fc,
                                                         const char *photo_id);

Get permissions for a photo.

Implements flickr.photos.getPerms (0.11)

fc :

flickcurl context

photo_id :

The id of the photo to get permissions for.

Returns :

permissions or NULL on failure

flickcurl_photos_getRecent ()

flickcurl_photo **  flickcurl_photos_getRecent          (flickcurl *fc,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of the latest public photos uploaded to flickr.

See flickcurl_photos_getRecent_params() for details of parameters.

Implements flickr.photos.getRecent (0.12)

fc :

flickcurl context

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

per_page :

Number of photos to return per page (default 100, max 500)

page :

The page of results to return (default 1)

Returns :

non-0 on failure

flickcurl_photos_getRecent_params ()

flickcurl_photos_list * flickcurl_photos_getRecent_params
                                                        (flickcurl *fc,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of the latest public photos uploaded to flickr.

Currently supported extras fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_photos_getSizes ()

flickcurl_size **   flickcurl_photos_getSizes           (flickcurl *fc,
                                                         const char *photo_id);

Returns the available sizes for a photo. The calling user must have permission to view the photo.

Implements flickr.photos.getSizes (0.13)

fc :

flickcurl context

photo_id :

The id of the photo to fetch size information for.

Returns :

non-0 on failure

flickcurl_photos_getUntagged ()

flickcurl_photo **  flickcurl_photos_getUntagged        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of your photos with no tags.

See flickcurl_photos_getUntagged_params() for details of parameters.

Implements flickr.photos.getUntagged (0.12)

fc :

flickcurl context

min_upload_date :

Minimum upload date.

max_upload_date :

Maximum upload date.

min_taken_date :

Minimum taken date (or NULL)

max_taken_date :

Maximum taken date (or NULL)

privacy_filter :

Return photos only matching a certain privacy level. Valid privacy values are: 1 public, 2 friends, 3 family, 4 friends and family, 5 private

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

per_page :

Number of photos to return per page (default 100, max 500).

page :

The page of results to return (default 1).

Returns :

a list of photos or NULL on failure

flickcurl_photos_getUntagged_params ()

flickcurl_photos_list * flickcurl_photos_getUntagged_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of your photos with no tags.

Currently supported extras fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags.

fc :

flickcurl context

min_upload_date :

Minimum upload date.

max_upload_date :

Maximum upload date.

min_taken_date :

Minimum taken date (or NULL)

max_taken_date :

Maximum taken date (or NULL)

privacy_filter :

Return photos only matching a certain privacy level. Valid privacy values are: 1 public, 2 friends, 3 family, 4 friends and family, 5 private

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

a list of photos or NULL on failure

flickcurl_photos_getWithGeoData ()

flickcurl_photo **  flickcurl_photos_getWithGeoData     (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of your geo-tagged photos.

See flickcurl_photos_getWithGeoData_params() for details of parameters.

Implements flickr.photos.getWithGeoData (0.12)

fc :

flickcurl context

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

privacy_filter :

Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL)

extras :

A comma-delimited list of extra information to fetch for each returned record.

per_page :

Number of photos to return per page.

page :

The page of results to return.

Returns :

non-0 on failure

flickcurl_photos_getWithGeoData_params ()

flickcurl_photos_list * flickcurl_photos_getWithGeoData_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of your geo-tagged photos.

fc :

flickcurl context

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

privacy_filter :

Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_photos_getWithoutGeoData ()

flickcurl_photo **  flickcurl_photos_getWithoutGeoData  (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Returns a list of your photos which haven't been geo-tagged.

See flickcurl_photos_getWithoutGeoData_params() for details of parameters.

Implements flickr.photos.getWithoutGeoData (0.12)

fc :

flickcurl context

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

privacy_filter :

Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL)

extras :

A comma-delimited list of extra information to fetch for each returned record.

per_page :

Number of photos to return per page.

page :

The page of results to return.

Returns :

non-0 on failure

flickcurl_photos_getWithoutGeoData_params ()

flickcurl_photos_list * flickcurl_photos_getWithoutGeoData_params
                                                        (flickcurl *fc,
                                                         int min_upload_date,
                                                         int max_upload_date,
                                                         const char *min_taken_date,
                                                         const char *max_taken_date,
                                                         int privacy_filter,
                                                         flickcurl_photos_list_params *list_params);

Returns a list of your photos which haven't been geo-tagged.

fc :

flickcurl context

min_upload_date :

Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

max_upload_date :

Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL)

min_taken_date :

Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

max_taken_date :

Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL)

privacy_filter :

Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL)

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_photos_licenses_getInfo ()

flickcurl_license ** flickcurl_photos_licenses_getInfo  (flickcurl *fc);

Get a list of available photo licenses for Flickr.

Implements flickr.photos.licenses.getInfo (0.6)

fc :

flickcurl context

Returns :

an array of flickcurl_license or NULL on failure

flickcurl_photos_licenses_getInfo_by_id ()

flickcurl_license * flickcurl_photos_licenses_getInfo_by_id
                                                        (flickcurl *fc,
                                                         int id);

Get an individual photo license by ID

Not part of the Flickr API.

fc :

flickcurl context

id :

license ID

Returns :

a flickcurl_license or NULL on failure

flickcurl_photos_licenses_setLicense ()

int                 flickcurl_photos_licenses_setLicense
                                                        (flickcurl *fc,
                                                         const char *photo_id,
                                                         int license_id);

Sets the license for a photo.

Implements flickr.photos.licenses.setLicense (0.12)

fc :

flickcurl context

photo_id :

The photo to update the license for.

license_id :

The license to apply, or 0 (zero) to remove the current license.

Returns :

non-0 on failure

flickcurl_photos_notes_add ()

char *              flickcurl_photos_notes_add          (flickcurl *fc,
                                                         const char *photo_id,
                                                         int note_x,
                                                         int note_y,
                                                         int note_w,
                                                         int note_h,
                                                         const char *note_text);

Add a note to a photo.

Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages.

Implements flickr.photos.notes.add (0.12)

fc :

flickcurl context

photo_id :

The id of the photo to add a note to

note_x :

The left coordinate of the note

note_y :

The top coordinate of the note

note_w :

The width of the note

note_h :

The height of the note

note_text :

The description of the note

Returns :

note ID or NULL on failure

flickcurl_photos_notes_delete ()

int                 flickcurl_photos_notes_delete       (flickcurl *fc,
                                                         const char *note_id);

Delete a note from a photo.

Implements flickr.photos.notes.delete (0.12)

fc :

flickcurl context

note_id :

The id of the note to delete

Returns :

non-0 on failure

flickcurl_photos_notes_edit ()

int                 flickcurl_photos_notes_edit         (flickcurl *fc,
                                                         const char *note_id,
                                                         int note_x,
                                                         int note_y,
                                                         int note_w,
                                                         int note_h,
                                                         const char *note_text);

Edit a note on a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages.

Implements flickr.photos.notes.edit (0.12)

fc :

flickcurl context

note_id :

The id of the note to edit

note_x :

The left coordinate of the note

note_y :

The top coordinate of the note

note_w :

The width of the note

note_h :

The height of the note

note_text :

The description of the note

Returns :

non-0 on failure

flickcurl_photos_recentlyUpdated ()

flickcurl_photo **  flickcurl_photos_recentlyUpdated    (flickcurl *fc,
                                                         int min_date,
                                                         const char *extras,
                                                         int per_page,
                                                         int page);

Return a list of your photos that have been recently created or which have been recently modified

See flickcurl_photos_recentlyUpdated() for details of parameters.

Implements flickr.photos.recentlyUpdated (0.12)

fc :

flickcurl context

min_date :

A Unix timestamp indicating the date from which modifications should be compared.

extras :

A comma-delimited list of extra information to fetch for each returned record (or NULL)

per_page :

Number of photos to return per page (default 100, max 500)

page :

The page of results to return (default 1)

Returns :

non-0 on failure

flickcurl_photos_recentlyUpdated_params ()

flickcurl_photos_list * flickcurl_photos_recentlyUpdated_params
                                                        (flickcurl *fc,
                                                         int min_date,
                                                         flickcurl_photos_list_params *list_params);

Return a list of your photos that have been recently created or which have been recently modified

Recently modified may mean that the photo's metadata (title, description, tags) may have been changed or a comment has been added (or just modified somehow :-)

Currently supported extra fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags.

Optional extra type 'media' that will return an extra media = VALUE for VALUE "photo" or "video". API addition 2008-04-07.

fc :

flickcurl context

min_date :

A Unix timestamp indicating the date from which modifications should be compared.

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

non-0 on failure

flickcurl_photos_removeTag ()

int                 flickcurl_photos_removeTag          (flickcurl *fc,
                                                         const char *tag_id);

Remove a tag from a photo.

The tag_id is returned such as from flickcurl_photos_getInfo()

Implements flickr.photos.removeTag (0.9)

fc :

flickcurl context

tag_id :

tag ID to remove from the photo

Returns :

non-0 on failure

flickcurl_photos_replace ()

flickcurl_upload_status * flickcurl_photos_replace      (flickcurl *fc,
                                                         const char *photo_file,
                                                         const char *photo_id,
                                                         int async);

Replace a photo with a new file.

Implements Replacing Photos (0.10) Implements Asynchronous Uploading (0.10)

fc :

flickcurl context

photo_file :

photo filename

photo_id :

photo ID to replace

async :

upload asynchronously boolean (non-0 true)

Returns :

flickcurl_upload_status or NULL on failure

flickcurl_photos_search ()

flickcurl_photo **  flickcurl_photos_search             (flickcurl *fc,
                                                         flickcurl_search_params *params);

Return a list of photos matching some criteria.

Only photos visible to the calling user will be returned. To return private or semi-private photos, the caller must be authenticated with 'read' permissions, and have permission to view the photos. Unauthenticated calls will only return public photos.

Implements flickr.photos.search (0.11)

Flickcurl 1.0: Added place_id for places API as announced 2008-01-11 http://tech.groups.yahoo.com/group/yws-flickr/message/3688

See flickcurl_photos_search_params() for details on the the search parameters.

Ensure the params object is propertly initialized to zeros/NULLs or use flickcurl_search_params_init() to initialize this.

fc :

flickcurl context

params :

flickcurl_search_params search parameters

Returns :

an array of flickcurl_photo pointers (may be length 0) or NULL on failure

flickcurl_photos_search_params ()

flickcurl_photos_list * flickcurl_photos_search_params  (flickcurl *fc,
                                                         flickcurl_search_params *params,
                                                         flickcurl_photos_list_params *list_params);

Return a photos list or raw content matching some criteria.

Only photos visible to the calling user will be returned. To return private or semi-private photos, the caller must be authenticated with 'read' permissions, and have permission to view the photos. Unauthenticated calls will only return public photos.

Ensure the params object is propertly initialized to zeros/NULLs or use flickcurl_search_params_init() to initialize this.

Flickcurl 1.15; Added in_gallery search parameter as announced 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/

Flickcurl 1.14: Added geo_context and is_commons search parameters to flickcurl_search_params. Added more extras to docs.

Flickcurl 1.6: Added list_params beyond flickcurl_photos_search() to allow returning raw content if list_params is present and field format is not NULL as announced 2008-08-25 http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/

NOTE: The params fields: extras, per_page and page are ignored - the values are taken from the list_params fields.

Flickcurl 1.0: Added place_id for places API as announced 2008-01-11 http://tech.groups.yahoo.com/group/yws-flickr/message/3688

Optional parameter "media" that defaults to "all" but can also be set to "photos" or "videos" to filter results by media type. API addition 2008-04-07.

Optional parameter "has_geo" for any photo that has been geotagged. As announced 2008-06-27 http://tech.groups.yahoo.com/group/yws-flickr/message/4146

Optional parameters "lat", "lon", "radius" and "radius_units" added for doing radial geo queries from point (lat, lon) within radius/radius_units. radius_units default is "km". As announced 2008-06-27 http://tech.groups.yahoo.com/group/yws-flickr/message/4146

(Experimental) Optional parameter "contacts" requires requires that the "user_id" field also is set. Valid values are "all" or "ff" for just friends and family. As announced 2008-06-30 http://tech.groups.yahoo.com/group/yws-flickr/message/4162

fc :

flickcurl context

params :

flickcurl_search_params search parameters

list_params :

flickcurl_photos_list_params result parameters (or NULL)

Returns :

a photos list or NULL

flickcurl_search_params

typedef struct {
  char* user_id;
  char* tags;
  char* tag_mode;
  char* text;
  int min_upload_date;
  int max_upload_date;
  char* min_taken_date;
  char* max_taken_date;
  char* license;
  char* sort;
  char* privacy_filter;
  char* bbox;
  int accuracy;
  int safe_search;
  int content_type;
  char* machine_tags;
  char* machine_tag_mode;
  char* group_id;
  char* extras;
  int per_page;
  int page;
  char* place_id;
  char* media;
  int has_geo;
  double lat;
  double lon;
  double radius;
  char* radius_units;
  char* contacts;
  int woe_id;
  int geo_context;
  int is_commons;
  int in_gallery;
} flickcurl_search_params;

Search parameters for flickcurl_photos_search()

char *user_id;

The NSID of the user who's photo to search (or "me" or NULL).

char *tags;

A comma-delimited list of tags (or NULL)

char *tag_mode;

Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified (or NULL)

char *text;

Free text search (or NULL)

int min_upload_date;

Minimum upload date as a unix timestamp (or 0)

int max_upload_date;

Maximum upload date as a unix timestamp (or 0)

char *min_taken_date;

Minimum taken date in the form of a mysql datetime (or NULL)

char *max_taken_date;

Maximum taken date in the form of a mysql datetime (or NULL)

char *license;

Comma-separated list of photo licenses (or NULL)

char *sort;

The order in which to sort returned photos. Defaults to date-posted-desc. The possible values are: date-posted-asc, date-posted-desc, date-taken-asc, date-taken-desc, interestingness-desc, interestingness-asc, and relevance (or NULL)

char *privacy_filter;

Return photos only matching a certain privacy level.

char *bbox;

A comma-delimited list of 4 values defining the Bounding Box of the area that will be searched.

int accuracy;

Recorded accuracy level of the location information. Current range is 1-16

int safe_search;

Safe search setting: 1 safe, 2 moderate, 3 restricted (or 0).

int content_type;

Content Type setting: 1 for photos only, 2 for screenshots only, 3 for 'other' only, 4 for all types. (or 0)

char *machine_tags;

Machine tag search syntax

char *machine_tag_mode;

Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified.

char *group_id;

The id of a group who's pool to search. If specified, only matching photos posted to the group's pool will be returned. (or NULL)

char *extras;

A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o. (or NULL)

int per_page;

Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or 0)

int page;

The page of results to return. If this argument is omitted, it defaults to 1. (or 0)

char *place_id;

A Flickr place id. (only used if bbox argument isn't present). Experimental. Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters - If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future) (or NULL)

char *media;

"photos" or "videos" (or NULL)

int has_geo;

non-0 if a photo has been geotagged (or 0)

double lat;

A valid latitude, in decimal format, for doing radial geo queries (or ignored if radius is 0.0)

double lon;

A valid longitude, in decimal format, for doing radial geo queries (or ignored if radius is 0.0)

double radius;

A valid radius used for geo queries, greater than zero and less than 20 miles (or 32 kilometers), for use with point-based geo queries. The default value is 5 (km) (or 0.0 for not used)

char *radius_units;

The unit of measure when doing radial geo queries. Valid options are "mi" (miles) and "km" (kilometers). The default is "km" (or NULL)

char *contacts;

(Experimental) Requires user_id field be set and limits queries to photos beloing to that user's photos. Valid arguments are 'all' or 'ff' for just friends and family.

int woe_id;

A 32-bit identifier that uniquely represents spatial entities. (not used if bbox argument is present). Same restrictions as place_id (or 0)

int geo_context;

A numeric value representing the photo's geotagginess beyond latitude and longitude. The current list of context IDs is 0: not defined, 1: indoors and 2: outdoors. Geo queries require some sort of limiting agent in order to prevent the database from crying (or 0)

int is_commons;

Limit the scope of the search to only photos that are part of the Flickr Commons project. Default is false (or 0)

int in_gallery;

Limit the scope of the search to only photos that are in a gallery. Default is false, search all photos.

flickcurl_search_params_init ()

int                 flickcurl_search_params_init        (flickcurl_search_params *params);

Initialise an existing search parameters structure

params :

search params to init

Returns :

non-0 on failure

flickcurl_photos_setContentType ()

int                 flickcurl_photos_setContentType     (flickcurl *fc,
                                                         const char *photo_id,
                                                         int content_type);

Set the content type of a photo.

Implements flickr.photos.setContentType (0.11)

fc :

flickcurl context

photo_id :

The id of the photo to set the adultness of.

content_type :

The content type of the photo: 1 for Photo, 2 for Screenshot, and 3 for Other.

Returns :

non-0 on failure

flickcurl_photos_setDates ()

int                 flickcurl_photos_setDates           (flickcurl *fc,
                                                         const char *photo_id,
                                                         int date_posted,
                                                         int date_taken,
                                                         int date_taken_granularity);

Set one or both of the dates for a photo.

Implements flickr.photos.setDates (0.11)

fc :

flickcurl context

photo_id :

The id of the photo to edit dates for.

date_posted :

The date the photo was uploaded to flickr as a unix time (or -1)

date_taken :

The date the photo was taken as a unix time (or -1)

date_taken_granularity :

The granularity of the date the photo was taken: 0 second, 4 month, 6 year (or -1)

Returns :

non-0 on failure

flickcurl_photos_setMeta ()

int                 flickcurl_photos_setMeta            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *title,
                                                         const char *description);

Set the meta information for a photo.

Implements flickr.photos.setMeta (0.11)

fc :

flickcurl context

photo_id :

The id of the photo to set information for.

title :

The title for the photo.

description :

The description for the photo.

Returns :

non-0 on failure

flickcurl_photos_setPerms ()

int                 flickcurl_photos_setPerms           (flickcurl *fc,
                                                         const char *photo_id,
                                                         flickcurl_perms *perms);

Set permissions for a photo.

Implements flickr.photos.setPerms (0.11)

fc :

flickcurl context

photo_id :

The id of the photo to set permissions for.

perms :

The flickcurl_perms photo permissions

Returns :

non-0 on failure

flickcurl_photos_setSafetyLevel ()

int                 flickcurl_photos_setSafetyLevel     (flickcurl *fc,
                                                         const char *photo_id,
                                                         int safety_level,
                                                         int hidden);

Set the safety level of a photo.

Implements flickr.photos.setSafetyLevel (0.11)

fc :

flickcurl context

photo_id :

The id of the photo to set the adultness of.

safety_level :

The safety level of the photo. 1 for Safe, 2 for Moderate, and 3 for Restricted (or <0 for no change)

hidden :

>0 to hide the photo from public searches. 0 to not. <0 for no change.

Returns :

non-0 on failure

flickcurl_photos_setTags ()

int                 flickcurl_photos_setTags            (flickcurl *fc,
                                                         const char *photo_id,
                                                         const char *tags);

Set the tags for a photo.

Note that this replaces all existing tags with the tags here.

Implements flickr.photos.setTags (0.9)

fc :

flickcurl context

photo_id :

photo ID

tags :

all tags for the photo as a space-separated list

Returns :

non-0 on failure

flickcurl_photos_transform_rotate ()

int                 flickcurl_photos_transform_rotate   (flickcurl *fc,
                                                         const char *photo_id,
                                                         int degrees);

Rotate a photo.

Implements flickr.photos.transform.rotate (0.13)

fc :

flickcurl context

photo_id :

The id of the photo to rotate.

degrees :

The amount of degrees by which to rotate the photo (clockwise) from it's current orientation. Valid values are 90, 180 and 270.

Returns :

non-0 on failure

flickcurl_photos_upload_checkTickets ()

flickcurl_ticket ** flickcurl_photos_upload_checkTickets
                                                        (flickcurl *fc,
                                                         const char **tickets_ids);

Checks the status of one or more asynchronous photo upload tickets.

Implements flickr.photos.upload.checkTickets (0.13)

fc :

flickcurl context

tickets_ids :

Array of ticket ids

Returns :

non-0 on failure

flickcurl_photos_upload_params ()

flickcurl_upload_status * flickcurl_photos_upload_params
                                                        (flickcurl *fc,
                                                         flickcurl_upload_params *params);

Uploads a photo with safety level and content type

fc :

flickcurl context

params :

upload parameters

Returns :

flickcurl_upload_status or NULL on failure
flickcurl-1.25/docs/tmpl/0000755000175000017500000000000012210726306012323 500000000000000flickcurl-1.25/docs/tmpl/flickcurl-unused.sgml0000644000175000017500000000255312210726306016413 00000000000000 section-photoslists @user_data: @user_data: @prefix: @prefix_len: @uri: @uri_len: @user_data: @subject: @subject_type: @predicate_nspace: @predicate_name: @object: @object_type: @datatype_uri: @id: @name: @path: @count: @categories: @categories_count: @groups: @groups_count: @note: @photo: @Returns: @farm: @server: @nsid: @Returns: flickcurl-1.25/docs/tmpl/section-category.sgml0000644000175000017500000000111112210726306016400 00000000000000 Categories Categories of groups Categories of groups @categories_object: @category: flickcurl-1.25/docs/tmpl/section-blogs.sgml0000644000175000017500000000203212210726306015674 00000000000000 Blogs Posting photos to blogs Posting photos to blogs @id: @name: @needs_password: @url: @fc: @Returns: @id: @name: @fc: @Returns: @fc: @blog_id: @photo_id: @title: @description: @blog_password: @Returns: @blogs_object: @blog_services_object: flickcurl-1.25/docs/tmpl/section-prefs.sgml0000644000175000017500000000144412210726306015713 00000000000000 Preferences User preferences User preferences @fc: @Returns: @fc: @Returns: @fc: @Returns: @fc: @Returns: @fc: @Returns: flickcurl-1.25/docs/tmpl/section-place.sgml0000644000175000017500000001022312210726306015653 00000000000000 Place Places in the real world. Places in the real world. @names: @ids: @urls: @type: @woe_ids: @location: @count: @shapedata: @shapedata_length: @shapefile_urls: @shapefile_urls_count: @shape: @timezone: @place: @places_object: @FLICKCURL_PLACE_LOCATION: @FLICKCURL_PLACE_NEIGHBOURHOOD: @FLICKCURL_PLACE_NEIGHBORHOOD: @FLICKCURL_PLACE_LOCALITY: @FLICKCURL_PLACE_COUNTY: @FLICKCURL_PLACE_REGION: @FLICKCURL_PLACE_COUNTRY: @FLICKCURL_PLACE_CONTINENT: @FLICKCURL_PLACE_LAST: @type: @id: @name: @place_type: @Returns: @ptis_object: @place_label: @Returns: @place_type: @Returns: @fc: @query: @Returns: @fc: @lat: @lon: @accuracy: @Returns: @fc: @place_type: @woe_id: @place_id: @threshold: @Returns: @fc: @place_id: @woe_id: @Returns: @fc: @place_id: @woe_id: @Returns: @fc: @place_id: @woe_id: @Returns: @fc: @place_id: @woe_id: @Returns: @fc: @url: @Returns: @fc: @Returns: @fc: @place_id: @woe_id: @Returns: @fc: @place_type: @date: @woe_id: @place_id: @Returns: @place_type_id: @Returns: @fc: @place_type: @minimum_longitude: @minimum_latitude: @maximum_longitude: @maximum_latitude: @Returns: @fc: @place_type: @woe_id: @place_id: @threshold: @contacts: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @Returns: @fc: @place_type: @woe_id: @place_id: @threshold: @Returns: @fc: @place_type: @woe_id: @place_id: @threshold: @tags: @tag_mode: @machine_tags: @machine_tag_mode: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @Returns: @fc: @place_id: @Returns: @fc: @url: @Returns: @fc: @woe_id: @place_id: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @Returns: flickcurl-1.25/docs/tmpl/section-note.sgml0000644000175000017500000000066512210726306015545 00000000000000 Notes. Photo notes. Photo notes. @id: @author: @authorname: @x: @y: @w: @h: @text: flickcurl-1.25/docs/tmpl/section-auth.sgml0000644000175000017500000000650112210726306015534 00000000000000 Authentication Authentication of web service requests Authentication of web service requests @fc: @Returns: @fc: @api_key: @fc: @Returns: @fc: @secret: @fc: @Returns: @fc: @auth_token: @fc: @token: @Returns: @fc: @Returns: @fc: @frob: @Returns: @fc: @frob: @Returns: @fc: @Returns: @fc: @Returns: @fc: @client_key: @fc: @Returns: @fc: @client_secret: @fc: @Returns: @fc: @token: @fc: @Returns: @fc: @secret: @fc: @Returns: @fc: @token: @fc: @Returns: @fc: @secret: @fc: @Returns: @fc: @Returns: @fc: @callback: @Returns: @fc: @Returns: @fc: @verifier: @Returns: flickcurl-1.25/docs/tmpl/section-gallery.sgml0000644000175000017500000000400512210726306016227 00000000000000 Galleries Galleries of photos. Galleries of photos. @id: @url: @owner: @date_create: @date_update: @primary_photo: @count_photos: @count_videos: @title: @description: @gallery: @galleries_object: @fc: @gallery_id: @photo_id: @comment_text: @Returns: @fc: @title: @description: @primary_photo_id: @gallery_url_p: @Returns: @fc: @gallery_id: @title: @description: @Returns: @fc: @gallery_id: @photo_id: @new_comment: @Returns: @fc: @gallery_id: @primary_photo_id: @photo_ids_array: @Returns: @fc: @gallery_id: @Returns: @fc: @user_id: @per_page: @page: @Returns: @fc: @photo_id: @per_page: @page: @Returns: @fc: @gallery_id: @list_params: @Returns: @fc: @gallery_id: @extras: @per_page: @page: @Returns: flickcurl-1.25/docs/tmpl/section-people.sgml0000644000175000017500000000375712210726306016071 00000000000000 People Photos taken by people APIs. Photos taken by people APIs. @fc: @email: @Returns: @fc: @username: @Returns: @fc: @user_id: @extras: @Returns: @fc: @user_id: @Returns: @fc: @user_id: @safe_search: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @content_type: @privacy_filter: @extras: @per_page: @page: @Returns: @fc: @user_id: @safe_search: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @content_type: @privacy_filter: @list_params: @Returns: @fc: @user_id: @extras: @per_page: @page: @Returns: @fc: @user_id: @list_params: @Returns: @fc: @user_id: @Returns: @fc: @user_id: @extras: @per_page: @page: @Returns: @fc: @user_id: @list_params: @Returns: @fc: @Returns: flickcurl-1.25/docs/tmpl/section-core.sgml0000644000175000017500000000642212210726306015525 00000000000000 Core Core library functions Core library functions @user_data: @message: @void: @Returns: @void: @void: @Returns: @curl_handle: @Returns: @fc: @fc: @Returns: @extras_format: @name_p: @label_p: @Returns: @feed_format: @name_p: @label_p: @mime_type_p: @Returns: @user_data: @curl_handle: @fc: @curl_handler: @curl_handler_data: @fc: @data: @data_length: @fc: @error_handler: @error_data: @fc: @value: @fc: @proxy: @fc: @Param2: @fc: @uri: @fc: @uri: @fc: @uri: @fc: @fc: @tag_handler: @tag_data: @fc: @user_agent: @fc: @is_write: @fc: @doc: flickcurl-1.25/docs/tmpl/section-person.sgml0000644000175000017500000000247712210726306016111 00000000000000 Person class. Person class. Person class. @person: @persons: @field: @Returns: @nsid: @fields: @string: @integer: @type: @PERSON_FIELD_none: @PERSON_FIELD_isadmin: @PERSON_FIELD_ispro: @PERSON_FIELD_iconserver: @PERSON_FIELD_iconfarm: @PERSON_FIELD_username: @PERSON_FIELD_realname: @PERSON_FIELD_mbox_sha1sum: @PERSON_FIELD_location: @PERSON_FIELD_photosurl: @PERSON_FIELD_profileurl: @PERSON_FIELD_mobileurl: @PERSON_FIELD_photos_firstdate: @PERSON_FIELD_photos_firstdatetaken: @PERSON_FIELD_photos_count: @PERSON_FIELD_photos_views: @PERSON_FIELD_favedate: @PERSON_FIELD_FIRST: @PERSON_FIELD_LAST: flickcurl-1.25/docs/tmpl/section-comment.sgml0000644000175000017500000000117312210726306016235 00000000000000 Comments Photo comments Photo comments @id: @author: @authorname: @datecreate: @permalink: @text: @comment_object: @comments_object: flickcurl-1.25/docs/tmpl/section-urls.sgml0000644000175000017500000000171012210726306015555 00000000000000 URLs Support functions to get URLs. Support functions to get URLs. @fc: @group_id: @Returns: @fc: @user_id: @Returns: @fc: @user_id: @Returns: @fc: @url: @Returns: @fc: @url: @Returns: @fc: @url: @Returns: flickcurl-1.25/docs/tmpl/section-photo.sgml0000644000175000017500000003122612210726306015726 00000000000000 Photo Photo. Photo. @id: @uri: @tags: @tags_count: @fields: @place: @video: @media_type: @notes: @notes_count: @photo: @photos: @field: @Returns: @photo: @Returns: @photo: @Returns: @photo: @c: @Returns: @photo: @Returns: @photo_id: @Returns: @uri: @Returns: @string: @integer: @type: @PHOTO_FIELD_none: @PHOTO_FIELD_dateuploaded: @PHOTO_FIELD_farm: @PHOTO_FIELD_isfavorite: @PHOTO_FIELD_license: @PHOTO_FIELD_originalformat: @PHOTO_FIELD_rotation: @PHOTO_FIELD_server: @PHOTO_FIELD_dates_lastupdate: @PHOTO_FIELD_dates_posted: @PHOTO_FIELD_dates_taken: @PHOTO_FIELD_dates_takengranularity: @PHOTO_FIELD_description: @PHOTO_FIELD_editability_canaddmeta: @PHOTO_FIELD_editability_cancomment: @PHOTO_FIELD_geoperms_iscontact: @PHOTO_FIELD_geoperms_isfamily: @PHOTO_FIELD_geoperms_isfriend: @PHOTO_FIELD_geoperms_ispublic: @PHOTO_FIELD_location_accuracy: @PHOTO_FIELD_location_latitude: @PHOTO_FIELD_location_longitude: @PHOTO_FIELD_owner_location: @PHOTO_FIELD_owner_nsid: @PHOTO_FIELD_owner_realname: @PHOTO_FIELD_owner_username: @PHOTO_FIELD_title: @PHOTO_FIELD_visibility_isfamily: @PHOTO_FIELD_visibility_isfriend: @PHOTO_FIELD_visibility_ispublic: @PHOTO_FIELD_secret: @PHOTO_FIELD_originalsecret: @PHOTO_FIELD_location_neighbourhood: @PHOTO_FIELD_location_neighborhood: @PHOTO_FIELD_location_locality: @PHOTO_FIELD_location_county: @PHOTO_FIELD_location_region: @PHOTO_FIELD_location_country: @PHOTO_FIELD_location_placeid: @PHOTO_FIELD_neighbourhood_placeid: @PHOTO_FIELD_neighborhood_placeid: @PHOTO_FIELD_locality_placeid: @PHOTO_FIELD_county_placeid: @PHOTO_FIELD_region_placeid: @PHOTO_FIELD_country_placeid: @PHOTO_FIELD_location_woeid: @PHOTO_FIELD_neighbourhood_woeid: @PHOTO_FIELD_neighborhood_woeid: @PHOTO_FIELD_locality_woeid: @PHOTO_FIELD_county_woeid: @PHOTO_FIELD_region_woeid: @PHOTO_FIELD_country_woeid: @PHOTO_FIELD_usage_candownload: @PHOTO_FIELD_usage_canblog: @PHOTO_FIELD_usage_canprint: @PHOTO_FIELD_owner_iconserver: @PHOTO_FIELD_owner_iconfarm: @PHOTO_FIELD_original_width: @PHOTO_FIELD_original_height: @PHOTO_FIELD_views: @PHOTO_FIELD_comments: @PHOTO_FIELD_favorites: @PHOTO_FIELD_gallery_comment: @PHOTO_FIELD_FIRST: @PHOTO_FIELD_LAST: @VALUE_TYPE_NONE: @VALUE_TYPE_PHOTO_ID: @VALUE_TYPE_PHOTO_URI: @VALUE_TYPE_UNIXTIME: @VALUE_TYPE_BOOLEAN: @VALUE_TYPE_DATETIME: @VALUE_TYPE_FLOAT: @VALUE_TYPE_INTEGER: @VALUE_TYPE_STRING: @VALUE_TYPE_URI: @VALUE_TYPE_PERSON_ID: @VALUE_TYPE_MEDIA_TYPE: @VALUE_TYPE_TAG_STRING: @VALUE_TYPE_COLLECTION_ID: @VALUE_TYPE_ICON_PHOTOS: @VALUE_TYPE_LAST: @fc: @photo_id: @tags: @Returns: @fc: @photo_id: @comment_text: @Returns: @fc: @comment_id: @Returns: @fc: @comment_id: @comment_text: @Returns: @fc: @photo_id: @Returns: @fc: @date_lastcomment: @contacts_filter: @list_params: @Returns: @fc: @photo_id: @Returns: @fc: @location: @place_id: @woe_id: @Returns: @fc: @photo_id: @place_id: @woe_id: @Returns: @fc: @photo_id: @Returns: @fc: @photo_id: @Returns: @fc: @location: @extras: @per_page: @page: @Returns: @fc: @location: @list_params: @Returns: @fc: @photo_id: @Returns: @fc: @photo_id: @context: @Returns: @fc: @photo_id: @location: @Returns: @fc: @photo_id: @perms: @Returns: @fc: @photo_id: @Returns: @fc: @contact_count: @just_friends: @single_photo: @include_self: @extras: @Returns: @fc: @contact_count: @just_friends: @single_photo: @include_self: @list_params: @Returns: @fc: @user_id: @photo_count: @just_friends: @single_photo: @include_self: @extras: @Returns: @fc: @user_id: @photo_count: @just_friends: @single_photo: @include_self: @list_params: @Returns: @fc: @photo_id: @Returns: @fc: @dates_array: @taken_dates_array: @Returns: @fc: @photo_id: @secret: @Returns: @fc: @photo_id: @page: @per_page: @Returns: @fc: @photo_id: @Returns: @fc: @photo_id: @secret: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @extras: @per_page: @page: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @list_params: @Returns: @fc: @photo_id: @Returns: @fc: @extras: @per_page: @page: @Returns: @fc: @list_params: @Returns: @fc: @photo_id: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @extras: @per_page: @page: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @list_params: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @extras: @per_page: @page: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @list_params: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @extras: @per_page: @page: @Returns: @fc: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @privacy_filter: @list_params: @Returns: @fc: @Returns: @fc: @id: @Returns: @fc: @photo_id: @license_id: @Returns: @fc: @photo_id: @note_x: @note_y: @note_w: @note_h: @note_text: @Returns: @fc: @note_id: @Returns: @fc: @note_id: @note_x: @note_y: @note_w: @note_h: @note_text: @Returns: @fc: @min_date: @extras: @per_page: @page: @Returns: @fc: @min_date: @list_params: @Returns: @fc: @tag_id: @Returns: @fc: @photo_file: @photo_id: @async: @Returns: @fc: @params: @Returns: @fc: @params: @list_params: @Returns: @user_id: @tags: @tag_mode: @text: @min_upload_date: @max_upload_date: @min_taken_date: @max_taken_date: @license: @sort: @privacy_filter: @bbox: @accuracy: @safe_search: @content_type: @machine_tags: @machine_tag_mode: @group_id: @extras: @per_page: @page: @place_id: @media: @has_geo: @lat: @lon: @radius: @radius_units: @contacts: @woe_id: @geo_context: @is_commons: @in_gallery: @params: @Returns: @fc: @photo_id: @content_type: @Returns: @fc: @photo_id: @date_posted: @date_taken: @date_taken_granularity: @Returns: @fc: @photo_id: @title: @description: @Returns: @fc: @photo_id: @perms: @Returns: @fc: @photo_id: @safety_level: @hidden: @Returns: @fc: @photo_id: @tags: @Returns: @fc: @photo_id: @degrees: @Returns: @fc: @tickets_ids: @Returns: @fc: @params: @Returns: flickcurl-1.25/docs/tmpl/section-panda.sgml0000644000175000017500000000104412210726306015653 00000000000000 Panda photos Photos selected by Pandas. Photos selected by Pandas. @fc: @Returns: @fc: @panda_name: @Returns: flickcurl-1.25/docs/tmpl/section-serializer.sgml0000644000175000017500000000177712210726306016756 00000000000000 Serializer Serialize a photo to RDF Triples. Serialize a photo to RDF Triples. @version: @emit_namespace: @emit_triple: @emit_finish: @fc: @data: @factory: @Returns: @serializer: @fcs: @photo: @Returns: @FLICKCURL_TERM_TYPE_RESOURCE: @FLICKCURL_TERM_TYPE_BLANK: @FLICKCURL_TERM_TYPE_LITERAL: flickcurl-1.25/docs/tmpl/section-photoslist.sgml0000644000175000017500000000146112210726306017003 00000000000000 Photos List Photos List. Photos List. @format: @photos: @photos_count: @content: @content_length: @page: @per_page: @total_count: @version: @format: @extras: @per_page: @page: @list_params: @Returns: @photos_list: flickcurl-1.25/docs/tmpl/section-photoset.sgml0000644000175000017500000000611012210726306016434 00000000000000 Photoset Set of Photos. Set of Photos. @id: @primary: @secret: @server: @farm: @photos_count: @title: @description: @photos: @owner: @photoset: @photosets_object: @fc: @photoset_id: @photo_id: @Returns: @fc: @photoset_id: @comment_text: @Returns: @fc: @comment_id: @Returns: @fc: @comment_id: @comment_text: @Returns: @fc: @photoset_id: @Returns: @fc: @title: @description: @primary_photo_id: @photoset_url_p: @Returns: @fc: @photoset_id: @Returns: @fc: @photoset_id: @title: @description: @Returns: @fc: @photoset_id: @primary_photo_id: @photo_ids_array: @Returns: @fc: @photo_id: @photoset_id: @Returns: @fc: @photoset_id: @Returns: @fc: @user_id: @Returns: @fc: @photoset_id: @extras: @privacy_filter: @per_page: @page: @Returns: @fc: @photoset_id: @privacy_filter: @list_params: @Returns: @fc: @photoset_ids_array: @Returns: @fc: @photoset_id: @photo_id: @Returns: @fc: @photoset_id: @photo_ids_array: @Returns: @fc: @photoset_id: @photo_ids_array: @Returns: @fc: @photoset_id: @photo_id: @Returns: flickcurl-1.25/docs/tmpl/section-group.sgml0000644000175000017500000000550212210726306015727 00000000000000 Groups Groups of users. Groups of users. @nsid: @name: @description: @lang: @is_admin: @is_pool_moderated: @is_eighteenplus: @privacy: @photos: @iconserver: @members: @throttle_count: @throttle_mode: @throttle_remaining: @iconfarm: @is_moderator: @is_member: @rules: @pool_count: @topic_count: @photos_ok: @videos_ok: @images_ok: @screens_ok: @art_ok: @safe_ok: @moderate_ok: @restricted_ok: @has_geo: @group: @groups_object: @fc: @cat_id: @Returns: @fc: @group_id: @lang: @Returns: @fc: @group_id: @accept_rules: @Returns: @fc: @group_id: @message: @accept_rules: @Returns: @fc: @group_id: @delete_photos: @Returns: @nsid: @username: @iconserver: @iconfarm: @member_type: @member_object: @members_object: @fc: @group_id: @membertypes: @per_page: @page: @Returns: @fc: @photo_id: @group_id: @Returns: @fc: @photo_id: @group_id: @Returns: @fc: @page: @per_page: @Returns: @fc: @group_id: @tags: @user_id: @extras: @per_page: @page: @Returns: @fc: @group_id: @tags: @user_id: @list_params: @Returns: @fc: @photo_id: @group_id: @Returns: @fc: @text: @per_page: @page: @Returns: flickcurl-1.25/docs/tmpl/section-photos-people.sgml0000644000175000017500000000204012210726306017363 00000000000000 Photos containing people. Photos containing people. Photos containing people. @fc: @photo_id: @user_id: @person_x: @person_y: @person_w: @person_h: @Returns: @fc: @photo_id: @user_id: @Returns: @fc: @photo_id: @user_id: @Returns: @fc: @photo_id: @user_id: @person_x: @person_y: @person_w: @person_h: @Returns: @fc: @photo_id: @Returns: flickcurl-1.25/docs/tmpl/section-misc.sgml0000644000175000017500000000452712210726306015534 00000000000000 Miscellaneous Miscellaneous functions. Miscellaneous functions. @latitude: @longitude: @accuracy: @is_public: @is_contact: @is_friend: @is_family: @perm_comment: @perm_addmeta: @label: @width: @height: @source: @url: @media: @size: @sizes_object: @location: @perms: @datatype: @Returns: @accuracy: @Returns: @fc: @date: @extras: @per_page: @page: @Returns: @fc: @date: @list_params: @Returns: @id: @url: @name: @content_type: @Returns: @content_type_string: @Returns: @hidden: @Returns: @hidden_string: @Returns: @safety_level: @Returns: @safety_level_string: @Returns: @farm: @server: @nsid: @Returns: flickcurl-1.25/docs/tmpl/section-context.sgml0000644000175000017500000000167012210726306016261 00000000000000 Contexts Photo contexts Photo contexts @type: @id: @secret: @server: @farm: @title: @url: @thumb: @FLICKCURL_CONTEXT_NONE: @FLICKCURL_CONTEXT_SET: @FLICKCURL_CONTEXT_POOL: @FLICKCURL_CONTEXT_PREV: @FLICKCURL_CONTEXT_NEXT: @FLICKCURL_CONTEXT_LAST: @type: @Returns: @context: @contexts: flickcurl-1.25/docs/tmpl/section-unused.sgml0000644000175000017500000000230212210726306016071 00000000000000 Unused Unused. Unused. @filename: @section: @user_data: @handler: @Returns: @userdata: @key: @value: flickcurl-1.25/docs/tmpl/section-exif.sgml0000644000175000017500000000114612210726306015526 00000000000000 EXIF EXIF photo metadata. EXIF photo metadata. @tagspace: @tagspaceid: @tag: @label: @raw: @clean: @exif: @exifs_object: flickcurl-1.25/docs/tmpl/section-favorite.sgml0000644000175000017500000000231212210726306016406 00000000000000 Favorites Favorite photos. Favorite photos. @fc: @photo_id: @Returns: @fc: @photo_id: @user_id: @num_prev: @num_next: @extras: @Returns: @fc: @user_id: @extras: @per_page: @page: @Returns: @fc: @user_id: @list_params: @Returns: @fc: @user_id: @extras: @per_page: @page: @Returns: @fc: @user_id: @list_params: @Returns: @fc: @photo_id: @Returns: flickcurl-1.25/docs/tmpl/section-contact.sgml0000644000175000017500000000232312210726306016224 00000000000000 Contacts A contact of a user. A contact of a user. @nsid: @username: @iconserver: @realname: @is_friend: @is_family: @ignored: @uploaded: @fc: @filter: @page: @per_page: @Returns: @fc: @date_lastupload: @filter: @Returns: @fc: @user_id: @page: @per_page: @Returns: @fc: @include_self: @include_address_book: @page: @per_page: @Returns: @contact_object: @contacts_object: flickcurl-1.25/docs/tmpl/section-activity.sgml0000644000175000017500000000210512210726306016423 00000000000000 Activity Activity on notes and comments Activity on notes and comments @type: @owner: @owner_name: @primary: @id: @secret: @server: @farm: @comments_old: @comments_new: @notes_old: @notes_new: @views: @comments: @photos: @faves: @more: @title: @events: @type: @id: @user: @username: @value: @date_added: @fc: @per_page: @page: @Returns: @fc: @timeframe: @per_page: @page: @Returns: @activities_object: flickcurl-1.25/docs/tmpl/section-reflection.sgml0000644000175000017500000000156012210726306016725 00000000000000 Reflection Flickr introspection API. Flickr introspection API. @name: @optional: @description: @name: @needslogin: @description: @response: @explanation: @args: @args_count: @method: @fc: @name: @Returns: @fc: @Returns: flickcurl-1.25/docs/tmpl/section-test.sgml0000644000175000017500000000112512210726306015547 00000000000000 Test Test functions. Test functions. @fc: @key: @value: @Returns: @fc: @Returns: @fc: @Returns: flickcurl-1.25/docs/tmpl/section-config.sgml0000644000175000017500000000126512210726306016042 00000000000000 Config Configuration files Configuration files @fc: @filename: @section: @user_data: @handler: @Returns: @userdata: @key: @value: @fc: @filename: @section: @Returns: flickcurl-1.25/docs/tmpl/section-shapes.sgml0000644000175000017500000000126212210726306016055 00000000000000 Shape data ESRI shape data. ESRI shape data. @shape: @shapes_object: @created: @alpha: @points: @edges: @data: @data_length: @file_urls: @file_urls_count: @is_donuthole: @has_donuthole: flickcurl-1.25/docs/tmpl/section-upload.sgml0000644000175000017500000000301012210726306016047 00000000000000 Uploading Uploading APIs and Asynchronous upload tickets. Uploading APIs and Asynchronous upload tickets. @id: @photoid: @complete: @invalid: @ticket: @tickets_object: @photo_file: @title: @description: @tags: @is_public: @is_friend: @is_family: @safety_level: @content_type: @hidden: @photoid: @secret: @originalsecret: @ticketid: @username: @bandwidth_maxbytes: @bandwidth_maxkb: @bandwidth_usedbytes: @bandwidth_usedkb: @bandwidth_remainingbytes: @bandwidth_remainingkb: @filesize_maxbytes: @filesize_maxkb: @sets_created: @sets_remaining: @status: @u: @status: flickcurl-1.25/docs/tmpl/section-machinetags.sgml0000644000175000017500000000315412210726306017057 00000000000000 Machine tag Machine tags. Machine tags. @name: @usage_count: @predicates_count: @usage_count: @predicate: @used_in_namespace_count: @value: @tag_nspace: @tag_nspaces: @tag_pv: @tag_pvs: @fc: @predicate: @per_page: @page: @Returns: @fc: @nspace: @predicate: @per_page: @page: @Returns: @fc: @nspace: @per_page: @page: @Returns: @fc: @nspace: @predicate: @added_since: @Returns: @fc: @nspace: @predicate: @per_page: @page: @Returns: flickcurl-1.25/docs/tmpl/section-collections.sgml0000644000175000017500000000151412210726306017110 00000000000000 Collections Collections of photos or sets. Collections of photos or sets. @fc: @collection_id: @Returns: @fc: @collection_id: @user_id: @Returns: @collection: @collections: flickcurl-1.25/docs/tmpl/section-stats.sgml0000644000175000017500000000537412210726306015740 00000000000000 Statistics. Statistics. Statistics. @views: @comments: @favorites: @name: @url: @searchterms: @total: @photos: @photostreams: @sets: @collections: @stat: @stats_object: @view_stats: @fc: @Returns: @fc: @date: @collection_id: @per_page: @page: @Returns: @fc: @date: @domain: @collection_id: @per_page: @page: @Returns: @fc: @date: @collection_id: @Returns: @fc: @date: @photo_id: @per_page: @page: @Returns: @fc: @date: @domain: @photo_id: @per_page: @page: @Returns: @fc: @date: @photo_id: @Returns: @fc: @date: @photoset_id: @per_page: @page: @Returns: @fc: @date: @domain: @photoset_id: @per_page: @page: @Returns: @fc: @date: @photoset_id: @Returns: @fc: @date: @per_page: @page: @Returns: @fc: @date: @domain: @per_page: @page: @Returns: @fc: @date: @Returns: @fc: @date: @sort: @per_page: @page: @extras: @Returns: @fc: @date: @Returns: flickcurl-1.25/docs/tmpl/section-video.sgml0000644000175000017500000000077312210726306015706 00000000000000 Video Video. Video. @ready: @failed: @pending: @duration: @width: @height: @video: flickcurl-1.25/docs/tmpl/section-commons.sgml0000644000175000017500000000214512210726306016246 00000000000000 Flickr Commons Flickr Commons and institutions Flickr Commons and institutions @nsid: @date_launch: @name: @urls: @FLICKCURL_INSTITUTION_URL_NONE: @FLICKCURL_INSTITUTION_URL_SITE: @FLICKCURL_INSTITUTION_URL_LICENSE: @FLICKCURL_INSTITUTION_URL_FLICKR: @FLICKCURL_INSTITUTION_URL_LAST: @institution: @institutions_object: @url_type: @Returns: @fc: @Returns: flickcurl-1.25/docs/tmpl/section-tag.sgml0000644000175000017500000000364112210726306015350 00000000000000 Tags Photo tagging. Photo tagging. @photo: @id: @author: @authorname: @raw: @cooked: @machine_tag: @count: @count: @tags: @count: @clusters: @t: @tags: @tcs: @user_data: @tag: @fc: @tag: @cluster_id: @list_params: @Returns: @fc: @tag: @Returns: @fc: @period: @tag_count: @Returns: @fc: @photo_id: @Returns: @fc: @user_id: @Returns: @fc: @user_id: @pop_count: @Returns: @fc: @tag: @Returns: @fc: @Returns: @fc: @tag: @Returns: flickcurl-1.25/docs/tmpl/section-general.sgml0000644000175000017500000000135612210726306016213 00000000000000 General General functions. General functions. @array: @array: @delim: @Returns: @str: @delim: @Returns: flickcurl-1.25/docs/Makefile.am0000644000175000017500000000626312020474441013331 00000000000000# # Makefile.am - makefile for documentation # # Copyright (C) 2008-2010, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. man_MANS = flickcurl-config.1 flickcurl.1 flickrdf.1 # The name of the module. DOC_MODULE=flickcurl # The top-level SGML file. DOC_MAIN_SGML_FILE=flickcurl-docs.xml # Extra options to supply to gtkdoc-scan SCAN_OPTIONS= # The directory containing the source code. Relative to $(srcdir) DOC_SOURCE_DIR=../src # Used for dependencies HFILE_GLOB=$(top_srcdir)/src/flickcurl.h CFILE_GLOB=$(top_srcdir)/src/*.c IGNORE_CFILES= # Headers to ignore IGNORE_HFILES= \ config.h win32_flickcurl_config.h \ flickcurl_internal.h # CFLAGS and LDFLAGS for compiling scan program. Only needed # if $(DOC_MODULE).types is non-empty. AM_CPPFLAGS = GTKDOC_LIBS = # Extra options to supply to gtkdoc-mkdb MKDB_OPTIONS=--sgml-mode --output-format=xml --ignore-files="$(IGNORE_CFILES)" # Extra options to supply to gtkdoc-mktmpl MKTMPL_OPTIONS= # Non-autogenerated (XML, other) files to be included in $(DOC_MAIN_SGML_FILE) content_files = \ flickcurl-oauth.xml \ flickcurl-authenticate.xml \ flickcurl-searching.xml \ flickcurl-extras.xml \ version.xml \ search-photos.c # Images to copy into HTML directory HTML_IMAGES = \ appgarden-get-your-api-key.png \ appgarden-commercial-picker.png \ appgarden-tell-us-about-your-app.png \ appgarden-new-api-key-secret.png \ appgarden-edit-auth-flow.png \ appgarden-edit-auth-flow-mobile.png \ appgarden-test-app-page.png \ appgarden-mobile-auth-page.png # Extra options to supply to gtkdoc-fixref FIXXREF_OPTIONS= include $(top_srcdir)/gtk-doc.make EXTRA_DIST+= \ $(man_MANS) \ flickcurl.1.in \ version.xml.in \ flickcurl-extras.xml CLEANFILES+= search-photos.c dist-hook-local: html-build.stamp @file=$(srcdir)/html/style.css; \ $(ECHO) "Fixing CSS in $$file"; \ $(SED) -e '/position: fixed/d' $$file > $$file.new && \ mv $$file.new $$file search-photos.c: $(srcdir)/../examples/search-photos.c $(SED) -e '1,/^$$/d' $< > $@ if MAINTAINER_MODE flickcurl.1: $(srcdir)/flickcurl.1.in $(top_srcdir)/utils/flickcurl.c ( cd $(top_builddir)/utils && $(MAKE) flickcurl ) && \ sed -ne '1,/SH COMMANDS/p' $(srcdir)/flickcurl.1.in > flickcurl.1.head && \ $(top_builddir)/utils/flickcurl -m0 > flickcurl.1.body && \ sed -ne '/SH SEE ALSO/,$$p' $(srcdir)/flickcurl.1.in > flickcurl.1.tail && \ cat flickcurl.1.head flickcurl.1.body flickcurl.1.tail > flickcurl.1 && \ rm -f flickcurl.1.head flickcurl.1.body flickcurl.1.tail flickcurl-extras.xml: $(top_srcdir)/utils/flickcurl.c ( cd $(top_builddir)/utils && $(MAKE) flickcurl ) && \ $(top_builddir)/utils/flickcurl -m1 > flickcurl-extras.xml endif flickcurl-1.25/docs/Makefile.in0000644000175000017500000006673712157737151013371 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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@ # # Makefile.am - makefile for documentation # # Copyright (C) 2008-2010, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. # -*- mode: makefile -*- #################################### # Everything below here is generic # #################################### VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } 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@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/version.xml.in $(top_srcdir)/gtk-doc.make subdir = docs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/gtk-doc.m4 \ $(top_srcdir)/build/libtool.m4 \ $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = version.xml CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(man_MANS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLICKCURL_VERSION_DECIMAL = @FLICKCURL_VERSION_DECIMAL@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBCURL_MIN_VERSION = @LIBCURL_MIN_VERSION@ LIBFLICKCURL_LIBTOOL_VERSION = @LIBFLICKCURL_LIBTOOL_VERSION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML_MIN_VERSION = @LIBXML_MIN_VERSION@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PKG_CONFIG_REQUIRES = @PKG_CONFIG_REQUIRES@ RANLIB = @RANLIB@ RAPTOR_CFLAGS = @RAPTOR_CFLAGS@ RAPTOR_LIBS = @RAPTOR_LIBS@ RAPTOR_MIN_VERSION = @RAPTOR_MIN_VERSION@ RECHO = @RECHO@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STANDARD_CFLAGS = @STANDARD_CFLAGS@ STRIP = @STRIP@ VERSION = @VERSION@ XML_CONFIG = @XML_CONFIG@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ 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@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ man_MANS = flickcurl-config.1 flickcurl.1 flickrdf.1 # The name of the module. DOC_MODULE = flickcurl # The top-level SGML file. DOC_MAIN_SGML_FILE = flickcurl-docs.xml # Extra options to supply to gtkdoc-scan SCAN_OPTIONS = # The directory containing the source code. Relative to $(srcdir) DOC_SOURCE_DIR = ../src # Used for dependencies HFILE_GLOB = $(top_srcdir)/src/flickcurl.h CFILE_GLOB = $(top_srcdir)/src/*.c IGNORE_CFILES = # Headers to ignore IGNORE_HFILES = \ config.h win32_flickcurl_config.h \ flickcurl_internal.h # CFLAGS and LDFLAGS for compiling scan program. Only needed # if $(DOC_MODULE).types is non-empty. AM_CPPFLAGS = GTKDOC_LIBS = # Extra options to supply to gtkdoc-mkdb MKDB_OPTIONS = --sgml-mode --output-format=xml --ignore-files="$(IGNORE_CFILES)" # Extra options to supply to gtkdoc-mktmpl MKTMPL_OPTIONS = # Non-autogenerated (XML, other) files to be included in $(DOC_MAIN_SGML_FILE) content_files = \ flickcurl-oauth.xml \ flickcurl-authenticate.xml \ flickcurl-searching.xml \ flickcurl-extras.xml \ version.xml \ search-photos.c # Images to copy into HTML directory HTML_IMAGES = \ appgarden-get-your-api-key.png \ appgarden-commercial-picker.png \ appgarden-tell-us-about-your-app.png \ appgarden-new-api-key-secret.png \ appgarden-edit-auth-flow.png \ appgarden-edit-auth-flow-mobile.png \ appgarden-test-app-page.png \ appgarden-mobile-auth-page.png # Extra options to supply to gtkdoc-fixref FIXXREF_OPTIONS = @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_RUN = @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_RUN = $(LIBTOOL) --mode=execute # We set GPATH here; this gives us semantics for GNU make # which are more like other make's VPATH, when it comes to # whether a source that is a target of one rule is then # searched for in VPATH/GPATH. # GPATH = $(srcdir) TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) SETUP_FILES = \ $(content_files) \ $(DOC_MAIN_SGML_FILE) \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) $(man_MANS) flickcurl.1.in \ version.xml.in flickcurl-extras.xml DOC_STAMPS = setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ html-build.stamp pdf-build.stamp \ tmpl.stamp sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ $(DOC_MODULE).interfaces \ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals REPORT_FILES = \ $(DOC_MODULE)-undocumented.txt \ $(DOC_MODULE)-undeclared.txt \ $(DOC_MODULE)-unused.txt CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) \ search-photos.c @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP = @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_srcdir)/gtk-doc.make: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): version.xml: $(top_builddir)/config.status $(srcdir)/version.xml.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @list='$(MANS)'; if test -n "$$list"; then \ list=`for p in $$list; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ if test -n "$$list" && \ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ echo " typically \`make maintainer-clean' will remove them" >&2; \ exit 1; \ else :; fi; \ else :; fi @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 $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook check-am: all-am check: check-am all-am: Makefile $(MANS) all-local installdirs: for dir in "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-local dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-data-local install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic \ maintainer-clean-local mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-local uninstall-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: all all-am all-local check check-am clean clean-generic \ clean-libtool clean-local dist-hook distclean \ distclean-generic distclean-libtool distclean-local distdir \ dvi dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man1 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-local uninstall-man uninstall-man1 @ENABLE_GTK_DOC_TRUE@all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) @ENABLE_GTK_DOC_FALSE@all-local: docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) $(REPORT_FILES): sgml-build.stamp #### setup #### setup-build.stamp: -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ echo ' DOC Preparing build'; \ files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ if test "x$$files" != "x" ; then \ for file in $$files ; do \ test -f $(abs_srcdir)/$$file && \ cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \ done; \ fi; \ test -d $(abs_srcdir)/tmpl && \ { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \ chmod -R u+w $(abs_builddir)/tmpl; } \ fi @touch setup-build.stamp #### scan #### scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @echo ' DOC Scanning header files' @_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ echo " DOC Introspecting gobjects"; \ scanobj_options=""; \ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ scanobj_options="--verbose"; \ fi; \ fi; \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ for i in $(SCANOBJ_FILES) ; do \ test -f $$i || touch $$i ; \ done \ fi @touch scan-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true #### templates #### tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @echo ' DOC Rebuilding template files' @gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ if test -w $(abs_srcdir) ; then \ cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \ fi \ fi @touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @true $(srcdir)/tmpl/*.sgml: @true #### xml #### sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) @echo ' DOC Building XML' @-chmod -R u+w $(srcdir) @_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) @touch sgml-build.stamp sgml.stamp: sgml-build.stamp @true #### html #### html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) @echo ' DOC Building HTML' @rm -rf html @mkdir html @mkhtml_options=""; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkhtml_options="$$mkhtml_options --verbose"; \ fi; \ fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ if test "$(?)" = "0"; then \ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ fi; \ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -@test "x$(HTML_IMAGES)" = "x" || \ for file in $(HTML_IMAGES) ; do \ if test -f $(abs_srcdir)/$$file ; then \ cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ fi; \ if test -f $(abs_builddir)/$$file ; then \ cp $(abs_builddir)/$$file $(abs_builddir)/html; \ fi; \ done; @echo ' DOC Fixing cross-references' @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) @touch html-build.stamp #### pdf #### pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) @echo ' DOC Building PDF' @rm -f $(DOC_MODULE).pdf @mkpdf_options=""; \ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkpdf_options="$$mkpdf_options --verbose"; \ fi; \ fi; \ if test "x$(HTML_IMAGES)" != "x"; then \ for img in $(HTML_IMAGES); do \ part=`dirname $$img`; \ echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ if test $$? != 0; then \ mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ fi; \ done; \ fi; \ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) @touch pdf-build.stamp ############## clean-local: @rm -f *~ *.bak @rm -rf .libs distclean-local: @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ rm -rf tmpl; \ fi maintainer-clean-local: clean @rm -rf xml html install-data-local: @installfiles=`echo $(builddir)/html/*`; \ if test "$$installfiles" = '$(builddir)/html/*'; \ then echo 1>&2 'Nothing to install' ; \ else \ if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ $(mkinstalldirs) $${installdir} ; \ for i in $$installfiles; do \ echo ' $(INSTALL_DATA) '$$i ; \ $(INSTALL_DATA) $$i $${installdir}; \ done; \ if test -n "$(DOC_MODULE_VERSION)"; then \ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ fi; \ $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ fi uninstall-local: @if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ rm -rf $${installdir} # # Require gtk-doc when making dist # @ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc: @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc: @ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist" @ENABLE_GTK_DOC_FALSE@ @false dist-hook: dist-check-gtkdoc dist-hook-local @mkdir $(distdir)/tmpl @mkdir $(distdir)/html @-cp ./tmpl/*.sgml $(distdir)/tmpl @cp ./html/* $(distdir)/html @-cp ./$(DOC_MODULE).pdf $(distdir)/ @-cp ./$(DOC_MODULE).types $(distdir)/ @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ @cd $(distdir) && rm -f $(DISTCLEANFILES) @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs dist-hook-local: html-build.stamp @file=$(srcdir)/html/style.css; \ $(ECHO) "Fixing CSS in $$file"; \ $(SED) -e '/position: fixed/d' $$file > $$file.new && \ mv $$file.new $$file search-photos.c: $(srcdir)/../examples/search-photos.c $(SED) -e '1,/^$$/d' $< > $@ @MAINTAINER_MODE_TRUE@flickcurl.1: $(srcdir)/flickcurl.1.in $(top_srcdir)/utils/flickcurl.c @MAINTAINER_MODE_TRUE@ ( cd $(top_builddir)/utils && $(MAKE) flickcurl ) && \ @MAINTAINER_MODE_TRUE@ sed -ne '1,/SH COMMANDS/p' $(srcdir)/flickcurl.1.in > flickcurl.1.head && \ @MAINTAINER_MODE_TRUE@ $(top_builddir)/utils/flickcurl -m0 > flickcurl.1.body && \ @MAINTAINER_MODE_TRUE@ sed -ne '/SH SEE ALSO/,$$p' $(srcdir)/flickcurl.1.in > flickcurl.1.tail && \ @MAINTAINER_MODE_TRUE@ cat flickcurl.1.head flickcurl.1.body flickcurl.1.tail > flickcurl.1 && \ @MAINTAINER_MODE_TRUE@ rm -f flickcurl.1.head flickcurl.1.body flickcurl.1.tail @MAINTAINER_MODE_TRUE@flickcurl-extras.xml: $(top_srcdir)/utils/flickcurl.c @MAINTAINER_MODE_TRUE@ ( cd $(top_builddir)/utils && $(MAKE) flickcurl ) && \ @MAINTAINER_MODE_TRUE@ $(top_builddir)/utils/flickcurl -m1 > flickcurl-extras.xml # 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: flickcurl-1.25/docs/flickcurl-docs.xml0000644000175000017500000001017712130421223014712 00000000000000 ]> Flickcurl Flickr API Manual Manual for Flickcurl &version; Dave Beckett
http://www.dajobe.org/
This documentation is Free Software / Open Source - you can redistribute it and/or modify it under the same licenses as Flickcurl. It is licensed under the following three licenses as alternatives: GNU Lesser General Public License (LGPL) V2.1 or any newer version GNU General Public License (GPL) V2 or any newer version Apache License, V2.0 or any newer version You may not use this documentation except in compliance with at least one of the above three licenses. See the Flickcurl site for the full license terms. 2007 2008 2009 2010 2011 2012 2013 Dave Beckett
Flickcurl Overview Flickcurl is a C library for the Flickr web service API. For the latest information, see the Flickcurl Home Page. Index
flickcurl-1.25/docs/flickcurl-authenticate.xml0000644000175000017500000002264712020524042016446 00000000000000 Authenticating Flickcurl for Legacy Flickr Authentication
Introduction This chapter describes the deprecated legacy Flickr authentication. This may be removed at any time by Flickr after August 2012, so this functionality should be migrated to the Flickr OAuth authentication
Build Flickcurl library and <command>flickcurl(1)</command> utility This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication $ ./configure $ make Add the utils directory to your shell search path: $ PATH=`pwd`/utils:$PATH on bourne shells such as Bash or $ setenv PATH `pwd`/utils:$PATH on c shells such as tcsh You should get an error if you now try the utility: $ flickcurl photos.getInfo 1234567 flickcurl: ERROR: No shared secret flickcurl: Command photos.getInfo failed This is because there is no configuration set for the library. For the flickcurl(1) utility, it reads the configuration from a file ~/.flickcurl.conf which contains parameters used for authentication. This section describes how those parameters are obtained.
Register application to get API Key and Shared Secret This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication NOTE: In the pictures below, the Flickr web site is shown in English and the screenshots taken in early December 2009. Flickr upgrade the web site often so these instructions may not match the latest look. Hopefully you can figure it out! Start by navigating to the Flickr App Garden at http://www.flickr.com/services/ and follow the link 'Create an App' taking you to http://www.flickr.com/services/apps/create/ Flickr App Garden - Get your API Key Select the link 'Request an API Key' taking you to http://www.flickr.com/services/apps/create/apply/ Flickr App Garden - Commercial / Non-Commercial Select either of the two buttons: 'Apply for a Non-Commercial Key' or 'Apply for a Commercial Key' as appropriate. Flickr App Garden - Describe application Fill in the form fields and submit it via the 'Submit' button. Flickr App Garden - Key and Secret Flickr will return a page containing both the API Key that looks something like: 0123456789abcdef0123456789abcdef and Secret which looks something like: fedcba9876543210 These strings should be used for the values of the api and secret keys in either the ~/.flickcurl.conf if used with the flickcurl(1) utility or in code, with the flickcurl_set_api_key() and flickcurl_set_shared_secret() functions. You now need to change the key to be of type mobile since no callback URL is usually appropriate for a command-line application or library. Click the 'Edit auth flow for this app' link below the Key and Secret Flickr App Garden - Edit authentication flow Change the 'App Type' to 'Mobile Application' then set the 'Mobile Permissions' to 'Read', 'Write' Or 'Delete' as appropriate. Flickr App Garden - Edit authentication flow: mobile This sequence will make the new key 'Auth mode Mobile' and an authentication URL will be shown on the same page and look something like http://www.flickr.com/auth-11111111111111111 Finish with the 'Save Changes' button to confirm and return you to the application page. Flickr App Garden - Application page If you ever need to alter or view the authentication, use the link 'Edit the authentication flow' on right-hand side of the application page. All your Flickr applications are linked from http://www.flickr.com/services/apps/by/me
Getting Authentication Token from API Key and Secret This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication Create a file ~/.flickcurl.conf with the two values above (API Key, Shared Secret) like this: [flickr] api_key=0123456789abcdef0123456789abcdef secret=fedcba9876543210 Then prompt the user to visit the Authentication URL mentioned in the previous section (http://www.flickr.com/auth-11111111111111111) in a web browser. Flickr will return a page that says something like: "[APP NAME] wants to link to your Flickr account" with more information and two buttons. Click the button with the text: [OK, I'LL AUTHORIZE IT] Flickr App Garden - Mobile Auth Flickr will return on the next page a 9-digit FROB that looks like this: 123-456-789 Switch back to the command line and run the flickcurl(1) utility with that FROB: $ flickcurl -a 123-456-789 The result will be that an Authentication Token (auth token) is calculated and returned. The flickcurl(1) utility will reply: flickcurl: Successfully exchanged frob 123-456-789 for authentication token flickcurl: Updated configuration file /Users/NAME/.flickcurl.conf with authentication token The flickcurl(1) utility has automatically updated the ~/.flickcurl.conf configuration file (as the message will show) with the auth_token field to give something like: $ cat ~/.flickcurl.conf [flickr] auth_token=1234567-8901234567890123 api_key=0123456789abcdef0123456789abcdef secret=fedcba9876543210 At this stage, the utility (or library) is authenticated and ready to use.
Use flickcurl This section describes using the deprecated legacy Flickr authentication. See the Flickr OAuth authentication Now the configuration has been created and authentication completed, the library and the flickcurl(1) utility will work. $ flickcurl photos.getInfo 1234567 flickcurl: Found photo with URI http://www.flickr.com/photos/yogi/1234567/ ID 1234567 and 1 tags ...
flickcurl-1.25/docs/flickrdf.10000644000175000017500000000367211622002374013143 00000000000000.TH FLICKRDF 1 "21 December 2007" .SH NAME flickrdf \- call Flickr API .SH SYNOPSIS .B flickrdf [\fB\-d \fIDELAY\fP\fR] [\fB\-a \fIFROB\fP\fR] [\fB\-h\fR] [\fB\-v\fR] .br .SH DESCRIPTION \fBflickrdf\fP is a utility that uses the \fIphotos.getInfo\fP API to interpret the description fields and the tags for a photo URI into RDF triples. If raptor is present, it will be used to provide proper serializing to RDF rather than the built in and hacky ntriples/turtle output. .PP Machine tags when they are found are scanned for \fIxmlns:prefix=uri\fP and then all other machine tags with that prefix turn into triples. Several prefixes are also pre-defined by the library to automatically get turned into triples without an xmlns, such as \fIblue:\fP, \fIcell:\fP, \fIfilter:\fP and \fIgeo:\fP. Non-machine tags are not yet interpreted. .SH OPTIONS These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. .TP .B \-h, \-\-help Show summary of options and exit. .TP .B \-v, \-\-version Display the version of the program and exit. .TP .B \-d \fIDELAY\fP, \-\-delay \fIDELAY\fP Set delay between requests to \fIDELAY\fP milliseconds. .TP .B \-D, \-\-debug Print lots of debugging output. .TP .B \-o, \-\-output \fIFORMAT\fP Set output format to \fIFORMAT\fP. \fIFORMAT\fP is one of: \fIntriples\fP N-Triples (default) \fIturtle\fP Turtle \fIrdfxml\fP-xmp RDF/XML (XMP Profile) \fIrdfxml\fP-abbrev RDF/XML (Abbreviated) \fIrdfxml\fP RDF/XML \fIrss-1.0\fP RSS 1.0 \fIdot\fP GraphViz DOT format The exact list depends on the version of Raptor that flickcurl is linked against. .SH SEE ALSO .BR flickcurl(1), libraptor(3). .br .SH AUTHOR flickrdf was written by David Beckett. .PP This manual page was written by Kumar Appaiah , for the Debian project (but may be used by others). flickcurl-1.25/docs/appgarden-test-app-page.png0000644000175000017500000012101311600753627016411 00000000000000‰PNG  IHDR¡HgâÔ¡ÒIDATxÚíÝÿwSw¾ï÷ü ÷)ëü —óCh{Êiïêºk•ÓÕ5–s;7¥™“.z9SÚ’ÒhS|²&0^±9‘'Âc°sQf žX‰Û#ÅÎH+h‘­XAF²l±±Œ,»Ÿýý‹¶dòÌZ…%míýÙ[òÎ~ùýù|öOž<^„78B(€ !@€ „¡B„P¡B(€úü% ~PüB(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B „@%„¡€ !B(!@„P!B ¡B(„P€ „@B „¡B(„P!´{þ÷ä±þ‘Ú¶+ÓÃIù¥ú\/ìò;Bè¾ÃLyÖ743¤‡É){*çgËN•qH¤™àØÌÉÍ^“©¥ªUáÜ’Ùój=g'e§m-™<¥ºýeBÖïy-¤ê.·#×Tp>:¼¤~®ÊÐQxŸ­±­§®ÉN }„Pð¼Ôo~)ÿâ_¼šþ¾¯|Œ¶¯§¾ôµkzóå<Æk©¯å¯z8¶ÿ”ªÿíÛ‘ßüÂÚþÍm~'@Ýo˜ÉšUÅ Ñ%Í‹9œÓœªéèÑð ‚ZÕ%:uÔ¿žc£²e­Ã;áÑrì„9:Üýµ1¡1O[c¹c1£îêäY38ﬕÜùjÛ‰‚ ž_%´$ÿ¤ªœg?øÒñËpƒÑß¿ÿ¥çµ¤ª|fŒJhý›¯­e®ËüBw%úþ÷w£÷^¾ÿMÆ×Æ¿þǤD+’ùæžÌ§îÈ?ûÔ÷zôÎî ¡ÿü„PBŸ2Ì”ä¼ÞmV©\^]–\.'ËËPAS¯b¶ìê„NM†CChUôÐyjX–VËFriø˜ “£¢µÙ'2Û§–˜ ¹ž×BBè°gb¢Ù³žå´Œñúùá>FÏÊr+¸ŸÛ„PðÃÓ;vpúT2»ÂÕB+wå¯Ûª‰3²òRuÁ­Ê/¶Åä7_‡W:7¾Yt+¥'³ÒxÑ•PB(¡Of´¥a£b9Uö?_2*‹Geî»ChkUúÔr'F3ƤEÕܤÕCé 3„ã>O ÉòÖŽT—Ì×ú¦JN7ÛÐ×BºãêË­ª{™–—®ËŸs»ñNõY³û͇î+!ü°Õ»½¦»Ìgrã^M®«q…ò3Ã;‘E™¿~'€õoîªê_ÂYö¸Z6SÙõ/;ú©<3wn;!îì×íAjwó¾\‰e$öuMê•{òÏÌXÛO¨ñ˜+²¾ûlËw²29ãä㓵®Ëf†?íØ½y£P’+£_ÉñÓæ1û{5÷ì°:ÆßzñcÉþ)+ÿ¬/­Ô$¦Úüwj¼éñ2’¹·ëÎùDÆYÏ/ßÿZ­£æT”ÃBh/Ÿ—÷xíîÔ䊱íOãe~kJ}MCèìy«Ëlð5UY4f£›2&^Ú»;nîZŸ§+î 8¯wó=/«ÝI…l§†æÌ1›;]^ó…P÷2ÎrÃþå¶2Cæ¤IîsJŽFEŽ\¹±i>¾rUä°z<¿ù‚BhgÿüͶ¯â{ÿzÇeÏ&ªûhc]Þù™ù¾¿zÅX÷?YãÿÅ?.¶UÝñ«|*Ó•§_~ÏîÂ?ûRÖ÷Ú§MvG³2_Ð<,=–ßí1ŽTsޝs þvô¾º½/ǶǘԛO÷yí}¼‚ßB_§‰‰ž£ÖŽ&[šæ¿…‹sO}Œ©¦*£­Þ^ë`GÛ ]ÎZíð>B(pÄU}ã”Ò¯ºªÇÓWÝÇõBÿúôWÿº(W" ÷ù_|-u§Òçš¿úÇ/%~óždRYùûŸí<¤wÛÿl½çε„Óíõú½Ç]Ûú·ïg%ûmU¦cn¥ò_üCF6žrùP;÷äïì÷GJOõ94î,z¶7#±TI²wJޱ;¶Ó®¨þýÉëÖ„Måú¹˜gTuòÎ=µžÏ:†Ðý|^¡ß…ÔŠD?ð¬ÿ_p7cB_—0£ªªGCgÔÝãµ^yª¤î칄PÐͶȡSfð<ò'ch¶ñBBèß ý]Kí®²?Kš·oÑJN ûëîn¥R“³vïäín³â TªÂèÜfsÅ# }Þ¶þí+¾×ÖIçµß|³óTËïBÃ&Lj¨.³w U¹£Â­ñ¯£æ÷ùÈœ.Ïw:uõýÅWVö†ÐOUaÜê*»£ù½;Nwå¿ø?+7¼{Bè>?/ÿw¡ø.|æìCv‡ßWB(!ô)h’›Ÿ—Õ­Ö>_ëQ«*³×FåÚ\Î_%„€n ²ªŸJ\uÃ]ÿÒ}+ÿÀ!T- gFØëÛ¹èÁM]©+U{,óNÕ-!wöo©ÒßÚ3÷^ówáu«} ÉõÓý©9]{i­o¿Ë‡‡ÐûΤDac-Ý€ÒÕÕZ~WõÊË~S’Œwìçî®l¨1¸ñÑ„ï{Cè_w á×Cn§S“ãvî÷óê¶þÆL—mƒJ}eB@›3¿¶‚ç¯U7\õGñ>ûñ9‘£6„jÝ_ëeüh¯AÅ;Ù¾ü/OÚ“õ|æ»ç;ª··ÇÓ=Ø;ö1Þö»|xX.:a9¬;®;±Òc3w5™¾öµÚÏOå¯ =fóÜžs?U§j¾?NÝç絟ï¿«„PB(!”Ï €×Å«nõ3£Bè¼çñG«?jõmÜcŸîAe[~ó‹{[—³Y¶çgÝCØ/c÷ŸjùN=èœn«ž¶x»7Œê¢N¿_ëŠZí0¸{ï®óœÏÏ®{nOÓBƒ•×l,át_ÛŸàì¸ûý¼¡„PB(ÀONEä€8ëã@7ÝLJþøÃwÇÝ«zó뎷±c÷h×î·Y'ýýð¹¡&BšVàØôÇÿ|ÎíæzåÛÇÊfX¨tƒíß ß{ªå;™\÷Ì»Ó}ÿvÝ1¤fôŽñŒÉñáÛ’QãE76Íõìzº¹îBÝÏ#ì>ª!•Ð}~^„PB(!à§æÊE·+nC=ŽýÖéŠûdýÉBÝqá÷Ëœwî‘ù™dºL^sãƒëÇ¡:îÝvgiµ&òv/a÷ÛÛmÝ`÷»|G•;ž.Âúm]:í•ÔWõîÈoìzòNÛòq'lïB½ÇÿŸ‚÷QõLèäVB÷÷yB ¡„P€Ÿ’úÿ¤D»wÝÇ×ËOµÎçBõê¡{˘ü&Uó„/ÏøÃÓ]fÇÝ­:ýt]N¯Tzf‰õ‡$½KjBnÜ3o-²[)Ê/[ޏx¿Ëw“ùoƒòˈº=J¡.ÚŽlTê2ÿ§¬ÿÇX`L莿ëñ?|í¹Ïè®d®Í„taîB½÷UÕ?“ë{ÜûröÂÆ¢îïó"„B ¡?%'ÏznÏ¢OPd?þò©×¹ßzCÛûµF!×øùëŸyǶßß3tr°j^ÀZ i¿T•¼°‰vþúþÙiϦ´ö÷¶|we:òic,Õ„J×î9ûÆðŸ¿Ó''j{}ÜÜÊiX…6xüÿêè:!Ò~>¯ý~@%„¼Ê6*ê-ªâ¹ÛáñSp'¦éx™q½„P®W€ÊIB„P®W€ÊIB€ÊI€ë „p½„PNê€ „p½„PNê€ „PNê\¯!€ „PNê€ „p½„PNê€ „p½„PB(B9©B(€ Àõ B9©Bè+eKfc£2<:)¥àk-YšR¯]ËÈÎ hËVu«û2-M¶´–õsY&‡‡ej©Úqùõ´ Gb’Ûj=sÛJó×dxxTæV5~OB(×+Ok'“#GŽÎÏ–¯k2zT½vtX¶~Ðv´dnà¨jÃPçí´V¥Oµq cUmIŽ©ÇG‡2×ûp)bì×@zëÛW2¶m§S×^H ¡œÔ!ôµ4wþ˜B „@Mb'Ìçµ´;;¦¶s"Ö9àµrFèÍí˜w–ä„z|lx©ãz[[%IÏ/Iuç+´™a÷9*³å¿+!€ë•}SAî”^Mfƒ£RjYÝš½ûxô˜³}÷8„PNê€úZÛ’Q#`ž’%£»jU†¬jä’ÖBOf̪¶,ÇÜn©;ËÖ˜ÒcC²l½¯œµÂÖTÕãÜè‰ÀzUpË™Ë /m¹m9Öeì©DÍåÝî¸zhÌ™Ïmå®áî˜5Nô¡w;93´öM9ë\=åiCøvW'ÏšãJ­`›³Þ30WnÛý”¬pš5ßwêÚ²B­ãxv4ãŒq²‚餯ú B9©Bèk¨Uš2ƒ“ eö8Ì\Ì X}“«: å1’Cj’ %§¯œ¤9Ñ<÷¡=Œ=Ý ¡þ1¡%9Ä]?„º¡õüð5É,—T5U“nã;í`~JrZษñ«Z`_®-{ä9‘Ò‘SúröqÃîüÀ1+¨êÇÆå»ÉÐ53¨ZUÀåÉóî-VB'ê©Jì”}‹ÕµwËÜ£¹öz*æ«„Æ–¯W—®É‰£v͆ŒCµƒº9pèxÑÕkÎEëÖvNõ޳=!±LÙß.½½ÇüÇ1·ÅÔ!”ã¢%[[[J箣šñú–h&úi©Ùh·ªUÙÚéwö˜­V…?}FÛVë™÷CÓ”çslÌJè Ééû­Ö[Uëoù–±B¨ ¬;öqÒ¸- ¡œÔ¸^ÁS‡Ðc¾‰—ž„…Ðn/„PNê€ ôB[Öm›!ØB™·h!„‚ÊI€ë „!”“:×+@àz¡œÔ!@àz¡œÔ!¡œÔ¸^B(!ôÖj6¥©p,B¸^ùÁÔò 2é—þ~[D颴~í5$—ZróéÞ›ŒöKt¦øƒF1)ƒýÞãÑ/ƒ‘™Hæ¤ñ}n¥äˆôG“?x›Š¶Óª¤Õ±‰J¡ÑûºêÅE‰E­ã:(ãê˜6=Ÿïb"æó±Ä¢o›•\R¢ƒÖç12!…zËýÌÊYw½ƒ#’Ê×øÝ&„p½òRÐì„yá‰ÉB6/…|VâcæÅüØBù¹o¯YLá£ð”!tF…åÁDá¡3Æþ'’’J&%9“؈pÆRžÐôã*ÎDTàJü !´¸0n}?fDó£ò¢D°¸ªåÌp—ÅBAÒVàI­ý‰'r’[0¿—Ñ™‚'ðªÏ>–”|>-#ƶ'¤f­7b„Ï1Içó’š0ד,6ø'„p½òCùæ›oä‹/¾T*%?îí}Í‚$¢þ€a„½¨~‘?"¥– ŽõŠTê ©s²˜+HÝ õrA²‹‹’ÍEk‚\­$ùlV²J¡T³ªªM)¦Çš*”¥Ñr·WÊ«u«uå‹Á VK*…¼z-+åZÅhW¤K­•ÂÚÔRm-‹¦ºû°h¶©{J1°Où™1#Ü$òu·²×åS·í‰G=Õ`õ±·[I{ªÄ½‡ÐÚ¢:s ÷sY1n£Y4‚e$‘w–/$ô09&åVK²ãúÆÍЩò‚±®4аªÞg5{½M£bÞI¾T•kB('u@}müþ÷¿—¡¡!¹yó¦ 罌ílÌŠ_¢ µW,ëeú4#ƒ¾®©ñB]²ñ¨ï9=,äëv÷ͱÀk*\ÄU·K«ÂhÓÄ“FQÆ]_c VxÐ$9Òß¶.»:¬’.ÄËŽH®Ö2^K ¶¯gd¦Ð%„FÚÃUË”š]Á“FAÆ‚Ç`"kÏz~¦­-ñlÅ ^‘¶×GFü݃dzVi[¶$iýA¡{ûÚ?Ó@ÕP…ÂXdLËšú<ÕzÝZLÆd|¡¨l‡ãÔ© ®Õ¥\®ùºßê•m£«¯õ‘„§MgýV\}‡ÜõUd\?¦ê34Cè„Pã8üã ¡\¯<³¼ê~¨‡oõsbbBfgg{èÛ[ˆ°ÃN"W–z¥,ëIø‚Ó“fÉ ’ci5¹QÑèé­hå&n£š|Æ6óšY 3+\cÖã'¢’fWØlMUÎÆ­í˜UËZÎÜn4¤j/;‘.™•²zÞ #z÷Ys,iL ZË ¬ýN›z¡VhÒ+±Z¾Ë1Pûµ3«„ÙŠùÇ€bÊ<†‹ÕïŒv ާ­P×’œQñ‘bÓ=Ö3ƘFu|&ÌPš°¶cüÀ²9ÿñ™PÇ«{ûÚ?Ó¶*n[·ß™¶ªbsŸ!4¨`ý±Bÿ¬[µE÷nÑ åzH7lõ™ZÏ•ScFu=]¶ÿðR“xΰr~$„p½ò|}ýõ×òå—_úCCQUÇÇ{ûØKõ=4»IJ|!-é…I/¦Í€3—ºšT*)êÝh’26èÿ6­J˜ ‡ j j}‹é3ÄÆóV5ËÕòƒáÝq6öÇ}¡Ò 'Q§’I=ËGCƒÕ^!4i…ÐîÇÀ®Üå}]s+•šÔ¿MZÕÞÕWíszQRñ§" |æ8I3tÁ¯d¶-ߪßAãØuÿŒö3ž´SmýôSãçV«ÕÃÄDf¨ÒÇúFSR#î¤3ÁR°ªs%ï8…´¤Õä7Võj,Yp†=N£mÒ«Ëú&"ʧS²X¬[ã#cRv^«K¼?<ܵ/«º*Ç­±‚OBÛ'&²ÇºÎ¨Še·cв÷k|Ñ}#¯Žõ |yk®} f£$ ê¶5ÅzkŸ!4XÍ,KÌ:>ÝÛ÷c…PwܮݽØý.–ŒïâHªäV²Ƭ?"4%=è>]Ï:@iV²2®*Ë5Ï÷×8þ#/ÏLÆ„PNê€úÚÑ'%šœœ”?ýéOòèÑ£žßW^ˆY“ßÄ%[(ª®¼9IX·h±«LÁÒª˜3“ŽÍHIM^TÎ[÷ÕQ •SVÍ«Éf4)eΤ8¥¦=&T[Le¥Òh™÷ ÔǦòR×j’MŒ8ã›Ö ¨‘ñ©x^ Ú,¥¬n®))kª[ë¢µÝØ¢ ÷BUPL©®¬i½;kJ&Æ¬ê® 6=ŽAë‰uOcŒª æj’§¤¾T°mª =hNš”.V¤^+ÈD¤?,{ ¡Öñˆ/ªcWq*Œ jlä^íû¡BhyqJÆbÓR cêÜHÍr»¨fþM[]…²f0ÎŽ›ÇaAÍ\+.˜·]_4^³¿7cê¾¢u­$‰¨ûjÕÒVe5k|‡­ïI²Ä-Z¡\¯¼„ZRXˆ›üŽAóNÉèö˜ä¥’›ñ½G±¥†¿»¥} ‰ sâ==ÑòÎø½x^3ªc‹qÿ,¯±™œ³íòbÜ×.o8n Ô*ðzg‘ާ¬®ªfõ¾Ï‰{„PÕu|fÑ×½³ó1x²_IækÖ¤I*xzo¢ŽQªP=ÖÁvÚUZ#„ZA׻ωl¹§ö…}¦Ch4ôv'Þ¶8ËNGŒÏ)R]l?®ýž g³" ïlÈѸ”›žïi2æ;ž©¢æ¾–÷­Óž  „P®W^â0ÚPDMkì£ cS-¯ÞÓh¿L³a®«Õa[ͦ¿»pKûÓ×Õ›¥µen§§vYË6š­tÜ:c¿Žm·wë9µ¡ÙÚûž7³ë§ºöq ]¿ñ=éðµ¾CͿτP®W€Ÿ„’ªVþ!]æXB9©B(€ Àõ B9©B(€ Àõ B¡¯œVYÆÕý*#ÙÙY›² ß×2š”¼~ÈtO·òxþ’Œv¾%‹~«“øˆu;˜Á¨$s•ŽëjiEI¥Ì[¿4KIãÖ"+ ¾!€ë•&7¡ß·qD ÍÀkZθ÷äXª$åô„DÿþÑB¨~ÏÁD!䵺Äõ{BŽI:Ÿ—d̼¥q/Òuúë c?š•E‰þAJM¾!€ë•¦YNÁm"[ó=_N©ç#’Óôû\Ö¥RÓ|Á°”ÏÉââ¢ä‹5§rZ)•¤Þ°ïÍÙ’Z¹$•ºµŠ ´µF—u>.ÿüÏÿ,/^”jµÚã{ë’Ы‰#)3y+Œ±´ÑMw%®Wã¢é¯5ŠF^£û«e0¶ ÕµwLÿ9ž7×Ñ0+©îz+S#z·ÚNë0–Ó$9âMi¡å…1£ Zö½|BÍÁ„ÙV_4ê®O½^]™2~Ϋî¸B¢m{zWݨ¯cRl˜a;–“|Ýl{j,¸žq_ûB('u@}åµZ-#ð$ ÙÞÞ–B¡`<®T*=½¿²sªžÆú¬êh¢`V-‹Óz°ÓÇ„¶$;>h†.kY­`V#ÇU%5W¯ šaUËÇ­“’géÚ£®ë¨-Ž?Ç­Êl-gÄhH%´8£ÂààŒ¯›pq&Òöœ­0ãÔFqÚØg}Lh£8cncbÑÌuk›ƒãfäfiÁlS^Sû•°ÚgÛfÉ Ôc*°7‹U¯,T¬ã˜6–)6ø!”“: „¾>Òé´üûÿï}ÏݼyS®]»ÖÛ:y‰èã?Êf5Q“ª‚W³ƒBÍñ™z°\XLËÂBZÓ3Æ{#ªjVêb>1~6ÆhVZª{oÔ¨¦Ö÷XG¡­’©– ßê}-,„&ín½V˜LØáÑ~\ÐTû¢Æ~ÅU»Ó ’Vû`„P¾ëÖrú뱉Y̫9!”“: „¾n¾úê+ùÓŸþä¯ú©jh,ëq-YŒ©ðÑšÙm6štg£uB¨5›®Ø"‘ˆ%*###2±PRc+K2bŒ/ÍÝyõ}r£¬;®su”ô™xí®¿VMFº„Ðþ ',»A³½;îÞ!4"{¦ÜfÁÅzè >.ÎŒøÛ>‘èȘjÿ¸Ñ]·YSû>æí®‘…•PB9©BèkäþýûFà©ÕÌ.¬?6ë“þô<¦Ô b3É £’—­?i¡v3–õØ|:%‹ÅºñsÚš¡ÖèÞ«BYÁ3Óœ@¨û:ŒJ¨ª’–½ãSûÃCh£`V0ën`ÕCoÿÈ‚g|k{m>C-ÁwÄèbl¯·^HKj±(Ôíb’‰Uí5÷©^Z4B¹3N „rR„Ð×E.—3ÙþðùðÃå‹/¾Øç:Ô̲öD“Ϧ¾’µ^–ûâ+)oÉÔ¤õxö¦ÜŠÐSÙcå•¿Èí½—&¤UVnÊgz{õã¼%•çºþŠ,ÍM©c!„PB( „¾ÊÝq++à˜¦¾üKÛ2Õµ[¾ úUþž d îsŸ-<]í°Žå…)çù/–:!tÊ{Œ­z?¯ªÅöó_È2!„PB( „¾ÚcB«òÍÜgž™”b ËgáÏÓž×ge¥j¾¯|¯$÷tåJH¸½¯^»g*ß—j‡m‡­£ðç/ÜPü"C¨§Í÷+{„Ð/ÒFwÜêý²³½®»ÓñÐ×U*Ý3TìÏ ²,_xBh§Jèýò½ÞÚA!€úcOLäëè ìŠûÙ—·=ã9ÕcõÚgÓžñœ÷‹’ž›ö­oÒêJúåͼoeû:îËÍÙÏBÞÛ¡›peE’FU_fÚS%¼/ééÏŒ1¬ú{¿ü¦ävm]š3÷C¯²~õg—¾šmÛæìÂ7¾j§/„ª0¾ðUÒÿž/æ$_ òžGEn%§¬6›cBïÒ¡Çbr:íïraIf? ¼>•”oVÊ„PB¡/g­U‹f˜³ƒæÜmOWÜ¥Ð0Þ5µ$_~6œì`ws¥K÷V—ÔÎÁجÇ;ŽRï&lwaý»?Éo¬ÊcEnN»Ï'o65Õ¥Í_,ȽÐÚÉ”Ü.U­öíçx´ þq x¼Kùªëºþr B(!ô% ¡Jþ«/BºÜê³âz«xsÎì¹ÁyßxÎ[¹ûBnå ²Rø‹,øª›ÓκÛסfˆU}æ SŸÉ_LË­•ðn¦Å›³mUÚòòB YíV][§½añžÿýF(üê¦Üúóœï¹äÒZ‡ú™|usIÒ_*VèÝßñPÕÛ@­—dzÊ_þlê ™ž»%÷«+2ëÝæg³rsé–Ì}1úyBA „¾T!´R¼˜|¨lT½UBï$Aa!´²’öw7M/Ia­¬Æ:åVú–üe¹ kj¼cµË:ôçW<Á÷‹?º·½ô'´ÎUËå…/ÚÂâ’ œo8ýâÏF÷_oõqÎ ›FõV¿H[!ûϾuÞ\q»Þ.ûÆÍš]ƒ÷w<ÚC¨Y¥öN¥&&ª„t¡þÌ6ýŸYølÇ„PB¸^ù‘C¨Ñ-Õ;ösî/R¹÷¯*yk­Ú5„gÑõúböKU ,ú&äéB½!í=;î=Y˜rƒá7kk¾`éÌÛk¾p:{³¨Œšc)¾’¯äKoµò³¯Œp럘èÏþûš–ÿâ›ÅVŸ@hÇ£C½¿ì ¡öÄDþÉ¢Tµö«ùꫯTû¿ô´C‡ÝG—\Î „p½òCh ëígúÄ;ž®ªS 'éñÈåôl÷1“jRòs ¡þå§¿üÒú™êÆk²)ú’Þ°ªÛÔ'6úl²§qžzøóµWM¤Téx«÷V*½!´²ºÞ`íd?÷Yå¼B(×+/4„ú»¶vžP¨[€4&3*å›ôWj8‘U©¬®´ßkÓ;¶Õ·-}l埗ä/ߤÒ[Æþ‡Ý¢eîÏ7ÛfǵgéÝßñè<&ô ßXÒY™žM˽ÀóúxÖ¥¿üEݓԿ?7‹B(¡„З7„ú»•¶W»vÇ­n:ò¦6;…ÐàmSŒ1{tË­ÂæÔW±f— ÞÊ$ÐVÝ#u®ë¸PkühÏ÷ ýBþR¶Ç‰îçx´ß'4´ýžn¹Å¥¹îãA¿¼Í}BA „¾ä!Tïθåòý°Ðw³í&æøÇU› sÉ…o|°Ó:ôðöe`üäôžÝrýar!_vög)ù™§{oH˜­–äæÜí!î‹9¹]¼ï ÞnÐ^X’[_ösjNò%÷×ÞGEnΆßZ¥¸ôeà½ÓέZJù›þЍµî¹ômÿ콄PB¡/g}Nª÷å^©$%Ã=¹_Ýÿ:Ê÷Ì÷ß+W^H›+å{²¦nñ²ŸmVï—Í}¼WþaGÅÞÎ=©TÛÿpp¯´¦î9j®»R}ºýç¼B(×+¯nÅ+‡ó¡\¯BA!”“: „BA¡\¯BA!€J!„PNê€J¡ „p½B!„PNê€úŠÑ4p…žèßÎ „p½òLZ­–lnn²Ð•þÑ¿+œ@àzå¹Q*¢èV%€‚ Àõ B9©B(€ Àõ B9ø€ „PNê\¯!€ë „rR„P!€ë „rR„P „rRàz¡„P „rR„P!€ë•§ÔZÿZÞ;}ZNLÉv×eIêÒ»òîå¯C_pûºœ>= ùퟪ™OT["Rx´¿÷•R—Ôû.K©¥·6%59%ÅGOsLSò®:¦“ùþ×d@=ùëuõxS®_xWmï´ß»ïÉåÉŒóYl¦ÔóïÉ×ÕÖÞÛ~†6ÿ(ŸE5c|÷¦‹Ûû^o)3-)ë}Ý?ïm™ºpZÞ»ž!ß!Ý£êm™œZ’VH[ ¡œÔ~â×+d:b ½.¸×å²ZîÂd!ôõüõ÷Ô:>‘Í—`¿n¢ÂÝ»×÷Õa!ô²\¸”4ÞW˜Ô÷çã§ÚŸjæ²zï»’Ù „“â”q¬' *<¸m°O¦åë¯S’J™®_¾`,óÉm3À¦ŒpßKz–6ÿŸÅæÒÇFÀ¾½Ï?\´JÓÆ1š.=êáóÞ”©ÈùÄþ?üwHßÞǪmïZ¡7ØVB('u€ŸôõʃüuãyàÒ€ÚBÓfI–2_Kæöº´ThÒ«{×íê^ëngT€º-TµiZU›N_Îtfżd¾VëZÊKµCèØ®–d}Ó½X°^’âú¦SQÚÞ4Û®b~Imÿk¹]Üô¬ç\W…€O¾–Rñ¶z}IÖÛÛTmùÚjËfË äÕõuy ?¨ä“÷Ôþ¼÷‰<Úc{aæ=£¢º ¹Óõü#tm&­p¬pä‚zþ½OnmJèí˜Ü3 uj³ùém®îñ}è¼6×ÍÏåQUnë߇¥‚l·¼ØR¼m¾w)_’G=~Á?\´¬Ëí¥Œ±\éAxå·µ½)KS—Œ?¯ªï†¹÷®«ïaµh|Ç|ûú謯Wï¾ ý;­o£Xí »·[?Å’û½|òhS-WRǤ%Õ|Òø=˜\’ÍÁ¶¿ãûÖóq&„rR„ÐW[U>~× 8›VUîzÞí2¸þõ'n¢§ ºôà‰QÅv#U.¥ÖC/è§"Áeß í^šÒ—‹¤Ì‹õí¼ÆôjÔãõ’DN[A÷AÞüÙãÂõÛ¾.¯þí©à÷À ˆ“ÖþØ]aÌ×¶Í}yéž@ì÷¾ûñR÷í…ìï¤#IOÓµäëKúvÍÐU´*œ¥`uð¶N/­‚T«$—ô6|r{Ïlskóv[›ßûøk78yuÝ¿–ù¹^×úƒCKu©½<Þ®›Á²ëg¡ºÉ¾çþᢚ¹Þ¶°nºùëÞ.̸ ¡ßEû%կͨÿG¥dÛrgBÂy×v·Ì? ¼ëþa`;oþ®dòÓ¾÷|t)ÐVˆ“—ß ¬÷’¶÷>΄PNê€úÊ[7Æ?ê]CõjPѸè˜*š¯ofŒ@öîÇ)ãB»U]²áÇRÕCÖóâ9ÿÀ ]Ó‘w;v9´·3U°*¨ÛV7ÔébHwÒ NÈ¢Q5ÔCò”æª__¶B°µýw/KqÛîþjvëÌ?Ò»¼N;kÛ3îÐìF¼mÄËKÎ~ÚáÙ®Lêḵn†sLg÷í…˜ Þcé ývˆÖ+œVà¸ôÉ'ò‰ác¹4`UÍ\o¹ŸChPj‡êmó¦JíÏHÿ£ÂåŸÑ^ûgý±B½7Y4?åߵþ8 ºs˜ß‹’u,,}ât±íúY<2¿sÆ.¬ý¼ðIÆ Éúøcó³ßéîúÉ»n0··¡ßu½ ­¢¨í1 KŸ¼ëü!ì¼Úݕͱ¢aÛèþ2?Ç÷<ÝÒïíiýwCï>}ÁWhkqÚüÈämëóÜ4¯œõv<΄PNê€úª³+=zTu!l=Z7/–?^ò\T{Ç!>2/Ø/¥œjÒ'Kî¤;Å®ãõnž·eIu³L¥’2õÉ%_¥ÊBõ øwõйnV/¼gUªò‰Uá{d±;™’Ûª h&£$ÍJTj½e…Þ ž€øÈ¨¸™cô¬Ð¤‡Ä§¤PÝVû¾-ÛÛ-+ \2ƒ9Vñ‚1ÉÒ^Û{Ò!ÀLæU¼KF1«ÅæøÚÓï^H$"ž Ц2E§‚úàvç턯´Úljcì©ó™›•åOÇ}Ïý³ÚI–œãiT­Jok[ïB»dtqM%§å“Kï9]Ž»}-ë{4]|d}ßTØNfÔz2ªê’L]:ÀT…ü=O07·ñ®Y¡÷¼nŽ©µºÕZßëRÒúÃÆ…Ë’Ê«.æ­Gê³ïô‡“ß!u<|ÝÒíï”QÁ·ŽÍ€U÷¶Õ®jœñÉÖ×ûÞd~ÏãL夡¯´Û×/´ÏÊj\œ›] 3zF]H·¼Õ'«ziV /ø§Qaz7lÜâ¶ê~ø®Ó÷Bä’ ¼kþ¬ÌuG$9}Ù„KK“F¸M¡Èœèg;o¬wß{OÞ³\PA.ò±jSK2—Í ÷V`B%gvÔVU’ŸDÜ.ÄÓ·+äÀ´qÁÛS=ë¾½°I‰Â'Û1+„ªÊ¥W"í çÒ¦oR¤ÓuóÆç¤Bxã½m6ÇúúÛ`‡ã©@×½öoÛX—g’%+L•ìmO7Þ÷T ¾1öëô{z;ºfe[ÿ™³.ë³_pÚpAm?"‘ËÉ*¥9¹SÊèÎmmÃ3fÖüYݽ­à}ÙSI.¤®»Ý‡&C&qêÞîÖñpB¯Uy5+ûÖä]S…ö¶úÂq{U·ëq&„rR„ÐWZõk#(¼w9%ÕͪT«Uã߯?¶«ŽÖ$Cªê *Sª²f^ä{º¢Zá¡ã™Þ—=3“šÁê’Õ]ñIh :ítÙ4ßÚSAÚ.˜«ày>y]>6n‰a^ÔŸ¾ôµg×­ª º}‰šyö²=nUUínÅ¥–wæ_³Ë®½?Ý·×¾f7â`µ»0›“…W8UZ½«°Õ­Óé.êûc@ç1¡Þ6›ë÷w^úø½@uïIOûçíjjì*«ÙõtÀokwU5+Ý>‹íö.½¦=©ÏæòÇ’YÔáø^²ÆÒZ!ÎsûoEÛIµžRRÍ||9åÍBòãöj±gÚmÎ@ìN¦dws6ÖcýqÁìâh«B=rûû®WJ»gB('u@}…Ùc/´Uê¶=3\˜3znSVôwO5gÿ,YÁ©Ã¸EëÂ;2­*=Ûäöô%«âÚឤV—Dg$k|¥·Bdwã¼ð±¢¿¾n޳»¤]5Þô‚õþda]ÍÈûµùXmï=Ž Ú5³é#ÕtjÀ }›Þ.–ö„H꾩몛n×í…Í´»·|"K…’š5uI®[cfí0žŸ ¯pV­@c´Ã ÷§ßSalÉœáÖúZ ›­¶ãìm³¾"úgäÌ&«‡ì|H{»íŸ·«©·Ûï{žî¶ú±ÞT3eÒêê|yÏÏž}Ö Í%#8¾+“KEÙ\ÏËÇ<ß¶‰‰Þ3ƯæõY“­ñÅnEÙú~[m³û­yœKÖxÌO¾V3Ϊ?´R‡‘íÚn{\©k[Ý”Â××I‹ôß ûwhJí‡>«­¯­vì Ÿ¨ÏOÍØ«fÑ5ÇY¢‚g÷ãL夡¯,;@FBºøµÖSnR“Æ|üž;“í»ÖøÑViÉ *Æä-Æd:ïv·øH¾þÄÓõWÅû8Òå–#ªò9à7|lW»¬*–3Ãi²àéŠyA®O^vgL:“æ¶×éøußÎsþ¼ž¥ÍûÞ?ÿ~n?êü]èöYø¿'ÛÆñÚk9}}žòþ™ú{{ÝÏŽínmwþ\õÉŽ<Ç¢½­Öñêñwç !”“: „¡\¯!”“: „¡\¯!€ „PNê€ „p½„PNê€ „p½„PB(B9©B(€ Àõ B9©B(€ Àõ B¡@夡B(×+@夡B(×+@Уôºøù²¡/ÝÜ÷û+U9øó¼8]‘ús\?„–\9wWÞøù]¹²üøXÿcÉÌ×e}—c p½„PBÕÓyJ,ïT¤±ÏuÔo­›ï}{]6žã²øaBè…_™Ÿuß­Ýç»îÝ9c¬{Ynhk€ë „³µiT&ªD¬üýþBèm7XÖŸã²øaBèÅ*„jš2¾C+2O¸^B(€0Ùñ¢H¼³&ÇßY6~>x©¾Çû¾—­¦¬WweW=Þ]¾ß%XîgÙN¶ÇÖ:š²¡í¿ éîNK6Ô{×·v¥±G7ц¶klg}«ÕÃræ>µm«­ú:v÷ åûXV¯Z˪íÖwžvÝzáöcóóéaæç`­W ]vÇ ¡TB®W€ Ä#9ù¦HŽ|Úµ¹5«Z”l‡°–ýüž¿rúæª7ƪŸå–ûY64LU59sú®§Jë®ç£[{]Õßòö÷ùp£­+ðÚ­ªy{Ù¿ìÛE‰Ýn:áí£wômåÂ¥5ÏrßJÆ dõ•MyëWÁ¶åÊíö¶ö¶¬Ú¦ÞUúÍoåzzCŽöãðþýèmÝzøÃ{òÖÛÁuVÛ»Iï6%öa±m½ú²kÖ÷¤±\iÿœÞ¹Oµàz¡<Õ<»*©&©‰Wõî”u«’•—ãsÚ–/|¾Ö4¼<Ár?ËvïÚi: â7½ë¸+ÓÕ=¶çýµ*‡<ï?ðÁ¦³ì†=NÕrèW+¾ÇWÖ¾÷…7¿5)ë¸ï{þ ZÇÏã3žãÙû²îøM7¨úƒò¡+Ú>÷7d?ë<øá–ç8î8¨0—½+‡Þöïÿ]½›õýϘ p½„Pñ÷—“}/±sËNHôUÄvÊa;М¾ïTÀÖÒ÷Ýew±Ýϲº _]µÂ̪ÄËnÜå 'œö¥w{ Ø7¶Ü®ÁóÎzW¬ fCÞrÚT’Ì–5vë¡·Â×÷kðvW.ÎoKáö¦\™kø*Êoüê;w»äâée§bšÝy²ÏeÛLï8Ë^°ºN¿ñö=ãsê}½ë\ö­ÓÙ¾µNýùŒóþ¼œü|ÛýƒÄÜ=7_²‚°óGŒOp½„PÖø=;(žñ„¹†§¢ueÅ ΄B*'q£,÷³l§öæîË[ï¬ÈñOmc{™ÝÕmÃ]¹0·-;ödKM‰º!Óémcûú-cì@v½ì_ÇÆü=ãy½ÛkÝÛõêÃŽÛšn ÙpºÑêíÝϲÞÀxd|Û²íõü*xÌ»ïoOë|û;Y·õÛvu´}œpæŠõY¾Y’5ßwЉ‰®WÌsHn*&££1‰ÅÂÇ$SÞáû€ ü¬Í¸ÝeoÊôܦ\W⟗<]8Ýn™ks¥ŽÝhwí g½¶Ÿe÷jçÆÚ¶ÄgªrñÊ=5žtÕ×mµëì®»ÛNÈvº™¾ó­\øtKÖ4wö_ï-cê{\L¹ú´:„P}‚§oå­s^n×Þ“óÍ}-ÛÓ6ív÷¸¿ÝÖùd«îŸXhgÛŠÛ'jÚ]«:UVsyB(ÀõŠ—&ÃGÈ‘#Ý d¶ø> „¯¿Ýö±†¡T%ÓštgþÒJçðhw¿µ^Ûϲ+µÛrr6îu‹‘úJMM6þÞCn]õJèžBqç[›d?ý¶‡c©‡úú¾–í¶Í°[Ýô²¿]oÑ ‘꾟f—d½Jr۞݇þå ¡×+-mK¶¶tšh¥99¡B籡9ÙRç óù-Ùiñ]@^{»kî §ï'}~'g÷äÌîL¨o}¾³g%ôIÕº×h•Ðà²ámTcSO{Ô¹ïä£ÏkrãvCݤÙSw\_`+«jêç÷å乕@ˆmíQ },…åm¹Snª×%:}+óåGRXÛñx$kUE=¿¾õx_Ëî7„ö²¿û ¡ž±½TB®Wž}È’BO /ùŸ×J27“órþü€ NJ®ê­fdth@½~^†'3²ºœ‘ÉÉ9©Z¶µµ,S±QcÃ29¿,;|ÇB('uà%ºð±+•jfÓµU?§Rú¦9>ÐíFÚ~ÈÂçßvº÷²á]irÜî*üypL¨;±O[wRowãùucv؃žYpí «=áPpŒf<0ÛnýÖ=§"œÙéBïu\‡ÞÞ §WÔŒ»êv/+­}-»ŸÚëþî+„z¾ÎäC¡“G™3»ïw+è¸^ †ÐcÞZ7ž3ºæ=&Gnº'$cýÿ£švºîõuï=f.³å]ÇQçõcs|ÏB('u॰ëÎ,ÂÆŒ^\nU1ç>•ï¬;3ÞÖWÜÙj½³ãö¼lhwœzøŠ§ê~•WÞwXÇkݮƪ°weÙ3ñÒÚ¦§º§?ïnëwîIÁOZCÎü*|vܶð¦Æc†Î°«ÞÿЭFÆô[½ìgÙ}„ÐÞ÷w?!Ô?;nßœ[™ðÎtìÜÒŹ­Žšu÷Ö#Ùå÷ àzeº4l†Æ!usž‹5žÖÇŠ¶V¥Ï ¥³«æÿªK1+¬ž%u®ÚYŽËŸš,[ë(É€VOIŽ?ˆ„PNêÀo}þ»Àý/;],¸³ç8W3ÅúÜw¾ût~çnÛ½?7œØû²aÝq¯ŸóŒT•Áã犾I‰:ÍØê ÛG¼c,Õ}3øÚ`ßÅLŒÙpOû'@úhå±ì5+ïšo*࿳jv;þ¹dw÷½lçm¶OLÔëþvÙOu*Øžª´½ÞÿZ=ŽÞî»Þ{ˆò{p½Ò)„îl•$—[MÿY-—–ev´Ï ¡K[Ò*M?Ÿõwá8æ„Pmɪ”;+£ª‹îjY3ÝÙ‘cMB('uàåpÃîŠë¹d'ñîºAà wæÖ}Img®®›°_Ý÷U7÷³lûÅÊŽêš®êýo]U3ùޝõ´r]Nï1k¬~Î@8¿U•Ão&ôyû[¹îTUñOe8,àßÞ#Áu¨6¿ºÕ¶¯½-ëÙf ëqc¥Ò6î¶·ýí¼N7„Ý`iÑGòÑ«í“[—là8ÞñÌ®lܳ”±¡×+ݺ㶪25Üçé†ëÒC¨]åÍù{îäFO8!T_G¬ï˜ÿýGOÈðì2ß3€ÊIx}<–ª9©Îºöýs\6$Hn5‰zÖªjr §¬ª54kÊF×6|/ÖrkÕÖSŸ kr¡µòÞmÞϲÏ÷9¡•¶ë´Õ½iXZMÀ¤©ñ¯;ßó»p½Ò%„îÈÔYk¬ç©órmjV2Ëe)Í9!T[5~î›\íB­?°mUÕxtu_Ò³'œ0:¹Ê=HB('uB¨ñœ&£'ô°Ø'eÏrK£æ˜ÐÑ%ÍxÏ)£«í”œõ,KßQwLh.vJý|Tæ<=3V¯™ëâ¤!”“:!Ô®„ÆN˜Ëó±Y564#×N9UÌÙ²J­ÊæQ5æ36l†RÏÄD[öì¹Çúdr.#ó³19e„TL«|ÏB('u€Ÿl=˜dH[žò„J3XŽ^5o¹rvÒ¹×gnrÀ7zìì =ê¹ËŽÌ[“yoß›/ó=¡œÔ¸^ ÒÇsV¥º¥I«-¸.«Ày¶-PNcIÏʲwµ–f¬g+l=¡œÔ!”땽•äü³kíèlFVWs29duÙí›"l „p½ò|må®™Ýs=ŽžòWA€ ÀõÊó³#ÕRIUBKR®j„Pà§¢Y¯I½aß?³)õJEjZã'³ÿ­fSšÍÖOï3oòݸ^B('uàEÓò2Øß/ =„i’é—þ~]\´ŸÈ1(Ä¥"¿ï÷U² OŸz»ÏúþgQY‘þÁið;p½„PNêÀ‹”Ws"g>n%¢h\¯!”“:ðbº¡ö¥Ýû±©î¸Q#d5UÐ uc fåÌ Iƒ’­ÛïoÉ‚>~T½_³^ËiV…mÆ[aSÝNU€Š$ mÛ7*qVnëˆH¾a…ÑTÉYNËÅðdtü]iõÇögÔ¾F“NuRËMá²Ô´^‹¸ã#ÍÇIÙì²Ï-µ_Ɉþ:·yù^Úz㩜1ùS£V’B©x¿{|ích†É˜”õ §ª"7­À˜(¨À«‚~º`u£U7q_WárlÁØ7ÿ¾4$1¨{+è7õ@¬ã'žÇ* ˜‘àz¡œÔ tv(Iè¡Äþ¹hÎ’Û,¥Œd‡$7D&¤jH»Âf¡A7u ¡OêYc©JCU÷¬p×4ƒp²Ôt]¾s-zB¨·½aûê­ 6œÐ²N£ý ©uÙgÍ»_]ÛÜ”Ü̘S‘ì‘d®Òv\cXJyÞã¡6­zAâ#ƒþ×TðÔž÷¥aŒ;uªÐÁªªßqB(Àõ B9©/2„ú*¡a!Ô (B IžÛzä&¼•Ч¡ª˜ŠêÝ`ÕøF; 5KÆÏãYwœf—À¨wÇõ…ÐÊ÷™õ¬Sߟ¨±?á!tF6»ìsËÙ¯b÷6×ëR*U¤ÙjH¥˜Wc5#Ö±ò¼?$„Uj5Cq]_—º}L«Y“|6'e­&zèIH¡\3ªŸÆ²Öñ†P½ê„ÌJh” p½„PNêÀ‹bOLÓè!„Úc.#j’!Šj…”1fq$UöU;…ÐÁЪ&íÉÙôŒãõ.¯‹±~£+j¾Ö¦V4ÇCZ•>³›ê˜ñZ½¸`ŽßLôB÷EdA¿lj%‰GúÞ)„6ºì³½_ý±”ÔšÛ\+™c=Fõ³%¥…˜~‹MïûŸ´C­`Ž+§K*À6¥Š™UãïÖ$¦ùœÉm·AôéBhĸ=O“ß€ë „rR~xÍRÒ|ìn¥úÄ;úÏ#F¨s»·j*ðD=]@£ñE#ø˜JVVˆÓíSi‡ÐdTMnEÒ*“õø*¥Í²$F¼]MÇ¥`w‰­çÍÉ}¬Iˆ"ýn—Ø`{ÃB¨»Î )6»%ËZíï´ÏÆrV0ìQã1;¶¹)‹ñ_×Ùx¶Òöþzàêµ÷½ob¡èŸ!*ã#Fˆ/·‚ûbuÇíBëö¸Ø¿ ×+@夼šR¢ž uö¦&×Ñ4i4ŸSjY£’·PiŸ¡µ©º¬6ÍŽmhî#<¹÷muXçóÙçNmn©Ê§¦5œ‰‘zÖ²Þ× YŸÚV멽91R4Yä÷àz¡œÔǬbš³Ä¾Øm7e!fM®3’Ú8Û§B¼ß71Ÿû UP€ë „rR~ ªÛçBR²?¸ÀŠºo挺fí`­œ—|‰ xœcŸ]EŽÀõ B9©B(€ Àõ B¡@夡? 7.­Ê?_–‹·[Ý—Ýy(‡ž—‹Ëa˵äâ¯òrèÊÃgnÏîÖCùh|˽6B('u@}MìnË,ßÐÛÝ®!T“ƒj¹¾[»¡!ôÂÛy9péÙ'LË\ZVí¹'u¾‹!”“: „¾^ÖçK*ð­H߇Eõï]™Þ Ϧ:›Ÿ{(ëÕºò…Ðï¥p«.×g6åNyG.¨JèÁ.!´^Þ–súº6e~ùQhàÝÕI샻ª-ßÊ5{;¥°¬ï‹Ï×åNõqÛz§gjOoK]Û•;+º‡i„PBèá±|ôŽª€þª¢Â›Yå<|uÛ}½ºi„Î7̺+ßiíЕðš¹Zl[öà‡[!UÐw™7ïÉÆî#éûUûvì®Ãw>_k{MÓ74¾Ç!” ¡/2¨Ðv|æ‘ñøú9=À­IÁ ¨WŒY”ù-³»mìý»N]›1Ãß™9ó½kó÷ÌV UcIõ€{ðRÝynúƒe3d†ÿ+w×ê·¾ó…Î'» 9®øP­Kg=$úpÓ?ª=”ãoæÊî Y箿;® ‰'?(ï¹²ò¸mùµ¹ïœYng‹[æøQ§«pIΜVÛzÛº«n sÚZ÷›+ÆxÑ7ÞüNÖø„PB( „¾švµ–llµÂ_W]x7¶vÍÙi÷ÐP“éëÙÿ=<¿WUÐ]u™@`Ýi¨@ú­ÄËîÄD7>4gÝ­ó¹„PNꀊçJÝ®å-«²Úwµ"}VÕöÐ¥:Ç „rR„PüUÚ­‡rñƒoåê*|èoåâÌ稴 „B€ÊIB„P®W€ÊIB„P®W€ @B('u@B¸^B('u@B¸^B(!¡œÔ!@àz¡œÔ!@àz¡„P „rR„PŽB¸^B('u@B¸^B('u@B('u®W€ Àõ B9©B(€ Àõ B9©B(B9©p½„PB(B9©B(€ Àõ B9©B(€ Àõ B¡?¸É\•ákó¢^ËÍÆdxxX¦rUÿ{´U¹6<$׿K²Sž—á¡kRÚá»ò,¶ª[ÖÏ-ÉMéŸGFv:,»³ž–áHLr[­—¿VÕ÷ã|Ÿœ:uJΞ=/׿–¥Åç B(ÀOùzE“؉#räÈ1ÉhÞçKÒwD^9;å [™!ãùS×–E[V? ¼½kÉÜÀQu ‡dËúÚ7Õ1`ƒÊIB×+«×Îá`xÉ 5­Ò¤Žé“å–»|fè˜ñüT©%ZnÔ°K„Ч®DÇŽ©c|"f3ëÇFÛ*ÓÎg³U’ôü’T_êêsU†™ܘZÕÌçZ%>a~§bËŸ=¡?Õë•Öê¤ NŒæœç–`zB††û¡aË RVÍzBæK«25< çÏŸ—¡ÑIY®ú»Š–—fexÀ}}µ‡®¤å¥9²Þ›’’æo¹ù)ÕØ|}`hTf—Êî>U—drr^ÊUÕuxÈÓ®®ÛÕdiöšµÎ½6ئ²µ*“£CÆúÎ ËÜrµm=ÕÜœÚ×óî¾j« Ës×ä”^ùTÇptrNÊ-+„ž•ååyk=›Ê8¡´U]–©ÉYY}Øê½ÝmÝd3rÍÚ!cýNåµU•Ùk“²T*Éüµas™á˜,•wÇwNVW—$fßÑksRµÿX±³$§ô?`ôÍú¶«YUtï<@å¤ðS»^i­š]oU5N TãÊÕy£"zbtÉš‘cz—Ê93T!ôHˆS’Ù²º›pž?zÔ~ý¨Lv©†e†ÃÞsÂZ§&×κÛ:vÔýy`Î ¢f7á°v•ÜNxu×yÔW^µ‚ÕÎê”ûüÑ£Î:Ï^sÃûRìlH»U5°´ºÍÑcÞ¶é]¢íîÑ!ÎÏÝ¢Zû1ºãîÝîön²çÝ6;æ®ÿì¤YÕ–ŒÏØ]ÆÝ×kÖgæ?¾GÝÏà耔<ÛõÿÜ’Ø)s]×Vw8¿€ ðÓ½^iÉTŸ€¦BÈ =Ü /ÁaHÇÌ1Švøš¯úCè‰aYÝ1+”óçÌe2[²³3_?6$ËVu®œ±ÞstHª]*³GŽ 8ïY2ƒÓ±áœZ§õþ¾I§:¨ÄcN›=í:å¶ËáU¸œU¹›råè)Ïòn÷ÒÉœõþU²ÆÓÎUÕãò¬{,¬voå&Í@§}øÏ-=á_wŒ® ·1kr"µ«Zªw{~hí›Ñ®=ÛÜž=ÖWÿ#]I-ËÐ1wýNSßW;t._3®jgÕ{|Õçj‡ÎÌèYg¬pX÷ÜÑSV¨˜er"B~ê×+e«:v­¤4G­cŽ=&ó* äFO˜»­'¾°7¼äV5í ª‡ %«¢ymÕß ÖœŒçDèXÒêüb½!fnjVr%µ-YÍåT—SµNÕ}µZ.In.fVl!ÔÛ.;‡‡P3xëûv~øšd–K¢íh²³cµÛ æz[ݪJIuU-W«²äO»lý|*¶¤f»-ËTUw`s䉓7Ç€Ú!TU2=Ë™Ç=,„îÑîí•V—e¹´eüñASû²ºœ‘á³G}!ô„çC>3s+ûø^[öV4­Šú©X`a2"B¸^ñîë€[ëóÿD@ÞêeØ-Z¼aou²ÏߘóK´Ç8†…PmÉ|ÿ)oˆÒæ­8iUäT¥nÉ3[«³xÄ3ör¯vµU­q¨g'Kîó[óî8S{ìå1ÿ8ÖÕI³s,§ºÏ„ì« •FW×Î"Ù¡sç)Bèží[ë½þ×Jrþh{%TŸ¡Wk[æ¬q»{=Þï‰ÝÝùØP&ÐÕY}T`¹o)B(!ô…s*Œª›¥~Pïkö½DíÒkõUÞ†'Õñœ’kâcCŽ­ «ëí°ª¦•¦Ì`{¬oX2jlèüä°;+¬œöB©ö}àÚ”ÌÏÍ:]V튠}Ô#'Ϋ âœLžwf6¶ÓrÛ}j@Į̈[µØÝ^­ mèÄDÇÌ히©‰˜4k¢¢+¡=´ÛÇšÝøÈÑSrMÝk4—™2+ßVwÜù-ïÄDze|TæÕ~ØŸÙYkÒ!o÷äóêö9sS£ÖŒºGÛfÞÉŬ?*ä8§€ ÀõŠÇVƬ€5ïêë¦Zš4‚ÞÑ@˜rº½zÂÞŽU•´Ã^«š‘óÛŽœží>>pkIŸ£¾1•ª›«±m5[ìp`LãYuË!£âxÊ3f1Ø®X×î¸Õ¥krâh CÞvj27|Ö?ŽòØY™]ö¬o+'C§ŽúÇ©žI©KpyÒ½eÊPæ;sÜí‰@µÆÖzChlùaíöO”‰÷ïé!uÏÐ>w2(oõã9§‹¶BO=áSË”Cª¯„PB¸^ùh[[²¥h­çóžÍzí¹vól™ëÔº¬WÍ>[U3ãnmu¾ÏéŽZ‡±ŒÖêm»;;]f´}Ní샾ü–r¿N«;î‰Ø²±^MUgƒë´C~Nÿ\Ô6«j]Üv„P®W€ý³ChȘÒnݰB(×+ÀS…ÐN9!Ô˜ñ¶ÓmgB(×+À>ì¨îÁ­=ºÿêËp¬@àz¡œÔ!@àz¡„P „rR„P!€ë „rR„P!€ë „B€ÊIB„P®W€ÊIB„P®WºXÿ_ÿW)ýÛÛ“\ŽïB(×+Ogó·¿•oÿÛÿVJÿõ-¥ŸýLJ?ÿ¹”ôÇÿÝ'ßýýßËwÿæßÈwÿý/ßýâ†j_Ÿl/,ô´îf³ih½†ÇM߯ný-µþ¿‡ „rR„Ð×Oá?üåÞÿü?Kåw¤òþŸR9sFªÿïÿ+ÕsçdãŸþI6~ýkÙ8^j¿ùÔúû¥ø¯þ•Ôº®S+-J,Ò/ýý¶AŸÉŠÖc›ŠÉé&¥ñ’³Úâ¸Ú§˜TZû}oC’Ñ~‰ÎÝŸ“Eãµ–V”T*'M}¹Ú¢qÜÒ‚(¡œÔ!ôu ¡o¿-÷U—ÜÊÉ“fý¿ÿo©œ=+O­]¸`Ø+„Ö²q+xŽHj1/ÅBN’ãQó¹‘Þ‚eq:"ýƒS/gmeDíËx¶þïoÈŒ 烉‚ñsú#2‘.›ûœTÇ(áìs>®G^Þ B¸^yêúÝ[oIùøqY?qBî« zÿÿø?¤rú´Yýÿþ?ÙP]píŠhñ?ÿÏ;‡ÐfIÆô°MH-ðZy!fѱ…²ÑÝ´^.‹¦º´ÖŠ9Y\ÌJ¡T „Ðii´R.•¤Þô®«)ã¹–¯ûj½\’r½á¯ÈVÔs5ë9µ®bÞÜV¾ènëIKSÛ¨øÂ^½R–J=¼»m9¥ª´ýãR „Ë’±îEÿº­¶U yc»åZEfTõ3b„PÕ>õ¸ÞhI«Q“ôDĨ®æ+šù¾ºY M–šü>‚ÊIB_³ªÆ|ÞûŸþ'YWÝr×õ+c¢¢ûÿûÿÚ=·øŸýgCh£0‚ÓL±òº&‰APÇT—Ó†ùs¿ßÈLÁByTÏGfŠn°Ì›•Ö_WÕ¦¤¢ú:&¤î„Ë’Dí÷Öóf8öK݃s}ù†(úëñ|û>´ÊÓ×é}­Q”ñÀ¾ ƬP«Ir¤}?£3f%tÊÚN1u_LXÝ–5£jÚ?’2»è„PNê€úÚ„Ð#GäÞÿø?ʽø);æVEU½ê”Ñ=·úÿü?FU´ø·Û1„š1"…fضZ’Ž©PÑC–9R¯ü´–ÈbnsB¨zÏâ¸.kö:ÆúC»©jy3§Êfå°ž‹cQ³uë=ª{p®f¾V±º ÇÒªZœ1ÛÜðw™µ«•>‚DÔûâÍÙ§ì¸ÞvLòšÕŽBÒX÷x¶fUËgÍêh-g¶1juÇÖ·3µb~3Oµ*‰öçB('u@}åChé¿ùoÌjè›oJYƈ–õªè?þ£YÕ'-ú¿þ/£‹îê¡CC¨ü"žª¢_nbÐ UvÐs+œÅU œ1Â¥BŸX!Qï–ªÂjÓ ã‹µ=ª”-Y±«ˆï†J³;/ì+„ÚmY¬µ|Ëêaza1- iYLÏmÔÛQh ‘jùA{ÝþZ4BèŒ/\Û¡¾Óñ¡œÔ!ô• ¡kÿÕeÞ–E¿%‹ºè½£GÍ0ªwÑýwÿάŠþoÿ›Q]ýOÿÓÎÝq­– ÇX—ø  Ûƒž7„yCè“'5'DVrze1Ú¡ÒúÄ }ªjZQÝoõ 8‘«;ãTcÖ@vLZÛßW5ºº¡P_»+n$±DedDM8´P’’>ËoÜB“‘ÞCh³4C!”“: „¾~!ôÛÿò¿4ïªîjÜT¯ŠþÿƒDËzý_þ#ˆ®þÍßt™˜Èœ9¶?:ãŽÍ´T'ÌqŸ©RhÐëB­[¶¨ð9¢Wc‹÷¥UI›Û‹]dK-OøÏz–5ƒí ªVšÁÒô4cù°j¯ßójUBcY_·ã|:%‹ÅºŠcRöñþî!Ô;þ³dL‚¤ö£Éï#¡œÔ!ôu ¡ÿú_ËÚßý¬© º¦ºæêUÑïþÍ¿‘ï~ñ )ëUQk¬èº+ºúÿǽݢ%“t¾$•rQcÖs +œzoU²w}RÏužôÈ 3Qkr ‰œ§BjNü3‘.H]«È‚1m¿$òuiÕÌ`™XJ­lÍRkO Ùfwà„3&ÔȪ‹p*¯Ö]“lbÄÚ,/˜ëWëö¼æ:h 5Ú8" ùJà˜$¸M ¡œÔ!ô5 ¡ÿÅ!k‡»Aôg?“ïô ª&,Òƒèwzýå/ ºúýG]C¨QõÌ¥d$0cìX|Aj-—רgÖ[£ëªBU ‹xB¨ÞÕ˜e6xk”lM俵‰¦Â刧=ƒ*–œÊeÎÉFPŽ74„Ú3üŽ/úºö.ÆG|û›É9ÍòbÜ·]3à.úûS•5«¦Þ0 B9©Bè+oó·¿•uÛ=\êUÎÕÿä?1ÕØO}&\ý–,Åõ¯Œ ªWL+j–Üí……žÖÝlh¢i i¶žµÖäBžÐÚ1Tʼn¶îÀFwÚFÃlOØkMý5MZ{¬ßž|©Ð#l_[MãµýÜj¥i¯ÍÖù]!”“: „¾fôpKjB¢^ìä^deN¯RÆ$2hVsZ—ÐVN«1£ƒÎ­W~¸6Yã:­@¼èóàÜ÷”*(¡œÔ!/V9=¡fœ‘d®Ö½rXYT!4*±DöCÙTE#Rný0ëoÕÔ¾D'˜„PNê€ „p½„PNê€ „p½„PB(B9©B(€ Àõ B9©B(€ Àõ B¡@夡 „p½„PNê€ „p½„PNê€ „PNê\¯!€ë „rR„P!€ë „rR„P „rRàz¡„P „rR„P!€ë „rR„P!€ë „B€ÊIB„P®W€ÊIB„P®W€ @B('u@B¸^B('u@B¸^B(!¡œÔ!@àz¡œÔ!@àz¡|@B('u®W€ Àõ B9©B(€ ÀõJW—/_æ_þå_þÝ׿„P®W€J('u@B¸^B(!¡œÔ!@àz¡œÔ!@àz¡„P „rRàz¡\¯!”“: „¡\¯!”“: „!”“:ÀOøzeKfc£2<:)¥ÞÞSÎLÊÐè”T[O·Íõ´ Gb’Ûjñ¡œÔ!ô§´¿;¹˜9rÄp~¶ÜÓ{–†©åIF{ºm>\ŠÛHoñ¡œÔ!ô§´¿sç9!ôȱQÙêá=¹Ñjù²ô”!´µU’ôü’Twø¾„PNê€úÓÙß%9¥ÂçÑó“2;|¢×VwÚ–ÛZÍÈèЀœ?? ׿–dnø”B[U™½6)¹rY–¦FeàüyŠÉRUuµm•erXßy£ûnÙ ­ê²LMÎÊêC½;nK–ç&e*³*ååYRËêÛ‰MeDãûB9©Bèë£<{Þì†;§ºÅ–®?=?ç[¦šv*¥Gq«¦GN™!T[’cG¼Ï»ŽŸ;aVZ.™ëŒÝq5=þþ#çg¥Åw „rR„Ð×Á–Œž°Â¤Q¡¬Ê2=Ýl[«ÒwÄ|njU3ƒkfÔ ‰ÖrV5Õ]¦%óC'¬î½²¬™ë=e.£#}˜3×1¼d†ÐØ 3tžedGß®–“óG½m@夡¯´ViÊ Š}SfðÓÇzÆNÏõM®šËmÍUÎcCÏ{[2ÕwÔBOèË /9Ëì,›“ e܉‡–cnÞðz^JžöÙË?íäG¡„P@}‰d¬1 ¡ŽIU-£Y3çÍW}ïÍy¥BOxB¨æ„LÍ}g2£Ðª&EòŽ}ÖÉB ¡€ú²ðt³•ÑáaVFÕÏ}ÖøÌÑœ&;«“ÆÏ§bËþê ˆ!•PÍ2 ¡¡?é땭̽ÕËàkz7Ý–0œöܺ¥,GBB¸^éÅŽLž5«“¥.UÒc2¿¥O2dÞGôèÙa™ÏÌÉЩ#ÎÄD™çBG ¡!”“: „¾¦ìÙly«›~KÖxѾ)}‚¢ªLœòŒ=!§Œ.»g%·ã®ïÄhÎBcN—Þ°q¤v-?4BèµSæí[´¶q§§¡!”“: „þµv4ÙÚڭű@àz¡œÔ!@àz¡„P „rR„P!€ë „rR„P!€ë „B€ÊIB„P®W€ÊIB„P®W€ @B('u@å8!€ë „rR„P!€ë „rð!¡œÔ¸^B(×+@夡À««%ÍfSZ B¡¯œÝ†3/?ؔݶ×Ë•sËòƯîKòꊼñvYü@íhiEI¥rÒT?7K)éï‘Bãù­__ç`¿Dã¹Àk I Jÿ ¢^· FF$¾Pp‚^éË1õ|LŠÍöu—bêµ1ÿk­Š$FÌu¦Jç·åE‰ÚmŒçŸq} É¥¤Ü4NFûe$Y ]¶˜‘þÈ´4ø!„rRàzåYM ‚æÏWe~'ðÚÖ–øy^ŽŒoËÏKò7¿ÞøÁBh1¡¶„rÅõs乆Ðì„2GA²!3Ñ~c{‰dJ’ɤ’XÔ z㋳}ÓQõ8*ù6g‚¯U$1ßÏVžïq2¶5&é|^ŠíÙm1¡Ö5(+„Ψ6& ¡Ë–ÓýCšJå¤ÀõJ ,”ËróæMÉç{¯’5V**„æåäÜ#ßówÆ‹êù»2½õDv6e¥¼ëëšMoÉõ™šÜ¸ýÈ©œ–·e]ûÞzü½¬­lK¡úØy߯š ´å–¿ Ú¨Iz"bTó*X™!4*…º&¥\V³9)×›ÊiErÙEY\l­M³`TÇqãßXºâ ¡z°?š4ª°îó5‰ªçGRÆóv]éBÍ0çÐD®ÖVy,åsªÍ‹’/ÖœãX/—Ô>ø«¥ZE=Wó?×Ôj²×Ó¸kšS¥­• ’UëÌæŠ¢µžxÖ[–ºV—‚:†¹b%°M)¦Çš*”¥Ñ2Ch$‘—Z¹ Ú˜•|©æl£Õ¨K¥æ†ÞF­$ùlVm3/­ÛñoJEoŸµ¬ûYYík4¤RÈÛó†êf½"õùk•¢±o9ÕÆ&ç8B(!ôå²°° ’H$Œô»ßýN¾ÿþûÞÛ”>Õ%÷w*žJWSÎèÏÛ0ºéΨ~þùw²¡¿¦=4ºðêÁÕvà\Uêªkïýçëæ:4³’ê®wGÞR^y¨‚FÝ®°ƒ ©!´¿M²h†”z¾ýõnÇÚ¢¶rZCÒ#æ6´`C¨&‰ˆN=…PUaU!ѬªJ2_÷/×(Êø ¿Íƒ±µî¦¤Œ÷LHÝéÊ[2ÂrdÆß5¶ˆxÞQ•׆,ÄÇbDrµ–±_ ßö¢¾ p3pŒgŠ›æq×hÂücÆJ\7Ž[ٯϦR•mÕ$ û!í3ÅJ!ûjIz>7B¡?ªR©d\¨7fõLŸÑh´çcRøô[§ê©?Þµª£}·Ìªeæò]yãßêcB¿—øûz÷ݢܰ–ݸußXö¸ª¤N¨^{Ó «éï¬ú­d=댕ۃqa&â„Æ"V÷O­ cöÈVÙüyÜîÚ’\"ÒÍÖ “z…¯dÁ¨êiù¸„JMU]\ E) RÈge&fã±…²¯;nxñ‡¥H ”vÕx|ÐØF^³*…¤ÙÝ7[Sm2ÿh*›mªçâFÍÖŸt=Nf¸î—‰´ÜZõ¼qlÌê­½_1)ÔT³\o¯€f˜Õ<Ý’ÕòZËø#DzÜ ìf×·« ÕÌð8¾è«GBºñ6 qOè|b|vãÎXV÷¸4ó‹F5ܬ(ÛÇ4‘­ùþð[¬p®#„B_©”9žÑûÜêêª\½zµ·u¨n›õñŸŸšá†&¾&kÖënmÉ…·Í`yefC®|º!×?_7Þ{PU@ë·î©×–冦¯ã®ñ³<¯¬}¯º÷®ÕÔõбŽzÈ™ñŒ uC™P’3è4KI«Š8£ºp¦e!½(©¸XBªq­JÚ ´ñE©T*R.˜ :!ªZ4ÏLÖ© ÷B#ǬíåüãN#f \ÐÛ¼–ÅôŒDŒåÌ`³VÇwaÄíÜí8?[ÕI§;vjÌ r »{m±s7lߨÛöå+é˜îÝÚ”…1óøDÆÆ%•εu%öm£^S]ÄU×]Õ%853aìsÔ¬æö¢©’ç;˜3>ýs,Za»á9†zø}öɘ@àzå¹ÐÇÆb1ßs333211Ñã:¾—ëçT¸|{]UñÌn³‡®ºÝfjͦ«˃oßµ¬ÈáwVåä§Ûj¶Ým9lŒ/­ÝyõûÞÖ'7Ú” ¿R﹤u˜p'Bí1–Þ€TPÕ5»é D"Eý‘‘‘1Y™…¶àíêÛïïžšoxBè`\*MuëÞôjr³h_!4eUüÇ­1¡u·hu=5Û¬‹ª6È„¯ûé„™7‚ÚD®¾çq*%£mcYí`™o¸Çl!´è²1Ž“Bõ×ê’NŒí´çÈL{8lÕrfeÖ±ºøœP™(z>³fÑè†7BhÔûZ÷v›Þc@àzåjµZréÒ%™šš’õõuc|¨~Á¿³³Óó:ê·×.¹®–Œ f¼ú¤=„Ú•Ðs›¾{ãóŠ\¿Ý4~Ž[¶ºáªî½ª":iÅ;úÑòã®áªù$lv\7 µÊæ~Å žðÒ(É‚ºÕH±Þ ŒI4+Œý1Õu·eÞ[³©‚¦V4«©c©²gLèL×™_{Ÿ˜ÈÓ³ƒ®æ©„Ʋ¾.ºùtJ‹u_ÅvdÌœý¶Ôz²g5ƒkLÊž×óñA#ÌÖžôBÕXÑVxõ~Þî¸ÙTR²óX7´²$ÛÆÙzǰFÕ² _53â©„zg㵫ÜzÜ<¦žq²jÂ'½+/!” @}‰<~üX>ÿüs¹|ù²üþ÷¿—-u‹•ý­ã‘œ´':]õ…27„ªŸ¯®šc@Çë²¾õHâ—V1¡ú²ës%soš]oëé{V]“B§1©Ö¸Î…|¥kÕ«pƬµjÙ´šñµ^+ÈD¤?ô–.öøÏ™b°Bj­cÐ kVÕz¡½Ý¢Epf êšë5MåÕŒµ5É&Fœ1¡ÎØU«[ðàD®s;s¹ ºê–­û„¶äú‡«¾Ùqߺ²å†5¾ô5FÔÿ¸s(®eãθÊÛÆ¤=Q_Õ‹]kÕUðŒú»Ö¦ íÝWÓ±~£Kg%d{æxG}ÒœMI¸³àv Fˆ Ÿü¨d½ Á+Hãêö*#1§9_WZ{¢!wÒ¤×Sµ-gÆ8Jg6Ûñ”U=´Æ\λŒÎ;ÝeãùjÛòfµÇ„êÛ5»ã6Ji ÌÈ»Xnï ݪ«î¸ÞpG&$>6hLܤ…ÅU“"™3û†Lö¤·q±Ìï(!€úS¶»Ó’­]uk–gû UýÓÔmWZ¯R·éfCµYÝ µÕ©<˜Y·­¦¹Îfë)ÚÔ2º(?ÍûŒãßhô´\£ ÖVuÛ½Mãsl«øFÌ? èïo¶ø}#„Bç¢YV•ň9™Q,ýS¹‰ ¡z•´Ãl·…„~<Ü”ÊIBçB+‹*„F%–ÈvíüziJVݲ%™«…wÏÎ%eBÝ"§É÷ƒ ð²ãb^“ „@B „¡B(ÏÉÎC9òó¼¼áqàÍ»räýuÉT¿w–Ë\]‘7Þ.˃gØVöꪼñ«ûRy­‘¯¨m¯ÈüÃý¯·–OK¶Ü0~.%G¤?š ½çf³””þþ¨¬4øÜB(~¤ªÉ!<}pO>¿/¯®Ë™÷‹V ]‘[ærw>/Éßüzã™BhæÊ]yãÍ{¡!ôÁí²ÚÞÝý‡ÐfAûû%^0Chq&"ýƒ‰ðZY”‘è¤Ôäs¡xfårYnÞ¼)ù|~_!ô  œn?ö=__®Ê=ˆ¾_“]õx÷aSVÊ»îëåm¹1·)ñùº¶¼ï},…eMâÖkwªý!ôíu)¨÷Ægj2}«á„Űº¾¢ËÅçÊÆnxûµâ‚BÇ RךfÌHM«HnqQ²¹¢h-{ù¦Ô*5i:¶.Å|N²ÙœËõ®Ç©Q+I>›UËf¥PªIË~­¥©ã^“F£f¾ž+HÍ©´¶Ôq*K½ÑJ!'‹‹Y)V4¾« „àÕ·°° ’H$T—Ó~ùÝï~'ßÿ}Ï!´ïÖnÛkñ÷—Uåò;YW?ϨWF¿“ £*ºæë¾«»¨¿÷‘ôý*ßþÚí–BWÛ^{ãûÆ:ý!ô±Ä?\ ,[”Õ`û’ì7öWITq;ãRÓƒäÊ”ñ8¯‡D-/ÑÀr‘x.ô“cmë´—míÛëH¶ÖjkŸ-¶Pâ; B(^]¥RÉ7†Ù%UŸÑhTæççŸ)„fô1œz—\Mý|YU1ÿ­>&tWúÞ4+¤æräŒz|ð’&õ[ßùBç“݆×ǘ~X÷…Ð óŒÇkó÷ŒÇ'çùBèFÚ|þÌÜŽÕÆm9®oóô†Q•õµ³‘—ˆÚ÷DA³ºãš!4‘«˜ãE³qãñLQU]‹ÓF@ÔÇ„g¢ÆÏy«jYÐÇ’öµwÕmõGnu971htùÕôZœ1CéxÚ¬°6ŠÓÃæHJ=nH2Úo¬· ™•ØÅ‰ˆ1.µ@—`BðªJ¥R’L&}Ï­®®ÊÕ«WŸ-„¡ñn „>–+§ÍêäÁÓkòÑç[ªËmËí¦[}$wVTWÝùMùèJÉX÷¡KZ‡1¡f ÕCª7„Î_Ò« ËræÓ ‰}Z•ØÌ†B­ªlpLhÔBõ1¡3î˜PõºR½!´ž3ÃidDâÉ´ê"ìébÐjhR©T¤XÈËâBRÆôêfÄ܆B%[÷üQÀ¸ªúÚ™H¿DSžÊ§–3ºÛí¡xåèã@c±˜ï¹™™™˜˜x¦:ýêŽûó’¬=ñ†P³¢»´f¼Ïî.{øJ]vË[¾™v¾cV>ݺb¬Ï ’-¹ø¶ ¡êuoµ+¦ß¾kR³õz§(‡ßY“ŒÖB#OB1´Y(#ž®²Ñ„Ñm7Øåwa<â.‰!ÒB£RôT6+é˜ñ\¾avÇM¾ÊjÔ˜H‰ B(^Q­VK.]º$SSS²¾¾nŒÕÓÎÎNÏ!481ÑîÚ†11Ñ6ÍééŽW³èÆ×Ìñ¦õ­†\|'oT8?¿t×è¾_k9!³Ïêª^ mÈ[?7_÷UB°º*YO{ÖomÈG3Û»ãZ!s¦ØÜ_%´–™…¢yüššäS1³o¡á[¿ÝÝv,Yp*¥öäG Ïë åVHw]³:¨ÆªÚ¯™·‰é—T¹Éw„Ðnꙋrà7ä Ê‘“Iá™ï³T—‹‡ÞÃ3{.›½xXÞ8t1dZïrñoÞ¿±Ö±v#&ñ;î gÁǯ›ÇËçŸ.—/_–ßÿþ÷²µµÕÛ{­[´þ°"×?WÝ_?¯Ê…¿unÑ2mݢŠ¡M9£¿öæšL¯4e£üPÎüÊ ¡I#<®Hl¹©ÂéŽ\ùà®U õ =ôaMÖõ×ß7_¿²òØBwתæýJO¯«ûîÊô}s¦Þwª!cBÍHJ±Öì9„–’Qs¬h¶$Z£.¹sò¡ÅZË·þf9e…м4TX-e퉈Ìñ£víŒK¡Vw^7ÇÚcBe&§fÉ­äÌñ¢j¢¤:ßYB÷ ¡Œày¼ï¢|tñ¢\TÎ?lÒßñ—¨.ªPÛ·÷ÀùÌ…ƒòÆ ¡!ôê¿;,'¯ÞQ'¢y#0Ÿ™·Bgð1|!ôppÆZ5óð¹{2_öÜ^årAÝ^ÅìŽ[_Þ¼gU®¯´d·ªºã¾éù¶$gN«.½oß3fÀ5':Ê›ÒÒ7gVùûêqÁ¹EKa~Ý×Ý÷À;ßIV Û‡†¤cVwÙ±´9áPÄB£ÖÄDf2jvÇmUdf,⛵vܪŒúiþî¸êýcF°\PÕLgb¢È ;sîø‚1i‘B½3õÆ$º!´c=$™Àý™nœQ¡ðƒr£¾+ëwîÈÚ†;–`wcM²wÖ¿V5Ö RXW3’­g%~ýºÄod<÷z2CèA'„6¤ ßc©°Þ1„nX7Öî¨{5Ý1Öµ±¶"ëve#sÅǯÌËúF£í±½Íìi¹®Úr#³æncwCîÜYS3Ë­Ë|üº\OËõF—c£·u^âñ¸Ä§ox–5Çz]Ý7k^ßN\2…¶íÔëkrÃxLÕùr€WÉ÷ªÚ©®½´Vèóuíq—÷>– µLcw¯m˜Ëmt]—Õ%¹ÙTÝ’Ÿ¢+³·©iš4÷xoSMN¤i¶É‹¼cBõ Œ´FËw­¨wÇÌq´úûùÞ€º¯zPæ]oçûìZ—>½*zæ†çµêµ3F`4—ówç}ãàkPºB3Fx‹?`¼~òúŽ!TÿËÖZüŒ¹ž#WTeôµý¸ôp·q°o:ðXÝzFŽt-~ëŠQ]­Ï÷µ·S¹r'䄱»&}‡Ú—½˜©ûÔw ýµ·®dÍ㺃jüÄ._r€WˆyŸÐAçV/Á‚ÅŒ>“n<ϱ!ôi»ã^ŒÏ÷›šŸ¿!±‹ÇÍq¢ûT˜ V3ý]g3Ì®»}Óæ ì‚ /XMï¡ q¹~Æ «n¬wîŽ{è‚dn˜í9xòºÕÕâ\ø—oÈ¿4Bæ 9¨okÞª<ú«ôFÈ="76¬jêüE³«q|ÍÙO}½F—ßõrø ÿ~9ÇdþŒ'tê¡ôŽ×­ÄÍq®úvæ7ÌÐõ“j²äí™íWÁø-£kóGn×¼ôZõ¼š¨iFÊ¡÷ýlJvfB’¹Ç „Ч ¡AŸ‘ŒÑw¯ªÿÜçŽåldä íÀf:t1ÛeLèawû‡¼cC=!T=ä ¡¾Çf;ßxã-¹r=&W®Ääzì‚Rªðhïç•®ó׫‹]Æ«Ö××T·Ú¬Ü˜ŽËGNë9d,kë<û²1m„v½ævH|Ý]WöÂ!õÜIc t¾è¡FwѺ4T×Ûº®áí:ÚKõ„F zƒ¡BXó¸ÜÙíBí™z/ØA3BB¨óX¯VZÝd’ë™õýìBÍq®‡Ô†ëβz›z*¡Þ j#kvûýH/u*®wÜ ?}ò€±o|ÉB{ ¡oxK¦ï$·ºïì=„ÚmÞªvºUÎ'¡ÕÕÝ;W<Õ ¡ÿ1&Ô\÷¡“%³Öh{œ¹h®ÿøG7Ôl¹kï;Ú[5± ¡±¬ ¯¹rò U õŽ = ¦Õ,¹…isÌçs2&§{óÁã2¿¦îï³&NºÁ—ü`ÔðJà÷•êvSíÒUt#ó‘öì™^?ä ¡îÏÞqšþ‰‰ì*êšœ9hvË-„?ÏzìÀúQö¾BÿÆXG]boY³ñ‰…>¾~æ°ÖÚ ÓÆ„@fµò/„êa2´;îºêŽë÷ðI9sä€1QÓF`œ«AèÖì·ÎÄD¸Ýy_¡ ¡!”º?꾜jÌãîß–]uϧÝÝnëÏ¡­êXú:ê.Ý“õcR õú˜ÐÝú†lÔ¹5 „„PB(žš ¡ü÷Mõ…Pã>¡˜„BB(!ϧ"W·l¹8½^¥U÷=sü‚Üip¬ÀBçwÊ‘ŸçåP«2¯…­«%•—CWš?ÿc^þæªf^çl=”Æ·:Üû¼!¹Ô‚uO͆$£ý2’,þè×m/¦MíÛ‰>ãvZZQR©œ4ÕÏÍRRúû£²òœ¯/›åE‰ö÷«u÷ËÀ'êߑ美ßMBð:†PM©Àyèƒ{*<Þ—‹W]®nÈÚnx½ðv^\ÒŒŸ¯þzEN~nOÊ\ZVáõžç~îž@SL¨3(+ˆÍDúe0QøQÉ‹jSp;é?ŒÈDºüLë,&Õ:FàoVe$ú)5Ÿo»‹3Qµ1Içó’¿õ¹ú9B%„¦r¹,7oÞ”¼ û ¡U½pûñëÿ^ ·Ô3›r§¼#T%ôà%³ú¹¡¯?ü^vµGûà® ¡ßʵàœM)¦Ç –*”¥Ñ2_$‘—Z¹ ‹‹YÉ—jÒ TKùœzmQòÅZ÷ö5ëRTËf³YÉå‹¢µÜÀ\WÇ¥¦µ<Äš”Êuµ­çئ–¦ŽMšª…ì¢,fsR®7;ìûÑj©7¼mªH^µÝxŸÖô·J©`ìW6—wÖÙjÔ$=QëŒI¾¢ËÕ*5£*j¿·¦¿Oµ3›k?ZS-_ÌûX(…Û¦:N‹q}ãR¬i¢§ÛBhØ6µ²”*îœ(ÍzÅ:ÞOœ¶—ÊþãJ%„à³°° ’H$Œ®“¿ûÝïäûï¿ï9„öÝnuYÿ®\|§½»î¡+f%´Oüa]UAWÜ×ß¼ç›ù¿Yœ1Úe›)n]R½Ïé¢ +@7Š2>èm0¶ÚÍ·YNË`p]ãRn™¡1¡?Ž»Á¼`Tã*„=¿65 ‰¶÷éÊÍÐ}Ÿò´©–kïL^…¸VM!íIª uŸLHueÊø9ß0÷y!6x߈äj-óx ¶¯sd¦½ú[HD<ËD$›÷†ÐÎÛÈM˜Ç¿f…èTÔ|Þ ¯æëqÑ¡„P¼šJ¥’ ³K¬>£Ñ¨ÌÏÏ÷Ü÷7—å€ên{ºbt«]›Y3‚噹GÆ{Öæï™!ÔꎫwÍý—ÑÆkóWî¶P›ÔTѬ®¯z8ŒIÁ¨R6%=nª†Zgv|Ðè𷯤j…¤±ãÙZ[×à…3ôT¬Jœ–7C_¢ÐpºØF<]l‹3*\ ÎxÂã³·©aÍÈÄ¢”ëyéw·Üδަ©4KÆrýcI« ³ ž‘~£}›…¸:ÍjkYÆõàk…ׂ± #Ì5êa²ßYO[}Šm<,šÇ%]ÓÛ\4÷ÏùÇÃB ¡x…¤R)I&“¾çVWWåêÕ«½ =÷\¸rOú.Ù¾“¾O5ÙÕƒå¥`°TÁóM»;®?„fŒº:&Ô j)4žx¡F*é˜QM+6Í×ô ´°˜VUÞ´,¦g$¢‡ºxHWãVS굚”U×ÐÜâ‚$ÆG¬Ð£íBŸS›ìºPi9Ýh“žñ¥Áí8!´¶hTqgŠ _7ØŠu ÀF]íW¹$ù\VR3Æö¢Ö:ýûáDãù@¥±œ3&.*4Ú÷Ñ÷i­§}LèSlãaÙ¤ciÕå¶lÒÁ~k›õÅÀq"„BðÊÑÇÆb1ßs333211ñ\Æ„f¯®ªÊçw¾zñíçB .»ªZ¨BŒÝí5‰X¢22¢&óY(µ­·²÷t ”‘±g ¡ûo“¹ž¨5ñPûº:…P³B:(‹µöîЭZά.Z"##V÷àî!´”T¡2šôµ·Ÿot?½†ÐîÛhÉ¢^]U]•súrc ’O©¶Gg$· Õ ««.!” €WR«Õ’K—.ÉÔÔ”¬¯¯ãCõ°²³³ó\B¨Q U“ ÝñL–sæçÝCh£cJ±øÜ fUcY_·Û|:%‹Åz`½5™°º³ÖìXYh¡3EÿXG_}ö6ùCf§ênÇ©„Ö³F•p"§¹“ý,ª[¡ NÈŸ?ïÉVÎ:õñœ‘@m¢9–3&eÏqÊÇ­ð÷|Bh÷m¨®Ê9÷FE´’jcK%„àÕõøñcùüóÏåòåËòûßÿ^¶¶¶z»Ð·ºãþ°"×?ߘǕO7$Sý^+Uc èÁ÷«RØz$ñK«mcBÿ{L¨19Ѫ\IïtªW*+•†Öv;·’¦ÂOÒ¬ú§òRWÝS³‰‘cB­:2£f•m¨™_s³*–3ž1¡ú8Ï\¹"Ŭ5IPdÆ7¡Ð³¶iÏØŽBõú¤nM4&Y5ƒl½´hMËŠq{”¨¤K*äªÙs&"¾W0&'‘…|Å›¥”5iRJMŠ‹ÖÄG±E5#mûmhž&„v߆>‰SÁ¹¿èBå‰1öÕ®ê&K B(!?Bè៷Ï|kë»eÞjåÎÌwžç—­Ùq:!ôo.›•¼µ9{¹»rC ´AË;A$ž¯a(ê©PšANi†¸ÅøˆoöÕØLÎ×ýÓ‹è뎫*oª²€ìukÅ”1–Òžåu|<ê„ÐçÕ¦f)i¹tC¨>Sq lG¡Ñé¢5©OAÆ#žYf£RÔôçUw\ïL¶#SÕÆˆ9QP-wöévÁܾ}û”r6á›18:ž²ºH7Úö±¤‡ëŽ!Ô=Vö>î½ ³Z¾0fM|ÜzB%„à'B÷c÷±ll톆•ÞµÔ½4[½w5ViªÒÖhí±¬šœH_®Ùq¹f—õü@mÚçvjZ£ÙöýùFÛó=°ŽIcûöcmƒJ!à» B(¸ÐßMBÀ…>Àw“ t¾Ð^Vü¾B@¡„P€ B(¡ „„PB(„P!¯½‡räçyyÃãÀ›wåÈûë’©~ßÓ:ùŠzߊÌ?Ü{ÙÝ­‡òÑø–48ö!?ŪÉ!<}pO…Ãûrñ꺜y¿hÒ¹±µ÷:Ü.«eïöB3—–Õ²÷¤Î±¡xµ•Ëe¹yó¦äóù}…Ѓ*p^¸ýØ÷|}¹*ô ú~Mvç[’MoÉõ™šÜ¸ý¨k]_Ñ$®–‹Ï?”]« ª=’ØwÕ²ßʵݮˆkJ¥Tl6+Ù\^Êõ¦óZ³^‘J]­R”ìâ¢ä eiÚïkiêØÔ¤Ñ¨IÞxoAj ¾/!OmaaA$‘HH¿üîw¿“ï¿ÿ¾çÚwk·íµøûªjùæw²®?ÖÊñ7ÝvÏUЦ?„>–ø‡+¾åÞøyQnTõ*¨çù7ïÉF—eÛÚÙªI"Úoì›W²Ø0^/$"m¯õ$EÓ» í¯õG$[kñݡدR©d«Fà dzøŒF£2??ÿL!4suÕì’«}oR= ZÝs7nÝ7Bãñ¹G¾º‘¾g<fnÇZÿ¶^OoÕù+w­º÷²¾q§…¸/t>i•e\=Œ›Ußâ̈ñz"[3+¹ùãql±"¢ùsdÚã½Þe·_ŸÏ+û…ùûûÖ—?Â~vû<¶ù]ðZÑÇÆb1ßs333211ñL!tú½úY’µÝ†Ó÷àÛw-+røU9ùé¶/„šÁÕ³œši÷Ð;Eµìšd4ÝkYo[ZµœŒyºÓFFÌʧBõP9î™ð¨!ɈZN½n†Ð¨›îú*é˜ñ\ž±¡À«B©@xʼ°Ô~Šp8ÿGó½ÿø|—Åëm·,rè”ñÇ'õW¡mÛÖsÊüƒ½CèAkÙ^ŸÏ,üý}AûÙéóx1è­Õ’K—.ÉÔÔ”¬¯¯ãCõ€¶³³Ós NL´»¶aLLtà½à`UBÏy‹ßËÏ+rývÓ_ ½¢W7W%ëY×ú­ ùhæ¡ÑÅÖ¡'{/ëm9æ3*ÙJÃWéŒøBè„'„VŒîºní—…²;471hTN5¾?À+B7Òn}üȓµÖ3^˜>§eñz«ß±¾s¿~ùBhhÛöBUÕÔÊ“µG¯q}Aûúy¼¦Ç,?–Ï?ÿ\._¾,¿ÿýïekk«·÷Z·h9ü¡ ”Ÿ«n±ŸWå‡ß:·h™ÞòŽUc@Çë²¾õHâ—VCÇ„î®UÍI‹N¯K¶¼+wÒ÷ÍYvß©šcB/™ÁóJzgÏe½í4CfTÒ¥º4´Š,LD¬J¨Lh4¾(5Ïë å¦Bû#ãR¨Õ¥”5'*Š$ò|w€W"„~tѪ€+gÍŸû¾Ùã}*¤n¨¿œ­[âÙϺËý,û¬ÕÕ%o}Óô¼»bÔ¸ûÐóòª{tÜèq¹°cé}¾×ý¶ÛUôtíÝï1®ov^oã)Cè¾?çGÖòzÿ^4ö¡™Gžãþ`Ÿß·–û¹×=Ã÷qÓ\Ïî>ö?ë®·žýH»¬ïìf÷vz— ;&Oó]yžßUx•¨zøçùÀ µËrøÜ=™/?öýÿèú‡«¾åÞº²eT4y}’¢‚s‹–¼9^Ô™E÷ï$ku¯]›ûÎz^kÚ}Y_µ·®ºãzg¾ø˜ªfFÌj¦B½â‹es,©=1QdÐíÎ;¾@x5BhEä€uQ}¥$OâÃÖ…ÞÅÎŒ±qåô@¿5.Ký|èO¿lظ3½õnŽG¬°|½l]lnŠœ¹¨è*'ÿäߌ€ü©½Kò[Ö:3ÛîvëmVëíö¬÷·Ý/hç՘׃gýí8¨Ö‘ ŒµÍ|év%ôŸùJ`_­6\ÿ¬½b=­–]ÿÆý mª[Œ{,­÷õ©vì÷/wD}»*h\ü­ÿùCª²´Ñ~ÜŸ\n?Æg¾ |vÖö.Ϋm^l߿̃Àgìí þÙ¡¢ÇÏÙ9nj¿n|²ü—½{lk›'„žoÿüNþ)ä{zÖ3^Që+£íë6¾z ¯W®¶Þƶ¿ð•4¶­Ž÷•?–U¿±»áŸÙõïñ_¾#ãê»ÐêÞ·m?õϪþYõ}éÿ¬ÖU¸¶*Y™ÏB¾ÝBè>>ç^ŽÛ…;]ºœvj[ë=s«ówêú°¿ý‡Ïùþ¨`üvû}½Ðïÿ#DpÛ'ouÞÿÃýÇÏùŽ…}fzÛ~íÿÃËn—Úö»óÀ¿}ýûâý¬Ž|èbkξ+Öy©—ÏÃÙöSœöú®ò?*øQz•3|Œ§yŸÐA&!^Ézül p´ÜŠ`0$zƒá‘ÏÜ ¹ž DûÂt?Ëvrò\x0±»Ûí»è¹0­ºËÅ=Uؾ;ÏBU[¦Õº3*ÇKÚ\òìÛ¨[=Ú¸ë^ØŸ÷_xºê.W/y‚ž}ñhƒ]M-Ìû/œãVP߸ãn+¸ÏÆöíJªüžñ„ŒÃ´¶§ÚòÑoÛ/ÀãžÐì­¢y?ÏVÛ·÷ÖgnÕø†çyû;ôøuHå5`?Ÿsð¸Ý(»Õ9»ËùÁñ=ºf†µÍ»Þ³þõ ®7øÚv?ß‹ž¼îùÃÏÅ»½ýa¦ï–§ê§ßÉ_wÞ¶oÆënOU%u>_ïgvÄóû–ù¢=´÷Bc¿ ÿ¾\ö;w>Ó~ÿ˜Î¬§z}ãAoŸ‡½í§9ôò]¼pµ\R&f²¡÷ýlÕóŸ‘r“ã¼Z!´q§ýB/Xºó(¤ZÒß^°/üì Óý,Ûk•Öx~Ó Y±²øfÇ<óMçÊÑÑg ¡ÝÂ;õŒqxmzÜ|^ïê›àåýLŒJ´§ ­ú»ÛÏŸL‡ïsÛ…öoû"úޝjîvÂ'ouSÜöÙ»t?j?Æ=óÛççÜñ¸yÚwèÏ6&´ÓzªpH=ä èå» @}¼]?RA&®WùÔ¿±Ñî}žjXØÅ»Àì×ö³lGžÀi_ðßùÂ!ÚXm¿ ö*ü)Ðô)Ch¦‡‰Jz½õÌ•ßvÄÉ©D!²Sº„¡N!4XQîNÛ.öU5=½åì’Ûi{=‹°@¸ÏϹÛg×ëÄ:{NLXïÆ7Û`ïïG1¹zWÑ“ª™Ê>&eR뺡~W?RîÌp [t0žu»€‡}±²ÿ˜¼õe版ìn¬{†Pïã'ø)¨ïðuõ^P¬y+pŒöBŸö|ÐËw€ú¬tï䩌ôýºsx´» Ú¯ígÙnì*Û+àœ±º¾5ïV‡t¹­L°ª÷´!´— Ñ^õÝÝõðŸºw; †P_º„¡N!4¸Ï.ÀƒûÞn ]Ýÿ1î5„î÷sîöÙ=¯\o·ðîýNõ]ìpüÔïLa™rc£=޳ÞîrÿUýj¡}Lª‡kónżÞc%ÔþCÊ^¿7zhÜë<´Ÿúƒž¡Ï¦àsu\ͶyÆKU#Nz.”íjI·ê¦=YP/•Ðà²Ýlx&!º³êVF Ó»OYùøBh×J¨ YUíYÛtCæ¡}VB;…Ð`ÛöBƒÏ·]ì{þ`ñ‘Zçšú><Ö*–Íýwyî¹z÷é+¡/UµÃÚ‡yõÝîõO„Ó­MÎ>Zý\P½¦¿1»ðÎw†çB&;ò´Ëž|Ì>&Á®ÝÞ×:vißg%tC}g²%ã6,Æ ÆÎ˜Lu?.eÔkͧëŽû´çB( „¾v¥²ãL¯ž‹°n–a!öÛã{X¶+Ï…êÁs!mö´³ïN—Él†÷ åö€»ß QgŸC.üí W–S]Ž÷"Úóú£‡PÏ8»°2ýGó³±o{òT!´û8îós~®!ÔÛ¶g ¡jò¢·~m¾ü~ØötkS¬Ëí“ìÙ–ª¶gÛÁñ–ÞqÇmcBÛyeÏcB»!ÞvÏ>XŸ©×à¹u”]éïéóx^çB( „>_»¥ÙD÷3ªO"â Húlªö…ð/»Ï޻ײ{™¾¸Ïà–žYbuÞ™[íÛfxo¡bϪÏ.zü\Èl˜û½-{öyܽPÖg½=ä™×wl<ËygXÕƒìÆ“—$„zƱïAZH{*YOB™‚ÏîÚ¥›r/Ÿóó¡¡m{ÆêÌ’ü¥¿JÞ׿÷Œ½Ní÷Oh•ùSÈ=l½ãxíÞCS¿¦ó»è~÷¼³Äzï¡:ßeöãn³ãzÏÞÏêúU÷˜®|~»½ÞßG{»½~ûùžB!ôñ†ºB«‡Jg füjà^‚ç:ßûs?Ëv Í«þ{#Ûì ÕÆzûý“µ8æ!ãžë<íi.D}YµáH`’{¶aß=TC–s&zIB¨ ¼÷Z<øë¶{\:cðöU ½Û~ÖÝþx²×çü\*¡am{Æî¸W.>÷ÀøÐ+«Û³ö¥ÿ½Ç“ùf\»Ohà;æ½pð~™ú„I‡<Ÿï«]Ž_Ø1 |_ôÏÊwŸÐ?ùǦ˨cñVÈxY{œj¯ŸÇ~¾'„P@}Á]q÷ºO¢Î¾W§wÕøÛ&¤‘‹&¹Ùϲ]8]r;W½Šx²¿ýö­?¶ßE¿áà…®>3çÅÀD?žû:f·{?¾ój_ÿAUIÌ.fo|Ѿœ>ÖïúªÿbøpØDžÛ`Ǿٷ԰o+cßrǹ¬]•þbûÁ»Èª Õ™ ß2䎧 ¶çkóƒ“íœÛc‚¢^?çNÇ­Ë~ï9Þ¶.ëuBèE·Ù¶¬ú#ÄGWC&à9ç¯0wü#ÇC¿Ìßr¿K7ÝRö·O€¼×­7„ÿXôÖýŸ‰½¬óùv8&zE3ì³êóܶ¥¡z9rŽPݾ?n?Oõúyôú=Ùïw€úcRÓësbšzë9.»ÇxÀXy.”ÜIrݶ¥^[ß4'ÙÙxôŸ–;aÏúv˽"»n›Ÿ×±Û}dŠîŸÙÓ|Î?BÛzýýyêÏýQÇßó;“}d<àLÉëÖúëÏaŸëžïK§q¿›Vû6;WŸæóx‘ßBèk@¿Øll»“¶è•¹:ÇØ×nö3©V¯ã´@}-]øu ß7€ Bè ¡‡¹8öB÷3žÙyä Ž!ô'ÞW#¶±Í±B(€ !@BxÞþsøÓÎRé½IEND®B`‚flickcurl-1.25/docs/flickcurl-config.10000644000175000017500000000205012157655535014606 00000000000000.TH FLICKCURL "1" "20 December 2007" "flickcurl-config" "User Commands" .SH NAME flickcurl-config \- script to get information about the installed version of flickcurl .SH SYNOPSIS .B flickcurl-config [ \fIOPTION\fR ] .SH DESCRIPTION .IP This program is \fBDEPRECATED\fP and pkg-config(1) should be used to get flickcurl library parameters and dependencies. The compiling and linking flags are likely to not work since they do not import dependendent libraries (such as Raptor). .LP Known values for OPTION are: .TP \fB\-\-prefix\fR Get the flickcurl installation prefix. .TP \fB\-\-libs\fR Print library linking information. .TP \fB\-\-private\-libs\fR Print library private/static linking information. .TP \fB\-\-cflags\fR Print pre\-processor and compiler flags .TP \fB\-\-help\fR display this help and exit .TP \fB\-\-version\fR output version information .TP \fB\-\-version\-decimal\fR Output version as a decimal integer. .SH "AUTHOR" This manual page was written by Kumar Appaiah , for the Debian project (but may be used by others). flickcurl-1.25/docs/appgarden-tell-us-about-your-app.png0000644000175000017500000013330711600753627020222 00000000000000‰PNG  IHDR•  hYy¶ŽIDATxÚìýï“Ušï‹Öp#îü7FAôû(®yIèýj«wÐwS3×}ÕŽ ]Þ7ŽQŸ3·PÏêÍ`±‡‘g¼E3êêÙ»ÕØ¢ ]lµ±L—<ínX¦d—(« UQ`ÓôsWæÊLe¦R)©\þÉç‰ø„]Ê_k­\J­o>ÏzÖÔŸÿügØ S4 *Q ˆJ@T *Q ˆJ@T¢’†D% *à;!*·?“_¼ôž<}ø¬¤&äiuÜç¶Ôy¾‘3ÇŒ¿­Ï_8+§:ßÜÅö¥{Õ]gõÿW—dó~ì 7¶äÌ»§çÞ–‡;&ÿ7‡ï=~\ž|霜ZÚ¼êÔǶyÜqQ¹uU¾ï“òÐáeužrèqïç©s_Þµ v}éu™oÝO"E‰°_UÆ¿—?©È™»úE@@ûàKw\TÞ¸*?¼ QùýW¯šþ_üÄûyú.ð/¼T È/]¾O:Ŷ¡¸ƒûy\Nuï^Qy/õ1€ï”¨¼Oå÷ßìÜ[þý¶ÔoÜû¢qì¡÷ë{åû‡ÎÇ/ëˆJDåDá [7dÓÅõíƒÞ¼ÇÎÊåÛžý6{jß{lÀå]_HècÞrxwóžî Ûí‹ò½ /ì³uit]á½7¾Tsß –‡>¼qw†¿"*îNQDýÍ·}sîÎ…$²•‡–”€ÙÞ’…·ÎÉ*&O>'ÇÏ]³„èpÖ[WåWÏÊ“Ïǽ+O¾ðžüâ·—eõÆî “aùø¹OÝ7rùÃe9unYΜ»,§>X“mC”w¯É±_ý^×S•ùéWër¦ýå-8~ô<Êã/¨ß“Ç:CY=}vЛiΓõí«^44Þ¿(‡TR#}_*ê¾T$¥Êº îéævÀË U¯Sïu]6ÿ½¢îßf벤_²úƒQÏÖ–Ï“¼)§\}æ€JÌsìý53¤÷§Æ•Û_Ê¢‘˜È*ߓϾ«ú]]%#Úþ¢Á¹'Æ¿VÿTå8~LÝu¼YÖ—~¯ÊqíþLæˆÊÛ"*ŸLTþHeèfúø{²(UV֗އ„Û“CïïÜ“hxñüç{ò…w&HØsCÒyúððd8?|õ’O@ßìñ£C{4€§>â_Ê¡§ŽÉCO½+©7ÿ Çß¿*—{Þú_yÿ\ ÷Ó?ó˜¯Ý_õz»¨ÄÙ÷BŽ– ]ýàòа°Ý§ÞØæ•ë6BC¹¿7W—ËÛ£îiQÞP¢tèy«H}‹‡ *o¹¨ɳK¦—®Ž­`/b~»¶£:yÕ'Xû½¬n¯ ±á {\õt-Ï&¸zé’«ž7{|8›ž8þ¦³ðv/!(mÞ•¥í>’iýƒsÏçu‹Êõsc¯D¡÷…†»ïïs±ï ¢r‡¢Ò"ߟS¡ƒÏ™gé­€ä2½­Â+Þ«ãrfRo‘Oú=¿Òa¡§²ÁKØ3\<ï'ïÈž N€ó†ãÁ»ÙãGÌ•oËâMzÕ‚2å~ÿÙ÷$­<¬AÞ¼_¸æcŽ#*a„I« ©Ç‚<Úo›žÜ‡F‰Ê€{«=£ïɹÁò?ôêòX÷Ôè»ûîñ›nWDåH±uLæ—úcõý߇ÃMyÚ/²žmôç6Þ¸&O?æ„×&ªÏêûgÊwÜZ—ñúR}И°'X€¤N÷=§—êixe/Zž­›=>œËï&Þ95 ~¶UˆñÛòý§Þ–r\‰±‹N¦7æ¼Þ»”'üX‰ÁLJ{EåOÎJ½ó¥\Yº¤æ=ÖeuHû?ôÒR¿¿m&éŸ •É—Ô½}ãÃ~9–~ëo—w\/ ‚û®÷xÿù‹rªÇƒ•·ÖSé! XÊãÐZt^o5íg|žÂm¿n¢¥/“¼s 7ÝâÈï) LØ3Xχ†Êž9||HÛÝìñá .%äѽ1:ÌØ_÷ímYí|&KW(í*éÐ’üè±ID¥!äÇèkF­¿~‹CDå¶ÌÏùÛôêÀýž9vðž|ÿÕå‘}—̳€¨¼Å¢2íŸË·}m Dјo̧û‘ ]L½ôž 58«Bh‹d£=/ðûo^5—NÑK¨l«Øcc$ì ÈrûÁ1æ6Úa¨7{ü¤á¯Aašã‰Ê¶½±%u3ûkE~ø“âXóÇÍ ìß/Hh …Ò^Ñ€ú<þŽ ›µûŽêGêÿҵ{À=ñ/©¢ÖrET¢òv‹ÊA÷ð}‚ÌŒF ­1—©ÿêíœ?ÀÛP‡T€(ô¼ÚÛ=~òD=÷á©IDå—2ÿÒÛ;Jž3nØï…Kô±$‰2§ßìLÔwY#•÷¨,Ž™¬ç39°Aœ°g ¯–é1¬-*';~[W“çÌž¹øê°p[5ÿò…!Q+Ê“/½3±¨\£¯^ä[-*rÖâ¼¹¾ €¨¼Då@øë;²¨ÖJ¼¾¥ÃSMn+¶¿‘mÅuõ÷8Ék6?8·CAi'ìù,´Oþö³k®û“=öž\Ù•ãGÏðB!€êo•[Ëa£?zõ¢,um!üÍÀõÂDå÷†$µAa²*|úGññÂ_¬¾vh³Fõ›ºm›ýÇøûD%Àý"*·;Ksýs /« žßSÞ±>[‘ô›ãçÖÆ•ßȱg x8Ÿ>ü{5Ïîì逹wÞ„@A^±ŠgmÆà9~ÃõLvüÎEtêÝkƒí¥æIžúUehøë ¹( ¿x‚D=ßwBN½\9ý^èÒ$: Ñ»C¼¢ßÈq¿7u@”®ÉÓ?9&ýäm9ðÒïå·–d©‡¨¸oDe°Ø*ÊlšBhõÃÆ`XçSc,@ß[8®öÌ™ÃÅÉ×™|¼" K›²ÞéÈ¡¹Ápѽµ¶KÇCî'°IÿêòƱs*ñQÈÁ±Ï.¹^H *n›¨\•‡v!ƒfýWïŒ% ~tìÚuØ\{ò±³²:ò¸Á¥+‚—96–ø_º1Dœìäø Øº&©‰ìqåôÎñ<3©Øs­ÿ韫&*µB=µSQ©½?ë¸w¥qc÷û.¢ÒGã˜Oà=UõT¾ñTøœ¸ ¥,~ ˜.ŸkÈ\ßûIEŽ}¸9^ÔÚ”íHŒó7+CÂ:Q ˆJ¸yšÍ&í÷m_  *Q9 ÛrýúuÅ6‹'è Ôé;Ìöoäºbû®/ë·f9¯osÏܔS/¦¦dÊâGÈ©Öæ­+üöª˼.K×ïžÆl¼¾W×ÿ'¤~ýn½éŸÉӫ챿'—=ƒ¨òÆÜ1ù‹ÇŽy2Ì~ïñ·%õÖUg`Ø8öŽüÅzWê7Ͻùa]¾ÿ·ãŸþÕeÙ¼o¾47äÔ±†,Ýoÿ+ç.ÊBKgé­ÿêmù‹ÿíœ|~'Ëã yâÇÉŠ©¿òòÈ‘­]¾Þ×òrBwþ‹[X'}=‡{žÏO½ò‰Y§Ì…¯=uß«>{âíëÒ8ª¶'®í¨_no|!¯ÿf#0QVýèe™šýtâ{|åüº,\Öe½™² ãúÇ]yÀ¸Ç¯lÜâ>ö,–;ò¨§},æ{»XŸÝëWKÕUÙãúÓmòlGêWnÈ™·Wt9÷îï*À}&*×O=çÈ—Ï\Ñoò×-ѧ<–ÏQ"p]– ¹²¾)WgäøÂi­k±y}uIN-WŸ’¥U¯ÝÞlÉ™S jÛ‚œ:S—u˳¶^Ÿ—=Ö5_?³$›¶ÇM]§nì\‰žÆ•poÃs^×–*kkuÓÜÇ(Û©EY!^7ºÄ´bÏAYw‹‘õ+Òh,ɺ ^Um°p|A—VÇÞ¾[^„csJà=õž<ý”ú÷'n¡wC~aÈŸÔ}âoSRÆú˜Oé}mQ¹8TT—º/ŒìÌ›ïèu5ÏõÛ½59uzIŽ¿{Y–º¾Û7¤ñÁeµí’jƒ-§ì«­5¹ÒûÆuŽMi´¶ôpûKYRžñëj€¾øþ%Y8½,Wnèz?}Y.»Ž5Xm]•…w—dáýŽëþëë¬ßØ–+ÚeØt»뿭˜¢òÖœ~·Ù¹&gN×ÔûÚÒõ¦¨< <½«½mÙÞÚ’Ë/=õ¬ŸÓ×8ó¡Ë«ï®‹ÑF§ÚhÇžJ-*Gyy¶7”G¶ú™¯lÈÒÚ7ƒúÆù µí39sñ«‘׺°©¶õdéÓ’1¼ˆÎà_mûxKª=9uáKW›ß«‹WMoØÂšUö+kÚë”PBêÇ+ŽçÉôþÕ²,m[ÂmvU®õTõXXüÂWžoœ².(qd·ÁöÖWrì°:ö¯Úr&à…Ùö’ËŸö?ßüôK9c£µñMð3ôâš)*¼½%«ߌQ6Uç˪lC¶ »ç{¬˜ÿ>Qv½<ØÞ–¥Ë_ɦª—.ç–\q}·¯¯ÝÖÚ¶¬_ù¼ީ ׇ¾²Eû/}6 ÊιdÞ£þ˨àö5úÈêåëªþ$‹‹ªŸ\¼a]/¬_ ﯺü*´uíKÝ^çûíµô›OÌ2rÕ×|A¡ý:ƒ€Û)*·eá€öL>0wÊ;Pª+Ávª.«›Ûƒ‚KñÄñ+reá¹Ï.h1¸Ùx}`ÛÔÔ^9³¾.Ïù>Ÿ;³.^?#{}Ÿï9p,ðmÿðs«í›g,Áêç s0:¬Ž=¡ÛáÑsòˆuÌëK×}î 8§Ú?³8Öö]ñTö–å!%rž|wSVßÏzÇ:ßxEåã~Qù¥¤×bss,QYܶݑªk=ôê²ù÷åwÏzBd žþíšÞwëªüÈ·í¡—.©Aê I^î·é«†ô¬9Üüà÷ç4î÷sÿýŽÔ·¬~{ø¸oßwäLW·Cú±8×ß¼ª¼”ç<ŸúP‰Â_½3°ïC‡/œç¡W¯ÊâaõÿÿTÕÖîò@= oîðºü›Ì·¶wÍS¹'DT®ž_}®j ‘­/ä€/töÖ¬ïÙ¶¼üt@Xíü–¹íõgýÛ®„|§&¨ÓƆöô-þI‹GS,t¤q±k^çø§Zļn”íÙuSðÔç?(§!@MoçöWr01X—/~­úÿe×þƒâcñcÛŠùùRùÊà9.lôƒ®ö4„RhÙT=^¹ìÛ¾,gÖBBk+W´xÚøZŽ=í-÷æ…ÎàµþJ½ ùô[]S ú¶?}-PtÕçr]Œbøó–z¹£^@lh_{ç«ßëWáý5°ü³Ö‹†íod}ãkO´Æœqm%è7ÜNQ¹)/?¢ÅÏs§†{Õ6뙾Ð{bN(ê×ñõܱE©/d,1·WÍG¼.ó{-ñùò)i-’'°ö=³*‹ós}qzp^ëו¨³…äëRoœ’¹Gúû{Ëvn%N¯/Ê£Ö¹yN…9žzÝ™׃ë¸~ÊÚgœÚ¼îÚ ýWæQ§ÌÏ;%ÇÕTÛÃ{LyýÁ—VÛ©òþcN¥å1Ž¿-§:ºž—Ok¡ýäo?sêòªË¦%@÷Öýf<•Ú&qYöÌ^R|,{žíêkm_7ç>ðÒº5°þVN™BÊ›4BM?Ö"fÃzytA{§T¿²Ä‹1 ×ÞË+‹þ\M5ŸÑ³¾­ûÛ—×õœÇ‹_ïBßþ“öç¯Ì2î ÙÜÚ4çõ´gXÙÖÏw¼"ÿÆ—Zä[b9è…—*:õôš¹}ýüŠl~g/jA¶GÝïëÖKƒ'LáØÕ‘ vY¬{j 8»=aÈFˆ­O­ú•´Théõïê§2½ûáí«çKžàEµëòŸÂûUhlË–«-½/¾®Ës³ú{1ùwµ¨|`Ι÷äx/UR›ã‹JT.sD¦-ÞV—êfˆêëx…ÝvÝ~êPËí†n;7JêõEyý€öüí9ìéznGT–%B3„‹Ê%'AÏsÒRåi·á£NÂ[4î1­ó¾ì:ï¨í7ï©ÜÒa¬ñŠ,¶?“ËíŽõ÷;ÒØv‹ÊAž|ó’3PÜ©¨ü…%m/Üñ®ÛƒzYÏ=<×3…ã÷\ÞH#Dôr{S FoŒ%*±d p%ø ñšþð†÷o%ð_=n†°¦Þº(ÇÞjȱw/jQùØY%tíët\×9î»N¿ŽÛ[_ªò}&õ–åø[uù‘qžÇõ¾ÆœÊïŠÊÏäÀ€HÔžÍï¾êÔe¾ý# Œöû^ˆ¨œÄSiŠÊ"Ï©pÈç^1¸ª¾7=SD8!Œ/¬ªPÂu™/&¯[Io^¸¡ŠðÏÛÞ^—ãeèd¦WÈ#¶ÔÜ7[HY¢Òð˜=qXû¼÷7voΰ^ùc•ÜÆºÎsç·M1oz'?Sá›:$öøÚŸ]ó]Hµ‹[Øm®}¥ÂBUèª Á|}þª¹ÍNd4pl ¨üF½Œ°Äû³Wäõ²–ùu¨÷¸/*‡—mÑLËsªí½½&ÇÔ}0E¥+Ì׎{E‹÷=¯|fŠ»¥ :aÏ–ØÕ¢²:lzzM£ž£:8¿S{mí ­ÁïåÛ–çüÄó£ÚWÏ—Üs¤ïIëWáýu{°üVÿ8èñ+Ç_Ð}sþã¯Ü~QyÝ ûÜã ½rü <úÄsJ0¶ú¢ò‘Œóã~½ñr@¸§>WÆY¯?áú|ìy Hø="g6uÈê#ç2²Ñ>>:Ö¹]e=õÜžq·*Ï=0ºjzCµ<¢ò¹3!³nQ9lûM'˜iý!P0ê$<›}Q©„Õe#½¾ WÛTøÓìïHTÞè8ž¶ëJÌ›ûÜðn×â«7 ½CE¥ëÚJй½„î¿ëojïçC5åûO½#?|ª¢Âc'¹Žòb¾Pì·åãÇuö[—¨ ôT*ÏèL¯äZ°ð¶æ¦öÛèFH»ìîœÊÍ «NÆNÇ‹™øD}zYæ›[Nè«ÞfpYmûDæÞþÒš³¸âü¿<Û÷Î]ÿtSž{ö²'Ìr·ñ:ŒS ûjÇ ™´ûA«¼¬EðÑeS(­þy´¨ÜþtÃô~9!©OâÉŽ;ž¨ÔÔcG®x³‹ÎoÞ“=cŠJÛóæ´ÿ/É#êÞ<úô+´ÛŽ{är@xëGN˜ª•—=É{Zå¶³]‡´^q Vï= õ&2=•Š+—?³}mQÙ?X¿ í¯ªozy =Åú³½o_gPp§õ\q¼r{d¾¾î$ê±ç7s-Q¹§/Ôú!±¬yU*¥þë/Ëüq’ºþ‘“I5c ªc{mµé•ÚØÏ¼š©ëAÛÒÂëòòë*|ui}h–ÖÐs»D¥-ø‚Ä]_? <ú¨QyȪkßSiy_¸äñú÷ÂðÒŠóÑ¢râ9•C2gn_Ö½çÜKq(oìüoÖ¤¾f…R¾ÐóxyΔ»rü⟬ùkmYr‡¥Z×Ú^Û’—ØË5¨d,fzL=^;ôÄoYYm \Ëqlºnzæ¦,oêŸÇ•º—eáÊ×ïÜŸ¨¼>"üuá7×Ô9ôÜÄÍëz^`PجuíÌÅoF—Ínž¾{a]^¯|1þªB:ÍPÖThè¶µ£ a^¿¨½{{sÝ ¿ümÿYa„±Zå¬[^ËU_fÝ þ³nÍÏ \¶d­gÞ‡Ñí;(*CûUhýv%ìàŽ‰JCüÜãZŸrÏÐH~$*ÝâîGç乸Žé{ÿËÈËs®ù†F˜íf>æì‘—•ðèòÄ#xBdGm¿9ï”ö~ï¥ËÛ¿Ò^»7Z_è%EL9ZT†-)’:¦ÂJk„–þAžž³ÕpDå÷†‰J+|÷éc—ä,Q©„ šÛÖ8ý{'éOã†N:ô9ϳ.u5w²/*ÿl…àõ42Ã~&ó/ ¹;•“z*÷ ]ŽAÏO4„Ë1•ysõÓ-™›Õ^E£<õ£Ú«tà7êÞm|% G>qæT^·ø{^ZS™NûÛ ”‘õ‘WÖÕ¶m•ÉsM‡<Ý­5,í¹x†XreØUsç,ïª[H„{u™c«9€*«èüáKžåI­9{AK°ôE¥>S?¾"§Ô¼ÀõO¿ç/byÊ9|MêŸ~îEµÚñgW¥¡²Ì.¿¦E³5gÒ#òΙ?hßã_•?Z¢rjöŠ9‡±QíX ƒ6=ó;Qá³W\m<ïИWy©¿¤HU…D_Ø×ô½lzÃÚwp¹°~5²¿Ž#*Õ³%óÒU9Î\J€;)*7½j;—83…Ñ#OÈ‚µƒãÍ{$ãPm¯ž‘'ö¸ÃE‘×õÜÌÖñç<âô‰'±ÂltØí¾x5=ŒÊÓyÌW†'2§“W„ž;DTfü¢òzÝñÈ ÎMgýÎGԼξh|À•]öÇ»;jûÍxrl!ô‹¥€u»—´ðyó²¼ñT?ËëPQiˆ¾ÿôvàZw›¾ì¨&*´ôÀ›K¡ºÝY–»÷yÇIÌc¨ã‡ßv£(¿8§ûÑú‡0Ëj~à…㎨ÔaµÇ=¢òûV†VÿœJ31Îûç\çR"ò©³ÒØê ¸ï»<¢¦ÐµD¥‘A×ÎÚš:·î U×ú¥wÌùš:Së 9ö¬µ]%2ùÿvÎ üR޽ä®ç1%0¯éï‹¿.–yw<•_˜ÂGCÄœáUœKxC%_¿ð'G¼Å›ô‰ù Çk·TYñ,z?å„Ú~+‹¿ñfC}àÙkre7²¿:a’Ë‚çÌ+Zº½ë¦°™õŠG,¶½¦Â3ÝH•@zîY# öÞÙ‰s áâ¹RÿeKí§Ã_7?^w’"ÙkD¿üu  >ö‚•¥T%Ü +›ùüZ\õ„Ô>ðôŠÕw½˜sUèj+èh†¸~$ÿø¶%"g?*ñ¶î´Ó`&Úç*aa¢ß¨õ;}¯±©õÙ9ey&ÃÛW‹Jxöð~Þ_GµåP¡ w@TÚƒÑ뛲®–üXßœdnŠZrÄ8f}3 |KŸoèºh››×ÚÞ\7ÙµvÛˆsï6¶h|ôå†YgÿµGm¿Ùì©d-[Á¹m5·q]m¿Ð_ŒÏ7weC}®ae8¡„N?Távë½CLß6B‡”W×óÆ]y¯7•GÑXra;°N*©ÚxÌ¥¶ƒëdmÛ¼ñí]Þ?¿5뿹õÍ®œg}kôÜÑmÕ§¶·Çïƒëæyo®|î9•Û[Æù¾õÍ“4ÖÌÔáÄF=®Oð½»®ê¼ipc—Ú7¬_è¯p‰JÎâÁG|Ù]'Û¾ž¸¹ûýû6¼80çA~¼¶¤êû±¹æç:mˆÊ;Ï•3óòÜsÏÉü™+;Ú°Ûl¯©Œ¼/­ÊÒå]®,^s–›¡½Q ˆJ@T¢•ˆJ@T¢•ˆJ@T¢•€¨@T¢•€¨@T¢•€¨D%¢•€¨D%¢•€¨D% *•€¨D% *•€¨D% *Q €¨D% *Q €¨D% *à»%*[gE¦R"{^Í?™ÿd¼ó6NªóªýŸ8k}ö¥È^uŽ)ÅÒW÷^#;õ9}çËrå’*OŽw¨\üKãò܇ã·^Òûï)õEå#Ö9?¿÷y >wˆ…£“Ý€[**·•À[\êÓXRE[D¾¬ÄÔ¥þ¶3ŠÕ¯•w²ÿA—ãàîÒ9•/ÿ“.¼"F¿T³§¹~ˆÊëVyÖÕ¹·w"®•X^·ê³ùÕðúØmbï{ýëçÑN“’¹Å¢Òh?³¿Üåseµí×»s?ül~>þù'ÙQ¹áòO!^9%62o„ÅžÝ%Q©ö{4¥çy6|bbÉš×ø¨Kì®*Ïê£/Œ.Ï0Œã÷ÿ€jƒÅÞ`}¦”¨;ðOÞ}÷þF ¿(ê©2¼Ñ;n}9©)ßùÔßõ/ƒÛÐÞ7³4|~èž_¹ê§æÖî jƒîÎïMýë^”ú÷ÞàõOnþ~4ìs«üCÀýøzgûºË=•ÛˆJ›Ï•hpôÕý—ÐÙstwDå°ýÎÙõ „GþI'rÜù«%ïñ{RÞãUR¡?¯úE¥KÐíq‹¼œK,~ê=Ï/øÛ›®}Ç­ï—Þ¶·©îm6®åß6÷‚7‰Òñ_ùÚÑ'¼Ž]ÝÁ½ j3û|ŸÞ‚û¡êôè?ßIöõÌ3V×ÛäáˆÊÝ• .ñqìRÿó3ï z¡n‡¨´=PÆàßñ~íTÿîiröû'•QÕåykœí×çÌçƒÂäÑR_„Õýe—'ó˜Ë+·àJŠä„¯N(Ôœ9•#õ¬žžÛŸô?_üÒ+ä9Ú÷Úm^u‰Ø°ÄÕMˆÊ'”óŠ“óg‡ß“Þ½nïèÉþç¶—v’} ®|¨¼š*!RæìÎB©•A¢Ò%(æ. óúËÞcn‡¨tÄ‚ò<-|âšßØÓâå̈åOÞÑ«ù«£Ëà\ëŸE‘§½¾ì{%ƒ2´Úû>ð«‰Jûø‘s*¿ê‹B·ÇöÔQ¯ÓÖ;Â{Ý%8º7!*_/Œt·îÇËCúâ8û *oƒ¨4B?ä”÷É…?övˆJ·×Íñ"ª²Ì_˜, KK‰Ïã§•gJyŸðÍ—ô‹˜'æj:sð”PûÜç ¸Öé›óþ-* ù+Ÿ¨ûªŸÙ×öÌÍçBDÕת¾)×õv(*Ã>Ý’ûQò†O²/@TÞ"QyýÒ˜kY¦´Xº-s*1‹ƒ fœd=#æT^ÿÄ›@&¿ˆ ò>ºçà­Ûó)•» l·/Ý>QéÝg”À½þaÿ¥@Ë*Ûë–¨|ôtxHê͈Êq½€»u?®,zçDN²/@TÞ*OåçýÿëKz~\ËÅ•®Eï6&êq‹åÝ:¦<†Oø’Ì,[ãk×zœ†K……[T×P¡—×{ÃÃ-ƒBmOåG½âûN{*ÝIyœïωuŸÏY>æz*Ç•;½ç‡{íãIö@TÞÂð×=!YUO©Áù%`æÎô‰²ãozÏi\ó€ò¯F\kûj@vS›nÿx;É&™<—<ÇžSùÈφ ¿¬¬Ô×}o2—Æ»—öRS®Lªîì«î9•~O[ ›ÇLXÖIDånÞÿd_Då­•®ùwó.QÓre}bE¥{ÍÃÆi×¼MëœN6Z%fŸ—g¨¨ü48ó§±¾ä†g³5½~®¹yg\ŸÛ fÜÙ_\Î)ö¹ “××}oöžt%& £ç ö‰G·p|ô7ýD6Û]׺˜vvÝ Ë:‘¨¼‰û1纋ïÜܾÆZ™UHóË‹<\Q¹«¢Òð¹Êå¡{ôïÚö<‹JŸ(3׃ôÍ«³C5ÝÞ-{JOy¯7B;ÝǪ, O¼0/óÃAab¯Ñé¾ÖGƒ½nv¹I /׸õØ7dÍÇa/‚’Õ{Ó{ý½¾k¸×$e4üõ¦î‡º ¹“ìëŸ#ËQ ˆJ@T¢Q €¨DT¢•€¨¤á•ˆJD%¢•€¨D%¢Q‰¨D% *Q ˆJD%¢Q ˆJ@T¢Q €¨DT¢•€¨D%¢Q‰¨D% *Q‰¨@T"*Q ˆJ@T¢Q ßÞ}÷Ý{î! *•ˆJ@Tøév»&=D%¢•ˆJ—v­ 3Ñ)™š²‰Èlº(mD%¢•ˆJ£YLZB2.ÙBYª•’dfcú³xF:ˆJD% *•H·&Ó†xŒ¥¤éÛVÏ͘Âr:W—N³.µF«&ÛjH­ÞrÂd{¦ú»)½^[êêßn·%•bA Å’Ô[]Ïy{톔Œmß6ëØv³&ÅBQªÍ6¢Q w3JÊŽéj'`{[R%8§sòë„áÉœµ„gW²1ã﨔;zß’¹=)­óùÉÕµxl•Óےņ§,ÓyD%¢îê¹”å¤)+Ý í=ÉÏ(qMÉGÕŒ)ôòMãX•¸%üRCŒ6eVý?–©J§ªEc4QÐa³­²¹o4UQÇÕM¯hd6o…Ôö¤”Š™a·Uuýþ±yi*Oh£ÝCT *àn¦UJz<Ž~J‰ˆLERÒ¶át^…¸ÖµÀŒ˜b±ª„cA{#=Gÿß²¼š•(¢De·f7“V¡¯yÉå ’MÆ-qÚvŽÍֻ̩@TÀ=þj ¹ZkIÒg¥«¼ŠÃk9““R&f†Ä–³JÆÒRÊM«s$ÌÐX}¾˜ËóÙ‘tT{*;•´“Y6*Ô¿±¸ÄãÓ’«uŽET *à.OÔc…²*qØòmk¦Œgk:T¶”tæ;šËFÖù;–*»Dª §í ŠÊ^=§çPV\ó7;5ÉesRmõŽET *à®ÇYR$:#ùrMõªäRÓÖg©¾ØìT$f'Þis+­Ì±ŠL­3RT:žO5‡2_mH«Y‘DtÊÙQ €¨€{”F)+ñˆ7+ët2'Íž{¿®ä¦u؆ÿok?=o2æ•™˜-*Õr"-%$cîëÄ$[i 9Q €¨€{Šn§-ívGº½[<—³­¯ÓÛÁ±ˆJD%ÀŽAT *•ˆJD%¢•ˆJD% *•€¨DT¢Q €¨@T¢•ˆJD%¢•€¨D% *•ˆJD% *n ^}Oþ×—ÞˆýÝi;€»”wß}÷ž‚{ˆJ€{\Pæ+˯ß›WÊËÿçüN~–;I *•€¨DTÀwÃëhÅ·?øTŽÿû§R¬­È¯¯Ê¿ž½"‡>6yóô²¼^ùD^=yY~ñîeùûÿù¡üõÁù¯‡~;Áµ:’‰MÉÔ”E$"…ó÷T\Þy/kþ[é 9þá)y8S½‡ÛÛ]ýÿdk¾ÿ{éÖÂÚäÞ¤[˨:=Õ2êÄ2Ò ù¾=‡oésjGe½û¾þù®f~ S¼«ëƒ¨ØQyü|G~­eáý«ò/ï-Ë+J@¾÷Ç5“Sóð;-9TúHþáÄGò³ù?Èyþí EeO*ùŒ¤3Éd3’ˆGÌAD*“•LÆø¼ N§ÕgÑ¡¢2?ûùi¾~O‹Ê~:rðÁ)ùËTÅ÷ï1jX›Ü£¢²Q<<+µîè}«)£Ÿ¤v6éV$ªDeªÒÞ…ûå-ËÝ~_•·±û¨õ’cjjVê½þç­bÂ|±¿Í/ÌÜßÃNõ *ÃfvÿÿvµÓíú>UÓJ¼GRCEå°çð-}Ní¨¬wcßïH::%‘!íWÏÿTžÍ#*•p¿‹Êßœ[‘£¿¿*¿ª^‘Ü©O䟕‡Ò¶ò…Uõ÷%yéÄ’¤³$É_îDTúßÂÆÔfÚófW,bRiµ¥V*J¡X’z«ëlo7r©ÓsDj£V‘b±(¥JMÚ½°Á\Kªå’Þ·\uíÛ“V½.­NG•’ E©6ú¤ÛjHC•¥Ý¨J±PPש¾‰îuZR«5úÛÔõ굚´º}OD£V7ÿî×A`t‰Ê‡ŠÊ˜”›-© R,U¤Ùõ¿-nHIm+¼íD§Y“²j£-*µ¦ô‚¶•ÊÒhw=/ÂÚºil+e«l3ÊfœÓ¼—Î9»Òl4]mÙuÎo\Û®C¯Ó”|ÂðàÌHÙu_Bë«Ú¾R2êW•V«,±Q¹“ûå/˨¾ên»V½¦¶y½Sí†ú¬i}Öë˜ýÓèåj³¿_¯­ÊÕð ÂZºê“]WÿìH³ªŽUý¢Õ½¿DeX_5Ú¬f}g+µÖ}.¬¯êç@³Ýs£)µz˼¦nç®ú·¦u=C†õÑa´Ë)S@F“%ýY§¢…f,-í›(ãÎúwÿ{8®¨ k‹°6ÕN·ë9g µhZÍZÀ3}ð9ܪ¶õÛ;¸naÏE?ÎuT{vzÞ²6zž'ø¹9Þ}RÏôjYµeA*õ¶tÕ5œçјm=Xo-*£©²4U}Ì癫í{KªÝÛcüÞ *îiQùk%* ä/Ï´åµS—åpù’úq»!+ #$6£¼”ÿ]‰ÊƒÅ¦<¿yQ©ß¦=f=°˜ SÕ?X)ãïdYý¿-Ùiÿ~Þ·ÿÎk=/‘©aûªsF¯7“ÓáO•Tt°<ñŒ3øs®a•;[×?ŒÍÂŒù÷l¡i…véí¹ÆW&•þ2ƤØÔƒËVyp{²Ø~4=°¯=¸­çgÛÝcamÝ‘ÜLÄ·-.%«lÍRjàœérK:ýyÙ´öš’ŠÝs%´R1W¸tÊl÷Ðú¶Š¦ˆôo÷‹ÊÜ/Y.†öUïÀ/kÖ/!-GÕÌrFÓÊ3¥„ï´ÿ<ÓY³®J²ßNÖ ·ßŒþémûd¥s߈ʰ¾j1›EEsð:¬Ï…÷Uo»öÛ6iÞ‡Àç@4iÞÏ >:*b£0«Ë‘Wñ¢ùÿ¨”Z[7UÆôïÿzÆé_ãŠÊ°¶+ÿ¨vº]Ϲª‚<ì™î~w¥˜Œùö–r+È[ç¯[øsq0ôÙ¿ïŒé=,k$)Í­ðçæèûÔ–L|ð؈շÆmë zgÊKYÏ«ä”Ó_‡ÿÞ *îyQù?-/å5òÈï.Ë¿*q9¯xówËò?Þ¹$ÿý¸”¿iÊóÅ?Ê\þƒ[**£ +D¦­¿SadÆ <žÓ?t=%ÍÁãÀ\¥žäâZ5z¶§ m Žkžç´TÚú¾`¾yU(×zªØôüØÎü?°u™1~<3ZŒf¬éÙbÿ>’4tƒ…ähQK:æ\_·(žµž'Í›(ãNú÷Å!B2LT†µExùÃÛéö<çúåO—šž_ óßÿ¾ÛßYGLuk2±Ê8_¶_·QíTïYëEf·¡Ÿ¯15¯ÓßÖMW[zn†Ý§†U¾tÙþ]ËXâ¯2â^oóùdüžFfÔ3¸g æ)'„·zðA™úKcNeÈï ¢àÞ•Fèë/Õ\ÊÃJ@æO·å«¯¿õ„¿¾¨¼”ÿë?ÊÏ]”ÿï¿ÜZQi¾¥Œ3•ÆÀ|&‘–BY…d›Ÿ×ëJ«ÙTá_B”“ÔlÜ%4ô@-æNÌÐ.™žMcûàœíÙ EãÇ3j æ€n*b{§Ú¦‡ÁôJÝ„¨Ì7Ým3Ïý‡š DfTò’Ë$›ŒRFøQ[†T+*ì)—‘i£ŒQã(Afy#£Ó³’Í—úáš!mm¶ÏSRÏNkQþï³ÝB¿«ÂõŒpMÿ µÓR÷G…ˆ–Ui60…1G8õûI7´¾ç&í¢s/oþ~yËÞWý}Pò£f¿±^tÄõµg§üÇØ}¬2†¨>çê^÷Tï«Ö¼-÷wP…Â6TgçÃá}.´¯vF‰J_;[ß »_ w£Ã`#39GhÜLwÒ¿;;•ÃÛ"¼üáå½=Ϲ ïLÛõLïß+¦ŠH2——|.'yu]STF’ýˆƒ!¿g£Úaà8wƒ5Í£¥BîÚË7G|ôs3ä>yÄ}×é[Ý ÛÚ[F»öç7ò3Ž í‹ÊßD%À½/*l¯†WÒ˜Où?ÔüIÿœÊô[Mùùÿ¼(Ͻ(ó/õ[(*µ—ppíàw›eIN»Ã“¢’ ÈòÙ($]ûD$>í•Æ€"åöpZ?¾IóÇ7fz9[îì€C„C»œÔ§ŠÎbXªæÌëåË:üV‹ŠÊ¨+Òx;3Û©ôvÚ©W4U¨cq‰Ç§ÚB…dͺB¢¢1µïAKò©Ys`bïO—CÛÚœ«²vÊû›·Sf¹ !_îAk¯Yòxm¢ñxÿ­¹_ÈUBêûžöÄÒ•{4šü~‰Êa}uXØ`B œ²ÙƉRËô~L›^ɺ7¥užñDeú>•a}ux;ë°êà>ÖWËc‰ÊáƒûˆJ§oºž=7SÆôï‹Êà¶/ÿ8¢òÖ?çl¡ê¦G|ÏaÛÓ§¯§ˆD%¦®ÏJuD»Œj‡ã¢ÁmÖÖ“<7ï“Gôªý¸nƒÐglÀïk°¨¬øB±­ûïˆÊðßD%À=.*¥æ‚½®æR¾ònKþù·ƒ¢òúúœ”Ï.Êÿùæ­•ÃÑýü^«"™TΨµ‚ö6èAlJ ‡s’>4ržJw¶:ûM­1è€y–ü™§¬EÓÜWÏ7Ièy07ã©lôù깹t[šä²9©¶zç™ÎT’VáHE•‘·h]£Ó®ë97ê­¶ÖBiFê®ë”“³Íš-í%L”\‰+ ³-ΜîZõ9ŒPÆŽÇSçN]3ô6¬¾-R•(õ·Y¡dÙ_'¾_Þ²Œ|Þ«,qSœOK­§VI3 ¬èé³v›IîhÛã½_Eex_ÕíÜ3ú@YÝˈdæ‡ö¹y6¤¯Ú÷.]õ¾˜PTN´œD@fâÐïÓˆ2î¤ﶨ /x;Ýžç\§ÒŠ"ð=‡µ KÍL§’—l¡þê®Û¨vðç~èçHVeFŸV™€G·õèçfбúš3®úwÒ8¶7A[öýÁg û9éö{ÓFTÜû¢ò—g–Íu(³*©Å¡·?•Ï«ÐWÃKù³kÈÿqäΉJ#Ý{φ±d^eS¡N•œýHÉo‰ÊxZeì¨ {%™±ó¤=s*#jŽ1/­d…ŠYI8¬·ÕÆ<#_.¡ß€çêÝÀ„ vHOÌøÙ 9¢ŽØ¶ŒÈ¨%EŒ2ÍJEeΫYžW푳D‰üä«*dªY‘Dt*05·žµ[J¬tÕyŠ)'ùDMe‡LZ×(©l’ífU’1ëG>¤­õÚrF¨TVµ¯¬¬sÎÔÀËyêüEuN[Œs’®¸­UË‘W<;®6v’;XóyråÆÈú–­ÄÉB͵mØ’"“Þ/oY&•† L[I,".á[±ÊœÈ«ì­®ú§Ô÷°×Ì[ó6s*kbÝÊ´Ø÷ÆÞ¯¢2¼¯Zë÷™m¦2Z¶Ô€ÔLŠS!vÃû\'´¯ZBUÍ+ÕUØdÑúÎEÇ•Þ>ªæe'“䨥De÷&ʸ“þ½Û¢2¼üþvºÏ9ï3Ýü¾ÍºŸéƒ¿1‘é´ÔTyêjÞ¡éñŒç‚çTºê6ª|°jzÌ*Yoö¸ˆá ÈþZ÷„¿ªÁF"a†Å¬9sÙêŒA›>”}/Y>XlZëÍÙÉü{ë0ìÿ¾A’å9ÆúcJdØot ¯m"æÍ˜˜­´E',Lí—HL›‚ÚPujù¾gÃÊVX¨wF¶u] ÚÜÙuc³Ydzk”m6ê:g,!Õ¶wÑõ^«¤ç<9™*ÔVÕ5j%½(&ÛrgT}:öÃt#Ѩ¯ýoæ~yËr¢ÖW‡ô+AF¦ÖõÜ—|"î Ѷ|è$Ó¡|}Q**îíð×ð¾j´u!÷„cg¬¤#Ãúܨ¾Ú®f]¡xQ™yC&£ÞzÌ5wÓÛGÇ\ëpHhöN˸“þíþûÿÈ綯-ÂÊïÿ.߉ç\Õz!á.cªXü¾7JiOxf$ž”ZgX[{ëÖS4ÔuÜûN§Š#ûÝ¨çæ¨ûä~ÞG§gt6j«ÏŽßÖƒ}ßÌQàò¦kQiÏ©|X¦Ôá¯Ão•÷…¨Ìª$=/oÊá…äÝÿ¸æáßþHþîß>”9%*oܼ¨ÜTž¶zÜéöÆÚ¯; :Ý!eÆ>€ù.ý#xüíÅ(C»Ó¾M•¿7âÝNØ~=ëÉÚzÄ}+·ûºNw²¶Rž*¿ÿ^Þ è·ú‰ÀÁ¥]æÀuP»³}{\ë~X§2¼¯ÚmÖ§ÖçBûªµíÏï‰2îÆsùŽ=çúí8ú™®÷kwº·¶vÔf“?7µ77'Ó‘ÛðdŽ´­wNÈï ¢àÞ•oœlÉëòÜ¿]gþõ‚<§8øë=Éy~ªÂ^ªåÿþÚ¹»CTÞ4JTF¼k¿yE€ñÖüÎÏó€{c­Ôx4â,r;®y?ˆJ¸Ï£¬ãÝÌdÓ2myöƒ§u|·@TÜÿú»¦<õÊiù¥ß1…â¸üÍ«)žþð¯¿ZàZ¥bÏXk– „ö”2’H'KÀàÄ5ÔÜ>º:c…µ!*•w’¦J:4«2¡GÕsiz6¥æ6¶iD%ÀÍó³Ü)Óë8 ÷¾ @T¢Ü“÷»Ýî-L€¨¸OÌÔæSV&ºf9¯Ö›ëÜ÷õ6×Ý‹enz¾)€ïJû™Ëy<<%?ÈÖB—C˜hΑ«ív뜀¨DTÜbô‚ÎÓ’/—¥úïo™kw%+ï@½£»²ð³‘æÏš‹|ë’}WÚϽh¹§ vz>_ÛíÊ9Q‰¨Ø-ºÒ¨©Ì±Å¢Ke©·tón»©47­ž•j³-­jÎØÏæ*ÒjwñP+—¤P(H¹Úô„̶êuµ_K*¥¢”ª OÆÖn«!µzÓóY¯Ó4?³Ãl›F™Ôy‹¥ª´{Þó6ÛýµÃzmã¸ÖÐuíº•*µþyzm©×ÑØjÔ¥aÕ]¯‡™–F³f–¡T©÷Ëjk”½«ëV,*nW·…ñw¡X’†S¾®4ºžíÀö»Åía•µmÖ£hÞÇqï¿sÕšeŠqÕñ¶§Ì–ZÓ¬Ql#KT>h.ÞÝo§­ëV]ÊUïú~ªM«ª?™÷«Ü¯ç`ÛùÎÙë˜Çe ê‡m¾Ý¬êí•Z“ï<¢Q °kôš’ŠéðV7™ªH©¨ë³ÿ»üøÿÖß5ÄB§*³ïq‘™œ%Ô:’òl‹IÕåUjfô:\¾*Ìû%ÕÐÉÍD|eŠK©ÙÓçò®c©×®L¬]Ù–ì´¿n³RWB¥SIš—;}ä>o5h“©xƼF§’ܦêóÔwZªþ¾åŽ·=ÌöÛºõí1PÖéüØ÷ðjfr5ë:Ñ¡mä•ý6Ð6?ë¯ËŒéq4ÖŽŒLݯÁ¶óœ³U–iÿqÓY§Auˆ§+|÷•ˆJ€ÝÀWZD"£.³ÖüIS8Xa æ½S–¨Ú–ª´MPÑÓRn[Þ¤JÆ<×l±©çÔÅ´`¨4[ÒPž3¯˜©IÜ-®ºUsîætNyÝ ³æyy-^z¶hˆg•gª#é¨W”éPÕô`¨ªuÎxN/nßS¢Å8oZÕµSM«ÿG]sò¼çµEeÚZ/³YÒ"&¡ê¦’X¢`zÊZÖ¶ÈlÞ,C·–3ÿN–Ûj߃êÿêëxÚoë¶´‡]Öh"/Móèòh޾ÿö=œ–J[ ÂB"j èJ·ßF©¢n£VY_k¦ÐðŠJWØå™µ„i·¡ïI,û¾äâZD6lï¤u¾”òêk»þ9{’Ÿ¶E¶ö°6ŠºN3ù†·¶µÏbÝîÓ€¨DTì‚°l5UˆdMÊ*t3›N˜ƒ÷˜#®\‚MÍk‹9{-fŒÁz®—\./…|Ú<6j -vªC¯[JDLÑ4IqÖy†çɼ¦ÏóXÏNk1Ó™\TNMEd&‘–BY…¿ZÞÒÑ¢Ò?§²mz¼ ±e £L­ë¹NÊföߟ¨ô´ßíi»¬Ùzw÷_Ÿ;–­õ÷o—Lo¢Q‡Á6ê8m4LTêº$”÷µýv³¡Bl•àëu¥ÕTeQ¡¸¥BNR³–h5ÚË×výs6LìõüÚå¨öCsžpPD% 09½fÉ:ëü0Qéx‹ –VF-bWÇ'L/Ô ØHbSËZ‚§©½T*4Ó˜XËÄÌÌ«î9x¶,O"*k4Ë’œŽ¹B£’«ã©ŒùÄòx©íS$ùŽu·‹ïo¿¨Œ†ˆÊ[Ñz?íYœüþkqæˆe—`Nš¢2fŠ`E­c‡ŠÊhð½j’®û‘ø´WTz*[5³ü3ùºGTºË1ID%Lˆž“b£ãñòDCDeºÚí{*gŠž¤(å|V ÕÖX¢rk«%IãŸÖ™=ËmW™f¤îÚ·œŒ˜"¯iŸ7]õÖ!@$ôZɤr–èQ [j3ÄÔô6šsò¢®9•m³,Ã=•u™±çóݤ¨Ôíw{ÚcPlíëo¿[ßeèþÛ¢Ò…!^›=ðv“,Ô¤!*>Xõµ s-¥=u™NͲÖ=á¯êóDÂlG݇¼mç=g[½ˆ{Bgí¤FAý°fÜ[Ç“›é{Cy *ix€ÒS^*åUëŒç­é©5ÿz=÷ßiÇ÷&¿¶Né^JÃA%n1ÏÛ Ø¶Õÿš!ç±ËÞz¼>¶ÛÛE!ïk¿ÛÞcßwh­qþŽÏËiÌÌhq6i «K/¼½ÃÚ®×é˜eìò@T"*¾¨D?ɸ•@'–a~Û]ÙJTF¼k`zçcó:Yš•p‡DTJeeO'­õi»¯=ºRTKŒd¬µ:ý4KI¤‹xQ ˆJQ‰¨@T"*Q ˆJ@T"*•ˆJ@T¢•4<¢Q €¨DT¢•€¨DT *•€¨D% *Q‰¨@T"*Q ˆJ@T"*•ˆJ@T¢à.à¿þ×ÿ*sssò³Ÿý à®Â£cD%À]L.—“sçÎÉ… î*Œ1Š1VATÜÅ,,,ÈÆÆ†|õÕWwÆÅ« *îbNž<)7nÜ Ã0 ð»ÍŒ1Š1VAT *1 Ã0 ÕˆJ@Tb†a†!*•>Qyýúu~µ0 Ã0 »ëÌ£ *ðTb†a†íÈðT *1 Ã0 ÕˆJ€{—n·+½Þw¥¾=³¾Ý¢Ã0 Ã0D%¢î:’‰MI4Qô|^JÆejjJÒ•NÿónU¦Õg3¹ºÔ2j{,#\³×®J6[’®ú-û˜ºÎcRíNvŽf9/ź.ÛÍ”åÞ§)éø”y¯¦¦RÒ¾Ïë[/¦%:e×wJ≜´•†a†!*•pg½>ÅYc€ž¦óYCf­A{,Uî{Ãjó³L­+ÕtT¦"© ¹j*b ãØJêaõÿ¥Ü™àÝŠDT9’–ཙ²ÜóÊjÚ¼'‰lQ*•ºôîçú¶ ZLN§¤ÚhH9—4ÿލ"=D%†a†aˆJD%Ü9Z¥„œG¤Ø²<‰œöÅ”ø‹$O霚–zÏrÑ´4Û ) R,U¥í GìJ£V‘b±¨¶•¥Þêêswš’O¨c§f¤ÜhK£0cþ¿nÛiÖ¤lÓhwËÛ®æLQ9›«H«Ý£,ªŽuU–!ÛÜ»U¯K[…V6«%)”P«5}‚¶%ÕrɬW©ì:W¯-õzS…e¶¤RRå/–¥ÙÕž`ãïB±¤êÓÛA™lïn]JÅ‚*SÉiË­ž:wnVµ_TòÕ¦tzþºÔÔ¾oÛ5ÔgÍŽs¼Q£žåª«žF]j Ho5êÒ°®Ûm5Ôÿ;ºJêy™G´SGõ}Ÿ+ÒìxÛ¿ÕéH£¢ËUU}ÄñRfãf?-¹^@˜/D"ãyh•†a†!*•p«h—´ç¯ÔÒâѼ§¤VÍšâ²ÐÔ"1k„YNçM¯P5wB”5½½¦¤bSÛ3U%bR1×þ)ù¨–•‡Ëš¡°õüìà1•ö@¸n*ÒßMUÂË¢Ê]LÆ|Û§¥Ü vŸÛ ±LW´˜ªçÍvònŸ5q§’,ÃTLbïu«IË´¥„wrà܉|}àšÉrÛ#ê³1ívÂC{5‰m–®*¯_Ù eöœw:kгNE_¯ï=VíblOj¯uÅô4»®[ñ ×ÉÛ)*ÅfohûÏäjVù»Òn»¯Õ„±¿z¡ÐATb†a†¨DT¤%I58˜¢¡kαœJÿ¯KÜÔç /VMÿ¿Ð°BNµK•ôßÍ¢"i%mQbˆH-êf8mÄ%V¸ª×»ÔÖ‚b¶àÌ4ÊdˆÆòvÊæ¼º”%8ÃÊÒ.k“,6,ZMf#}q4¿ÔðœVÚZääflOXOrq-Ž–×­]Ö¡§)%ª:Vj,Q0r«¤¯™Í›‚§[Ë9Âo¢2u*¦4_Ëj§ÜlD ±–-Ò¢Rnxt­ëdë]Ë#´<Ò=ÉOu‰K©©·5¬6›É7¬ºD¥â•éhÿ^ôÛ»nz0Û>é8íUíÒ5ëW•£~qãÅ‚ÝþÓªýµ0.˜^í˜TüÞPÕ§’Q-:sõ.s*1 Ã0 CT"*áNSNBO%»QÉxbŽ×ËÓ6©EQÁò¦éyŒ.‘šçèzVS…9ªPVú™M'Ìm1G”øŽµ3_Ôzýpç©Ù¢gi;DÙ ©íôïM22®¨§ŒÕ~Ò¢R"bÝgÝþWûÛ‡³î×^C²É”º‹¨Ä0 Ã0 Q‰¨„»h½Jc?í?4D‚•<ł¢2_k)qØœ9/®¿<‰ÿŒK®ÜðÎë4ìÌJ©Þ’v³*ÉØTp˜¥å©Š%2Rmvý¦– ‰L§¥ÖT™GË-’㹡¢2&*ãi©«d1­zIf¬vI‰»Q9Y™¬ë^d•‰¶]1w”¨4aÚº¯‘DÉåÁŒY Œ ºý{”*·Ì æKµd£Y·²õªöNO *CÛÉH®3+•fKjÅ”•p©ìêƒI›ó5Kz¾¥?,¸ÛôlB uD%†a†aˆJD%ÜUÔÌ×ÁÄ'å¤náb ǨWÈŬä8½– ugñŒ'$9­¼QQíu´éx½aJ Õòf2 ~èd\ ‡N ÎÏD­Œ¥ùв˜á•¥´'¤6OJ­,¬Í9}骫M⎀ªû²°N'æuŒýµG-æ•î2¸CV'+“á-.ËlÔÙvZyt».Of,DTªö.Ìzç{Zb3Ÿˆ{ÂTùš3g±”šîo‹ÆLÑÛ•±ÐŒ«aíä$ê‰ö3ÈFgs–7ºÿb£_×å‘ì…†?#*1 Ã0 CT"*ᾤ§¼”*ܱÓÝÑqíÎè,=µžd¯7îyå(Œóvo®^=}žno7Úh²2uvX~í•L$&2Ö í˜ËttÛ·c–¯·‹íäžSÙëõé †›¢Þ¿|È̓¨Ä0 Ã0 Q‰¨€ 0Ö‹Œ[Ac©»'!TÄã¡öˆÊH=ÌÝQ‰a†a¢Q “ˆÊFA‰Ê˜Ì¤ŠÃ—ÿ¸ÍôTÚ䬚oÙ öÜÕò3™RQ‰a†a¢Q pwñî»ïÊõë×åÛo¿¸«0Æ(ÆXQ póöÛoËÒÒ’\¾|Y>ùä“[Žq®Åµ¸×âZ\‹kq­q0Æ(ÆXQ w5ˆJ@T¢•ˆJD%¢•€¨D% €¨DT *•€¨D% *•ˆJD% *Q ˆJ@T"*•ˆJ€‰ùÙÏ~p×ròäID%¢`g‚r{{Q p/ˆJ Ã0 ð»Í A‰¨@Tb†a†!*•€¨Ä0 Ã0 CT"*•†a†!*•ˆJ Ã0 ÕˆJ€]¤'ÝnWº=D%†a†aˆJD%ÀXt$›’h¢èù¼”ŒËÔÔ”¤+þçݪL«Ïfru©eÔöXF:;¸f¯]•l¶$Ýû°=»µ¬j·¸T:“[Íü@¦,Sø¿NÔÏš‰FdFúz›÷Æqu‹JãEA?\X Æé¨U¿˜.‡±wÈÜXD%†a†aˆJD%À¢§<Ê“ÖéÞ–c{ÝŽZCÓ½¯ö”º–q{Õ9ÚC®k_£7î<Õ¡çêŽ]VÏõ;ß²ÐU]§g¬¥Mì—vXîÍßoD%†a†aˆJD%À}O·ž—xT{gòïVý­Ì·†'3•ÉJÊò|Ú!ɈJ Ã0 ÕˆJ%*%*c2“*îŠwî^£×®J&1#1>‹ÏH¦PÛ늨Ä0 Ã0 Q‰¨¸e *1 Ã0 CT"*•†a†!*•ˆJ Ã0 Ã0D%¢Ã0 Ã0 Q‰¨D%†a†a¢Q €¨Ä0 Ã0 Q‰¨@Tb†a†¨DT *1 Ã0 ÕˆJ@Tb†a†!*•€¨DTb†a†¨DT *1 Ã0 CT"*•†a†aˆJD%†a†a¢Q ˆJ Ã0 Ã0D%¢Q‰a†a¢Q €¨Ä0 Ã0 Q‰¨¼¿Y[[£•†a†aˆJDåä´^”½{Ÿ—¥ —ȼpTöíÝ+‰ìé›;ÿÚy™S癿°|í³'ääÅÕݯÓ-:ïÄb]µãÞ½s²¸J?»X•ù§öÊSGj#úšÚ/±WææÏ#*1 Ã0 CT"*ïc,Ñ÷âÉeÏç'íSbh¯)ˆÎ¯ÝÌùe¿:Ïk‹+Û áš]Üeñw«Î»VÏQm¸QyŸ‰Ê#û÷ʾWk#úšµßk‹ˆJ Ã0 ÕˆÊû—‹Gç”èyQ–|¢,¡Êϼ–5ÿ}þÄ’ë˜ Y¾xQVT¸lëüiYX8)‹Z>Q·,‹§OÊÉ“çeyù¬yŽ Q¹r¾hÈ_,.ÊòÊš¬-/ÉÒòª>ïiõÙêŠ\¼°$«®c–—.ª}Öœ²,]XT×9)§/ÈÊFðy½×Õåo­l8Ÿm¬´äÂÅeÙp•ÿüÙÓê¼§åüÅå`±Øº(–úÛŒ²»Ï±±jœ³¥ÊbˆÊ„,.¯ÈÕ& ꜗ½eÚXY’Ó'T[z·éö0Ú傜\X“gÏ;uô¿º,T;­¹ÊñÂYv^¬©vºèü=ìzƒ·oÿœzÛÉÓgûçÙXõ]ÛÞ×ølÃw.¨ã¼bleI}ÖZuÎeÜ£=ïêc£úÅ Ë6\ÝðöU}¯UÝík\CÝ¿5£/må¹o–XüÕ}Mï·ÿµÓªþgÍsœ_Z^¶ÓÁ÷Q‰a†a¢Qy÷²qQžWâýÙ³á°ûäôʪœ˜SÞÊ}¯ÉŠk üÚ¾½–³ÏÜ˳|Ò‘þ탢Ò{žýÊ›³øÚ>Ï1ÿT8dþ{vÕuŒ±Í,ïŠ}ÆåâÆày®ëœC¦¯›Õu\9;Pþý!À§éëµ,Ñt4±×ôHÚeÕÛ³ò±)*Ûcþ¼n峃۳'—¬rí/”è]»xÂ,kPW_ ¼oE«ÏÏÿ7ɼóÁȾ6ÐNÏ/8e;™Mø¶?#g—•†a†!*•÷ «:45ë|+¦weï\ÑôºÙ‚`þšo ü¼,šÞ¾U)>o Ï5)ÎéñâŠÞ÷Ä‹û‡ˆÊ-S€¸CcÏ™Óûž¾hzž>>çµ=?‹fØ®!@æŠZm(`{Ä6CCnÝç°>;D•qßÓóuþHÂ#ççÌú\Xó ¹yóz'Z†Ò!垆—­%/óQÕ\ºUKðí?tB{ÖVM±´Ï@JÔ›ÿÑÚ¦¼w§_K8!ÇýöÐu\:™í×ÑS'ýr 1¯ÅÊÂóº,û^<Ù§û”hq=Xô°öµEݼ]uÞí:©s.¼¨Åb輮 CœîŸ÷xµØ|Í#†—OgÍ—'—­cT¹N·ÖìÓžëÕ~ýQ¿vA^4Dê3'ú^sD%†a†aˆJDåÝŒ=p^h¹BA­A÷þì‚,--ÉÅE°gß‹ ¾üy—(KX¢lY²û|ï•“æñÃæT&<¢r¿)NW‡ÎG•†yþÐY8«Â3ׂÏ;‰¨ÔÂÆAs’?!‹*rcˆ—×hÏœPÛ/jizèŒvY^p/¢áš·®¿vÁ:îyUþ…R<± G³sŽ÷·‡]ç z4„Üþ£*vɘ{÷Ù^ÀÓ‹gxÿF]/HT¶¯qo–[*<ô‚œU!½G2…UÂjS»Îó6œ9µ¶×t¸§|C‹¼9]‡œö@ïË.N$*Í6t{C ñØZR¡Õªlk²ÜRõPa¼§ŠòÚ‹ý¶°ëÐ÷®êû60?rœ¾æòÚž|ûû°h ú}’-žÅ¢œP÷Ä•û½ÑˆJ Ã0 ՈʻSTš!~û\a„[Ö@wo k¿Q¦„ˆ!´GÄÉ0Q¹@TOT^§ÖYÉ>ã.ï~)YfÃ’•æ<Ó“óòÌ~WݯY^7ï|CÓ#ø|QNÏ«2™{Æ/*ƒïÛØ‰¨ŒcöI°ZßÛ­ï…bß~I¨{17÷¢œ_ETb†a†¨DTÞØ^É#®0FÓËõ¼ ÜØ0×®\SÉUV¬PÏgŽ^!ÊVô³C®9ˆÖ5ÂDå‘ókÁ¢Ò½û]¢wÅñ„n,/ÊükEË££æ ^X0ÃÍLßyGytx¨å©\—±& ï¼Aý½ûž—Ó—äüIË{gy³.Ìëò9©Â=UVÕÓGžv—ßNêS\Ò‰flž½.g¸8±ÚU ‹ç—\í¥÷ŸHTóY­Ä: K0/X jú‰˜Â¯ç{ÃÛW µ„œ¸°,«*“lѾ/¯ó îOÞ„@G¬d6û\/#lù¡FVÕþ5^;»Ú/D«µï¾çªz¨L®EüéÊ´jŠÊ¹#rQ%¤Z¾xZž·’îqæTŽ!*Gô5=ÿxŸÌŸUí½d{xux«ÝÆûž9"Z*ÛìÙyÝfÖ|fD%†a†aˆJDå=€åY´æKžx~ïàò"v¨à‰ç­ä,—ÍÁuÂåé»`x¥ñ³"Åû!“ûöï÷&uñ ºOׇ‡µ·.ÃÊêÚD×DTb†a†¨DTÞ%¨È1ÿ£1¼ˆÏ«¤3Ú |zeø¾Æ:‘sû÷9K…Ðv[ˆJ Ã0 ÕˆÊ{cí¾ÄþCza{Ún’‹'Ô#jI–ùÓ­ýN%ÿQ¡«Ï[ᨴ¢Ã0 Ã0D%¢Q‰a†a¢Q €¨Ä0 Ã0 CT"*Q‰a†a†¨DTÀýŸàh- ƒ1¢Ã0 Ã0D%¢àF¯Í˜33pëì 9yqô22ëæOImÕøÿQõÿ9óÿ“–ïÂQµVeâÈ=’äG·åÜü¶l-˜YpO,m *1 Ã0 CT"*îQydÿ^Ù÷Úâè}×eŸEÙÅ1DåÒ;2÷Ô‹ra]­—yþˆ¹ôÈNDåù#ûeï¾{GTŽj˳Yµ¼Êþù±ëƒ¨Ä0 Ã0 Q‰¨¸+Ã0—ÏÊÂÂI¹ØZ’#Ê»¶ß%„6V–äôɵý´\\^s>_9_4Eå‹ÅEY^±>_[–ógOËÉ“'åôÙó²â,Y³.­¥–¬o‹Êå‹‹rraANžv£Ym]0·½°$g$BEå°²®-/É’ú{mYŸëäÙÁël¬\zì…¥eX\ºpÑu¼j¿óFû-ÈâÅYSe¸ØZuDåþ×ÎJKÕÏhß³Z²á.ó²öVÎ_XCTb†a†¨DTÜ‹¬ÈüÜ^SظIÑ¢rùì‘mÙ“K¦`zm_ÿ3C„®]ñ¢ñ÷kžòŸ7¯úlQ‰a†a¢Q p¯±8 h”Úgy/h´ïù#*tó„O,ÈѬ%Î !éWZØ­Ér«%/,Êé…¢¼öbßa¢rÑ~û$[SØÙå½xtn@”™!ª#ʪ…¡ë8%Xí²¯.ja»àºÎÖÊiÇ&*íóöÛoÍ y]t…¿öõ,x¾/Êí0â³Y³=ή"*1 Ã0 CT"*î1.ÌÏyC;MK­.Úá¤ûdÿþý õobNææž‘â…US\íw‰Joé>™{f´¨´=ˆúüŠ}û%¡Î?7÷¢T«†ØKÈ¢K€­7>•£Ê$ í²kAºßs·è8vµì…ù„¯ýÖä蜜gÕ%0íòkŽ *1 Ã0 CT"*îaOåÞçå¢óÙ²d­9’‹:4ÕÝuõ‚åüò†#ÌŽœ7’Ì´äB:/-[œ-G{*èÕ î¹‘‹'äèÂyY·®o†¨z<«ƒá¯£Ê&*uyT²œók®óuBwýÇ®?âò€&tû9I{t;ì"*íº/®º—I™3ç‘^XCTb†a†¨DTÜc¬Yblÿ‹EYZiÉÉ׿\s•À4“ñÌɉóK*´uQIelQdyì‡æå|ëZTΑ‹+«*›ëi=ÿÑ…!s*7,á¹ï™#r¡µ"ÕœD3ÙÏ\QeIµ¯ÿŒœ¾¸,Kö¶ÀD=áe •Ž V×YPÙYûe×bQ‹>µ¯º-µíE«^ƱÖZ“{ç^“³*ì‘göyçTú–Y ðT„æ"*1 Ã0 CT"*î%.úÂVuöW=pcY‰3OÓ„]\vBeOsèBjœkÝ 1}Ê’îÿ›a³§˜ÏÉœ:—• Ö¶ÖiyÆ•evÎmûƒ³¿†•Õô(îœi{A7ZgåÅý®c÷=#'—ìeR.JÖuÞÄóÏx<¨«N˜ …LqþÌóæyÝžJ»-û¢Ò=§R{†÷:Í’"†a†!*•÷0*ÉÎÊÊÊÐe-VÕ¶åÜskk²±á;ÏÆ¤eÐÇ­¬® ¿þêÆXç +ëXÇ)ÃÚêà6ÃÓûÌ‹G¥I¶¶–äEgI‘1<ÅV(­;¢Ã0 Ã0D%¢¾3áÃG­ð×C2ôˆ†jbAm+9u6ˆ­†ºÏó^ÕöR¥nÞƒ^«fõ»šs¯uÄ”ˆnI¥h´mEšÝ­‰®cöKu\˶̾X,–¤ê+ï ¦pÞqûm{ô÷bàe…]¶¢”Êý>4®¨¬¯¯Oß ç^µ¥«ÚÍø~õûEYÕ¥¢¿§ÎsAõïü¬9ØÏªû¤Ÿ=§?—*5__ï÷ùÁã†= FV¾Qß]WŒìãýþd< ªÔÛ]o„BÍz6z¾ãaÏÀàvï³]õoÍyÛ×õ¼˜äYvqž£N[ùÊd_+­¶ÔJV¶ºc”iH ¸Þçïe-*“å~¹GöÍ žAªïÕï{×ÿ<7>ë1¶ATÜ~<('Nœ/¿üR¾úê«@Œmo½õ–¼ð ·LTV3Ó¡”ÑdÉù±ÌÏF|Ûg̷ö¨4~ԛŤÞ6S?¼IEÃ3ãiëú­²LûÃ7§³êǾn~±’õŒg­ApCfŒ²©+¨ìTeÖw½ÈLÎ!mÉÄ˳ÊR7-þíQ)wF×Û¾îú­j:>xÞHRšæ ¤)©Ø`™2U5¸NÅ\û§Á>à¥ëŽáÁª¤ÌóèºTÚ<š(ªA“=8¯šƒ/û^' uçøþ=ʇÖÛ¹Ïñ¨çïdI µV9=°o²Ø0·URÑm‘xÜê;[ôxk½Ä¤Øìqo_N¾õ‰ íû^…äÀyùººŸãöÛrø÷Â?È­çBg¥Þ_Túëûd“ý>1仡ë¡Ã¾7JÄu}ퟮ^”ìtp9½^'ÿqáÏ‚­QÇ~4´|[#ž îïÅè>®žm¥Ô`¨y¹e¶QnÆÿlŒKÉì‡ÃŸAí0éwc*š”–é ^Lò¬»Î¨ç¨×Ké-ÓÅÀï«ñ¼k‡–)°¿¸ŸuÎ} xþffä§…†YîqúæDÏ NÙü,ê ým—õ÷*×@T"*n3=åÍ{ê©§ä³Ï>“¯¿þZ¾ùæùæÛoå[ÆgÛÛÛ²¾¾nî{KDe·*Ñ)ýÆßþ¬”ˆ8'Ü2W³BŽòz0‘­iQK+/CÚ)kmHg¤ÒîYƒ/{У„Ë´=øÒo«– É«7õɈ)¾Ú®jSÄmVÏšçÕ ­/*{R4…д”ÛÖ|%£Ë\lJ³0k КžbÌh %´ AKu¹¨z«Þ ?ï@;ª†ÑŽ©Š5P²Deª¤†¶è6FJÒ‘ÚSS—Y—(©X¡³íð×H4*Q›HD¦­¹eÁb£'…Kx5t›W³º|å™1De,­<ɨkÀÜ¿V4‘—¦ñ¿Ý œWeÜŸª!Rº5«ý¦Õ}7êÕè×Ë^³yK”÷¤d>ãRíöÛ+]nšÛŠ ]–”5°ÖO½¯]®X² ÏÕ¶³½1¯“*)k£.¿ýûXÿ%‚ÑöÆ\XUþÐH«¯‚ÇdçÌþ•bkkÌ~Ûù^l xsq=nôì«®wJ…ø+*ýõ½xº¿oÃúnè67Äx¦ÿÝ0^6eØe5^.M9!Ýz@Õß õ 1Ú&žÓ÷ªWÏŠ€-ÿq#žádž•/ü»ëm»}¼W“¸yß3Ö}W/„¢SæË´·Ú/‘×ÏÆž-Í— Ð{í©ËØ}¶ái#»}Þ“<ëîú ¸–»Lî6v_Íç¨ßÏ=‰Êð=Ýu·oŽÿ RÏS£¯M%ôKB»GïL~D%¢¾ãtÔÛÕ¹¹9S0Þ¸qÃôJþéO2Ù¶þµ=•]Beì{«<•=òÙh4¤j„6å22mƒ¨ž+i GõãÙr‡zªÐ'#ÔÏã‹¥=¡¨}ï—ýƒ³æ_j¡á ›Òoš#ÉŠ5ˆˆ˜ƒü²)r"ÎàzÖhYoèQ©¯e Þr…¼äry)äÓz ¢-æÛgÏ€KíÑ×ïTô`'ïz»Ü*%¬ù?áç šSóˆJß|SµÝ=èé´š*ìN…|©p°l:an³hasUíÚt")ɤE"!iåY.*­ùOîr«®† 3ÂÝŸX¦6p­l½:¯ªŸÕ¹Œ6K”ad ¶ŒyW:©†á-J«ð9Õžù‚d“Ö Vµ‰¿Îf±Õ:)GÚv¹òÍ-oÿRýôc]§?ÿ¬U²`4.ÉL^…€†~»½"…–ëó¶öH&Ëí1ûmØ÷" }{]i5U?Q¡{¥BNR³ýzŒ/*½õuï[#]W(ô`YùŸ°·æÉYw£Î3 Õî*L°Ýg>lø³ üذò…wƒDåÐ>Þ,˜÷Ø-Bºí¦&©ŸI˜«g§­—Rá÷Ú]—î„}Önï¡Ïš°—™£žõC®ö5ß~°»æsÂ>6¬Laó1=ýÞ÷üõ‹ÊqúæNžA™ZÏy¶ÏšŒm•·Ÿ+W®ÈßýÝßɧŸ~*Ÿþ¹|ñ妀tóÅ_Èç››²ººjî{kD¥zƒ>ë û‰Æt¸{  °Ø¢2âdm™§çúÁVÞ¬iÓQ÷z¼ìý-Ï@¢X–dDÿkx¦³EÏGT^>+ôÉñÜ©:ÄUØRByWÍ,¬ž_ÿZz0s îC¥~Þ QSTöš%OÈ_4÷¼õ-*Ç›Sé•Ñ!÷ßôøLEBܹPÝ­¢²2ü¾«Á¨~Y`‡²E¬¶TÿÆâª=§%Wë è¼»—öÿË·g$f–µôöd×1…@Q d£®·XÊò@ø3MúŽ݃û±úmÈ÷bd¸mDâÓ;•é@QYËÄ|ß®dãvò•Á²v«þAu°ßmªzOÇn¿,(4{Ù¯cf†çn@Ëð{íéÏ~7F>kB~F>ë‡\'ì9:ž¨t·qÇóò"¬L“ˆÊ@Oå}s’gá±¶_ˆ4J³#ž“€¨¸Å¢Ò˜SÙjµL¯¥!. ñèÆøleeÅÜÇØ÷VˆJÇó•©8·ÔokU8`¯®l\‡[ê7ïÆ›í¶5§eÆÚ/l@Õ2Ýöü¸­­þ´ö¤)ï–3O)*¥Ž1×¥? ÈÖº^Qi{*gŠžÐÁr>+…jËš'3#ug›ºþ”[Tê¥8üâÄñT9ï0Q™®vGŠJ]&#µãñÎD}¢²»ƒÌ§a¢rj¶à × 0jé{•VB¹UÐ/ Å1³¬Ž•KTöê9>çjë­NMrj¹€j«·Qéõ0;!s^§UÉK:§½I½n[ÊÙ'Ä4è{’©ö=ZvX«Þwœ~;‰¨lJ »t’5r»**õw{Æ5¿L_s˜¼1óåF¯U‘L*gE3¨5µ‚)°#}÷q[#Ÿadž•/ü»;(*Cúx«hŠœD©/VšÍIÈ¿<ë¶^êˆ9ލ´ÚoÂ>;LTŽZRdô³~Ô3+ø9&*»Ï‘~ÛŒ*“÷ž•éª×ã󇾟ی}Œ}oMøkÛ~¤„F"1m†bå¬90RÚ“o:Uì{1]¡±¶ É*±¤“¿T]¡bq×t[¥œ{Bûìd¶-æž»èüÝÏÊY=ø°L=h/)ÒQ)o¶Õ™t1ðº/ŒP «l*™LzÚª$f8œ,­#ÎëoãüLÔÉ éo{Î1øèµJzÞ}ÞxB…g©rEõœ%'“®/ÄÓ’:dì^Ü»8¸¿.Qɘ ):¾{Õ”dT ¡·ÂƒG‰Êþ±z~fPø«í5Hļ[³•VþRÔ-ö⺘gZ4ÖϼKäœÐ¼I®ã¹ÿ³¹! º«0ºYw˜ldÚI|4^¿íŒø^x©û²ÍN«¹³1«ï¿Ïþ²·¾þ};µ¼IF9§gty]¢Ò]V}¬9fí~ÖÖ¤€•¬7‹rÄð°…h{Žk~ =öbxùB¾»ƒm ]CÑèOžûKHµm‡N§<ÏÆØ¬ÈiĽöµÃD}Öõ,Ùx^¨gý_ªÿ''ÖºNèsÔŸ1×U¦»Ÿ#~úKð³Îÿüu{¨Ç훓<ƒœzĽ/;Q pGD¥±~šá‘4’òÙ^gŸmÆÿÏŒmF†Ø£GÞÒòtÕ›ÿ¶òˆô†í£’†´Õ›ÞÎ.®ÃÕS ãšÝÝ:_·£ËØ^~ϵºu%æfœ¥(œðµˆw!ñÐó”¡«2ŽSÞžòRªsvº·7ëp§3Ø·;IU{D_›ô\CÚp’ë8íÒ»¹kî:v¿íÝ‚ï¼ò>M;"¨Ÿ8'(4pXc?#|ÇMô,ƾ´ *•ai„¶ž={VÞ{ï½@ŒmÆ>v2D%¢Q‰¨€[JÛþ𔢯KyÄ2Cûªû9Âï#¢Q cFò³?Ÿš‹y.(îMžðSyx6¯…äÁeê/õÒ îϻՔ¹ZeÂÁãNÛMF/Ô~wSMkÛé{rSuQëçk&+÷¨¨l¨µ!£³ÖzŠ;dÂ6XØþnnŸ;ð]»¾ß»WþðçäŽÓWSCûªû9Âï#¢Q p;éµ¥^oJ»Y“b¡(ÕfÛzãÛR± ÖË,I½åKAßmIµ\’b±$Õz«?xi5¤ÑRkŠ5ªê\)UêoŒ›µŠ¹­XªJÛY3¬'­z]Új±fµ¤®Y”JÍ›9¯£ÊW.Õqei´ûåi7r©ÓsKÑTIµ²Œ²5Úý7ØKÒ°ê¦E¥öNö?W |çgÍÁWV•»µÔšjwù{¦ùYÏS'ïqöšw½v}xûmyëÝRõnT˺ýÖ¢åêoc­ÒŠ«}½m_”R¹ß†B¬Ó’Z­&ÍNϸÕÊ%óœåjxVÂà¶Öem¶{.¯€Ñ-³=ô½ïèûWª¨:mîG®vÍ'ŒÅÉg¤¬î™³¸êKµRѼ—þc2u_±ïI»š3ÕlN•¡ÝÝq{õïþè÷C¾_[½Žy¾î¹êófÃ{ÝV=è;Óo_£Ì6²êÞýö3ÎY®©ã…ÝÝ¢rXÙÆ(ϰïiÐ3§«úrÅè÷7øûü]Z>õýðì3´^aÏÿ5­>ÔVeW}³Tmè{ø½4ö­©¾á­[«Q“z³3â{9ú™8ÞwÚ_~û9Y–¦j'³-j¾>zÿ{êùZÑõ¬ÔîXßûÍé?Çûý¨dÞÚZ¯Wïß³Ee4­žC ½Ýuÿs$ì· •ˆJ€ÝöpURz=:›é¼´Êiïg†×£ØÐÇ´Ëóm‹&Kæ¶J*:pÜT<#mk”›‰ø¶Ç¥ÔÔ‚0™86ž®X^ÆÙm™J[güm.ȮúüûÍäjºlIãï¤Y·¨´?ÿ¨ê­óÓ÷êuùýNaFïÛòx¼Ç¥«i’åH¾…R︷“%KèÔó¦Xðî?+õžKTb®]‘ikͲ!;U™õ]'2“ |›?^[oY÷;â´©þ¿«ÌÊKÚ<Þ…Xå…¸X<Î,GÕz)™ئû ·=£Þ˜ñÛ»Y˜ëþê÷A߯­VÙº?îϳÖþºï”;Z“1ß¹§¥Ü²^ДR×M—/Œhƒà{ì„¿†”mTy†÷Ïœ)ï˜Ã¾?Aß5¿€ÊÏúŸ13R뎪×ðçÏà5?òí““ïû^ªg’±¾gÔ%Ø;esßX¶6â{þL÷;Tþ ç¤³þnh;µ%;üüÕ7Âs^õ<[û§z¶߉j:>¸-’”fÀs¤ò[ˆJD%À- ›T?¶‰¼4MË9sP±BBõbÎ1S!yUëaýÀ›jcŽ‹<ÔºýüTQ¿Ý¶EÅL¡¡é³ÖàP‹¼ž=x‰gÕ›~[ÎH¥Ý³¨50Psp5[°ÊÜ”dÄ,wäàƒSò õÿ´qŽÈ¬:‡Rqæ§¹…ä°ÿëÁŽª›q|¯&q÷ ¼[5(Ó¹úA’u\§¢2j Ö²b9³Q)¶æYõ®íÙ­YÅi]‡^Cf{a¶z’‹ëA\Ãz3ß¶Ú7¥œ¾qõ†¾"3S®sªãŠæõ§uùŒã*ó¸Ù¢ß ÞÖÚÃQ ›tî}Iyq†‡¥ÚümX±ÂÚÚ¾>ik‰d³Ô}ˆNiO‹}l)qŽ5íQ³MÚÁs·Æmï îX¿ø~)ï]~Ú~¡b‰¨¢Q3ù†ÇãÜ.§¼BÜ.¯¦=«|SÓ«Ÿ5%eã~„µªGÜ}_TÛÎDláÓ -[hyBûΰgNÁ²N[øþx¾kCÎ;k½H2B‰MÁ”}?´^[¡Ïÿ5]û6[Ò¨/…~/[¥„é%,´ôˉF~Æz~Žú^†•i’ïô`ùõsÒ>¯!ħ¬Òðûoâ9}ÿ{õ¼#îÃûƈߜö•þsܺÿ±dQ{€ñl=Ç猾NÓ*Ÿý‚Áý û­â·Q‰¨¸E¢2ky t¢ã­wZ…?å%—/H6iý«Aj«dyÔâÎÉL^… öC§ç»è·íÆ ÝÜfyµ‰‘ Ä,Ø‚¥ê¨Û!y]ÉYoÇ£Ó³’ÍápýÐ1¨4Αv%{hM¯€Qî±D¥/„Ô+j°h¼og=”aóí·ð·€l—ô·r{@äxëmy6%'ÔÌä9óŸz]i5›RWág¥BNR³ýûÒñx$"®ëëkƒÓœq?sy)äÓZ˜¹¼Ž¶§'¬­ÃE¥÷ÞêGaóúü}Ò(WÆuíž ‡k4R­¨Õ\F¦#.oPWJ‡‰ÊIÚ{ÜûÖï뢅«WlÙûW<}©bŠðˆ$Õ=Ëçr’Wíh°•g¦Õ,˜}Êí­ëªpd#9¬ ôù#žõlÜ*xÙBËÚw‚Ÿ9}/°¾¿F»úþ„Í·ÕϘ„Ç“l„U¶:„Ök°_¸Ÿ?þçÂà¾aßKãå„ñB$ž©™õ4¿‹¦Ðõ½ +Ó$ßéÑå×B×xÙ~ÿmQiô™„ú^«ÐÔv×öÖ‡õðß÷s¼SÑÛò®-Ì£–¨ôÍÿU}ÝýŽ=ì· •ˆJ€["*cN ûGÝ D£Q…ú7W!‚Ó’«éAb½¨òQwè\J‡™o†g]ƒˆŽ#j™˜™µ¯0Ø)wÂËÖVKò©YsðÐ+ŠÊˆïM½5Ú©¨ÔYHÁOS{#ÞºûmZLE½I=\å9•áÂM…Vê¯?,0"ñéQ‰Xa^EkÀ[wÂäôý4ˆ©û—„åÑñ2¼­G‹Êþ`oœ~.*c®6t_[ylf]ᦪ.fè¡KTFGŠÊñÚ{ÜûÖïêÒÕ"cÆíß?êñÊ8÷-•˜j¿x|VÊoëä+…f/0QOt¨¨LùÚÖNä¢D刲…•G{ŇõðgŽû>ŒúþŒ•Ñ€„C#ê5ªo‹²þ¾aßK·'½ézÉ5ú{R¦ ¿Ó£ÊßµŸÃ­Qí¤öm–%9ó„¥ßçÑ}#üþÛÏq;û±;š¡[KïHT†ýVñÛ¨DTÜ⬡½zΙçìשIN¥¤¯ª®V%/éœ~ËÝë¶¥œqB½ôàÚí)è¿ùÖóÎf¤îºv91÷o†êÚRÌf¤h½¹î¨™¸6è©´,ioYÆôŒ-*Õ€¦×XF_D Ž‚=ÞARµ× Ÿ©ö“sôêY§&9Gä4%a…;6íW#ç•)«mõŒ७¹¦Wc¦èI¶QÎg¥Pm „¿†µµßlÞÓ!¢rT?&*»Ù_ûíb·ït¦âõûDeºÚÝ‘¨¬¸Då¸÷?¬ßÖEŸsjÖ}?šNØ­ÇS™ÖáÂ5w"õý˪*|\ ”D©_¦fAyt" ©w†·}_ÜÎþ} /[hyBûΨLŃ÷wØ÷gð;ê¿*¼±×?o6Q}åxh½Æ•ö5ýû†/õ\h]þXL{¾î‚¡ß˰2MòU~÷ý¿ÿ½VE2©œÕÏÕoA­ C©GöÑ÷ß+*g—«šçŽM$*»Öõ‡ýVñÛ¨DTÜbQé zÕ!¯2¶šID§œ}L£ñ£_T¡OjRJë¤)†ÇÄ~[KÌì|¹DÔIÀa{}"3Y•¥Ry V²†™‚  @©òLé¹’%•½¯Ý¬J2fÏÒƒ‘¿´D¥žƒ‘LY•»Q²Nèð«ñçTªz¶( +a=7ã$ü¨÷“éã>ÔƒL5¸-¨¬Š­zIÏY <Þ_ï1De<­Ú¯ã:¯€yïcÓº‡3æ»j‰ÌÙlYe­lJ12ÿ*¼­Í¬š‹Uª«ÐӢ剌‹ÊQýh`N¥5ß2Wn„Š{€>QL kÅ”“Äœ+e ªX"£²Jvo¢½·Æ¾ÿaý>ȳV±Š$òFvÖþþ©r˳Ï'‘é´ÔT†Ìz9£½²ñœúδ¬D.Ój=Ê–3À7½©¡m`ß—ió7ìsZ‰zÂÊ6ª<ÃûÎø¢ÒéçC¾?AßQG|6óÎ3¦adgÍ%ô¾*ñRX½¶BŸ?þk¶}û†/í6·“îÄÒ®k„~/ÃË4þwzTùÝ#ãÝÿX2¯ÚW… WrºŸ©õ%ÃûÆx¢R?ÇÛzn°‘Y•Eº”u"•Ç•îçHØoU¯Y”™ÌH¡Þe€¨¤ávƒ ÅÖ7Ò‰˜7Ãa¶b½WÉLÒÓÞl—³ÖÛà Ì|ÉB?”ª®€;KblÖNÆ¡P1—Ì\äÚÔÕòzÀìÊ[0v׃‘‡V‘¸« J•-¯XõàÃ2õ -$ƒÿod¶µ3:^©VÁ›1ßq="6빊¨c¸ç¬_o-Œ‡…cÖ}Y1§ ÔBï¿]Ë#¥±)$½÷f&¼@øð¶6–ªÈºB£2;s‰ÊØ@èah?ò/5SL:ç=Qñ÷Iw»´½á¯j¿DbÚ|™ ³‡ªM3Ñ~¦Õ›hïqïX¿ú~uÈ'âžI;•ÀÝ(¥=ᤑxRj~ûzúY,!U;IÕÐ60ÄWIÏCµCT§#®{7¼l£ÊÖwŸ9Þûúý úŽº0Êç~ÆL§ŠcÔ+üùã½æÅ}þ—Þ—þpå°ïåˆ2MðU~;É—9 k§žT²Þ̬ÃCÛÝ7FÝÿþsÜ÷‰ésÚ^ýÏkþ°íyw?GÊíá¿U+Š%8L•°»^Lõ6º­Þ¾Í#ë©ymµ½ÛóÏiÊh!èÛæNja×éö&,OO—§3:t©×í -÷8×éºÊf‡c¹—–ç8§ý:»ü&Üj¿noòcu»´‡®ï7^[wÇ<ÇxýhÇ/C:áçì©õýz½Ýzé~ÿÇê÷C¿CïZ˜µ 9ƒºÍ‡õ¥aýlTèãzc—m¼òŒÿ=«ß ¹F7ìùòŒ ¯×dßïÛÿ½¼¹ïtw‚gnh;…>ÃÃûêHTÖèäôŒ]âÛœ&àñž¬.;»7€¨€;€^«ppÕ=‰J†‘Œ[ )b™hàþ¿ÿ»Õïë…´LÇ"C³Ì|¾w3VB*“U™tc£#EQ‰¨¸¿h–2’Hwà¸;7)•å0>´Ösãþ~×·ãÞÿÝê÷UZhdñLj´?|g鵫’IÌH,jd‘L@²@T"*Q ˆJ@T¢Q €¨DT¢•€¨DT *•€¨D% *Q‰¨@T"*Q ˆJ@T"*•ˆJ@T¢•€¨DT *•€¨øó¹t×>—mˆJ¦#™‡§äვ{ªÜ½vU²Ù’tïÁ6¯f~ Sg¤s«ÎýàAóÜî6êÖ²25—JgòöôØÐòýò²LýÕG´¤ºfloÉÔÿ~Õ,¿ùÿ'¯„¶S÷ŠyleõæÊU~E]ë¯>–ÌùMÏçóW%â+kdæ’LÿãŠ4Ö¬2|¸b~î?vkkS2\ÇÎ|¬ŽýØSçÊÚÝÝW»~*1»Þ‡¯y·¯­I\}ž¨wöo>’Ø]ž¯€¨ø®ˆÊƒNÉ_¦î-QYME”ÐIÝavËË~ðA™úË[Sözþ§òðl^‹2WuªiõÿèØÂðfŽ =ï—”@¹$©_®Hæ—WÒ¿üTZÆv%ºo›×­_V/;:¡íÔ9Å<ßM‰Êu™¶…ÞÏ;œ>ÿG2ûÊUÉZeM¦[zß¿Ñâ×Þ'µ¸1àá«7ꦎ+\•Äß|l I»îvïê¾jޯ˒¯^“ê’¯~k]‰Ö{SÒ?Q"ôD% *î(—/_–¿ÿû¿—'Ÿ|Ržxâ‰@ŒmÆ>ƾ7+* •fMÊÅ¢•ZÓדFµ,…BA*õ¶tÛ ©7;æç­z]Zmå)¥TmX^ÅŽÔÊ%sÿrµ9p­V½"Eµ­XªJ»7Ä‹ÖiJ>UBgFʶóy³6úØë”«ÒqïÛëHÕ,_Ñ[¾^[êõ¦t»º>ÅbYš]]ãïB±$vÏi³îŽ4*ú\UW9µ¨TÞDu­z­&­®»l]i˜Ÿõ?ëôÏ߬פÑêÚÛšÙî½Î%i4Ûm¤…aL*­¶Ô¬òÖ[ݱÚwœc{ê¾—ŠU×áçuDÊÌ•¡f-*µw²·ªúVË%X66¥¶xM «R¹Ð •ê˜Ú…ui®ªÍåϤ±¼)Íóê˜ßu¥5Ä+Øúݲº‡/›ÿ–VEkÕ'þʇµ8.¯†‰J/µ_Õ]Õ©jÔéS)ŸïyiëÃui­ô¤ò»U)ÿLÚV}:­u)¾û©”×ÍïboYý­Ž/V×=ÜØ¯üîªwM+Ÿ‡–­y¡«Ïñ»5i[uíªkÌz~"UuÂ_GˆÊ¨#*?—†q~U£Ìm_[¶>¼6 *•»ÀÁƒåĉòå—_ÊW_}ˆ±í­·Þ’^xá–‰ÊjfZ Š)ÑdÉÚÞ–L|j`{$Y6Ï›Š¸?©iUf#¾}grÖ@X ,“1ß¹¦¥Ü ò¢¹ö‹¤¤­®•›‰øŽK©Ù ¨SWò³þ}g¤f»VY¦}u™šÎªó«z%5PO£N±ˆ·¼ÕÎV@Ý53¹šWTvÊ1Ú3]í‹ÃrÒÜ7×p•½W7Ë¥ÛUýÝ)™ÇMų–@iÈŒužJÒ¸VR~ëk£‹¦0,S¦ÚÙ¾£Žm•·'‹›••Æ÷°m¶ÿÖj·ïM´ˆþ㪴mQiÆ{%ö”ˆª¼ò±gÿäâfà|A#TsêÀŠtVµHŠÿr}ÐꤕW&•vÝá·º&³3¾ÐÚŸÛžÙMIy¶]’W³—†#Óò†ç¦WµÇúø'ûfË·)¹Ÿ<Š\j}nÕ±ýòêNDå†dÿÖêü‰Ô7tÛûëtYÊË<ÿ•ˆJ€›Ÿ/ØëÉSO=%Ÿ}ö™|ýõ×òÍ7ßÈ7ß~+ߺ0>ÛÞÞ–õõusß["*»U‰b%Uv>+%"–Û’FaÖérÓóï˜y.5W3¦[¥Ù’F}IЦ˜SB±m ¨ŠÞ¶ØTb*å#Ýš ÓùÀ!•tÔ)GÓ*G"¯E[χŽèryo,4k ¼n#¯Ëœ}_òÓ¶Õ–FQ ¼™|Ã9.–(˜çl•ty#V¨i·–Óå/·]uŸ–J[ Ù‚éùSÞ¾®KT*caÖØ/!MËi–!:8ß²”4Ú=iÖמ¦6ê[Ïš畈îŸÛÛFvù£ ]Þ­vÅ+TCÚ7ôX[ðZí`Ô¡dŠÒ¸T»AÂJ‡ŽFrÉ!¢KöÂæ€¨ìÿÿs)ü\ ›â’ö¸U ú ÎFû7³Œvøk±µ)ÝU5ŸÑ`íóÀ2L$*7ÖÐW·×6®ÂY¿^˜—8DTºþöÎ/U^ïW>1EŸ]§øׂçy¸êý℻†¶¡ 6cìµQ™q•½Ûº&É¿õ†Òæ”gzÀk­²êÆþæ²jƒ¾·•ˆJ€›•ÆœÊV«ez- qiˆG7Æg+++æ>ƾ·BTÚªéLÅ Gs‹²j:fzëN¢›¦$¦üžÊŠ×S9Sô êËù¬ò^¨ä7i2Ys'ð¨ä%[¨†ÂÙ¢Ç ÑKé¤2uw"#\Ô +u3ÃRk½~ý³ñˆªãqS¬Mͺ˧Ÿæ9©¨4êqµ©íÑ3¼}^QiÌ[›¢-n¶Oa¨Ê;óF£RêlYÞ]-Ô³–5HTv·‚2¸Ž'*GÛ«[a¿—€ìÔ$—Í©9´½Ñó '•ýpNCÐ\SËY|,/¿bz»ÊÊûU·¼ŽiKܺ–-“¿ëIoÃZ‹Qý[²ùD>|KDeך«7Q¢ª«2SNB#±M¯YÐÇS*SjYÒÓÏœJ¿°ÒâI…wfË*+lSŠ©¸3§²×Ðâ$2–šÊ^ZWó3u2š\ðœJkÞ^®Ü°ÖQ4B0³Ro+O`Á*§hþc{ͼ³oÃÈL›Kèù˜¥–#ÒùŠ*_Cr í¥M•[‹J=§2"é’ÊÛ(™‰tìP^¿¨Üju]ù©ÕÎðŒµÅ„•ú¾÷Öt:»¾Fãç*ôuCÚ«›£÷Ua¿fÖ>ßÙµÔñÆ|SãZ½‰Ï¯·µW?çù€¨DT즨|ùå—ÍÐVgI‘ŒmÆ>ƾw¢œvxìTrdËe_ÉÓÖg{ßúÒ™o$´¨ü,@¸¥MÏ¢[TÚ_³ÂiO*—-±øá±O´÷ñ ·¼.Oç{zMnÈ ¨¬:¢òu¾­sv‘ûÆsj=NóóoIøk¯]—R± …BIê­®óy·ÕF«#ÍjI ¥Š´ºãœ¯'¯ÿŸ† üµ.mz¶ÕþÖ–??·îìÛøàc)¾ó¡O-Iý“žõù¦´mi«°Ùæ¹?ªk(•:¾°Úu©½oo[õÖçêU)½sAmû£ëœ¶¨<‹¨D%¢`2QùÀáMGÈÝX¿.ÇßZ•'ž[–'^X–>ý‰ã©œHT~Ü•GÔüÌG—eïá5ëØ?˱>•ÆçÏ)qûÖuß1HTö½«ÁåÙmQÙ($ejjÊC"_7·URÏçÉJgŒ9”mù±ŽücÀ¶®Ô?¸ªçWntäçOü›'<Öà)8×åçÿepÛ~õcËú±ü•oÛÿãà‡ÒSÛZï8îgï\ET¢Q p3s*/ÉñÕ?«~áš9¡¨ ´Íž3§R ů僷ÍM½½"¿øø[S`~ôǯÌ9•w\Tv*3ãtVZægmÉÍB2*Å–aé¸)&S¥ºòÖ¥Ýãœk-3ôõ¯Ž¶C÷ë¼Ú%"µÝoˆÑ\2Eå!Sp¾#•«›æß¯ÿLýý_ΨÐÙM)ÿ¿%ŦöBVçõÜÍÂÒ²)6øù–pÜ”Òá·Ô¶R]ûÿ·wG/UžqÇ÷ Ö"þ a÷“]ŽÁ.¢‹Õ…° ‹¢‹èfuÓ¹Y‚,&ˆ^ˆ.7ª‘kœ5N¤4#ËÔv:™i…Úž=ïûõ=ÎVžŠ„>Á‡ÈcçäÑ.¾<Ïó{D%¢RT¼Á žDç`-Ì,¬†•­Î)n7*W“á<+áÉâjx–;'9>|?ŠË¡p1}½•…çaîy6¨øéŽX©¬ŒžL£q`:÷ñòHhIV%/•cTÜ^„=ž íɪbüZ^ùú³•061._¹Îö\ mñïµwO¥Y舫ÝÓ{bîM‚0{,‹Ï­°“•0}ã÷4.[Oü·¾Ž‡Þó7ÃÙo³à­µX?Žùì?ƒzª¹×˜ ?ÌÕ£rq1žÑ\ ÅÕPˆç./.æ®1{öt/팕Êb!]©ïžÌÿR=øþ÷Leü5s¹œ Å„“¨]Þxž8l¦µçõ¶¿.½óA=“áH:„g_(M†é±‘p %ùó0V{ÚdTF³·BëçYXvÜ ¥‰é0Г宽WÓó›évÖøø¹8¹µ§µöžª¯TÞYÊÖ-£òi(õe«šGÏO‡òl9tLŸ«ø¸N¤~.ÄÕй0}o*íÈ&ÑŽV©@TŠJ€78S¹¿¯m¾òùr\Ô“†\¼'²úbÓ'ýnýò0·vyë*ãË»¥GÙ$Ù$ëAx(?}6n‡‘¹§~ÅÉÒQYêËÿ[†G Ñûn¦¿Ö&/…¯w禿¶ì ç'²•ËbáÓðÑîBSV¿nšîÚÏ:ŽUë¯;·¿æ'¼¾N‹qØ‘ ãÉ¢²½gãLe’{ׂp! ÔÏJf†Bׯ•úóÆlxÝápöZvåHñûáôžLQ €¨•M êI﬌Wˆ$׈|väÞ˯ 94“~ΗÇgâùÈ»M½Îû¶í,Ç{!+óoý{4_]å¹ùPy¼¸åVÙJòXµÖÔs×êÏ=¿Õ×?^ž[H¯ñQ)*ÞZT~(Þç÷eó=‘;‘ÿ?ˆJQ whT¢@TŠJ@TŠJ@TŠJ@TŠJ€-}üÕ”€ÜBò¾øùQ)*^¡ýtYDn!y_ü|€¨•¯p}ª>9hµ2/y?’÷ÅψJQ ðša™¬Ì}è[a“¯?y%ˆJQ €¨@T *E%€¨•ˆJD%¢Q)*D¥¨@T *•¢@TŠJD%¢Q €¨•¢RT *•ˆJQ *E%¢Q €¨@TŠJQ)*Ø‘Q À‡MT *•ˆJD%ˆJD%¢Q €¨ô& *•ˆJD%¼Ì¿t¥*Ñuj•8IEND®B`‚flickcurl-1.25/docs/flickcurl-overrides.txt0000644000175000017500000000000011600753627016004 00000000000000flickcurl-1.25/docs/flickcurl-searching.xml0000644000175000017500000002614011600753627015743 00000000000000 Searching for Photos with Flickcurl
Introduction This chapter describes how to use Flickcurl to call the Flickr API to search for photos - construct the request, run it and get back the results. The search API is very powerful and changes over time to add new features, parameters, result fields and result formats so the interface in Flickcurl has several aspects that can be configured.
Search parameters The first step is to choose the parameters for the photos search - such as search by tag, search by lat/long, search by license (or combinations). There are lots of parameters that may be chosen and some of the values are strings, some are numbers and some are from allowed sets (such as license IDs or photo type). The flickcurl_search_params struct is used to store these parameters and the reference documentation contains all the details on the restrictions. This structure has fields for all of the API search parameters that are not specifically about the list of photos result - such as format, number of results and paging (see below). There are, however, several constraints on the fields used in a search - some fields are cause expensive (i.e. slow) queries and the web service requires them to be used with additional fields added to make the query sufficiently selective. The restrictions are recorded in the API documentation for the flickcurl_search_params struct as well as in the documentation for the search API calls. Once the search parameters are chosen, they must be put into a flickcurl_search_params struct. This struct must be initialised to default values with flickcurl_search_params_init() which initialises the struct from a previously allocated piece of memory (or on the stack). The following code fragment initialises the search parameters to their defaults using the variable params which is stored on the stack. This is freed when the program execution leaves the current block or function. Then the code sets three search parameters - the user_id set to me which makes the search return photos only for the calling user, sets the tags field to "kitten" to perform a tag search and then sets the sort to interestingness-desc which asks that the results are sorted by interestingness with the most interesting kitten photos that the caller took first in the results. flickcurl_search_params params; flickcurl_search_params_init(&params); params.user_id = "me"; params.tags = "kitten"; params.sort = "interestingness-desc";
Result paging parameters A search request returns a structure flickcurl_photos_list struct containing a list of results (in some format). This list can be paged - returning some of the results in one page followed by more results on a second page and so on. The number of results per-page and the page to return are configured as fields in a flickcurl_photos_list_params struct as fields per_page and page respectively. This struct must be initialised to default values with flickcurl_photos_list_params_init() which initialises the struct from a previously allocated piece of memory (or on the stack). The per_page integer field records the maximum number of photo results to return in a single request. The page integer field records the particular page of results (each of size per_page) that should be returned, the first page is 1. The following code fragment initialises the list parameters structure to the defaults and then sets it to return the first page of results and for each page to contain 10 photos maximum. flickcurl_photos_list_params list_params; flickcurl_photos_list_params_init(&list_params); list_params.per_page = 10; list_params.page = 1;
Extra result fields Search results can be made to return additional fields in the photo results by using the extras configuration of the search API. (This applies to both results returning the flickcurl_photo struct as well as syntax formats described in the next section.) This is done by configuring the field extras in the flickcurl_photos_list_params structure containing a , (comma) separated list of the extra names like name1,name2. The known search 'extras' names and what they fields they return are as follows (at the time this documentation was built): Use flickcurl_get_extras_format_info() to get the known extra names and descriptions at runtime. The following code fragment sets the extras field to the single extra name original_format which adds to the the search results flickcurl_photo objects fields for the original item secret and original item format (like "jpg"). flickcurl_photos_list_params list_params; flickcurl_photos_list_params_init(&list_params); list_params.extras = "original_format";
Search result format Searching normally returns what is called a Standard Photo Response (SPR) which is a list of photos with lots of fields, turned into a C array of pointers to flickcurl_photo structs by Flickcurl. There are alternate syntax formats that may be returned and these can be configured by setting the field format in the flickcurl_photos_list_params to a format name such as "feed-kml" for a KML 2.1 feed result. When this is done, Flickcurl will NOT return an array of flickcurl_photo structs but will make available the raw content bytes from the web service result as a C string. The default format is SPR and is either chosen by format field NULL or string "xml". Use flickcurl_get_feed_format_info() to get list the known format names and descriptions at runtime. The following code fragment initialises a list parameters block on the stack and then configures the result format name to feed-kml for a KML 2.1 feed result. flickcurl_photos_list_params list_params; flickcurl_photos_list_params_init(&list_params); list_params.format = "feed-kml";
Run the search for photos The flickcurl_photos_search_params() function runs the search with the given search and list parameters, returning a flickcurl_photos_list struct containing either a list of photos, raw syntax content or NULL if the search failed. The following code fragment runs a search using search parameters and list list parameters configured elsewhere and assigns the photos list result to the photos_list variable (which might be NULL if the search failed). flickcurl_photos_list* photos_list; photos_list = flickcurl_photos_search_params(fc, &params, &list_params); if(!photos_list) { fprintf(stderr, "Search for photos failed :(\n"); goto tidy; }
Handling a photos search result If a photos search from flickcurl_photos_search_params() returns a flickcurl_photos_list object then there will be a result available to use. This structure contains the format name of the result, the number of photos and the photos objects themselves (for a SPR) or the raw content bytes (for XML / other format results). The SPR format name is "xml". The following code fragment takes a search result in the variable photos_list and prints it out if a standard photo list or raw content are returned. Otherwise it prints an error. if(photos_list->photos) { int i; /* if the result is SPR - print out the URLs of the photos */ printf("Search returned %d photos\n", photos_list->photos_count); for(i = 0; i < photos_list->photos_count; ++i) { printf(" Result #%d has ID %s\n", i, photos_list->photos[i]->id); } } else if(photos_list->content) { /* if the result is raw content - print it out */ fprintf(stderr, "Search returned %d bytes of content in format %s\n", photos_list->content_length, photos_list->format); fwrite(photos_list->content, 1, photos_list->content_length, stdout); } else { /* if the result is something else - throw an error */ fprintf(stderr, "Search returned neither photos nor raw content\n"); }
Photos search example <filename>search-photos.c</filename>: Search for my interesting photos with a given tag and print the resulting photo IDs Compile it like this: $ gcc -o search-photos search-photos.c `pkg-config flickcurl --cflags --libs` and assuming the flickcurl API configuration has already been created in ~/.flickcurl.conf, run the program like this: $ ./search-photos kitten search-photos: Search returned 2 photos Result #0 has ID 1234567890 Result #1 has ID 2345678901 Your kitten results may vary.
flickcurl-1.25/docs/appgarden-mobile-auth-page.png0000644000175000017500000021331611600753627017072 00000000000000‰PNG  IHDRK'IÂã•IDATxÚìýí³ÝÖ}ç ®¤j^¤*SuþUMUjôbŒ«éN|§ëvM„öÜ©q»uaÇs«f«;¶ÜÛvbÆÛc»o¶ÜÝöVÛÝ’VÀ( äÈwKÝÅPl– EÜ¢è¤Ɔ¤@´A ”ƒc”@ ‡2($¾óbáyc?ò"©Ÿ«>eñì½Ö€õ]¿‡ÅŠ¢AAAÑ…Q'AAAX"‚ ‚ ‚ ±DAAAb‰ ‚ ‚ ‚ÄAAA‰%‚ ‚ ‚ KAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAAñ®K€KAAqMCb‰ ‚ ‚ ‚ÄAAA‰%‚ ‚ ‚ K—Â[o=Û¾|_ûÚíAñ®áÀ¯À¶ïÅ[o=E #‚ K Qô=|üãÄ/ÿò/1FAïZ~ù— ÿøEߣAÄ»],<ø‡$’‚ b@4<ø‡´H"‚x·Š¥ƒÿ¿ð ôB$‚ ˆ!~ñAÄ»Q,EÑ÷È¢DAX˜È% Kï2±ôñ^‚A±ÿøi±D‰¥w‹Xz뭧ȪDA»°.Q–<‚ H,½KÄ’mßK/?‚ ‚ض}/-˜‚ ±ônK|…^|A± ø -˜‚ ±ôN‹¥ žÆùóGqîÜäùœ;w.<½§ýÚ×n§AA삯}ívZ0AbéKçÏÅk¯ÎñÏÿ}ôO`}ïpęᕟ>‚óç’X"‚ ˆ«P,=};ç®ÏÒ¹S:îÛ;î»ïK ÜsÏça±€s‡`Ýw;öï¿öÉ'¸Ø>¢`ÿþÏã>óAœÛèZGñ¬ù%ìßÿyöwhqº†ëyÎ$–– ¥øgƒ‡þ#³¿†ìeo†‘üø!<ø—_ÅO·­=L$–‚ bÄҹðïûM0ö+°w®ÏÒαϯìA¹عbùoåØa.ŽíÿUþáó8½ÑµlÜ#ò2DE§Åé2ÞsŽ ±4èz—¼ö¾ûðá…£÷áô³‚ì‡Sd?œâÍ~?ñÀCÆï#þÙßà­·žBžY˹sGpþüQ\¸ð4ŠâKA±ÇbéÜ Õûôýxö:Ýåßy¶µfßÉä71—Œ~Šy8«ã#åwö—bé„ùIHy?FÊÝ8»¡XºOâeHûI,-µô½ æAbiЪôÏÿÜ¿»‡ %oŠÌ›âìó€7Ÿù<2ÿáþíŸááïÜ…ü½Žg½kyĉßÂk¯=†³gŸì&KA±;”?뉥ïàɯ—Ÿÿ ”û<öì¡úóíg5Ü£|“ÉGq‡ò%Ø'¯pu{Æ Œî³§Žvÿn(0Œ»±}¶t¿:õÌû>;&Ådò»xà±;b¤.˼·±èœ³ð˜¡À0À¹Cüßæ½8qâ~ì¿ã£˜Üñ%<{úèJ±tϳO·a@,zá^˜æ]xìÈw:®v/<¦@™|“É'¡Ü£àÙí'—Š¥ªý¦ñ˜öÁ]Õ{a îø]ÜgÞS=±sâþÖw>ëØwÜ—×¹±ö³¾å^ÎþûîÆÉ]Ž \œ°ïÆ(°OÂö³wókÞÁÇøÜsŽ ®[±”çGð裂t~éчào>§­)~ø·*žþæ§°sô³xõ[*ž}òëø‡#³µøO߇—ž=ÿ¹ñÊ+ÓIAb‰ ‚ vÇŸõ,K;G~wñ{wÜàIXwüê`£{î^ lß]GºïÁúïG”_m¬g]œ:²Ä%Nú]œ<×w›ûU©ìm7¹#‡;ÿnsϳöJ±t‡mçŽâìÙ'9çŽ.K‹nx‡pßG†ûö¾gí®Xºç!aÔþαC»ª÷ üÆp_‰ŸÇvõ㣃ß•*Müº:»À΃Ι_…ñ‚½ù˜ÀÆ~aùü“îÑWÌ9ZÈ×¹Xzûm¦ù‡øá7?†×ìßÁS½þÅ¿ÇÁ¿þ/xàk¿ƒôÈgðâ÷>†Ÿÿèþ]ó÷νxñŃx'KAqinxçN?å#¿Rïòïø]<`ÛVk.}†ùŒÅöÂ~ÈÂô$øH³˜?Àw0©ïwÜ œ¾Rk!¾ß¸ ÷ÔVáŽ{{âæ×qlg‰å§õoÆ>2þ ˆâïÖ"b©Þ‚ð¸;KÄÒ³÷¼¿ìþm³ééŽ/á1ëKM{„Û±ÓKw| û["åž²Ìë}î¡æ{ù<޼ð åýu¿ÙqÓ÷6ÂKüM˜¶ÖOkûèu~ƨUŸ;¾óOB¨ëø›xá܆cÒj?c ÒäK°í¯4í?SKæ-ä‰w…X:ø­?¨Å’û½ßÃãö×ðÃÀ·üØ9ú¼þä><ýàGðƒ¿þ(~øÍ-ðƒ¿þ(Ü¿úüoÝŠç·àü×ø{ã_ã©Çþah’X"‚ ˆ=YúR/~¤µx>Ù,âÏ=T[DeØpÊþÝzln»À‰æLÄû^x§4Ÿ'7°Ç&]ëÓàÂ|G¯ù}±ô‘{Ü{ÖÆö‰‡pbû¶Oèx %–Ží¸8ݲö¼Ô ¯+–ËY·_†uLÁHü•±äýÒ¸éµÌkßÒ:·êsÇ‘ÃKc¸6“vûKa´ØKÄ0A\ïbéܹ#xÜþsݩӯàlOâ±ÚíÒÄÒÒï®K.ì;š~¹ïØ!‡ñ@ïó~¼Ðr{ãñWßi'H_Zµ®ÎÊ‘'Ë„¿Ù–®XùÈþ{q.NÔ‚”aÿ1{}Ïlê(~ÇN= œµðÀäW[BïÉÍÆd×b©™sC‡Äuw(í¹sGð“—Æ7¯âÑ~/ü×xáà¿Áþú·ðßg·ã¥Mœ;wdPh½öÚO|ÿqü;·áøwnÃWþÓ'ðì·>†ãß¹ Îc° –lû^zñAÄ.8lß»óBOÜŒïÂÙmm0cç£8±2Îäö‹í,w_ªÍ€Ý$X‘­-c­d—W,I+ÄÒi¸8ײ¶,dŸÛ¯w¬rÒ=ziMk,(ö¡ÍëÝÉš÷«¤_éPóäQ‡»}Ý»>®¯³‹æG—ŽI•Uo£1i[%Ë>KCsîÜÀ¡Àq݉¥*v)úÇïâáчXæÁ“û'xéŃxûmgIÅŸA–=ðÅoá‰ïÿ1ìÇT=2Ãã‡ÿO|ÿqâG-¸á½õÖSøå_þ%zùAÄFüüèûïáø¯•A­Š59{ò^L>Ò—Ç·ãÄ1&'Í&6©ãÚUžÍcÜÑK‰-¼F笣8rÏotÄÁû?Y/¦ï{ÖÞeÌÒ—Z‰&–¹á=XÇ[ÝÓKùJ-øN¿p>ÒK=Rî*“4b°KÀ!ìoÇzm\ï£8ö@WÄŒîød}íʵg¿ƒ{ÆÝ4ï‚ôIi£´ºÎ¥+¤õyH½ïL冹Á˜àÉÆjÕê³:¶ªŽc˜sýO×¥Xª„ÌÎÎß"Žÿ¯¼ò7H’9²ì‰µn|Yö’dŽ×^›#}ão‘$s$É?ÿùƒ©üƒôò#‚ ˆ øøÇ?¸ZPœ>„S§í…X¤s;‡qêÔ!œÞÙÔ5ʆY»p­à?÷$vvlœ¸f}í³6NŸ:Œ«.cÚQÞ_§cçrÇÜœµqúôaìœ=º:sÞÎaœÞ9¼bœ6©óQìœ>̯wîòɲ9G×½XºRDÑ÷ȺDAkøå_þ%DÑ÷.ó{ùI= ›ÜM 4‚ H,½“<ø‡øÅ_üzAÄ¿ø‹¿€ƒÿ𠼓{™àÄâJ M‰¥«C0‘…‰ ‚ -JWF(U.c‡qòäw°}ê0¹VAbéjsÉûøÇ?H¢‰ ‚ ‘ôË¿„üƒWÀõŽ ‚ÄÒ5Å[o=Û¾|_ûÚíAñ®áÀ¯À¶ïÅ[o=E #‚ KAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAAAb‰ ‚ ‚ ‚ÄAAA‰%‚ ‚ ‚ KAAA$–H,AAAb‰ÄAAA$–.J,Ñÿèô?úýþGÿ£ÿÑÿèô?úßµý?²,AAAAAA‰%‚ ‚ ‚ KAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAAAb‰ ‚ ‚ ‚Äu,AAA$–H,AAAb‰ÄAAA$–H,AAAb‰ÄAAA‰%‚ ‚ ‚ KAAA$–â pçÏ>‰ ÔAA$–.·Xzý¾ÃÞÚ*¹OÜtcëß[øñ±GpâC[x澟Ü÷ØâíÈwqÍó/|öÖÍxõÌåëà §ÄK¾ŽópØ{Ø^ÖÑ{¼"åÍ#waû„}Nb'>¸…#÷]¾~8B½µ…ÏÚå¿ïÆÑr^>qçýWGìÁ\xýÀ‡ao}ÉY^æ+îDzöÊ·îý²êþX]¿MX^Þêûôz`U?—~?îfn¶ï¥×ïûì}yWï±k±.×ý•Ü÷Ø\ÒgÄ3[[8ñ‚}ÜK—ï™t1ë¥Ý¼‡éùBXºLb){önüøž/ãįâÇ·‹°·n„wÏ—ñÒ}_Æïù2âíCøñû¶ðÄ~}ð÷©ùI™Üµ;±ôòÝxæƒÅëg/_'ûo„½õ…zA¶wmX]ÖžrVÇ[[ð]béåÉðœyð²]#övØ[[xáØa>¦÷ˆ°·>ŒŸ¹ÉÉÃWEìÅ\xuÿͰ·~ ñçŸýì­ñêÙ+;º÷Ëòûceý6dyyWðÞz‡XÕÏÄ%n®ìfnöî¥äž÷¾é ×½Xº\÷WrϯÁ¾éóKÄ’gk Ǿ&î¥ËùLº˜õÒnÞÃô|!H,]7¼ /Ü{ë½HÎ->`ý÷ãÍ:¢G4Ä/XµÔ…3‡pf»yæÛ!~LÃöã÷ãÌé'—\ëI¼ù²Õì~œ=„äÈ×±ýØ×‘œ8´z]•ÿ˜†W[õè´cÇÂOîx/ì-ñÉûjÃùSãÌ)o>ûuDëÈÎrׯ3ÇîGôˆ†tûaüøC[p–<<ùïã­“bû‘»ñʱƒ »<ËÚпöÏ܉'¶¶à=¤#;ué •õiúñÌ !;{t൪Om¼~ä눹ñ³Vó÷s‡‘ž°ðÖöCØ~DCò²‰ô…ƒx«}Ísvý··¶Fv¦¹vvBÇö#wcûȃÈÏmp½]ˆ¥ó§-Dw¾öÖÇlîŽû9{mß\8}¯ª®qæ‘ß„½õ›HÏ=‰äÛƒ½u#^:v°×‡.Þz¶5N?90W";qož>Úª…×Oªûkèþ\¼_z÷S}¬ª_Ùß;Gë~zóÄC8ÓꃷN>„tÛ^QÞêût×σs6^?öuDhxõ…C½]é‡?¦!zìëH{Ï©z?þ`oÅ™tl?¦á•cu?ÛඬŸ—Í™þsåõVçYraÇÂë'š6¿ùÂP½WωáçÝâóºj÷öã÷/Ôq£¾ì?ÎÙHŽð±Yx½ðpg±—Éëû󪎫î>ý{)¹ç½°ßw;Þ<ý0^ûeóbUz\ÁçÔð{xƒûkÙ¸¬™G\,µ,&gáÕÇ5l?ö ²S÷ã豴깈ózÝ3kõ¼]Õ–‹x&­é³ì4ï‹Wž}yýì;ŠìäA¤'zœlžÕN?¼ö¹4ïáÍú„ H,íÑNþ{ñê΢é¾íšgomáè~îõê[°·>ƒ·à"ýöǾwbà™û<ì­-Äg\àôýµkU…sç×—˜°?¼PþÐw“ýbó›¾€·vцW÷wÝýcßʼn[~{¾ÄJðÞ…ïÚ·~omІþµÞØþÎOlmÁi¹|½uä3°·¶pòdO,­êÓáÝÔýì‰ÏÞ‰.òc_èÖíßü6ì­-<óPc=zó>ÆÑö÷ñÂÖì;ïð$~rû½vÉÜr¸âz»KÝ~}/âöݹeßœyä3 }þÜ·.Œ}»,ÿÈÐËæðʹ°ò:Cóâ}ŸAç_ø Ž|â+x»loíû¬Ý¹·úÑÙ¯ÌÕGp¼·5§Vߟ‹÷KoN—}ôóUõ;wÇÚî‘;_Ç[[°oýj¹À?(Çhyy¬¼Owõ<ØÑq¬ÿÙ.ÀÅ›aáw?>rÀ“ؾSì}öaħøØ¿ô‰~Ý>†ôÜæÏ°¡~^5g: ÆGä…{=ú,ïÇ 6N~¶ÿ}¯låófÅœXœC=«å9 ÇƤr]Õ—KŸ §î_û_Å[p‘ãýÑÜßíúwïŠgîÑq~å½³¸ß¿—’{>°xÞô¼Y.º—Ï‹åuZ¸îzN-¯~®—uó¨#–Ni ÷ƒ½D,­z.bż^÷ÌZ=o—·e×Ϥu}Ö™"Âÿ\ãð¼©ú3;rûÂgþcÎåê=¼¶O‚ÄÒåK?þÐì›d¼zúhùܪ]š‡äa~óß~wù; þMÃ~_ëg*תfñûê}€½õáE½³ÂÙâ;<Õß^¹ãÆ¥…WK·Š·vÕ·~iü ²“qú»+TVgqpt‰e©þ}ùýê¡÷ƒG^Û†þµßzýþ–ûÂQD·oÁÞúTù?ŠŸ|b öûýÄ—÷éQlß~#ÑŸ._ÖǾ {k ÞcV-Nœ;î›§Æ™ÓO•׸½îǪÀ6~$ná©ýzý;ønáÉ»xø«•×Û­^wL»;þKûfGç/îO|µ|ÆÉÛo„½õ^lŸªÜoÚ;¢úÒ]ÐJ(Î…µ×©Æ–¿ðÎ<ö™ÁE¬ï­û«¿Øj»³,Ì—zToÍ…÷nt.ïÛîý±ª~¯Üy#ì›øË¾ZÚ[2^‡‹ '¾ {k ?Ù>º¢¼Õ÷éæÏƒ£¥±}’ïÈ&x_E/ÏlmÁþÄ—Ëq²pü}[°oºgŽ|¡»(9ûúŸ¸ Î>ˆ£[[xæ!þÙ…wÕã·ñ3¬ßÏkæLwñ÷žÙjmYŸc¬çåsßæ÷ß…jWÞ§ËçÄÐêol}¦#Žpî ¼J—uêËŸ¯x&üäÕ¢÷Éνðƒo?<ðj׿ZìWóÃÆÉÏ6 Õ÷ÎÆ÷ß7[÷ç[«æÅš:]ùçÔªû|Õýutå¸`í<ªîé'qòV.&_-ïéŸÜþÞ¥biÕsqõ¼^ýÌZ9o×´eógÒú>«çÆö!œ9q¨+*ÏÅ…s|ó#.ûá¹Gn6žn¯ÜõŽâ•ý"ì­”q­ÝõYõ^÷'K—[,½o Îþf7ìÌ·åúÆí<$ËWçÃKßþ:ÒSöŠëp±”=^.ªÞ÷ø÷Ý…WO,w»¹°sgN>ŒäØýˆú2ŽÝÄòùà¯ýrÙ´ ‹¾ë¯îï?|lü¸|ùp— ¯<þul?¦!9iø¾ó¤jÇ}U~Û{!VâáÄ Gk?pï‘Eѱ¼Oy?Ø[2N>rN>t¢oßÎwÞ_—ÿÒ‰–ëTimúɶ œÖðÄÖž{üPç!Üó^Ø[Ÿ*_ò-׀ﯼÞîc–z †ïöû¦²–EíÅçé¯×»²»K«æÂf×i탃×¾‡ë64×–/Vߟ«ú¶#nVÔ÷Áˆw\Äw¾öÖõ®yz@,­ «Ê[}Ÿnþ<(ã Úsìœ3'-ä?¹OôDêùÓΜ²ñê~³é?t~òÐøÉ#wñEñMŸAVŽ—½u#~pÇ툎gÄè7ÂÞúÞ„‹ì±Õߟé,Ò†½%âÕu‹Üõ±:ù) 鉇?®á¥{>§Ú Ø^Þ—ËŸ &¼­þ&ZõŒÔ׊¥þüHî7š››ÝKÝç@%¦V΋5uºòÏ©U÷ùªûëá•ã²¹X:´¸IZ¾7†ÅÒòçâêy½ú™µrÞ®K?“6í³Ÿ¥Í&ܧ:ÖHžk O|övDÜ…“ß¾/Ýù%‚³+–Öõ AXºìbIo@ÞÞzQ·oþCøÉþÁé¸#Ü¿R,.ÒǾŒcïk™œ?ô…rç­[“··Lö﹛ϮÄÒú6ô6¯ß÷ÞÛÆ‰÷U äžÛÄ÷—»Ìk-šï¯kêvµKX=œÏ<þ1þÒXÌ<اçÖ.qÎûÞ["â™[?€çz¨—~™ñƒ­-?}Çw ˜„;–¥cwáÇ•i/ÏF|@.wPìÁ…ó±ûôú¡²ô…ÜzhœßU6ܧZFÚzùÕnÒ¹'‘ïØ5çÏU.píÕf÷i]–½8~üì“ÝÔ£["žyßìÏÞ=œápiŸ>Â-=ŸÕ:®!ñ·¿ŠèÙCK|gõ½8Ú‰Åh‹%±%¢øg/Ýz#ŽÝwÿÊëí­Xî›z'·Õ‡•KØñcöB™UìÃrÿúá¹°Ûë¬Kb/ÉÊð|X*–Z1ܶþþìÞ/ëÄÒ’úá(~RǼ¯ìTs‡/X^záÉ5å­¾O7”ÔÛïî¸]=³u#^zR-­£‡»;»7} /ÿwuy½w/½ôȃ8wJljýw–÷õQd/ÜgJ·žMŸaýçÒº93´öoÚ·~¸c}Zœ—.â;o,ݽV͉õ÷/[ÄöI»³sîì×SÚÒ¾üÇ?[öLøsø7mÁ¾][OÜyãµÓ¸•uÜÈÖ.r—ÍÍ]ÞKmËÒ=ËçÅìV,]îçÔªû|Õýuhå¸`í<ê¹ãßÑŠÙ+]0w+–VÏëÕϬ•óvM[6&mØgKÄÒ…í»¹ mÅ4óq¿s1~pç!œ¾˜úñcá­Cxåž— ŽöÎÜùj¹8ºùÙÃxý±/Ô¶ƒ±¥ïÉ#ï¢ ‹ïóåƒË¹ýNœ9ma{ÿ6ŠY:zçÝxóôÃ8yßý>yâɵmX¶{xôŽ/#)}¢«ʪ æU}Ê_Ô[ðܬ՞&fiqaz¡|ÙUíh?¤ŸØ¯ãÂö]¥ÛÀWqæô!¼úw+xîñC+¯Ç“"|Ï|övœ9wébi¸o,ƒ‹üÈêdgÖ–÷ý•÷énž¯—óî¹o?ˆ·NĉÏÞÈ@g•ÕÆö‰Cµè±?qÎäãûÄ'nÇëÛ‡‘ùr™¤âÎú³£wÞ…3§ã̱;ùXÜ÷àÆÏ°ÅçÒê93h1~H®cÁªïT§'>ûU¤§#y¤ì‹ÏÞ]/æ‡çÄ û{DØ["~òÂ!ä­çp_Ñ—+ž •€~îÛ:²V™ÇªŸ%ÎwâÌöÁ2»We©X|޹5VsóüË~pëo":1IlݽԺ?/¬˜ÖÔéÊ?§VÝç«ßƒ«ÆkçQsOÇe9þ#!ÛÖñÜû¶.J,­ž×ëžY«æíê¶ìæ™´IŸ=1$–Ê*߬#9¦#>r?â#â­s¥Ûú~òìí>²š6ïáÅçË“ˆîü0þá2ïAïb±$Š¥öÁ›ü{U¼ÏÍõ!kù wñ—e+sM4p€fçPÚsãÇŸèfÄñzp0YÇífKÄsw|öÖ­|Ëø±Ï´2§mÞ†äqÁZ•v²ÝX¾¼\)–:Yl9¸Q¯mã'Ÿ-¿ÿ‰»3ÿ­ÝÅç¢;Ôª>µÝÙ­ãîá‡Øñqȇy êû¾Ðq/ü‘¸…#e?œyüöz`omáØ~­v\v=Þ_7/= øü _½µ…=k7/À÷­r1î› Û÷Ãk»HÝôá:ðgòÅD•åè³^)DWÍ…U×Y¨{s°pÓMv¥Å¸•î|ê·žýjËýæ½ðno¾³êþìÞ/ý9ÝÜ«ëÇ-8GÛ1iõ¿¿¾Ayß]yŸîîyПwïʼn#V(®wÇéCŸBR&8óøí÷¥'ný ^ßáÖ¤Wt³Œ=ñ‰/ãÍs»y†-öóʹ9¸Ð¾{0C`úØ:÷ßÑÛ¿Zß««æÄº{ꩯóX°:³ç§àâFØïãÉu}9üL8ŒŸÜñÎ}Tñó`ö/¸W¶ÅR{~¼~ßšÅvonV.Nÿ0誶æ^êÝŸËçÅš:½Ï©å÷¹½æþZ5.ëæQëžÆaœ¼½±(?ñ¾÷v“-ôEÍŠ~_5¯W=³ÖÍÛUmÙÝ3iUŸ-öwÝO;zoŒº™^/œÒñ܇º™ô^:vhp.µßÃýuO[H‰¥=K{ÃQä§ã­ÝœyaÇÆ[§ãüŠó;‡ñÖi{åÙ+—…sOòú­=œï½u†º|I{vÛ† gŸÄ…s=·¾{¼¤>½p––ŸÛû>ÊÎ}º,×[`ußðyùäòyµóäžÌ…U×Ùô:?tvÖà|>_dy__Üý¹›ú]ÉòÖÝKõ=°«qâý7øÙª9¾á3ìRæLü½p\Àšº­ž›=ÓóõË/º¿ìÁ±©ž.i. 7má…iÄ×ßK΋«î9uñ÷ùªqÙÍ<ªÊ¹œï•K›·«Ÿ“»y&­î³KØÀ>ý­w‚Äq9yµ€“ÙE”•G0TÆè“‹'‡kΠj&¢¼ßÞ“ø†ªâ _BÙ4£ŸK.o3ž~úiÜpà ´Ð$ˆëˆn¸O?ý4-¼‚ ±t5àªÒò‡¶µ·ß½’m¿Äz¹êÍ`ìf<µse¥.DÆ (ÎU<ßSh"c"œ´ß^73†÷(O]ZÙÕø\ry›Y”H(Äõ+˜ÈÂD‰¥«O“À˜+L& ’$F8PdŒ1¨nòÖ/ÃLd`Ò¬´¦¤˜I LÔîùµvà=õwð£=þî•lû¥ÕËÓnc·Àݹˆ²2cU÷*žï 4‰1 NÚkoæâÆpóE׿7>—\ÞzöíÛG‹J‚¸ŽÙ·o-¾‚ ±tuˆ% nÚû,˜1YóPd,]‡Õs±ÊcÆL‡eK¬ !æÆ Óé“ɪfÀ‹³ÚrâÏ –‡¼õ›Ø³ 6’"‡?×! |q«sDy¹ •4ø¾ µ,wf: "r-¨Ó)&“ Í@äõgi`Ã0mø®e2¢Yˆówð þ.HP俆Ã4a¶1 ÞíïòØ…a؈âºÒ\Óo]³j¯RÖÙtø¶ cîwÚß|÷"ÚÞ«WQˆ¼9fªÂë¤ÎàÉfb©S¯»éˆ|Þg ×KmB×uÌý ÷†s,}oÏdªbîÅW@K×aw®—À6›rEcSÄÅEˆ¥•óy½XZZ÷<ÆÜÐa9a·ÝºÞi_:ÐuaÊ“9PŒA\ÿ1L”ô KW‹Xʺ»äsuTZ–R™™±z‘Ùý-ÃÌK± ©zè "„úÀwõ‹"…:àVæª"कËT…'-¤C/–‰UŠŽs¥q-„ê; ?]âz(ÂÙn¹M¥Äe/°©³àb•ºê’—Ý^ÆëdM„¦Níï ºÕ]dÛ{õŠæÓæšbs}m‰µ°#:eõë3pížXòqù1ÜŽh\&–ÖϱÄÕZýÖ´G֜宀åXV Ì Ä±‰l·biƒù¼J,­®{ˆ1c`L©Û£Ò֨Ŵ=åóØN DQD‹I‚xE-À²ÊH†, {Íû+0È£Fò¨~¿Ew6…,˘Ìd‰‘,c¤X—ëœpÊÍ«p®B–eŒ¦æeðrÙÜûd®Ž!Ë2T+¼æÆtÏÆå"ûÎ55Œ$ ¢(B’G˜õ6î K½²\/EQ„ØZÈ1qVObGÁƒ^ £SÆÀDu0®ÉUy9Ê,ËudEãÇÓB’ Þ?~œ`E ¥|^6Ïò´t«æHš»ð]Is›÷³¨]t¬sdkwg½áz eî…[¹Z¶S˜:×ܘîŸ\¬P2ÇÂà½&”©t¿‘XZ*–Q‚$qÄ–5Fsø®V^ Q±ùÂÛã`dûIÏó‘²4Aú°´q+j±ÔÿNµh#Xò›ê!¦]kO–À¿SµYuÓ΢zp±œº¥ÅƒA¯v®–ˆ¥vy•@RÝni1ÃvÊÅïR±´û¶wë•×/Œ±Óö§)Ò4ÛÌ oP,M¶¾ïÏ䯲’5ýT ¥p—sqÕËC³|)ØÝ®Ã­z#ÝF{$–v=Ÿ[åmR÷ª­+FQøµúR !ï›±Éʼn%‚ ±ôn¢ÚLcÒŒ?cS§±ö3î¢Þÿ»æ¥Í¢¼ŠÿÍ2dK6ñò,C–eÈó!œf#.4'à ýœÿ>Ûx“0ç×[÷nÌ2dÙ¢‡FèÌaš&Ü0~o­({wõ¼ˆúæùfbiƒq©úuåuóÅqê·Ìo¼<ËGVäm­öуŒî7K›ºáˆ]O¡ÊÆ–@ùb=, ØSŒ‰°“e7†©Ž».g%—,–Vü†/àåÒýmQÎü´üof˜­KyXZn¦óhéw«›Þh•ר¾>ª3°-CŠ¥UýÕ·ŽEó®€a ¢<½äÁºV,­¹v÷Zìø"vʖ̱Ê*Æ­8KK\F±´ëùÜ*o£ºç¥@šÌ‘üû³¹‰1ŒÌ tË«,O$–‚ÄÒ»‹ØVÊ>‘áåCîïÜË!«áL†›¶åLÆt"7ï±^{Å䑃‰,vÊ“&üs_w­#qíÁÂ…[žxPÇ]÷~i¤ÖÞ-Cø–Ò¼OÄ1ôÙ"cͼæ¸Cim^3ˆ²7Î ÉD†(Š˜>Š"…1Á˜ˆél†qËu~bx­ØW»õ™€©¦B0a¼°njÞU!ô©ÜjŸ€±6¯×©7ƒÀFŠ}Úôƒ8š•Þ4+ÄÒŠq)ŠFçºfvX¯‘ô‘&d¹ìKz!‹lL¤Vèƒ<­û- m(ãä‰ÑX‘òfƒrá=MXj/xtÑT© ¬óYPÆ¡Ìl›[EFÆ“esTMÒ tÓ‚ãGˇÝ*±d+â XJ6 ËÚÓþû @\X,'˜Ée\ÉÌ]Xä.Š¥nym±Ä­]}aY ƒ ÄRr‘b©Úm‰|ÆL\Å--I?~©bIb l¤Á±”z§o·æões¬êϾ%³²ÚðD$¥žæ.ÄB]šXºˆùÜ*o£º9¬ Ƙ©2ŒyÌïÁÑS¹»‹Ib‰ H,½«ˆçu,±eðJ/i¢Ö‹ÿ™Ÿ!ÔGKS³(/ã-ñÁŸÉÛcÄV|¯<óëëtãŒSž‡ æó*&Y”1ÔŠ9íœiè´„^'¶±^ùU;ëõQå†(•ïi­×,´Ê`E9Š¬ëµ ŠÝ N'vÔ–ÅK÷ÞÏ‹±â˽ÖKóÞí—©•ïÜÅzàŸnoܶû`<P¥~ß$––ˆ%/ïßY¥){Ѝ,ß6{+v¼üÌ™Òe,jÇ}h£r¢§<&Gì»v…eÇ¢XÊ6 Õb»Ù)c_¶(–Òe(‡5å»L’2L“½(–ÄNym±Y“n"‚vÀ¿´^,e%–âZŒe­‡ÞxÅa/Ä’¤ñ~¯|‚Gº¿Ë Ú%s,-ŘԑsT¹,åwÚîn•UGº$±´É|^³´IÝ‹I½sÊ_BÜõ¤yQ·û’ÄAXzwÕžÓ®ʪÁ.ß×£™ £.Õ¦Y³(—`…y'fER]ys¦b:Qá&ü=Ym”JåzÀ)“¨ØÄ•Gƒ8žÁ„ŽufÀvñ”Öå³Qy–e`*¶®Y'<âk´(Ev-tø{¶‰%–z±ÅLÒx¹-©ºIË:'Â*=amT÷Ïк ±à5aÕ¼«f~ËÕ‘‰¥ÇN£ÝÇ+ÅÒð¸ä¡ÙX‹Ê8f·Ž7בuÚ«ÀObø~Tz10¡Z»¶æ-¥Ië^›ydU"±´&fI1sF-s´Üy+0n ?_qFP9‰'3 žçtL¸ÓrÂr7+q¤Âš˜´Ô½S%xùÍ2šÎà§å¢uÕ¢½eN©lÛÄ´,·Š…Y'–£1»Ô4M…ª–Ìld»Kí›U«ÐÔ–YipãE´½/øª˜¥‰†¹cÃÔ&üá#Í-‚«Ä’¶¡Xª-8u¬—Èw´Šº¼ÉÎͲ9–×»w‚¬À²mʨù^Æ_8ÕØO4–¡Ö/ŠŽµé",Këçs¯zc±¶îmAØÚkv …NÌeÃ#ˆwÛÛÛ´«b'bý<¬­!Y¤Êü*ˆµ…¢Ú„jÇÆTï/¯\P× ù,‚¥«÷]ñÊÏëuÒàû¡›í¶ªŸÖ–÷ñŠ˜¥¡ß¤Þ¬îKI–!Ë2$¡½njoSFó;©¶.‰½äVU,cÌ ¥{ŒÄÒÙðú±-’ ÕtvE{ÚKƒ÷|s!†EÓµÒU˨3ªMÛf`qŒéHèÄùƤ±28/ówÏã•qJÕžÇNKxU¢ÇªÃoþE±$3†[4Þl´üå%ªHZßí¸á¥Å`‚‡ê¡5kù4U•/ì—º2^DÛ{õ*Rê¨ûð¤éÒTÞþ£ŽxhÊJ7¾vû¡U§.ÈŠ º´ü¼ÙK`*ݱiû"EØ™uÒ¾KScaØ ¯ßÞ[6v3ŸËÝB©+–šòÖ׽ɂ×F•¥MT:V):g‰ 蜥w•—ÆÂfcË‚Òw)kg]Kû›Äª‹"J‹2GQ1•…]ˆ%.˜\SÃH\t [týK$‰S‹¥y<°¸—´Õb©•1p& ˆ¥–@É׈¥Z|Ôñë|=3(––õñšlxC¿iÄ$È’y4Æx<*S¶wÛ6,–$H’ŒÑxŒñHÆÔð{YnyÈ»õ€!Þ}bi·Tç¿l–1$GLj“te“,M$Éò”K2Á¬MM™ðrÓüí³,´0MKÕ&~þ´êÔKhûPÿ&é;›å%Ìò ­K›cy–®iO†4M‘${½S´Ù|^%(ݳ±Ø·o-( â:fß¾}´øê½C†â{ºqGí#76X”×nfÜJUŒQו¯þþбyˆÙt‚ÑhÌ­y Ïœ®ˆj !Ná'y×Å®•¬ˆ1†‘æð÷Mêa,l憷L,5nx¥K]ØHºá‰õYVõq,ýŒƒ{(–²2ÑQ{ó0´4L¦*tËC¾N, Õc c:¢Îº‡ØÂù “ɦÓýEbi2ÑxfÚ”?¨Þѳ®=êì<âsׇïÎkË×xIðãõG†™È³½å4Çö„Üpà ´¨$ˆën¸;;;ô¬ëvbL4/]L-Þs·Z»ç›Öh‚±,´Ê±²—{ÙƒÛBMÄd:ÅHV&èXMzTâÂi_S»™f“Õ –‰¥"ïÆè°ž5nÐë£×Ó>àžÉz7‰ÆŠ¥N  ZYözŸ·ÅR{<™ ·ÆbqÖ­cѺ·H,í ®"Ô“¶}R6±™EÂÖÆ §‘f¿«NŒÎÓÕšc»çé§Ÿ&ÁDסPzúé§é·2¦uÔIu´R‰·Ó?¯ŒÑ\~ˆ¼:ꈆɤIROoY´EE»PzñNLc.÷ ˆ½ÎP+ŽUheuºq ‚ ‚ K»Iæ@1J×O Ó`҇܃È4/£— ‚¸öÉ<ŒA>È5óàÆîÈü»îÎê2ý™Ü9燸²Dމy^ù±È<ÈŒavÏsôf2Ø-3ìXºF'g‘Ð¸Žˆ¢¨'”bÌõ)Æ +3˜s¿Î®¹Ôé“ÉŠf Hòîï ½ó}‚ ‚¸:Ä’ ©<˜u¦ë˜ÍfMƒá„Øñ40v3K'-È·üü5ÞïO»ì=*‰¥k•ãǓȸŽ8~üxwŒS·{Ž‚¨!-rÌ©þ[³3'À¨vVR§ü›RžŽMAW—X’4o8»%–Š"Ct2ê0.æ–…¹ã!Í»b©zç%Qßä9â @œÄpí9l/<¬6OBØs –e#ˆOŽ,Ʋد¯™ô|ªOoì96,kÇko†ò:E­MÎ<‰à1òúš)"φe»ˆ3Þ¡ïb>Ÿcn;:E4òa[æŽ4MQg³´®£Ý¯^—k»þBÛúñÓCíI<c˜.â$ãc!jˆ’×É^Ñg½Ï†ÛÞŸ?|,çsqì@ꉥ¡²Ó(¨û·}­öß–Õ‰‹%­Ky Ε"çýž¦œùsÛE”îfžõÚÅðó¹ /ˆI,‘X"ÅRK0Uî’ÀÀD~Z™¿µòlqyÃÚ¦ Ë È²DA\•bIÜ@,í¸*cxªNæDè½;Çð³F,eEh®ðÏFÒ"…Úq÷“àõàqõm(;Q\U\|_‹å»vE}ŠØÁ¨ÿ»‘^й*c`ŠS×ÁU…zƒ“ÿw«.GC•× 3oæd`M!ÂIyÛ¬œœ¸@Q$ÐGýßM ¦¥íéö¯¨ºð4y±>‚‚¨XWŸ¶»=÷ºxέ’=øiyÙÕáÁó¸*+ƒ.³Ò¹ºNm±Zʵ§fÀY9Wûã0ò æY¯Ý‡[h§¨Ø$–H,ƒb©gbvU~CëA7;Þ|*€1 nJ/b‚ âêKrµ”$ˆ¢Q Žt¤}±ÔúïÔã‹Í‰áóÍÃÐäqNºÏÅ’¤Á+¤âÔ*-H)f1n#ìïÐçFŒA˜˜¥ÛX[•À˜ /+ê…¿jóEmX 1ÍKWÔç9˜#ÆdØQÖùÝØ Q)4‘ ‹!7Âæšâ0ÀËG•Ž8*òÆ (Š´´Ò)sÞÞÔÃD`õz qÔ΢¼È|þùÈDžyƒlðÏòÀ¬ÛÖ³|u{R§³Né÷YÔ곕õh{×"•Á¹q>¶æD¬ÅÒê¶ò~’u>VEbCd +Ú N¥X*ûšôR,'0&Dq3?ʼnYŘ10YG¶ñ<ãí~üO¥–à-àÎd06ZëŽJb‰Ä‰¥*p²¼¹º>µüF»œAŽA±gbI¡¨ E¢L1Õø‚™Xò4ŒMË…jån"Nó®5CjÇ.UÂdØŠUykc –eÂ0-èŠ\/ÀâoJQ6XŸ˜°®*J Œ ¸ˆ¥Å˜Ÿ4Ž>{]›B,“a¤._ ›a³ÛS0&ÂM« VŠaÂ4 ˜–É…€  .Û˜€ñTƒåøHãáêö”B¤K½ø±Ö:fe}ÖÆ;ÅP„^=’9„ ËžO˜ ") „ƨ^K­¯K?--GVܪSbóx-')Œв^ð5 ŒMñâ.çYl—,Q†23áöÜ*I,‘X"±4$–¼*pRcR½ÛЮVÇýÖ.I†,`øéÊ…ÿÒúd>FŒa\ºgUõ˜ÕõØD,5åæ‘Ýqe¹•9p¶àZ˜ùZ-–ª~ám! "$yYžÀK d‘e$uÜÆŒþ¦ëºöô6uW÷Ùêú¬LÔ‘y1Is;“6,»²üXQ„™ÈÀ&óÎÜY^'.–Nù3Þ¯Y1x}^~w,Bs Æ$E‘Àœ¶³Â ˜š~+ݶÞ:DÄd"µÄR÷šylcÔÎè'O¡Œ0‘ÇßymTfí$^n}Ž×±} ‰ WÙts¸z7“ž0š!ʇ­:Ëۓ—יõÙp}ú{ Ƥu|Š(v¬D«Ê®²é‰Œa¤ûrW×é°›y6¼yš"IÒÁ³Š"ÛÅ;PÕcoËÞüwéÀ÷Ú1Kyš IóKžg¼ ²whÇ®§ÇÓO?M‚éJO?ý4½ü‚ ‚Ø¥P xzj&AéPK« wÑ£þ¹’ðs–„ë*Ñ»Þiggûöí£¦k„­­-ìÛ·o­E‰ ‚ b©õ!ñ0›Ž!‰"$yŒYЀ¸¢ã;P&‚ŒÄÒ5‘ô!Š"?~œ¸ž÷Žâ±GÅ£>Û>Šç÷°ì(І“9AA‰%‚ ‚ ‚ KAAA$–‚ ‚ âú G–eEb‰ ‚ ‚¸DމyîúwþL¾è×½™\ž—³ƒÙ- òþð5ô˜¤]±s 3ÿ0&×gIuIaëÆ%' X}¿ ,HÕÙCŠs]Ï­ËÑ—Ÿ«·”g’å‰]·‘2_çuJI,AA\?d.Æ ¸»_Ðzš8p†Ðf§¸å÷b§Øv3Ã{TwÅ5®œXÚñ40vóàB<óx:j7»|×XÝßÁtxar]Ï­ËÑ{!–þžŒéÁ€‡*€1>ÿù¹N"‰%‚ ‚ ˆë‰Ä3 0†‰á"Nʃ=óžcòæp¼hµX5„‘¹eÁvƒæ€Ôö~n©s>·b‡‹‘±Õí¿J”ϼR æ&ULWîCfÍœ+2cAïzÆŒAšù-AÅ Læp…}{<ÒR,‰ÓfîŽö8¶ŒÄAAÄ;WÒ,vCLÚ‹Ë–…@PÜ b–’ò»ÎE‰%þó¸Û¤ËKâ¢xyÅhž" #lå¢Íj•S$viñV¶q¥Xjµ‰ §K¿Fl—VQ†23áö\Ä–ÅoyšØµð}Ä]ÁÒõñdÕâ~æç(2biIYÝ®dwbiOçVZÏ­þ¥q„ ðáØsèÚ"cÊëØSŒMâù¤#LÛÌ' LÔ‘!ÆŒ \LÆEµ¶ÂuÅR»/Òžuª(2ÌÄ~{I,AA\sb©ÞýÏ|ŒÃØ : Úe‹>n™¶\šøw…ZøìV,©|±Ÿõ“*,KCõÊü¿vÛ:SZÔ'¬lã¦bi/¯Ìg‰m·Cµ´ø,KþL“fxœª~NºIbŒ¨/¡=©û}e»Ü±”¶æÏžÏ­ÉÂÜê÷_Ù×>Qæ©J,ñ,u zÁØÈ£Ü Q†íò¬v¶g€1¦cB¨EÐ:±Ôž»Ëç'‰%‚ ‚ ˆkL,i^†¢ˆ¡ ¬t?j/ª‡Ü‰wÿ¹;“¨ºËZÚXaµXÊ£ŽêÄ® .úùb”M¬ŽÛ—Ì|ý Zºf5öyÀͪûâÊ6®K¼¼e™¹ÄkÄ® Í(SQg }\–‘®K<¦gŒ õ¹£µkÝ&Y½™ Æ$È"[]‹Ó`»Ò…r«xŸUbéâæV_ˆ7–©vÿñ~0ÓŽª)üº‚'G ÖÀ=™[™+Xè¿<îÎ&O¡Œ0Qmâ¹bkA@ ͧdý½¹Í•zÞýí3³:^¬î[©gIeïÁS;$–‚ ‚ ®9ò,CÞÚõÎÓI’vbb–“!IdùP¹)’$Yš´`i’ IóÍêžòkdKËÉVünÓ6µ̲|ϯQ·a·–‡œ÷}šå1î¥k›æ­ƒáveéòÏöbnñ3¼f<hm¿äH“鲺ú³…âWüþ:ùž[!‰%‚ ‚ ‚¸ Éa«cˆ·ŠØÉÕWG~N”:xÓæB2€"KuRú¶ÇŸ}¿w0 ˜%‚ ‚ ‚¸Ú Ì)DQƬ<#ëj#²g˜jó]ZýÅ’:’ ¸I~͉%‚ ‚ ‚ KAAA$–‚ ‚ ‚ H,]¤°u š¦A›Y—€“Y"ð UÅ7ÜM|ˆsx¦Uw.ͧ÷z"O7Êž;$iŠ +EOAUfðöÄŸ9‡kjÐŒK“È1 h&â|·sâJ÷÷e¨Û†cx5ÄÉåÙ‰(ÁðSº·‰Ë?¯Gn¥<ÞízÂ@]ß}”'tݾ ïÚvÿñTÓòÌÛ“²½™\¦f¿<ýpióæÊ÷ßîúƒ—%i‰¥kÿõ ¿†OýÁ?Áÿñ™ÝMöÐèä­ÎOìüdi¶ÅIàª7ƒ±›yîý§øgÓ§6º™5 * Þ2șΚlyJ·0µQv\~NÂô©dOÜšxécÂçMyòý®æÄf¯ë¶é¾ãä˜O0¦ìí½·Ðþ æhñ ‚ØKÓÜ…ÐòT0&À½ÎÅ’WffÛëljÝþãï¡<—ç’8œâ–ß;¸§b©Ý—2oÞ‰þÛ]ìíXXz…ÒúËŠßÿæ¯AýöÿÎñû6þ­Sž \!”§=S¿^†ly¨ÚÄ ø™I—¬(æ«ÀÛ÷ÔßÁv6ÞùXèÜ»E,yƒæ­>÷Á-OûvÒj§ì$žú;ñž¼ì÷fLªÉùKh7sâJ³ÇuÛp ßy2ÌDžŠ6»Üs8â‡)ŽŒ€îqâ2Š% NÃ[˜Û.¢¬ÙˆƒQËòž'ü F^dðÌ  »Ò¼»¡>‚¸»›„>‚(­­¨žcòæp¼¨÷Ûe×\ܸˆƒq–!ôÌ­9¼°BßżümgÑ|.ª¢ÀåýâGÝ6¯é³8‰áÚsØ^ˆ'£„‚aÓî< aÏ-X–ݪ{o£½×Õ¼qã¾=‡5_üíªr‡úºØE}Š]ö_^÷G,Æ)"φeWïÿ¡ëÀ²æ¢Zë@YK×of;ø­ÿø/ðŸþòWñßú5üÁÁ_ÃG¿ú<øèŸlø2öëÓ§š…cg"4eŠÉd‚éT…å† )n@™L0™L¡h¼¨7ácºZ•¡Ázš,‚¥«˜N&˜L&P4nØ{¸fe=&“)f†Ýzåé°znAyìÁ˜épËúå±CSx™Ss/î¸YºÛo×5m6å¦ Ã´á»”ÉŠf 4V‰%ÍMW,Œ[b)ñwâïÚý”'p̦SÞ~ÝòÊZ³0¯v·³Ð…aèÐMYÁÒ ¸C™b2Uû¿" 17šk¨š¯÷€Êb†¦ò±T´^ÿˆÜy=_”™‰°3§Ê6Tchº-1Áç‘ay—BìYÐ ›·-aé¼8†kjeÔfœós} 1ÈÊ æÜÞèY•ª¹pð‚|ýuv1&i9OtÝBÔ>Œ/ñaè¼8ïÌqÞwSèssUnÄRoNä± Ã°Åôª¿5~ϰ}ÿª†ƒÀw`sîÚ·ð\àívö^ޱ:«ï—¥s¾U·Ø›C×M½gIè˜Ð[×MzyïM§ f¦Sñ²1Œ½9Ôé¤nk°ÁNæêùX r-¨Ó¦ÿ‚öbfeçðç:d?;5cÞŒotŸ+~¼ÐÇ»ŸÃ9 ².—],-® æQŽ¢H¡2¦8-Ë7·ªn÷~×õRÉ K¬{gîCª@ŵÈH/ße˯™ lP©Â¢×†,w½:;^[n`NÊ™¹ ¼öó×@A•ë0óÒ]öß6ôÊ‘Ôò·ëúLèŽßƒ_aeÛ†û¨jwì,Ž¿2¬JÝ~xypÞ0̼¤vw_Vî²¾.vQŸl—ýç*M›ù´Êw_ÆLø­Fbéš#y#Æïíÿ¾xß?Ál„ÒwÿïøÙk›Å ĶRNª®B,'D×Ò7&ƒ7¨T‹Ìxpb5ˆ‰7ü|løåÝ…¼Ä=M+oš¨®oŸ1ülùb¸J2ß©g˜ù·uƒ Í #kN]/‘1­‡[‘:¿¹=ë\í2µL,­Ø)73†÷(¥[SbZ?äõÒ@Ö[˜ç¡U§jGu;Úõ‹œ"¶!Õý!6×h‰hØgS+Z°V Bë÷Iw1ÔQA˜·ò½—wExÚÒy ö?_bÙ ôÑ‚xÝqU^ÎSÉúëìrL:m¨&ÕõœêÅ ôk|Á{s¢úý"#xY±¦ÌáyÚo· 6c¬—ñ2ƒs~»©[dMž%Ü­Œ±)¢¢@hMZ×h-fF²%cèÎFma†ÙFÖó…ùXä˜+CŸ ulÐê>.]-{}šf3Z÷ÈH÷ûx7s8žO»s .ƒX’‹Ï¹Äå‹ò‘‰¼¨vëÝÖ;KÊ !Wå÷ÀÀ¡¦IùÒƒ¬µþ0óÒ½T†]nÈ„sþ®›aíµìšƒÖ|6†—¶ß7#¸ ^Oêw÷ªrþšXåg¡ù®«‰KÝ«ÓÒ•»Zûy°á5ûý—B“˜0.ÏÊ`Nø»1-Ö÷YÕn# bxÚÍ`ï)ctòyÎ7„œr]2µBy€c&fÙ·9lUcrý>ézf4ýPÍqjvæ 8kÊ]Ñ×»¬ÏæýWtú£Z›©v€8 ðOJQ•kOµZ$–®)^yõ13ÿ öí¿©Jûþø&üïÿóÆB©(2è•ÀÊݱùw-.»yi‹c˜öŠÜ¼ü­(GÔÚ¦3Ì­YkÁ­!-"Lëa:fc©^\ØIÈšÖÿ6Üqè4‹êráÙ,JÆðâþ¼YĨK¬5Ž"–‹¼j1òºˆ*â‚?8¹Ù¶\x$^}]3ÌQd.¤þMRþ­zàU7“UøqÏ -õ÷²,×H¢½|°vÄRæâÆpsy_ç¿—Õê`¶ú¨\ħøÃQÖׂG€^îêY%FE^ˆÐó-rÕK{ç¦Z ªNR?È0+û,ªëMp2(càÄ)ür!^퉪{*–bÔ®­/V¹Xå»6îkW´v[üîtE®ê&+Ñâ‚%u§|à«n²Ñu6“²-]wºîÂDu“:F…1 fPºŽÔ»jMÛÛs¢Þ–Õ2¨5«ÿý2­²ÌØ• yiØ¿¼ÓîR0ø:ÿ¨"^6çÛu«¬Ö-KgRŠ. Â²^2œÚŠA[õêa邯$µ¶&%žÁŸO­ët¬ÈkæcæÏj±^}^÷yù\ÛÇEÂ_ÊbµxŠËg©£¾ÿ(ÿÛ<¾Ä9œ:çA\±dFýçïѺÅþª¸•òYÄçwCæï«¬|wç3ß4w×b‰×kÄ“ÈÀjï.2xìɪr³Ò‚Ë Ž&ÐM»ãB¸üúeÆ‚À‡cÏ¡kSˆõb7ý×oKЗBaÓ>óZ×i‰¥Ê¢^®»äÒbR=…±Ë2a˜tEn=ëúkš~Ý1\¹'‹ª»¦Üí¥}½ÛúlÞ}±$Ö"ªÞœíˆaNnxW1õ7_Ãß>{Þøù6Ÿœ?> í¯ÿ=þÝŸÿ³Z(ýÎ]ÿþÛwþ+vÞ|có²c«Þùé|÷74Æ &ô¤ÞU-_òåK\ª0,Q–6¦N±™lÑ|†©:ÃÜ ±4–ˆ‰ ÏsdѼ±|¸ B³½Ë,C™0M«åþÕÝÁ•FÌ ¦å ÉW$°(K•,+-\##@šüz-7¬¢(–;`#Ý_F«Ä’ê¦Å,ñl¡¦mÝX.–š¢ çRhZ6Âôô‚ÉyÖvƒ¨êܶ H&!<ÏGZÈÒQèÃÒÆÍé\¨ “yϽÊÂÜñðâ÷•Ž¥¤²<ÎM ^¸]&<à–…‹ƒ¨"ÙP,-¶¥*£\4gëÄRÂë"vwûbiõu6“MÅR¹1ѽ^s,¬Kí¹W½`T7©çxß}€‹ÖåbI¸/xn9œó½ºUf˜—íh[tR„?ä>ôi#ð¨£n[Ûcè—–@yæ"‰#„aˆ8J——a÷áÊz><ÓÚB¦ù@[y=Öõñ‚ÀOyÿ1QEÄÃQÃ-ë¿ÙÜZ1‡7¼— âR<´ï'·~v]‚Xª­ëS„1÷ΘÚ1ŠŒo¬ŒÍ k!ª¯s1bÉ]òïž*n(Âb˜ê¤cá­ëŠ¥´\ ³‰Ñª=mˆ¢Q J2dy4˜…s±îR+¹GS‡õå÷õnë³qÿ¥Cb©O&÷Ü<Û}KbéêKðã£}õŸAùë÷Ä_â¥WžÁŸü"~û¿þüÙ£ïÃßü5|ñ¾‚ÿM½??{梒 TBH’¥®ÛG™è¡Z ,]Xµ,TýôjèÖÃDuQ¤î@ü¿I4;Zí†'NJ3ëð¢˜ïòŽìrÁg';™ê,YŒ¨î.Ä’°ÒhSQµ\,•;]K“¤ biÒ~YÈŠáxS·ÜïXËz—Ô/6q‰ï._|»a4;îÓ^LW{±¹¹Xê €ÞïÖŠ¥áþK˯³á˜l(–ª—W߽ʛÉkÅ’Ñš{í2«E}?ËåP]úseU=ç|¯nÕF…¤ù(r ˆQóbÎBÊHŒKÝgÖâsbH,­žÕKqÑ¥£ºÖÌO×öñBlÚ&Ï»K™Ã¹ßÚ\ ÷$q™,KaÞÚ\Ê÷rÚJ¡Ìwá» f/_–}—oÞÈ# Œàçü½  ¬³~ˆ]×–\s·bÉí‹¥ÁrÌõæe¤IÀC JkCµ¸Î– B ó:Þš[|:"f£þ[¬{#6ì³%b)J7}yÖy†TÏl¥½FIãjûb)ÊMV—/íëx—õÙ¼ÿV‹%>†íMÐ #±tÕò[ÿñ_àOùŸqïá÷C}øŸãËñ?âKÁ­Iw~ó×ð¥¿ø§ø­ÿø/.¢ìÊýl|¸±ø´wncX† Çó‘dIcñM¦‘È…aÎáNµ|þʼn]ŸA×uÌfüÿM§ j¶Í&rÕ3g‘ C›BûñSËwYƒÒb6³mÞî‘Ѻ¹c´êºæ /jÊX¨F,I½•ub)¹±Túßöݲžë!®-|2Lg^º8µ¬C¢o@@˜¥9\'ÐM Ž!,E*·, -ò d‘× ñtÙÆÆ_Z}^ð£ÒšÓɵ­<ÃbÉVÄEË’ºÁBsi*ü¤®ËZËÒÒël8&+ÄRÛB‘•/yæ/6ƒb©;÷:¬Ü™÷æø&bi´ä7|Wn`Î÷êV‹cQ…c)݉Vr™ÑTƒ9·áG1æ½qnaeš. €ïûðƒAàÃóÃAÁê­œq§MËÚº®ûÉUò°ŒW’g²ž>Ï8åû>Â8½´9\þ–MÊ\J\¾Ân”À/ïÝÊMš{Œa!¼¹Ö‰©«âû¦úáàùh¥ËjÏr]ÝÛSÓEœ„0JwmÕ‰×^suŠçõbi¸\¾8fÂv#‰<îF[ºj¹eÜŒá„K³—š~Œ´ÕžX`7ýwz!]uÛê·IŸ Cb©Œ¡bŒA»ð\ŽãÀq<$y)˜ Ó G.¦¥K±»t3Š÷Ã*±T âÁrWõõîê³›þ[%–ªw±81&Q™d‰b–®jîyä_A;ôÿĽ‡ÿ%þüð¿Ä[¿Î…Òÿ')”ºË#Õ€=ŸÃ²,Ìçs˜Ú¸Œ4>ýŒAVyœIPÇq+I‡Òı4qŒÉð_n\îF³r²…$A„,a…luTÇ#Ä¥û‘U—ËÍÎÓ2Ð|T2–MpýØ\ÞæÒul!8¿r—©¯YÅ²È â ý`¯,RR_,¥—S,U>ÔŒ–ËPdŽK7£—Ë…O_œTV8©qéY/–ÊÅ?wÜä\­•¡Jš!¶âÚŠ¬j"ì§´Ž4ïg»\<þEi…:»–uˆ‘¼1l_aG¶;±$1†±-=Çš ã¶;±´é˜ð:ùµVÚê[yázLj[ ¢rޝKâr×¾*6FTšþÌ|Œ¶V,1©½ ë@i?_2çÄR³QQmzy·ŽÝ¾çj c{Ú½ÿ«ñ „ÝgݪùhÔõë–Ö}Þˆ¥}ÜšY;±Lç)”‰rf^zis¸·YC{zVMùÎ%¡‹l4±‡žÞòB1™HÍœMš mÊ’óѪä/3?ëˆ(s*w,ÅS³Ù4ZyͱÔÊï©a7¼Õ妾ÙK:%×qŸÑ\Yš$'mŒÚ‰tä)”‘P[‚7ï¿—{m©ž;•%|UŸ¥ ¿õ´[ø!¬K“iñ¶ä±‹©ÔÝ8¯cºûcÙꇿ}fÖ{'tû~U¹«úz7õÙMÿÕýQ­ázó)°”Nßò :”ö*L·@;ô?ãnëfüÁAîzw±B©‰`K¬!U@8pŽj7¶!xìIYƒn[Íb¨Z˜.f‡ª²|EóIç¦í¤ú”f€K¾#Ajeéâ`6ió¸4ý—™°Êz ²˶a(£n†½2 c Í„e4Y+ëÊ•KEK¸J˜Yæ†Röû~Ö·rd0FÂêØ«¡óbʇÒdfÁóè­‡q“íNìôÙ¬úÎÄêX-ǪùÜÀ¸œ?ª“´bàxlS«û³ÊzÈ]%Ä‘ kn`"5sÅÙ@,%m,HPtgI ©vɼ±”ìbLÒöw3Ëjú­n{^ZЄ‘ Û™C‘{Ùw+–êx&Œ ÍÔÖKi]‚Xk;óúe5Òýås~@,µ7*¤ÞßŲ/tۅ瘘ˆM½ìd` ófnÉSŽ3‡Z¹ñ-µ²¬ž —jÀ¶Íº­Uœãú>®¾€Ñt?mⵘ49ŸÃÔ&ݬ†—0‡³2tõ3 öÀÊ”$HÒlð]‘$Iï,¥æ½šeùò³íTiÀ»:»'E’¤KÎ+[uÍK;'mU[x¤»^g¥I‚4Í.êš«úow}v‰cŸ¤{n½^^îê¾Þ¼>»ë¿Õa Y}æÕx’Xà/íQÌáSo½ø²Ú ¡Éð´®Ú,âô C‘…ÐÆ]×8AšÂi»’øfyÖH+5µb¶ˆ L¥s Ž`ÕAz9\CYH§+Ž´æ•,Äl"/Ä*LfÎÚÉœ”»ÒMºóv½FݶÉS¸-ØØ™uê%MUŒ[™Q¸Å`½Xòˬr3oùƒ×`ÔK2c¸¥µ›Ùݺ0aËç»ÛºÜsMHr¬e¸§yYòlõÎÈâM×Êx£É`§vûLÏVÂ;q1•„áÖs-œk½q–0³[ ¿Ô+MíMÆéHhvÔÊ~éîò¤u6À´Ng¿jS å†©û biæïlxÕc2“Ûš¬6çWý¢è¼/šôå1ŒÎn¡TºœŽ:m¯æDí"¶Äµ¯†Æ´ÞÐG ßé\’¡óŒhßÏuÆ¿%s~`¾6%Ì(ïüÝ™õŽ$èÚ¸µ+=0†‰×ÉÆÉƒ4iͽÁÝÆÕó1– ¯ÚjÕã»I·WàuO1ïÝ#üy×ÍNy1s¸¿FÑ»‘¸v,V ¹Üà$¡O$–öŒŸþô§øû¿ÿ{<òÈ#øoñ¿ãß)Åÿï+ÿªýIïóï|¶mÃu]üøÇ?ÆOúS¼ñÆ—ça—&HÒe;MEÕ*Ž¤Ù²]q#IÒ¥e$IÌ¿“.ÙÈR$I‚8Nm¸Ë£ÁØ…º^e™ÉŠ ´ÜÁyççF†$Ž_†]Ÿz 6(]Ÿñ e»gëÛ¥É%ïêdYŠ,_žüƒŸÃ  îr^®1ɳI#ÉÖ÷í%ï¢f>”Ñ3»ëÊÅ­´£%ç“•qi3ŸßÓiºô~¾dÖÞwÃc˜%ÉêgÄ®çãúÏ×·%[ÜÑÌÒ5Ï»]Îá*üˆâ•ˆkL,…dQÂX/M¹M‰%â ö,Ì´rW}ÉY,Ä»ØÍÄÕÖºF^Û4g‰i–ƒ ð`TÞe®k›fN$®8U¼‡æÔA$–âÒq¡v½ÊËO¼Û©2Nzg?]?$žÞIpÂÝh•a«R+ %¸ÊÈ}ÈŒAXp%&‚ H,ÄE’g  @œÒN,±lš «6ˆs¯Da†‚Q¼~Ó Ë2róºêHÑu>O ‚ KAAA$–‚ ‚ Þ¥qvމyyfÏ"Yf{ÝC‹«­2êkbqΑX"‚ ‚ ®N2cPÊ£²“ä[~oy¼äEy*‡ hΑX"‚ ‚ ö8†3BšFpæsÌmQï<¶4òùgó9\?jLŽC„qŠÈ³aÙ.~ô´1L q’¡(2D'Ûqw)|džeYp¼¨W—¡ïb>ŸÃv}$KŽ ðÌ  »Aö?OØs –e#ˆWŸG¶¬-¼/Rø® ËšÃõãnÁ‰×´)q2–ŠY/#k¼pt€5f`LA\¤0ÆB¯|v9n®Â¿WŸ’:Üã$‹c>2{:‚*±…6ÏP…îœ#±DAAìX*ˆ81¹#õøAȲŽ,óÊcšE¬=ÀIQÀÓønª $§ˆ­sìv< ŒÝ w'Ç|"p!‘”wÆ&óEæAb ²r«B`ÖbhX܉¼œ”ŸÇFzyÐxc"p±÷ݵVµ%/Eˆ„yÈ­žÎÛf|2c`£YyªÈÀ /;\4(󰼆ÏáÈD¾¢Mž&ñ6”’lU}E¸ic³ÚÂ(±k Jÿ·ËÛÂë'´,Ež" #¤'-=á–%Â8…«J`L€b˜0 ¦er±$(ˆW´)¶Kk˜(C™™pƒhéÑ öT¨ÏŒç“ZdyšØµ}Æ$¸éfbI–»­¥q„ ðáØsèÚbupy´¼?x¦¥ˆ*Eq"NO`²`ùáV!Aq7Kýyæ5ó¬7çH,AA{,–$x-qšc0&ÁIS“– ”(A`}±Ô]Z–Nµ ž(Š%dYÆ´²BD”‘Ôq:X¾-–x¶=±›ì¡½îüvU[ë]K–+Z<»±²xÔmDHò²<—®nS0Ÿa$¶ÜÊ$uð ôÌ×KaÁK«UQÀŸI`Ò¬ÏTõ3$–Òflª1_–$#ìŽËœ(óvJª»¦?Äznt­z>FŒaÜqL1«û|±´džõæ‰%‚ ‚ bÏÝðŒ _pO{¹ül4skËG{A¼l«yÙ°ei<ïõ;¦Ë‹‘Ç.fªQZ$rľ™õ,=}q—7uŸy…$¸¸P{ÙÑÒ•m)ë7±šß¤d&@âÛÃÔNZ±DS0aŠƒ*1~;¹kB·.ÒR±”Ç6çªÊ–§PF˜È{¬ëvFê¼ÎxhNÛý+ÔÉ)Š¢@âé­~1™H-±Ô›geœ›êιoV‹BKAAÄžÅ,åi‚$]´ndi‚$I—&!XXlgò|Ùg)’$éž¿S'UÈøgY¾æ9²ÞwÒ$A’®·&¬kKžòúeC}µô¼ÞƒŸ­hS}­|MýÙB ñMû,K7ë—¡>N“éŠß¦Ýæt°«~LóÝÏãUsŽÄAAqqb© ØwRê‹«Ž<€"— "¤Ùbââ]‰%‚ ‚ ˆ+L;P&‚ŒúâjKêH‚jÁE‘')Ä’;n,QµKݱ$uÄR¯ny S÷\YG,剒æ£È=n­™e¬–¼¢KA$–H,A\b©ÈaM˜0ÆL•ÁØaóؤÑS¹íZv b)/Ýçd½uS Ud`"²‘ ³¤X:L‚›6V&+ÊwaYj×-ƒYº òºiÁñ#„¶ÒKíº9–Ò¸è\UâÖ8ÃEð}~ |x~xÙ³AX¢lxAÄeb{{»KT ÆØÈ(ÝФúo#Ý´ÐìF,å‘1Hš×ÊHç@b ÂtÞ!"ì–XŠ«ºµc¦Ê$ '–RhÉj—áj£Ú°¨“]Œ[ý6)c¸ Äö”÷ËÌë^c$,X΂ KtÎAĵ|ÎRêÖÙáªx¡ÊÝ­Ž*¶B,i+ÄR%zÔVöº´³V ï݈¥¤ÈJÁÅ0™Yð<ú´q«›ZÑ‚˜c}·¾¼Œb òT‡ãÌ¡–éÌÙØ¬³A$–Ø·o-H‚ ®RöíÛ7OijൄQ%Ä&­xQ¤\¬”‚È`Ôµ,ɳ(KS¤Y~‰×É‘Ä1â$½$KP–$ˆãIšÓb† ‚ÄÒf<ýôÓ$˜‚ ®2¡ôôÓOÓ — ‚ ±tµX˜öíÛG1LAïpŒÒ¾}û® ‹A\i²ÊH†, {M<]`*G#Œä ?m^<…,˘̜=ªC Ïñ[®ŸûUd°”1ä^[ˆÕ$þÓ± I!J&ªAn¶$–._Ò‡(Špüøñ«šç½£xìÑGñè£Á¶âù=)÷yxž‡çŸ_ýç=Ï?ÿüFe{ÊÆ£>ŠG{ Oõ®ú~%âJ>sºDQ´˜Ì ˆ1o,4IAªŒ‰e,šæ.|·ùÛÅ“ÇÆcj™šÿâ¾³‰ ÓDÖKO¬ÌîcÆÚœ‹¸<(Å„3ä¢Ð×ÇåáÏ¥-BLEž]ræ-¶U,³_jʨ•aR‡ëè-ñ*uÜ%WÖ©(àc0&@’ÇËþ’gŠ"†Ñù„™ÖGÌ” dyÒɸY‰jK$–‚ ‚ Þ=Äsˆå¢Ùˆ2xªT.ÔÕZ8Ìü ¡>ª­·‚¹Õ÷d½—H#‡­4‚KRl:tšÄÒõËŽËo éSÉUUÖr¡`̦cAÄådÞ:ì¸^g’J´¬GUÜO:˜)“ž+^ùy-–¤Ú•«qã+ûÕ¿WÄ,-|'±K‹•+n¾ç–Ö°:îj­X!ø¼[€Tݤ±f íDMlê&(’*¦kÓêZŠdÍ„6ª,3ñòv–.E‘´’ix½ïHpÓb£:ÕbIlú8õfõXK² Y–›1µN"Ai‰‰¨+–Š3¹{ÉLëX˜Úý1,–ªÏ› ~UúßÙ¤NµX’†Ä$È’y4Æx<Âhjvú¯¾¦¸|ŒK—@n´=øŽ e2ÁdªÀt‚fìÍ¡N'˜L&P4AëFJ†iÃw-(“ ÍÂvìÂ0l„‘Cb2™@ÕçHÊï󲦘Y~}­<öqð‚¼~¸–U™b2™BÓ-„i[ù0g¦Ó ¦S†Ýœq°XVȵ N§MZ.zyYß( +Íwüen|yŒ¹ÎBeesÞ´cÕuŠ<ÆÜÐ;ß'‚ bÍ&hdv’)4¢¡I^¹Ã%E¿Ša‘uþ¾ÍšLy»K¢Â]ßV‰¥ê;­X¨‘æðk§^™^|½ÞÈðVÖ2&–Ö©õb©qy볚"§±UÙCcÜIxá$q-zxƒçE ‰¥~úoƒ: Y–²:vJ€ò5Thi˜LUè–×Y?å‘ e:j¸´®"±t9H»7ˆ Ö"Imss[AsM]“M¥6-·n¾Çlm8 Oþ66ÃÒuŽßTÊS|÷C  Žäm3w·Lq:(+ǼåÏÚ´A¨oÞÅÌ:ܲN¥nw'KÔnp"uÊ¿)—pAA¼ÛhÜ·ú©ÁëÔâŒATøú¥I² `4™t’9l"–:nxlyZï¡ï8íu‘ v¬6v²d=&Uíʺñ@#Yëóeb©È‚NÿtVÈzcu‰ç­Ì|-Ò^ÇM¬hµ(¬Ýë´ð êÔKÉ ¥M€~… H,íF,‰tê1AA׎Ê<ͼwò8ŽÌnaàÇ•DމyÀëãÏä=‹KΫŸÃvÚBƒ/ÊoV]$ž¡<2N2.–D Q¶,Ìíõ%ò]Ì{ßÍ’–"‚± ¼(Y†ùNŒ“PY"Œ3d±ÏË©ëš#ö ˆŒa4s'Yïí96,kÇ‹:.q Nb¸ö¶ât"ŒS¤‘ùÜ‚íÈ‹y}-¿+ —ôY¿ŸŠ"Ct2jÆiM’,CäñÏ]?Z)–n.…BD¼ÓVuùpæsÌma’ ŠÎÐ÷×qû9¢ÀGØ*' }QÚ› ž9ct7@šs!#ª¢Àåmõ£zl7ÓÅzíæ•%ÊwlX–ÕëkKAA×(t™I:Ò” /Ïü]vž Wø"6²¸ Ú¤<1óùçF˜#v´^V]e–.p&„ÞgŒMäíE¹ µ•µWT]xš¼P&DKܧŒ±Ðû¾ ;Êáªb'Ûoÿ`{Wa`LAR½ï–ˆ âÌ«Ýøx=T¤±ÓXç*FzŽ‘vÚØ„ÿp±lA–»}3™¯é³t¡Ÿv\~ÌS;Š]Õ©<ÎFs׈¥¨Œ)Oq¡½b¬s²ðÙ¬Ÿ 90j»C¦6o«¬—‚/Ę1ˆšWͶ׽¦æm·Žìie˜VÍÇtÉ|ßôEêaÒëOalìY†fKAAïñœ[&JÑcùB<\øn€1cJ!Å¿Ç ” zWÁIµø˜åB1‡­VGœä0ä²üÊ2âTg/¦ÝEyê@l3R‰%Õæ ñh®,Š,¾HŸš¼®y%ʸ[ºô%ƒ.z7ƒ½‡Ç·ô¯¶¯Ù©_sT ²¬óݱ¢9Rf 7Šq]¶æD(Šó)_Ä«¥Ððf£Íú¬×Oüˆ—›áîì¢NI^ Ìeñö]±Tÿ÷ʱN¸›Xe º~ŸÛŠÀçNQ q”RlŒáò@c f”wÆ&uU.v“ÒENb`BÕ– æ„Õn›i¯^›_#Ç|"€±Qù݉ËÉ™Ì#KAA×*ÞŒ/gŽ0 aW‹Igñ,Äù„‰:²r·Ÿ ŒM Ôr÷¿:KQk°,†iAWäÖöâ(Bà»°-ê¤õY{!ž¹:bI´ÖùŠnG$tX[긕ÖÙ• e-K½8©Ò¢¤ºI¯~!&¬/¸åFPÜ:ÞET½n[u蟙É-u¥åkUŸõú©KS'iI¿ ‹¥Õc½ cTZ¼Fè¦ N‚ÁE‰'-à("j+e K`Œ[~:bÉãýÃÏñ\lKhŽëþÜxLûõÚøü3ÆÆ0,†aÂ25ˆŒAì%!±DAqÍa:àŠÅ“&qn©puþÿžÆ˜wÓƒ ©[¹/ E¢(@”dÈò†Ÿ"´”ÖuÈ£åbI¼H±äϤú¬ËþÂ×ÙµXZrÍÎóc3è“™X‰•j¡í®KÝ·ê+û¬×µX:uéuZ'–ÖuQÄ0Õ ÄŽ›Ÿ3˜`Df Ó¹Eàÿ¯Š #}Mjê¸^,¹=7ºj¼7ÓÄÒÀ5’ vÁãý B%ȲŒ©á“X"‚ ‚¸I˸ ÅŽç?w(ÏJW*VÔϼæA®¾Ò YaRÇíLòÀàeº-+BêÃÐ xñILÍU‰!Bc¥XÒ¼l×b‰Ç¥Œ´þæ(ãuÜs±TÄP„&ƨ¢“:çRÄR´ºÏzýÔX–.½NëÄÒ걎1×g˜‡Àtå5ËþkÙ Ì©Üq—«LT¤˜Cuðgò€Xâ1V«û¬ÛOÝCiwW§~úbé–…1Z=Ö©o6–È2#¡,9¼7u µçcýo{plФÉô§8//´…÷_³´á˜öë´‹kE Kéflkö‚++‰%‚ ‚ ¢t½J$éâ!·y†$ImpkžeÈ/öÀ×ò:i–_±6çiŠ$I÷l‘¼iŸ­ê§ËV§MƺÈùgizY¬£ÙeÛÝ]#ÏR>çöøbKAAA$–‚ ‚ ‚ H,AAAX"‚ ‚ ‚ ±DAA\. ;{~£Ab‰ ‚ ‚Ø{ξ‰ñ§O@øô °ÛºHÎ ;ñ*Øm'á¾Y ;q ì¶Ëô¾ öÅSƒi¹×sÖìÔCøb;:¿çm÷žûÜÏxj‚ ±DAAtÅÒH·ûÜ?böÝW1;xŠcÄ0~x;ÇvÛK\,mŸ†|{ÿìb¼ö鸢Ēgœ»íä{OÁ~þ æ¾ÂëwÛËðÎîmÛƒÃÛ¸åOK‰%‚ ‚ b¹X’Œ7?o‹¥¢8hû­ÎY=ñÉ3˜?~ó¾YŸ+S‰¥¤üNò³ þ‹’üâ“â7Þ†ë¾ûøÙÞ¹?9´Ïûâ«:dÇc°ÛN@ùasÖMþÆYØGNÃzü ¯5V§ìµ³_;‡èø°ÜüCðs„¯u­Rqôs?;‡üÍ·qòg­ósòsðŸÖã¯Ã}ñíÎo–]¯( ¤?û9œ#¯cî¦ßXbËA„4àÌç˜Û.¢´û4òùgó9\?êW”#ôX–7H%!‚¨upž[°,AœÑ¼&±DAAì•X7K;Ï¿vÛ p²vÓóŒ—Án;ÕÍG~ttì¶a½ÆþG°Û^‚s¦€÷—À~çgØ).Àú#.Þæel”÷]^޵ýó×˹øûÓÓeýß‚òéœYK4âÄä}‘z3&ëÈ2"cU§þ¾=ÀIQ ´&`ŒAs¢RÍÀƒ¤º(ò#Æ L̲~9lUc2¼Œæ7‰%bsòÖLƒ¦i0ݸkÞŽhªM3îâÆÊëß™ˆ.{¶šž9ƒªª0ìÍwK"Ç€ªi˜Íf‹h4Ãé¹´û,‚©iÐÔœ(«ûPU5ØaÖ3éÇ=sù•a¨}š¦a¦˜;’Ë0.WvÜ/uÞG0TuaÎ_ Y_d°ò;K»ÐÏዺï4¨úòûäÒÊß²è)¨Ê ^’Ó³þªºÿR$)É5#–>ý2”?…rÿO¡Ü¿©ñ:²bÉ3^»mq«¬äggŸ¹P vÛ °/¶Ÿç }îÄo®©×yÏ¿ŽÙmÈŸ«„ÓK°¢óÈ^<Å“>üQ ëñÆáÓÐï/ÒóyiÕz¥¹fÎÅŽ|ðç(ŠóÜÍï÷äE[,ñz ÷§—¼0z ñV]ï­ÒvâïGпàµsƒmâbIÀ6†·ÇcseÇý)ÇPèÍù]‹Ò¹Æ„«¿½+Æ«š³»#ÂVÏïK+oØq0Æ0}ŠWP 0f S‡ÆäzŠYZKŸÞDªÄ’P &­vK«ÄÒ™%óæmÌ¿û*œ×.tþž¼˜pWÁg>_¹Ä½ØXÁ¾ø2ä;~ãÅsƒÉ%ì{_ûô+ˆ^{B)ªŠ±4hZs½¢xæbË&é±$u¬=¡9cœ4…1›w·(A`XògRï9œA—ÕEêV.xDQ„( %²<‚á§4¿I,]Ÿ„ÿá?àGŸúüO~ßøàÿ‚ïßûµf5MñåÿÛ?Å?|ò“~û·ñâç?ŸÁúr3ryJª;hfL‚»±t‘¿»82̤áú¯Ìª£ÉõCd4cÜa„±b.·d.¤²ÏT7A‘PF2d©yyZùp“fË-T—‘¦}b«}£ZÔ1Æ iÞÞ.¾¯è¸_"劻˜3CðÝ? Þ5xÞGVŽ×Åî0F¾ Ç —ZN/µü=±ž%'ñÔß¹ˆÉåä*KÜ­Hó(Ðüš‰YZ"`–‹¥“`·ý~ÞXô;^Äèà›ü³O¿‚´(ÝÔnûÇò{kÄRO$H¬Üê§y\U~ò53ô|Ë‚sæç0¾û¼×. Š¥ìä«ÜEð‹/‚Ý!¬Þ¡=±Ô¸ÓñºÈ·½ˆÿöä©×{óïžÂ<ââ.}#ÃìŽ`Ÿ~eaƒ©zwA¾àj÷rùÙhæÖÏZO[–% ŒÔ}aZ¾ÛòÀàVn«ÏR†nÀ‹É²Kbé:å~ýÂÿí¿EðéOã>ùIþ|þ³xý§?Åýý?ðƒß†àÓŸFðéOCýŸþGœtŸÙ[±”ǘ ÃF”F˜ë*&“ ¦ª?Y¿hÎbæLÅt2Ád¢@Ÿ{ B"òæÐ”)/wª`f:ˆ{ ÑÀ6ê2,×…v)bIš­w“Ë㦭ŠÏŸ×}Æ‚ Ë‚iZðâ I`c* eȘü]¸å±CS0™L0™ª˜{qÇ}ÌÒ ¸C™b2UaÉÊöuú8ó0ªÓÈh}–À6´²_§Ð­öØälºnÀ "ŽeZö«nÃãžÀ1õòûL –.¼ìü¹¥¼¶¢ðz®[yìAW«y¡ ¶¹[ž Óöà;&/wªÀt‚f¬K±$©sxs½,W…åF ÇœÕý23ÝúE›6¦ÜÓ™ÇOÖþ¦²†º–U™b2™BÓ-„kÄe8ÐË9QÝIÛ•V7àÅ1\S+ûy -YkÆç±2³àXÊr1“0u½3¾•k1ÓáF; æÜoõéå'Awnû‹n‘kAò±V4AïÞ‰¼9f*/CQgpVÌ…<öqð‚¼žg¦ ò­z¾ÍLgÉÆH×2 /|žÂ1u˜v°QÓÀ†®[×ÔOÚ þðmÅÛP>ÍS‰›ÇÏ"þÙL?ÇÝôÜ3ËÒ–¿]'–ŒæÚX*φºí¦‡ßDòZ†Ù½X& Xu½·¡ÜvìÓì“o#ùÙ›P¾x¢ëØwЏQ έò¢ê ôR,9H³¤þŒ±ü¬@Yüß² Çs „Öz(†"ðuˆé…ˆ#S‘o¢ºi<šã3òg`´qAbéz²,{_»å_âèoýŸþ4~ðñÛ`Éÿ_Ü÷onŷʵPúÓ_ÿçxþ‘ï!KÓ½K-w³U™[†ͱ£ÿNR–‹_ GTU»-+ÜË.J,‰SøqŒ(Š:$Yã22–»³©î¢ž« ßÛÔå$q[™k„¦Ys\+FF¸B,isÍk«˜0-³éd¦Cm”g¥Ïy uEŒ ɸ'µ]øY-4ãÁL>Œ1Ì<>o¶òº«\3y?ŠÜm1HUlkÞ/d ²Ë|æ·Æ^¨Ë`"Ÿ³|G¯g©[ó›¢H¡>ïì öîû2€—1Al¹cTbw`N,¶¥%’…îüÔÅR9§Åîü±§B¹zŠÏ‰Ê]uƒò³ÀlÚÛúÎH÷êÅø\iúThõce±æÓV_«ÛPØ©\ŸJçE›‰5°hÏaYÙÞf1‘‡F+ÛÔú:»ª¸àªÙuQLïqÀ"Ûõ½ÛžÓÜU§J¾>øü˜Z\¬8êP]%8É&ýŸvǼvùmµoÝ\ìÞ›_ÄÕ&–Þ„|Û È‡ÝðÚÑö¥ ݸvµc·ÀèÀëÜbœì¸è¹¥[žþâÛÐ>·Üå¯6ƽ/÷2̽õñŸ·’@œÁô‹Ý¬zúóo—.€'݃Gÿ‘'zøÙ…–X [‡ÒžƒuÿËkÎ~øÖÚë¥/&Ý„·½ ëä¹å ZÏ4qb”÷YÒuÃc¦Ó¿/ËçRê›õûL;^yì–›zÍïõ2Vw§|·Rü‰¥ëŽÇÿû}øæ­2ÿˆ\ ¦ƒ¼¥JßøWÿªÿu3¡´[±Ô[`Nf&LmÜY¼åC¿Kœæ%ÏD¨† mÒz)Om¹ß”-«p|†"wyd¶cXŽ m,^šXZöb/ÅM[ÀISŽmtú@u“N¿¨n‚È10›öN6r1)'ÕìH¼zñm†yëZ" /Dèyˆ²Õí% ’$uÄí…t³€05ìzç—1†‰¡(ÒÚÕ‘?ŒUXÖ¬Õ|±Õ÷Ìk„ßx6‡ïÍ1©ú¥q‘9iõï skÖZjHK—‚jÌMÇÁl,Õ}k'KÄRYßQ%2óŠØZøÖ®”" /)E™¡»gOÅR¨ÚåÂ5…U.&%ÍmņU‹Í ~“y¼ßÆf³ØÔV܆<+“áÔ;üQÙ–þ})Â(­UºØº- ¯×¸&­yµìE9Ÿ`L€Un‚¹Ï‘4CZ͉r±»¾üªØíï"  HåFK\ÔÁÈLTà§U¢’r âZhJp³®8X{¶ÓqlæñhæÔY§&åΫ;pUu’Z™¨ªx@3Ì7¨s%ª»VötE½âȇ¦qˆÂBÚ_·L)¬: Ÿ¿gåó#*5ÁÉÒ%‡‰Óº®Ayÿ‰ª·Qÿ·Ç¼yÖH»š‹•`¢Ú»Áåò<’7r¤g/ìy¹é™sHÏœ[j™LßÈ‘¼qnO-—ù™sHÞÈ]ë—_ïÿì̹5.ìÖÄ!\l‚‡lEzä:ÆAÖ›ïEMìÅZ±$mî“_õÛÈ-N²æmœÅ­}ý¬Œ¿0Ç-!:®b4ÂV¼Òº¡c6Ó¡ë3èºÃr‘µ-@²Þ˜ñ[±ZCb)jÅÚHc–ëÁ¬¬‰m‹DË…“»¹0Ì9¼ ©ÖÉæâD«ë5›ñÿ7h¹Xê-ê*KÉÄŠ–ô〵da[ý}Ȳ´ÙoŠ¢@žÅðl Ú´Yü.r+×7Æ0šj0ç6ü(Æ\wóÕåbIê ²Õñ{T€áXƒ0±.ªüJ¨2y† àû>|?@ðÿþÿ·÷·1“›ç'zÏç[€èÃù|üíäCbŽI° 2@Lc1Ød¢¥vg±B†Ê$'[h!¥¹bI 3Δ¯è7ДÆë²} ÊvDÛ4l:²™X”eº3tdv[t‹-™­mS Ùl‰–ù?ø^Åzyž~Q·ú/à=]Eò~%ëúóºî뎒NT¬¿]Ýø¼È.V‹9ÔæåÊ–TÿWC,•‰]‹l V¿ßÇê6Rç±ë7sñp±”×bU@R§XšÜ F4â½ÛxéðüOÕÏ„åÚç8ðá‡Ém¯§s¬¹ØK>SBÅÒÕNõ›eøÐoÿ+œyïýxþýïǹ{îÁßþÛßÅ_þæoT)ÃO‹=„üÚ¯C0 ×£ÌW.’4Eäõ×æÔ‹Ïûk–¤)ü´JCÙ.h¯Ãpv­]QæÒ¢DÙÕÆjµáü\›×ë…:qäeð/ÍpQ”%bǸ²5KÒnØo~!/KØ3¹ ý«ÖZd°æêÞ0¼îús„i†,? ^ãåSôÁzWWeK,õ ›žáÝy°:ïŽPšD U†¢ª˜-ks¤Ú)<,_ùƸwžÀ&„©—ð¡‘NÛ¿Í:‹´—AEð\r§-ê6GI†ªN`EùŽ9-6ùkÖfé^vÀ¨úEªÖŠ­yÿq×µ·eß9Gõº‘ARŽÔ©wh÷¶/ü]”Ä1 Ô|´^»×JuB¡ï4Z÷˜×o¼ò0T/\MÛdÍËmáÚ:“š-µçN6z/8’vMטع*b©iÒ%ƒØ_çnÝ£ÞKß;ìûCÄR.;„xzFíõò²-}œ·÷‚ó„Q¿té͓̩Eìꀶ4/7úaŒÇ‹Ý1+æï:!„P,]]þü×~áþOˆþäOêd¿…¿úý»ñRü}üÙí¿Øz—^|è!üůÿ*Î?õäa.\{vX¨ÓŽ bUv²pc­“›õÈYÏ™öd(J?¯1š4˜{²á5õT[}k–šøá&óÕεMëû.•›™Òæµ¾»^E½¨^@Rç°«¹Ö Ö /¯L,•%ROlL%ÒA¦Biæ3³7î}Ï’(ý±“æÕÎä±5VÔÍ»ÖTÍðµÍ@ÖWÅÒ²±Ôµaâ£.ô•‚…åÂ1vŽkã,kS,hÿ9m袄ÙÒ„c[mˆÝºGqནT,¾kvI2„R%¸8 -YR«baÚXõ³ì‡ê …ÁZ¬¡7éë·k•)LÛ†iL‡ãØ÷¢é+8ŽÙfqªÂ`»ìtÊÔ€í:0i5¶xˆ×Å’q"±Ô_/¹Ö_{ëÜ{É#©XX3u-‹ßx½¶í'7]Xð}ËÞuºlwòàùÑ–5µë;'ú ¶½ÂDî½89 -M6DYÓaÙ+L{÷™›6›µUBR0_º\pN!KW—gßÿþ6ëÝ—?ö‘×iúK¿Ð ¦âG?:ÖuKY["abØÒKMzÊ.ÛY÷£×7œZ¤ˆ±š­¥—T¬Ú}\ xËéÚ:ŽÔÚÀn™—©?Hƒ)©3ÌëŒxmøIû†Uߺ^h¿Xê껋AßLôE[ÃÏi“#ºŸ¢»’Ô«,S˜óa?Iê ^³\=êÂ?8 /[d½õKê¢J¿ÙÆÚøK˜­šMð:ñ!©SLU©W7½³Þ÷"‚¡¥<z!ÒÀlǹû¹Ù{;žÂœ¯—¬ÁÚºyo›ÜïÇyå íõãpcÞú¼ž˜Ýì 'OÅ>÷:'ñ–Cá(´¹µU@»‹éZJ÷9–µi’Ulo˲½nhéa*Ë¢óJ”û…ÂÐãP¿éøû¯ŸÁÖµ‘qL±ûÓ5a®é½¾Éèkë·$eoË>fXZG]×î ¿^«³s#åVH “CTç2‡­«ƒ{k¾¬æHÕ7Y•PeOÈn?=p›¨eiTó¯Ý3-ƒµÖÇÊd¨Y ‘z]’•ûüþ÷ë}Zšñ›`¦IÝZ§ƒæb‚Eû QF³B¡X:6/¼ðΜ9ƒÏÿÍßàCÊïà/ßñïð_ ‹Å¢ÅøÈGðg·ÿ"û̧ñÔ7¾(ŠŽ]N–¦H’išm¾©í‰%#ÈQ–9Ò4=,ĬìÖdY¶=…ežtÍ,M‘íH,Tͼzo-‹i’¯­uÿ¤½l]‡Ö«¨û!Í®cF›"G’¤HÓy±E|ÔFP“†ô ðÑ4E’¤{²V™Þ’$E¶Åx*²nnZZ{²+îÇjì“­iW dY¾öÝþsÒ4E–moïØ}qÅó¡hê•_³9´÷úy¶w«ù•"Û–ô"K¯ïýÑ®[òN\ç"Ï&I·‡Û‰(ö̫ÞûêzhÿçWЧyž!/ þ¾BÅÒÕáµ×^Ã+¯¼‚—^z ñÙ³¸ø½ïáÅ_Üà¹ÿþHô#áòqRˆ3Íø É(÷ ÝMX¯«B—^ü8ëÂÞÈúÂ~9)i€Õ¨ÃÕz{NB!KdÌØWn±T¿ég½®²ø8`­Ô S_y{†4Bö´ûÝz>ÕðØ'„B(–Èžð°¢`èÄ-IµUQÜ$õ-ò½rø¼OâQÌ4ׄB(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„B¡X"„B!„Š%B!„B¡Xº)b˜†C7àDù±ÏÏÓYq£µ)EœæWåZyüôù~Z´Ÿ¥IZÿ]À7 èKù5hÇõ*çF% ,èúQ~=Ë-à™ è†‰¸8éœq Ï¯N½»9ps»+Ì Iq²gÒ£ºŽG½xë1EâÁ˜pãüooæcª(XÙ-ù’§ ²k^NËбt¢›cNBÅÒÇÙÿïñЯüøòÇ?2úýô—~ßú×ÿ¯½øâ?ôd! „ÀÜK%HœÅBHp²ÈHóVP…€4w¯Êõ޼9„˜=‘¢, Ø3 BÌ‘–%Ê2ƒ! I¯ÿ}õ öëSΧËB†{]çWCWTnæéBºÂz¯Ï[h쎞€böÄž>˜»o´˜,`N„˜ ,n½ß£Øž_…¹~Èï” YHsï&˜„B±ô†½ÿýøî»ßà]ï£wþ/xüá¿êÞîeþü×~ßy×»Þsοç=øIî¿nîA­Å’~ ±TFeÐþ c$䵡+ þU¹f‘^À_óäÕõ²€Pµ‡'ÃB²q•߬^¯rnl|C ¼ëêYJa(B('K¾!dxÙÕœ7騍Žà?ñ5ñÑvo†oû™u-(„˜Zñ-ù›Ôã|Í Šu„B±ôò—¿ùøïôGOÂwÞõ.¬þÍÿŠÏ¼ç>¼ü øÐÿü?áþðOBxêôßøqÁûæ‰ÄRèXX.Wp±oa>b:›ciû(Êea9Uj±$a¾XÁö“žwÇÄ|6Åt:Å|a"Êú¡>VË%,LJo/ëcl¤e‰" `.tL§SL§3èÆ þzHEÃê³0]¤Eõ†7°—Фª-B™be¹oå#×Âre÷ƒ2¸æ+ËïŒÒ"½\ÂöI€Çµåì%T©2¤•¸¨EŒb è³®NûDM‘Xóª3½×Å•“øvýýsc…°×÷Yè`e:¼jL熅dÃ(I`-Wðãži`6b6_ÀK ”EŒ•>«¯m"Î/»H<¬V¢8h¯¡/«qÏÂ^›¬ šc­Á­Â|,ç3L§3K{3´+ ‡}$ƒ.k¹‚úXÍg˜Ît8aŠ" `. ÌfSÌf:VNÐŽ¿;— Äl³ozýãEœe5gú^ožVbI…0ÛþZ!HŠ+˜ûÎiÄýövme¾cBŸWõœÍ X½ð·fÜâ$¬Ç nK:lKº0ê1ZÚl]Ý*–߯riæGuošÕ½™'øÚcákaÏèÍ£ö¾Ÿ/,¸Ö|Ã0Þ5ÿ!ìš ÌÚg‡·vÿdð¬eÝ3Kkðìó*Yc^¥¢.§žÓËþ³eßžäþ»Æ÷ì¶±OC3¥ú ˜-VpƒÃEJºXÖ}0›Í«çøÚ¼ ìUýÛcÀvVP„€ÒKÌ B¡XºÕ2öU{ÇÄRlM«qXõ=ß!&B@ˆâ#oo×ax¹mË|1jÃxßü+óS©{¦´sFž×s©ß½ïw…×%v6szb'Âl¬m…¼<` Orÿ]³{v÷ØW/3ú¿ ‡yó£zü«ûGî®Q÷QY°¦ÒhTÃ;xNBÅÒ-Êßý_àôï©ø»»ÕV0=vç­Pzôw~_Ò?t˜PÚ"–ú†¹2]Àq–í1BÖ‘¤>æªÔ“ÙK'B,ç¹îªçéY [7$%M†ª{õ‡J´¬\®©·?’U½Ò^½dÌW6LcÒ•·ü8‹YÏXTG˜çÁr`¨ÅölãG¶TUÖÑ ´£Ñ’õv-QS'mQ'_ÈÃÚXÚ‚aZ÷ÛÒ«ß(§~kÈUÂðåÄVÝÏzûv8õW•%WR+>TAÃ÷ÂMA×Îf˜Ux^Eò AV-¶6Ô^¨Úe·ã®•qZ„m›UÝA^–("«:§ž+m}å9Â: ÒÑÕÞø%ÐëõE+¿6òs¥úÌNú푱ò#D¾óÿPÍSu·cRõ¥Ú €ý÷‹ŒU#Ž‚e5WeI¿­Š¾Qïj=ÅIæÀþsšûïÐvåM(ídÕzXòÐ„Ü wêÆ­k‹]ÏÝKQÈiæK‰Ø5Ú{yô(‚ÊЕ;Ã=­ sm¢Ì=Ü!ÞV×Á©_pLÜk·î¥Í?g&ׯ¶Ó†¶Zu;ÃC™ûÕ¸NÌnÝU=ÿ¶y*š¾Ñ{kd‚¥ZÏi».'mEØ2<·ÜOrÿ]ó{vËØ·/`”ö%À~¢z¾¨p[ïdŒ¹ÜÍ—<\¶ÏЏhƪêWåÐ9A[B±tkãýÍÿ óï…swçM:wÏ=xôw~ _þØGðÚåˇ_o—X’æm(RûQ©ÖÍ­0êÖ,už n’£( „æ´5œÜl(––A/ĮȑÆ!‚0F‡pVóV,)†2s[!¤.ƒ6TÃÒg0–&¼¨2šº+F°¥Íµq§.Q”åà fõCœTfm°ÅÒúÚ¡¦¯&\¯QDfõ¶´ÿ6º,‘Õoçµep¢r‚eõ–X]xH“Q!IBè½õ7~küe;çÃúÚ€Æï/œê±Ên Ë^ÙN-J»5IyÛΓÚÐVȲª®BÖ¦ ¢(Bœ$ðêúè^Úµ§—ð£}c.k0V6Â8Ežç(ŠÃîedüªd òÖ¶6eê^z¢9pÈ9ÇnWž"ô}DY²ÈÄ|{©g”޵¥™º—¢LJ\ ª0'ÒÎ5K‡·†M’„Ú舥´ò²õžEeY"uº«ýó¯öÔI3ÄcÏYGZ«2¦ún!Ë3äy±#¹ÁlÍ8¿O‹Ä‡i9Ÿ>½ÜOpÿ]Ï{v0ö'Z›–! Q•0'K„ ]ëæKsß·ÞÿÚ“¤¶mÜ?'h'B(–nq.žý¬ÿ_øßÿM+–ξûÝøð¿üuœêI¼þÓŸ^±¤t º·üÆš‡¨û¡\› ùêÎS‡ ÷³úDýÓ=”EP¿‘Ü•í¨«»²c!peØj²êm½b˜Xh•žÔo\ÏÓAbi-ñÂ.¢ñléëm<Ç/gwßK=±$u¡I;Ä@¿ÿÆŒ¦ã–Ý\cd;úiØÎfÍÒÐ+Ò ªç¶†»Õaeº7Úž²H°˜Èkဠt+8X,ÍáZ!¿gˆ6m]EùH¦'šs‚vöª<nëê½­-™_å;úcWbÅÚÅûB3+Oç@,5÷ôp YÖ©{éó¯ñ@®¯Cöq`Î6Î×f«­éÏ«—C2œ´››+m{"–ƒÆð÷ßµ¾g·ýIyä‘‹¹&†k{Y‰p©„gXÈk÷ÆŽ9A;B±t óO—^À{çÀüßî¬=Jï†ÿGØŠ¦¿øõ_Å‹ß=w¸`Ú%–äÅRÞ„­ô“>,±\,°\.±X,±\Zˆ‹q‘U–9–j'ª¦ú ^àaÖÏl×x„À¬g˜…Ž ËñÆéÁb)­ßäÎU¨Ÿd—•q§Ï5!U!\;ÄRzB±Ô´¸^£ó¨†¢r¯Þtå! CA€ †ü ê‰=ÙåFÞRg#Y¦Ž[v“ô _öab©oŒVáDs©y‹êõJêaT—„ë:DI6ÚžÆû‘&!s™Ö‰ôU˜$–ÖǯiKgdÛ:ÇŸ‡s¼v%õ›x!)U’×GÖ¡“J¸ìkK^‹u3^-`d½[˜ßˆˆ5±dŒÌý~æ³ýó¯öDlˆ˜æó.%‘'ð ÆlÒz¶ecüYÒxg ?ëÒÎ+Ãðª= |ÏÇù§ÃÜ×óž½b±Ôx†…€63`Ú‚8Ýx™³N„ÅR ]êÄÒ¾9A[B±t‹’g>ôÛÿ gÞ{?žÿûqîž{ð·ÿöwñ—¿ùUÊðS§ðâCá¿ö+‡ ¦+K2Ì0E–ˆV“ÞgymPL!Ë ´‰0ß&–ê¿~8Olµ‹–ÃüÈ6qøEÒ[ЮYƒºËsi–Ž/ÒoÖ'ô<\Eo½Uô6±”ŸP,µ¢OÑoE]]½¢rgV¯iò‡oc5imAöÃæ†×!e¥ÓÞ/–Ô:áCثˢßvåa8N¸ªB?þ¸Xª¼ìž kÃwï-M¸–Ò‹¨^/¡!(ÆÛ:èÓÌÎ9n»ªãæ^ÞÛ`ÙÞçiy@[ò®^@ˆ÷¬ÛkÆi²–¤¥KÍ‹”.ÑËúz¢ýó/½FãéÚ GµèÓV½MO›Ã-/^š~èÄRíYVaWNlVíœåo÷ûuK'½g·Š¥Óû7çû´¹êºÙMÝ‚MOäs‚ö!„béåÏí—þçÿ„èOþ¤Næð[ø«ß¿/ÅßÇŸÝþ‹­wéŇÂ_üú¯âüSOVÔ7ÒŒžXJ·ˆ¥ÖÐh˜˜(úŠÖ2… ­Ê.ÖKnß³ÔK*!«ÊZ8•;x“;Æ2Ì»7Å»²½ ŒšnmR?»’Ú3 6<ÈÕ´6[ ÈÆßpî%ìz”¤Îa9Vs­Í¼äåÉÊ)šêl ×µ¡7¡.µ—àZ‰¥CÊÞ%–ܱ”®…uΖlÓ¨tg$5k_„2…iÛ0é0ÛH{Ï¢'XÙ.kQ§éî<Ї¼\&×®Ó'7k12O2öŸsÜvEµ/Ot¸¾gÕ%UiÄà!miÛKšǵ1WÅÈ=>öâ [‡8L =LðÐd!T,L«^b—*ÉÄþù—¶™Ý,,N;—êÄ.í  ³¥ ǶÚP±uOP+¶Zn¬éiʱ۵—‚ü€q¿Nbé¤÷ì¸Xµ)–NÔÝêb|û„zsY!©X:|×ÄTîæ‹“–½¤!Äc-6æÉÞ9A{B±tëòìûßßf½ûòÇ>2ð:MéZÁTüèG†áu^–*\Þ¥ÐU—í^+TÚ7ê)ª4ðÆdõÞÓµ5ÊdѦzîÄ’6X‹’…VÏÛ# ©SÌšïÖÓSÀ[Î6âÜ »3V‚Õt#~×âìNuo…ûo+Úµ6Gן»ÏUo8•5³P·¦MnBJÌùPøIê¬Úe¤—3ÈRØe%ŒòþîKêZàÆ0éÞ ¬IÙSvÒ³!–úk’šý¤*C«™sÚDŒi›I¬>ÇÖ×D´¬Á ÒA{ÔÁôŽ1ÙXS·pâƒ^.¨#)µ6ûÙx[Ûõ*­!wÜ9pÎ1Û•‡Ü¶c¹&µój¼-‹µ¶$X͆cT­ƒÒödlRDK0ãb£ïèÍÁÐÒý-ËÍ3+;hþ•e‰È6ÖRl+X8')ñ–PÖ¶MÐæÖö=Ó£^†ÝÅÎbXŽÔ›ûÆð$÷ßu¼g×Ǿ¿ƒ4ïe”õ=îš1wÓáUçXÖó¶ñ€±ƒ‰Üï£Iµ.«¹wNBÅÒ­Å /¼€3gÎàóó7øò;øËwü;üWÃÀb±h1>òüÙí¿ˆÇ>ói<õo Š¢k^¯,M¤ÙF ê,I$)Ò¬8Æõ ¤iŠ4ÝócWdõqéè^FE^}ŸåŵiwžïÌ’u(M=Ó,¿ªåäiŠ$IŽÙ÷W)Tô•§Õ|ÚºÁjžUå¦Ç0”Š i}NqŒ„(ŠPA•Í+Ëå×wì=ç˜íʳ´¾_®Î|Ίk4¿Ši’ Ió+˜Í5¶õMõ ʲÃú£ %dn; œ½cxSݳ²,oÛ,Ô.YÇŽûõögY¶õ9èœ „Š%B¹^Œe×#·.EX…ïN-öE}HB@wö!„P,BnEcp×¢rëÑd\†ôn4^&ö!„P,BnQòVó¦3ÎÙïâk=†¯…)Ê"½œAê|ÓÚ=y߆>›b:bn¬®yá’Æ»pSGB!„B±ôÆ“y{¡l}æN-òS©ù\ªŠòQQÂ7”ÁyŠá£,cèÊÈ9ŠŽ¸,Q¦”æ3IjÏ•göak•|c­¾2Ü,ÃRë>“¥îÌܪ­kÞgV•¿ s¤^ﺽz©Íz¢‘þÒ>õÿÃÛ„À[çOl~_—å-´ö3IêêlF=a”¹UŸh«ƒE#!„B¡X"׊܃Zî«Ú#”¸•`çn-&äZ08µŸÁš+µ0ªÖ yz†ç¦Õuý…Z ‰…[{V ¸F%&f„æª4\G5] ê­Mj¼uñ „B!„bé& Gš$HÒ¬ç éS Ëòµïr¤iŠ4M‘eº+2¤I‚täšEln$@8„<«ÊË® IB‘gU½³“o›çò¢~–¦H’iVl_í÷¤2!„B¡X"»…ÙBS{‹0{“Qo˜K¯!„B¡X"û½;Yvk¥²€5©ÖE…ÇB!„P,Ò­¡ŠBÄiÁ¾ „B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰H‘ÀZ0 ,j ÃÀb¹‚ã…Èy½"vaè ÃD\ïÜgÿý¿ÇC¿ò?àËÿÈè÷Ó_ú|ë_ÿk¼ö⋇]3s! ± i ?;¼~™§×çÊp=¯Há,&B‚“]Ûþ«ê'^·Ñú†˜™›Þ|s¨oiîìü£'ªñ=±õO—7þ׃y¼¤XzSÛó+¿ !„Š¥7Ñûßï¾ûÝÞõ.ô?ÿOø‡?|'ÂS§ž:ý7þG\ð¾y,±¤þ \k©I£oæcÏÄ|6Åt:Å|a"Êö‹¥­çd–S¥>GÂ|±‚í'•5R¸\Á‹"8KÓé3}/Î×ê§À‰B˜ú¬º®±B CêbÏ‚>ë¾Ó¢-Ã^Î u¾€i(öÓ|ïÛXèóê{}7Üç™Êá;&ôyuÍÙÜ€Õ†¿ìL7DX˜O§˜NgX˜îš°ÍØ«êû™ÛYAʨXÊáY+,-o~Y$°WK˜n„²HðµÇÃ×zuOCÆ|†ét†¥íÁÖÕñO|z3ŽÆ áÆ8¦pÍfm;¼µvdð¬eÝ3Kkë\H©žOË,'ÀK¡ƒ•é 𪾚’½å6} ò­ºþs¬Ü*„Ñ·˜N§˜Ît8áQ–ǰ–ËÞ¸Õ/«Å²›E`eÌÛëõﲨ®áé ¿³»n¶µ}#ýºXÖeÍfs,LéºçƳë1¹ïŠºÏfUŸ--0_®´-Eâaµr'!–óÞ=ZßOiè`¦Tã;[¬à)!„P,‘Ñ·¾‰¿ºã·ñ?ø}„§Náþð°ÔßÅ#¿ÿ{øûßS[¡ôñßü—xú‹_@žeÇKëtb·&uá£, 8º2®§ÀŽ‹-bi÷9™;ßünæTÖfˆ™7ðˆIrOìÙZýÖQá¦U}íyW®$‰VÈ­‚l£ !ÈöS–ˆkOÇz½ o›¡—a©uåÈR÷÷ÌŽQ– yKèäÔª\kÚ•%õŽQq±´R«zÛɦ– 呇· ·Î«0¼ÄÕGÚ]õg#–¼…6rŒ 3ªEl`Úë³¶žòQ±Þ½ïÅa±- p8F›sI†›ì/w[KŸË°“‘y™ûõý5ˆ—Êû&°r¤^oNJRoŒÜÁ¼–æîH8¥[·y¤}#b2²¦½6ôúI[µ‚ÇÕÇæ²RÝE„ÙXŸÕç_¶t¡¼ëhðó®ïÄèKB!„bé–æïþ¯Gpú÷TüÝÝj+˜»óŽV(=ú;¿/é:L(íKkßõ×(Ó\wM†ê­‹¥}礩¹*µÆ×d6ÇÒ‰*k{[äV¤dÁ²2èdI¿~ŠŽ0¯‚£«B`î¦]¹òAÖ$,¨Ï‘æ•Á[|z-töŸÓû ¼¼YS³¬ŒÑ¾Ñ8XsSŸ?YµmÍCrB—a¡Tý¡-ÜÊÐÍüÚøWáå%ò°*C¨Fl#ƒ5WÇÇzmÍ™¶ ÚÏì©T‹ªïoÓ½ví– ÌÚ³Ò¶»˱ÕõwÝ7©¿ª§l -K83¹6¨Ú`Ï`ÕâS1¼NpLÌNjf—nY7¥t~Y¯ªŽ ‰á{!ßWn¯'KEY" Vµ@°ô*I°šTuÙ²†Í˵`o<œf휌0]»^™ú­ˆ3£eîmzëÏšpʱöu‰êñRá¶^Ïs¹¯"\ÕsyÖÎåЬ–¬û–U9ªn×}–¶Bvž»*miïQµ»G›—Íx¯/!„B±D:Cðoþo˜|/œ»;oÒ¹{îÁ£¿ó[øòÇ>‚×._>üzÇKÝÛkn’£(ŠÖB›mŠ¥CÎ)ZaÔ­Y:ä¼±¶(B@š9ƒÏí™Ô¾ioê×_ËÒÝKÛr—a1rZäC±´ÿœæ¤îÇɦã#É2dÙŽ5OyŠÐ÷eÊ"CGðí¤vœC~Ѝ¿–c¡¶ýÓЫ¨Øðtl_³Tﵸl…Šº¬Œã¾XJJ¼ _sÒõU°ÔjϤ‡4‰E’$„®4ãX{o¤âA=j!&ëHëqBÆT_ "dy†g“jø=æmõn¶o,J­šLÛA'°çò†¸]Oµ>üð< ¥ Ÿìê’À÷|œêê´eß=J±D!„P,¿Î2|è·ÿμ÷~<ÿþ÷ãÜ=÷àoÿíïâ/ó7ª”á§NáŇÂ~íWL=±$M–ÂAàÃ^Í{ é5y‰¨6ø„aÖÆT°œB–ha¾)–ŽwŽ 3L‘eÅAçmKBéÀQ½f¢2øÇR‡÷ ±Æ¨Õþ 4­ZÔÞ‰%EL¬x`o?§öbÈF/kXÒ®3ø*ïŒÀÜëŒÖ¢~s_«ûÅR#vµž˜iB”©Ã³Ê(nI?¬ª†×öw_ðÅm»«°®ÙHßdXhR½`?òN*aöÂ/…ÐV8ªë¬­zé6!€ú1ÅRÖK ±§Üâ*Š¥2sëPB1ôÆe]ö=\®Þ[“•m†—6õTÖÅÒñÐ&êôYsÔž×ÚK6H’9Õ³@ýtåYV½Óجæÿü+{UÚ²ï=XB!K·þk¿Œð?ÿ'Dò'u2‡ßÂ_ýþÝx)þ>þìö_l½K/>ôþâ×çŸzò ±¤ìÚ”¶Í¾V½Ö¶d›š9xSÞ ‹ýç´jÃÄDqÀy»…ŸǵëÃ]‚½†Xÿí»¾‚ã˜í5š5'­á+)˜/]{Ï)`5k–¦l×iL+TYŒ¶%ª Py¢Ãõ}8+½¯J"fìK]‰a±íX+{öYŠ{YÓ^†¾X* 8uòIÓá¸6檎Ñ$0PgK¸® ½ ›˜(Êi›ýLÁÂrá˜F›qÐðÒ^F9 ³¥ ǶÚP²u/Æábé€rÇú8ÛLPpXj×rUáx­§®,ê’:‡å8X͵Çf~M ÖJoëÙxhò´4PK*–Žß51•»ñrÒÞš5!0ÑW°í&õ1z?JÝgÝK A~uÚr¸Xµ)–NÄßB!K¤âÙ÷¿¿Íz÷å}dàušþÒ/´‚©øÑ Ê’~Ú_E›ÁZÛäH¼žÕ$-XÔ©–ËvKßc²ïœ²L±P{b¨ö í?o‡Xê¯mi3wõB|²‘µµ!V$.¦ÊÚúÝꉒ¤WßêíöÞs²  M•¼tK’‚<Ü8^Ó˜kRÝ·µgDYKõú©¶ïc§5v+#v²µk^ÈC/AÓÇw´!› V3u°ö¥Zg¥uk¸» ‡QÏ+ÙÆ0%»P°èÁ‰·„"­õïÜÚºYr•X¢çõVîH×ýÒï¿õù³´ö²µ¢»úgεáÜPgðz©Èw1¨§2Ó1é…Snkߺ`sÓá}®Î±4&䩇™" Ö–ÍV^·Ÿ˜3¬‹´ÞsâÊÛ2~<±Ý iîñ·BÅÒ­Î /¼€3gÎàóó7øò;øËwü;üWÃÀb±h1>òüÙí¿ˆÇ>ói<õo Š®Ý×,I$)Ò¬¸jçdi‚$Í6R\V³bTÙ¾² Ù„édiŠ4M‘mgyž!/Šã“Uß§Y~`èe}½+ 7ʲ išŽ¤“¾:y¶³ÝeY"OS$I²cs¤ÉøhŒý4M‘eWÞÇ+÷ê®´Ñõ@ë}¸}näõ8fWV—½å2—w÷ÙõiK,˯é˜B!KäÍÃØ.„¼Á$¾……1«÷û2FzB!„P,‘k.–d±;Ó!×oÞmºÜl–L!„B±D®;yΰrcQä)¢0DrŒUB!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±t•9÷«¸óc/àçî9ñÎïrÝù¹{Îãν€s/¼ºuž¾öÚk¸též}öYœ?ž\'ž}öY\ºt ¯½ö!„rk‰¥s/¼ŠŸ?õ, vrCðó§žL¯½ö¢(¢xy‰¢ˆ‚‰B!·–Xºóc/ÐH'7w~ì…yzéÒ% –€K—.ñÇ€B!·ŽXbè¹CòÖç)Cïnœ<þB!ä–K4ÎÉÈú<¥P¹qà!„B(–¡X"K„B¡X"„b‰P,B!„b‰b‰P,Š%B!„P,]±têYÈïyò{˜âšs‹öõõKÏàìÙ³8{öì-!vžy¦jëÙg(–!„B±tÕÄ’üÐp6}ýÿ.g?Á#uû4)Ÿ9ü4Í 4ç¾ïE\xµÄO_€×0ÏîræÞk€—¾ó"Ä{^Ä>üžga]|?}ýgxò3ÆëøÉ —_/qtñeÈÇh›ôñ—q¹nÓÙ/~¼>ñ¾ÝãuH?\S±töqÌ4 šv>ûõNü<ýø#Ð4 <üxïø3xÔøNi´†Sàóë;¯}êÔ©Mêk;ŸúÀH9OãS³SÐ4 ?þôP¸<ù(î«ËþèçÏœ¨-Í¿OÍ>…§›sŸ~¼ïNÒ i€sö<Î>iâ÷ŸêÚªixà¡OáɳK„B¡Xº"±$=ôR+&c»ÿŸóÉ µXz¥úàÕWp÷;¿qê|¯µùóãû7ÀÕ¿óSÀ+ßM Þ“ 2ï_Ç#ﻀoý¸ºÒ·WÏž»QþüªGßM"§_—×uÞö_uÌþ맯›ëmûïÉO^èúïÕWj±ôÊö^ÿ1înû{ô<ò¾ÝãuH?\[±dãþF ÜgàL+0†¦i¸ß°ëc}<|O$iCq¿ñÅÍk?Ý»ö÷6øþµr*±Ô”eØþàš_üè}Ý5øΞ -Í¿µû†þ<Î?óu;,—b‰B!KÇKðdÖØË¯áÓUƺôà‹øÞ«õç¯þZßÿñäw>×  ÄW~ö òbé}ñþ€~à¾Ö£ôY§ ù{æëŸê<`³‡ðèçmxgÎÀóÎÀ÷}z–!„B±tb±Ôó6l„a½çÅú»ÊØó*ðá÷|ï„bé{ ”“‹¥gáÔâââßʪq…½†O]±´3Dí}Ý]¯ÄåW†Ë¯þlp½¯<üìV±$?üOÝé?ua‡mùcÿýx4´ñ†K÷=€Yía9õÁÏïÅB%0úaqOo\cÜ;´E,Ý7.–¶Ñ‰¥N°}àQOÛµ§Jû¾þÌqÚÒ÷õ™áñÁZ¤³xô§6Ž;uÿa~ýi®Y"„BÅÒ•‹¥ŸP,H^>8뺊¥ùKµ·¦ÄW>yÒü‡­g§Iôð‰f­Ñw®’Xzýgx)ûiÍë[ÄÒÏŽ!–Öÿûi—bL,½ïÅ.ìðõÓѱ.g~Öd?ÅKÏ'͸!ÅÒŸ‚÷ä£m˜Ù?úë+–N݇x æþM±tætXâ>ë|ô³öN¡Ôßv=žóÈl$„¯óôsãºmJóSÄ“¶¥K|jP—/ ú”sg³ûÖBþî›á4<B!„béÊÅRkÈ¿ï9Üý¾çp÷ƒÏžè|ñÎïA[½²Õ³t##¿ï”÷]€ò¾g¯SyWÞ×7#'K'á™*Å÷qSh߬<]·õé§Ïžè|þB!„béšò~à%?¹¥¹AÅ¡X"„BÅÒ#–¡X¢X"„BÅÅ!KK„B¡X¢X"„b‰b‰B!Ko ~îžó4ÎÉ ÅÏݳi?ûì³*7Ï>û, !„r눥;?ö trCqçÇ^ؘ§—.]¢X¹¸té !„r눥s/¼ŠŸ?õ,trCðó§žÅ¹^ݘ§¯½ö¢(¢`y‰¢¯½ö !„r눥F0Ýù±’GÞÐл;?ö¨Pê ¦K—.1$ï ½»té…!„BnM±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B±D!„B!K„B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„b‰B!„B(–!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„P,B!„BÅ!„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!äªS<σã8‚çÎ#7 qãõ×_çœ%„P,B!ך^xÿâ_ü ü³öÏ „ 7·Ývî½÷^qB(–®ž¡B ?[û.‡9•!„ 7½ef’€§‹µï2šÚùÖkdX(ê¿êuó„Ðàç׸ÿsªXÙÆw™¿€´åÒð2äÁ§!„ ï¨D, ÄðŽv•wíúë¦eGÿ_9GXÜ!pÇÂ_«îïã\ï¤ç½9éúöf(§H},—ÎŽgÙa BY ;Ñùœå á–gÚ[|ÿüŸÿs ›”·¼å-xê©§øl „P,]KƒQˆ¡hI세¶ÆuâÌ!„€&<Ø–Ûñ‘¶¢ª@†ˆÓ¢÷5F&(Êy!J2ľËñlüP°¦„­g«PÚ*lÅSx°m¶ã"Lòñ/ë.âЃeÙpƒÅÀ{•Áwê;?Þh÷x›:±´Ý0ÝV§ª?Ò<¯ÚlÙð‚µróžcö}$‰ e§X’á‡Ï9â q÷æºÈxMùÉZy½6¢e‘" c¤qÛ²áÇéÆ8%aˆ$ËÕ×õ£t£]¾ëÀ¶m8î°?»ïøa2lgÀ­û1Jóú³°ªWcè%Q;§Ê²D‘ÅÂn¬wÍÍ$­úÛñ£ªvöÑŽ«ãÃ6´e'‚¨ëë]‚s¤íßÝys/õliB@HsÄYPýÝ„š1teó¡VUXÙúwŠ^×%q«kõÑ–µøÛÕ¦=biOtió;Õ¨JbCùÛ%–¼|¿X:ò*±ûÄQ/„±‡<³Q´bÉGY0ëñžY!²úü®ŸÌ ¯ÔX»&« 2Cs$d°öT¦îF›QšÓÍ~ôR8³êü¸6B—Š€2ܬªOõýé¾¹9¨³ÿ¹]ýŸb©miÃà }åñ[†•1[“ÊhÅu¸\õý*z©¾7ž8X,íêÇö¼—BhB@jî¹Ì©ÎQ›Õ! þŽë5}:CÒÎëJ}Þ¶qÙ˜£có&ó1]›+Òd…lìøz\”Áñülß}vÔöíÞ{îóx³=ÿß¶œp¥A;é„ÜR’lG]}]é>“t¤e{®¬«ÁMKêfÿ©‹ö™¶íY|±ž³mo/äº(ŠŒ7Ù&&} „P,]Ãp¼¾‘=µ¢Ú¬ §™YE#BÔ%ò oE*b ëý¸ëNˆ$ ·¾Am<[ñä¤16xÊ"Ä´53Š€&ðÒ¢^c%ê0•¦ÖΕQÙÕµ&f´§M%<ýmo5p4R×}uª\S§ «Ig$­ÔÊ0òÒʸ©Ö„íÓdrƒ$A«Ã"Ç ðÖ¤êC;ªÚí/«1°â—`ÈŠaÚWån2(Kž™ˆ“híí~ÙkWS÷ÖL† ¼¼¨Û5ET4ãiÔíÊàÊ@èx Bhò´2\§V]FŒ¹TÍ¥Ü_TÂ=.QM˜hu½²Œ1ÊÂß;7Û±ˆDás»û?÷¡uUÍû"47 ËŠ! ,ª2«þ¦vm ÊÒiyãmoÓ½ÅÒî~ìŸçÌ¥ºŒ©;¯ï› ‚²D.ë¾Ëw^¯¹çÑWyt%ØÉöqÙ6G»y“×/Z´vcêUc9µãöxef!/K$Ž^÷‰¬,‘«ê¥Š›î¹Ïº¾Ý}ϕǘÇcíy©+'÷ªù±¬Æ½LȵHÞ]×^>—öžus;ªŸ»A%.5sèß!– §æqÝ3;ñŸÅ•”7ÖŸzÞ7(2ÞdÄqLcB±t­Ãñ¤Éª ïð ¹õ5Ç…K­20²}béÐûVm¸V?ü=ƒ,‰†\ÇÆÒ˜AJm$už’êØÈœ@~a*Ö ¼ê­²4÷ö´©DúÄâ­ú¨X:n|C©û#Ù4:SÒ±¤Íæ˜Ïkf3V¸C,Õë’zo—Ë"CÅÈŠ¡'®1öûe5†ó¶õNÊ2èÕÝéê^äHâaàÁ±VЧj+Bš°J!«˜/Lxmø\ŽUíÉ‘µ)–¦Ó……•÷D3caelK¢î×Ī=7Ås³‹=ý_‹%!$Lf,7@ºÅ«gO„¼D^{q„ÔxiRèµw¦<¶X*wöcÿ¼Êð•àf%ܹ !¤¶OÂ¥!æ•ÇhÇõÊ¢}òÜ턚ºD¾k\¶ÌÑnÞT}.Ä+ËÄjeÂ2 Èu9Íñ‹ o_Ð(B@oDFóïú~Ø~Ÿ ÅÒö{îxóx³=ýrêq¯EO´Òêg;gÂð™èé „0_™0W+˜–Y‰%iÞyù^³”ÖÏ4w¿Xj<ÕÙðšŽãP`¼É8wî5BÅÒµô. Œ—²D°P ”Å “SóÃë$–Œƒ$WáKð³"vÞ.YUëP;oÔ8È›z%U8ßÄ ‡o•ëãw·©Ä‘7ß0ÂOZ§¶jÏÒZ3Oºfi],Éúx’¡ˆÖ°î‡˜Ue)[Cþ¡ÙŸMÝç^ŠÈš÷~¬%¨š:ð˜…öšÜûAWô:Ä.©O!§*ãÝšˆÉ ÎBÐVp—*„bÀYib†ø¸só€þÏcs­"%c5’)¯òæ¨p¼eõU%$q«°·ÊØ>¾XÚՃ󊪘Ù.æRõ]Ж6 ¥kó¾qñtBÌ%.d!0s’VXŽËØíÍ›"lCðZo¨¬@UUÌVÁ¦Á¾ž`£÷ïÝ÷Ù˜XgoÞC±Ôˆ)+ޱDíMÜ]×qo{ç-–¡¨TuZ…îKÊ0t²~¦IôÃ6±Å!„P,]Iv°Ê š ìçÎ¥Ú`­  xü ÄÒØyU¶;ÊÆŽ¼Å8è®Qyc¦ 'jBcv·©D‘<ŧŸ ‹9nº>¨Ã›f½Ì‘¹ÍRv|±Ô…P•(3ª° .Öc´ÞifTÖX&½*]¹À2<™Ú¢^¬_¢ŒVgÉ3a¬ªùQä)Üå¤þî9ØËì:ãa–†X¨Ý›ûÔé }ÍŒQDËuiÍͶλû¿H<,ôUmˆH ªXóÒmdµX«æVµ.eV Á㊥xg?Ï+`¶kµd8Yã±¨ê° ò½×+ËEÝ~USªÐÈ¢ê§]ã²{ŽÖóob¼Æ®¹„å'ÇK»ï³“‹¥íó8iÏP,5}*)Ê ìnw]»úäe ÏP „Š ŸÔ3±´üÂðÖ=Kµw°ß[žÅ\ùÇ1Æ›Œ‹/ÒX#„P,]O±”Ë:4o‰0Má[õú¢‰Õ& ÒNÁ·ë…ÄòÕKÕ›Tf K#¬frÏXÞ4|úÞ¡Æxœ™’Þ¹º›ìiS‰ ¶÷θo{»{xú}àÖuš[’ØÃLWY,Õ{±™é#MB,&Re$åúyÍú‡öún±´¨½R†"‰œ:ülޤ1ÊUaš! L¤n?¨`QµÙ°¤YÇÐê·ó1BšÂ ¤±¹":c0óÚd «¨ò¦4oï›}‘™›ý±ØÕÿE-$”¹‰(My«*”j4u~ª¦ÔÆi“ EnÅUeh¿õ¸biK?®Ÿ×¤öo·²vÝßÑ×k¤Q‡fJ­ˆLv˾{¶žÓ¥‹$aëêÚš¥ÃÄÒîû¬ëÛ}÷Üáó¸Ü*–ÞÚ»vs5/Vö?šg‘Š•µóLÒ qŠÐ­÷SSW(Ê¡¥CûcŠík–”¹U=ÓêÐåU˜wBu˳¸I^1[Úˆ²nMâ믿ŽÛ~þç(2˜àB(–ކ·f¼‡¶>Ȫ¥L—m(Hê/{á:2¦S¥'–º¿KÊÀð*Z?{•:Ã\“ di³þ ÷&µºF³Ž …9SaHM"€}mÚ• ï¸u jÏpK±švI–‡ Ã÷ôÇ0l±Ûˆv¸)mk®BÉn·¼«[Œ¹\×ç‚ÅβF3J“6{`8÷Ðf3(("š<ø~Z{š²Àì<4u&;+ÌÖIcü÷þ]277Çbwÿð–Ã,p’¶@¼% 2®ÅJ3vëÿn í; ÇX ÙÕçeU–ÁVœµÿvº^ÛŽ:IF»Žh︬ÏÁõy³>ÿ&Fµ!ëÆñuÒcdÍÒîû¬ëÛrï=wø<ÞlO¿œ²Íh) ­·îiw]KÄö¼½ݬDäƒGI#ÈšgÏÛ Ä[G÷xk„h¾ëvj¼ëY\¦]vй;|¾ß{ï=LN!KWL‘#MSdy1ú¦=MÓý;®VZó,M‘eù‰Î/² iš ÖµÖ¦k_§k9^Uéx»M?Ä'¯{Ý—y±§>Åx_¦Yvææ1ûÿÄsâêÞgyq}®Wy=f#É®l\Š<» Ï„+»ÏN4¯[]«qI׎/.<ºe<6ÏÓ]Ïâùȼ>::Â[Þ½–¸)-!„P,rr#SîáBnnòЄ*Km:}Îãƒ`ñÇxïcáu/÷©§ž¢`ºÉ…ÒSO=Åg!„b‰7†¶1ÃÂáþo±YPeÝ>(L–óøÍÏÑÑî½÷^ÜvÛm 7Ñ¥{ï½—%BÅ!„r=xýõ×Ç1Î;Gn`â8f2BÅ!„B!„P,ñ"!|óJ!„B±ÄXuBÓO!„B±tCóÔSãÿùsÿÖ„Ù¢và/Tˆ·8jþ¾c£ò‹;ÔO› ‚%„Pwì]u}²¿9˼ú{¡¨£›ìÞ,Tý}Ç´¡?Ž×£ÎÝ\9¼ìØ5a‡'Kk,5Å8vÒŽ`¡B(‹›6ÙG‘úX.ûûyU{’õûŸ !„P,È£ô–·ü¿hLîC²‡ð±îxïc•Ñk¼ â­:ŽêMKߪ{ÇW› Ëo¨XÊ}BHðj±dÈÒH]o&±ôØ{UÌ® µv¯‹XjçÊeç$!0÷²–'oÙ÷óô›V,ùº!ªúç,¨w¼A>ì0„B±tlî½÷^ÑäÞá>GH²f£Îq JºBÓ(@g(Ž\ˆÓžl´bém[Å’/I86,ÛA˜¬mXš'ð]¶mÃq}¤EU‡d­eY"©ëÑxŒ×eYpými°søæBHXz!²¢ÞUw‡,ˆÄ(ÖI™a5‘ÖÊSáÔó»?Žýûsî¦4’!äÍ$–â8¦ñLnIâ¸óš8s Bª ŸÔm  ‚²D.!„€£ë8bIž™•ášz=aV`¥VvTØimTê^†Ä™A VRg‘92ܬ€=•*c9­ÏóB`jÇ[D\›ÁP„4—(ËæTÔ¡WǼnÓ¶©Y‰ÊÌǤ™Öí. 8º!Tøyg”ëNˆ$ ‘Y-â&ð³eÔ¢Mƒ—–(‹Ó¶ßzýûP„€ºª ï"4kQ˜Á7”º¿j£{¡B­–eà(ó*A¥-‘”%Ê2Åj*U¢/éŸUµ#q¡6fGÙ»ÄR÷wZ‰¢©Uc.Õ×Î\ÈB@÷Òz^èCÑôf¢È}¨ý¾N=L¤5¡ÝzÚ|È¢ò,¶s&AHzý £Þ°7vªrgvŒrg_0µªÌ´ìÖÆ2ÖÅRåùôFC »ySõCdÏ}îÕa„iYâÈ7 ÄÛª5K[ÄRYÝxÖý£m¶bofVk‹Ä…Ö{‰²ê˜WýÓŒ!„P,½IrîÜ9Îä–äܹsk‚B‚›•pç2„Ú7ÎáR©ß4—'KË0oÃâ}c°È‘Ä1ÂÀƒc­ OkcÐKQ4! .”eC®ãÚ b‚•ebµ2a™Fe÷Þȯ›jŒÑ.9B%ÂTøùI®+ÁNz  BÌp>XÔ^)–ebeZXλ¶m®Y¯WíY›9mx–©5k­6Å’&3–´a_‰S‹^YÅ|a ûáfÕØ½P{¬^ÊÔi=Íøuž‡jü¤=e&–r¬jÏ”¬M±4„I6jx{º!$ÌW&ÌÕ ¦eVbIšãüÈ8„KuëÚ£"KE|Ï…µZ@ë «Íq©4w[/Û¶¾Jëï͸D™Ú„ÀÌIêD ÛçÂñÄÒZýê1h®Ó?ö ±ÔˆE1E\–Hìi+°}CzŽÊáR«Âj3Š%B¡X"äKÍæ™íb.Uÿ×emiÃP:ãídbI©“+lƒÃ°& ª64"›·þqRŸ•ˆ ÛP9Y–k¨ªŠÙ*8P,yk¡z2Üô$×UÞJx)øŠc´mª®#AVT¨ª†U$ X¯×ˆÑ¬Ëækb©,‘Ç.æš2\•èí4¹š¦#îÝ‚EÕ7ùÐûÒ½ûÆoWÙûÅR‰²L`êSÈýÐCÃE™{ÏRãQiÇE’¡¨Tu ÷ }­ŽMR1±”a5í…²ÉJÚŠ¥Jì&½ãq˜ï髲 1ê2@hj•¯(‘y»çÂñÅÒP ÈW(–ªŒ•Ë0®<½š‰¢,,e1XÏÔÜKî˜Xʆu!„Š%Š%BÞ4 Ï^.`×^«, ±P«È´F]/ϨÂÖ‚~²ÏÄÒò‘×}Ýÿóôñlx͘i o#©Ã¸g©@²îµçnë«Î&Cé­ƒ*öÌ…Q±dø£m9T,åÇKe™`. Hª6XsT­š ìëÎ%1«÷°.Íú@Š%Báš%BÞ\¼xq˜iΞՋë»ÌÕÛEûÑN£÷8©ÃGÄ’j L3$¡S­5FkX&íbÅð†ûöéÒE’ưuuÏš%ÙÒF”½´‘:|ð¶ü8×m’GÈSxq‚ÀÖë„nk€ ¡Âô#$±‡™,Ú¾Ø&–¤cˆ¥·êŠZ\*sQš"òV…€²ð+Ï€0ìi–À1´6á@7võ V÷Æ`‚°Ø=~»Ê>L,%˜ !Má„ ÒØÇ\©×Õ^ e¶€çmY’f ˆS„î¢NB²BÑöµ'L5ß$xhÄ·¶p‘åi;fÝZ.µn“…$Z/T•Ðbw_•e‰"2×’`”{ç˜XÒNÁ·›9v˜XòêµP+7:†X*®&í:Ŧ-ÇIš,¦)|«î«‰Uyž–µØò‡Në•¥X"„fÃ#äÍ• ¯—ÍJé¯ÏiÿíôŒÞ;ºMiÛ¿+ãýà ñY´kÊÞÂ÷F„kÙÅ´Ù ŠPzת 9 V\ ŒJk>Ì\61œ4ÏÕº’zaº˜»ÏÁ‡×¯A³Øþðë¶Éä.c˜<]µk<ŠÄÃlyOÁÒKê~TÖdkõöÓX^Õß¼å0œ¤-URCfO›Öž¦þ8±‹i?TOÒ`Gùã·£ì ±46oJd u-Ûšf(Ë æ¤®»fV!ŽŽ1דÔ9‚º^EìTkšP>MOðP¦Ã0<¡`6Ó „„U˜·b¹Ÿ¡Q·» w»úª¹þB²Þ åÛ=ÖIýe¯2¦Se&(o®j¼j±=oÏûê7{›Òöú|ô·0±†Y!›{ÏÖ}¡L—]»ò°·Íwmk‚B¡Xâ>K„ÜÄû,½Á9Ò4E~‚ýYŠSúá±÷ª˜=¾ñm?á3ìªz]Ï«ÃûæJÄÒIËÖõêü¦B¡XÚC$ ‘¤ <džãGõF”×eYpý¸=>‹Ca2Ø/#O¢î³"ƒï:°,{p^óÃÖm6™# Q·Aaz°- ¶ã#ݺÏFŽøBŒ¼,‘ú+HB`ºò¤y]¿®mÃv\Di¾W,õ¯W)Â0Fž'ðl –í Lòƒëß|î›S!aé…í~!E±-XVÿšk†@!ãÁF E#ã¶¿ã`¼ò$Z«K†(«cêv¥qÛ²áÇéh¿F»î»õ:i×¶«>Yë×vÜ\¸?ʶ¹P¤ƒh`€&Qˆ¨.3O"DIŽ< Úë6mó]„KBLõÄSµQkóYs"êÍ_wÕÎ>+¿ÈxUû½`8OÚyjÛð‚n|wµ}óúããZ¤Ñfý‹a"͇õë¶­Ý`h6MãA¯Ý£åmaôþÜ3¶÷esOºˆC¯šg½¾Ko«ïß4¾€ä¨hŸiž#ö›ëǶ½hïÇ v<³J”yßuªc9Ÿ·Í•]Ï«Cž%ÛžWë}“ä9"ß­æXToë»°, ^˜l<'™ ‡öÿîgë!ã?þ;F!„béXogui¸ÃºÿSi˜ULš¬•%ÂUµ[¹t?`KUTo_·6D{hËÚÐh~ØüÊ@VoøgVˆ²ÌaÏ•µLfÜdDèx:„xâhXoY÷šÓlh /Ý)–ºë5ûÇlfT[…ùžú÷ß|ƒs ?CdÍ7®93Ñp±ÉƉÖD@ˆ9’2êöŠt¨pâêXo^—¶Þ·zcí¦›íÒÌ5£;†®l¶»ñ¾ÄÎf¿n‚²ÌÛ~è˜T^ºs!óªþèöéÉ  1w«¶èòæ8ÈU¬ùι]„˜¹¾nk¨¹U{Ô…¤î›I=»ÆjWo”yí—g6в„¿Ð6ÊëÐÀím1¢GÆ5qóçv„2±«6¯ÂµðD+.v¶» yY"¶ëã´êy°µ¼1áºåþÜ7¶÷e†µ~MEw÷ˆ¥£úúOŒ<ÿ*TÃÛÓöKmý¼)ÂÁ”‡&$1vìþù¼k®ìz^í~–ìz^]Üß7êpŽÎJ0>ïÿrO]w޶ýwŒÆ !„P,;î_ˆ ¼8A^„=•*±’ÖÆ¥Wír>µc”¹E¨Ë :?u ©u¦ÖðÕŨ6.&fÔŠ ŰaÍåžÁݯíkT?rš¹ñ–xàÊ\ÈB@÷R”eZýèN­úØsi܈¥ÞßYýc,Ϭê5q¡¶FÌöú±rÕYÕ_B[ÖFJŠÕT‚rOp6Æ}Ð+¯ò‚(B@[…­a;3«~/1¢.‘… Õã¤{i¯]&â$B´¶¯Hc¬¶¡iEˆ©æn['¡-êúÇÐåJ_¬¯;]UuÊ#³2V–ÿ¸s.Tõ‘áeã^GßP!„€îDƒs ?[ó=s;ó ùƱ¬¾È«ûpßXíêãëOªvTµß_Vm²ÎŸ,ª·áÍñÎL‚t¤ûÚ¾>ÏÖÇ59 MHS³®cGW „ ?/ª1‘öåÅB©Û~H»¾ÛÝy=O¶—·>ÛïÏÝóaG_Æ/ÁP„4©÷ÊÉaN„¤ÄC±ÔýÝ{þ¥Ê2Ãj"zã±¥íõ½©®ªq*BsË8X©µ'³ñ&Õ×Ò½=ó9÷wΕϫÏ’Ï«-}ãg½ç²Ðà¥%Ê"ê='Ž3ïÿÝuÍvŒ±ûwŒÆ !„P,7î¿ò˜tÿb‚•ebµ2a™Fõ£]¿éµ§ÝY´ÒêÄê‡s(Nª·†Ò¼ÿ£X¿ý[íqž®@ ó• sµ‚i™Õ²´ùF} –ÆjŽUý¦WÖ¦XšÂ$Û†7&–º·±9mLüöú±•ñ×¼ýµúÂ(u¶z$œ™!¦ˆË‰=­ ƒ¬6Úú^²D¸Ô „/;L,-Ãía1Y# ¸Ž¥1ƒ,ÝC[ÖŒÀ<%Y]§Ù`ŒÒ8B’}oç\Ø/–ä¡Á[zº—î(åV1aÅŨ!ªÕ޹ƣ±o¬KõZоG«ÈE1²¢D‘¥ˆ¢¾çÂZ- I•ˆÉöµ}Kûšq­’•H–ebeZXÎkñå¥Hëö™q‰2µ! ™“Ðnµ–J×þ}å­‡Pm»?wχ]}¹þì*™“ ô¡±¾~ ßPÚqÞÖöf\„0™°Ü`â8x ’#‰c„ÇZAŸöúhÏ|Þ5Wv?¯¶?Kv=¯v÷M†…, fN+M­*ïxsáðþß]×]ã¿ÿwŒBÅÒ1Å’×yêÐY–k¨ªŠYíAèŒÐ¸úñœÚ(óZ/œ©ÿãÚ=Je\¬‡¬4I[ž$CQ5¨ê´z£¹C, ßÊ&0õ)äA8‡{L±¤ô3¬m[ê¿ë½2"äa²‡p,k8®ÞH×Þµ`¡@(‹Á„¦wL,e]ßl¶kÍ ‹A˜“¬ªu8‹WÒÒ¨àð ¹5܆Bd÷\8L, E‰Ü3.õ,5u3[ñ+/ÖŒÿícµ«wÞSkß­¦½0&Y©B´biKÛGçY7®™×„)Iõ½$AVT¨ª†U¡,«°Du 45¡!(iw5šP2£®ËþòÖÛ>~"–¶õåúwyïž8žXòF“:lk{Y–Ècs­>,¶{â(AÕ†biû|Þ=Wv?¯¶?KŽ/–¼­ýíërõäXsáðþ?L,ŒºÿwŒBÅÒÉÄRãYšØƒP×\Âò“6„f&$Eé…o%˜KµpjÏ‹»0¦#@™X•2«ŽõŒ*\#è/ðöL,-w^mh~޲La/°ë·¬Yb¡Ž‡sìK{Œ¶‘úo3bý¢– ¿óêá² Ã1(ç’€¤jïSµ–e‚°w¬;— Ä ñˆÑÄ÷wb©ß®!ÕµØQ6ðɺ‡2i<io­Ë BšásWZƒ»9o©JÐïœ m(MÖ…hõC&K†¿?¹C™[CØ:±Ô•³o¬võñØ=Õ…œU!£ªðÿy¬òâh ¯Û}Ñy|±Ôk®ªpÖþ¼Ê¬–+øIÑóâÊPúk_ö¶[©½]u(˜ (+¯†·íþ|nç|ØÞ—Ëà↱¼}®ŸT,mi{âa¡¯j¯j$° Š5XïY)´âFÔD« ±46Ÿ›qÙ6Wö½tØö,Ùõ¼:®Xòj±t¼¹p¥b©©k¶cüù#„B±tÂô»þ¢zó9]ºHÒ¶®nÄz‹&<¥2Ö;CL`fzHÒ«YõVTw“r¼ú­á¥(jãAÒ qŠÐ]ToPÕÕž5K•¡¡Ìðãç0BšÂ ¤±¹2¾~áJÄÒXý·-¼Ÿ-mDÙ…ÊX¬ F:˜ÔF×6ÏT¸š´Éšcš·ÄÒd‰0Má[õâî‰Uyžêuºå#ö­ê!bÉ7¡À d½q«J'µ‘¨Á“Ö(š‰<6Û:Eio5«Úí$;çBQŸ'ÏVˆâfSžq€XŒyŽ"¶ñÇêà 1ÜóÖÞPúkxz†í–±ÚÕÇë×oî™é#MB,&„PðÔÓËÚv‘å)[ošù•‰¥ö……Paú’ØÃLCAU È.qÉþv÷ëÔÅÕ‹‚ýå ^l¹?Ó=óa[_6¡VÒˆ±¼Í³ôÖžXzëÈ}½)–ÆÛÞ<³”¹‰(My«j^nìùS÷­j L³^ß ^¶1Ÿ‡‰!vÏ•ýbiüY²ûyõÒŽ¾Ù.–Ž7ïÿ½uÝ1þ‡üŽB¡X:X,)†?øÌš«ƒ,BÄ€•‰ YhË`ðöØœ©ƒ“&!Áf91ær—Â9rŒAxޤÎŒ÷ÃMd3˜¹Í–feÈ÷²ÅY#›=ö¯±ù·20>Êz‚‡ñúÊH»Lps7E»˜Ê½zIZ»X}”ÚsµžÕ+´õAV-eºìÖ åae|6ßM´Ö«²Ù®5LâTk!Ú„3Ì5 B®¼rEâ ë¯Ìà׋¦#ÇÔIÓíÚÈÙ5 8º¶^Ô‰%eÞW¯ë¨©û‚ðYB!„P,‘›ÙÀÑ5ª6¯÷ aŸ\ òÈ„"϶®Ù „ÏB!„b‰B!„B(–!„B!„b‰B!„B(–¹×PäW-Û¹Æk¼Ì4ØPä9Ó1B!äÍ*– ¬fŸÃmï0qÛ]§7øð·²÷ñ™s°£ËW½nùÜöÏTûüõ—pÛ»Ïàè*—áÿõWFÛ}Û]_‚ùUÜïïñ\¾ˆÛï:~ûê‹%ÿ³ŸÃmï¨ÄRøå' üŸç®¾Xú¬5Þö¿‘¯Âx÷iÜþÉ‹(ËWaþŸ_ƒ_þÑÎëegÏà¶»>wÈ%_— „ެ,‘_° Þñ^ùõ¬CCª×ó‘2#ÝñÈ=HB`î]{±”û„˜-mx^xŒ}r"L„€¶ 9^„BÅÒ›O,=òOã¶{ü­¡4Å+‚ðGH.wŸ%ßÿ‚è$gÜ~×iL¿pÉËE{ÍàÌX_ ážíyÅOFò˯ÀûzëëþpmãÖK?€ýÕnøÜÏZ­X*^y.U^®ü‡/á ä?¬ŽµÏ\Z3Â_Ç…³ÏÃúj/ú ò—_BxéòNA6ÞöJ,ÉŸ¼ˆ²,‘^z É+¯wýòòKp¿þlÕŽºíbé•W„?@üÊëu½/#>{ÖSýÙ¶?àÚ6lÇE”æk^¢ŽmÁ²„ÉÚÆ¡E†Às`Y6¼ ©ŽÏb˜3BLàF)Ê2G|!´5<Ø–Ûé ™I"ÍsÄ~sÍxO˜]ß­Žuý¸»Ž¿‚,´…‹d­=y!‡õ)²A·†ú®úŽ”ÈE#“ê¼"EÆHã¶eÃÓQ캯×û³H#¸¶ Ëv®Õ; ë:¹þp£ËÑ>¨ëDƒ½n’(DT—™'¢$Gžíu›¶¦þ ’˜®¼þkú!É2DõØûQ:èß(ɪ1t<$ùZýû}ZdðVS!Ãôãº]EÛGŽìº•wi‚ˆ?„BÅÒ›S,ÙºqaUhÚìвDz書í®Óxû'ÏãÃïèB×ÞþÉ‹(_¹„é;†!m·ÿ—YY"ûö7GCÞšÝåÃ/ÿÝæ÷už÷ðiÜö<‰´,á}òs›ÇÝó: è'xäO7˸ýáç¯P,½ ýÿ8ÛêëÄOm¶åg^éÄÒååËñvî˯Ãûä0ÔqÝšÓ6\­aáUÆoâßÍí¨:7ó ­}'ÏlœÑ•î3IÇóž!ž8*Q–Viíš*œ¸@YfÐ%±Qžjxãs(q7ÊÚiîCé&éƒ9[Ux^3þeYšˆ:¤kOý„€˜»íyž.Aˆ9Ò²DV·³«‹¹&ìbèÊfûuˆ`ìèßn‚²ÌaN×ë4©›»ç±ÔÖ¯=ݾWUbW^)'á!„B±ô&KwÆíïøn‡ÙrÛ]__{HÂ/|·Ýu~á+ð§~eø¾ò<ÞÞ®mzöCÕyîËõ›ñoû¸í®Ó˜~=«…Äi¼ýãauîŸÇÝȺ| wßu·?t®úî勸ïˆó?ó9ÜöÕš%ÿ³_ªÖS=õʲą¯£+g/ãÂWÿ®.•ᛜ©Ê¿³ömŠ¥êZo¿çs-·ßõ9|:¼¼!–Ú¿‹àî»Nã¶™_ ´ ¾ç4n{Ç\<{·Ýõ%¸ß¿ˆûî:ÛîújÛ‡]½„äû?Z{SŸV†ïÔj×Ì¥Ú@.BhB@ššµØ(àè „PáçE-0ØQ^¯R!„€ð BªÖŸù„x¼£±U ³™YÖEcì«Käe†…R jCË «‰h¯³îÝ0µFÈTåGv%&f„2s! ÝñîÔ¾¨Å•¶ ÷ÖχâÁ7dɨDyN&ÏLÄI„hmSÎF¼4â¨,BL…€4wÛ: mQm ]’‹õu§µÉ#B(ËÜÙU}dx=±Ô¯¿oTã¥;Ñà\ÃÏv÷_;N¼´ò–Y3B(ðòþuC$Qˆó¯Ev`*Ub²hE¦ 7íÆB]UÇ¡¹gÍY Ct?„BÅÒ›Q,}~ò >üÉo¶|ð“ÿˆ Ewܧggä+]˜Ù勸³K—ñ‰{*°úê9¬¾pÖ—ÏàíwÆÛ~¾K«ï¿ÞÚÜS­ ª¾3aÿ°ïiùn{Ç7GÄÒçÚÏ«:\jëÐ|—öŒùOÜS ²­k–>‡éÃßÀküø7`¿Ø.–.…¸½g­÷íå ~x¹mc… ë‡ë^¬onñàåXÕoòemŠ¥é L*ôJÌ M X–‰•ia9¯ aï9rmè÷ÂÁ¢¨ ¥ê‹ˆ¾Xò ¹õÄt¡TZehg1ï÷ĈÒ^g}½ÊtÃëQy<¤¹‡2÷ l5öK83 BL—%» s³Cë·[,-Ã|ûÚ²$FpKcY(º‡2¶ ­‰‚<%Y]§Ù ‘AGH²ïíìƒýbIzÝj¡¢{éžþ«®£,ƒî³ÔT¿~]OW „„ùÊ„¹ZÁ´ÌJ,IUr†A=[¯ „ÉÌ€åHw®u«ê"ÍþPB!K·Öš¥ÖXýëÊ32#—/vž¥âGm^穱p÷Ÿ~ ~áµ°ªµ&¹D-d²³ß\û®D~ö›¸í®mb©6Ø«Cð×n»ë±ôé?m’4\Y^ówNhºôú–§Ûì‚oøÙÑ„ã}œÀÔ§¡o.2¯ Á“ Ë2dY‚¬¨PU «àâ†p´o‹X  „²´»1–Ý=bd˜€ €&&f8ôx4ççÞÏH‰~&–z×í÷ÙÎþ«™Þ÷öÔ"gÞŠ¥îº§©šC2dI†¢jPÕ)ü¬Ü¨g»˜ký°=«`»gI—„bì˜ß„B¡Xz“Š¥¢ö¦Ü~Oµ^èî&…v-T>q¶è‹»°¶=b©9_Rµ*ë››öÖñ쩟á÷Ö,­‹¥¾8R][eÑ!ëÊĆ$fNÚ[[5ƒføÜÇ¡!èÍ­¥*A[<¾³Úð¶¬ë6Äò@±døùvoNoœ/ä2Ì7®ëUèfÐO4á™XZ~†×ë·"ñ°ÐWµ­@XPÅšs=$p‡h'„BÅÒM+–šÔá|ùÌ«/°¾¡,3|ð§qÛ]‡ e ÷áÏu‰^©„Ê÷á_*ªýî:©ù<’—3ØŸüÒÚš¥q±T–¯Ôe|Nô .œñq{/Ááb©¸Vž?ý&ܳÏãuèàW –nÛëº~¸®«½‚$ ë5LçðÒ M¿}A±¯¬s! ¤)œ0Aû˜+MR„Z¦!‰=ÌdѶÁB­×÷øH“‹‰!øyz¥båF±Ôxt¤ÉašÂ·êþ ň¾],5eÌLIa5«èn‚2Û'–J„«I›,¡¹‡ÔOH8aß®=oòabÉ7¡À d½ú*º‹²Lê¤ ì0iE‚ÐLä±ÙÖ)Jx«Y›Ô`Wõyòl…(ë …Šq€XªûO™-àÇù–5K 'D9˜ˆ.¬nýºET‰nI3Ä)BwIuµ)–êc•¹‰(MyUVCeáWk£ææ…ƒù;JOÀB!„béM!–>ý§§·lÌzoøbµ9ì]§ñHãõiÂíîù’ò2Ìÿò¹6[^Y^†õð—׸ﳪMQC¿ µ{eèÕj¼>Å¥ ø½LzwÏÌ^‚«Ý”Öÿ¬5ÌÞW¯›j¼RYx®/wÆÛg_ÅwíY³tÏn±¤|æÒÚß%Š^Äôž~Ö¾'à¿¼ÙÆ&“àŸ½¸§¬Y`V†y/û›UoFZ$fƒ n –^ÒÍV½†© —Z¸Uêê¸N „Œ¯~s¸)mh땱\£L—m C¾ÁBÝ*–Ê2…9ë—/µ‰Ê܇ºG,•‰Õ+=µµ~%RÙ W”1*­Xª¼+ÊV±T$´~9u†¹&AÈU‹"ñ0•{ß+3øiunäƒ:iº]÷ÉŽ>( 8ºÖËt§@ˆ%eÞW¯SªÖMe0'òxV¿V,õ3NêŒ#×­ëßó”Ô9‚¬æØô[o9ÌÎ(i ÄE‰²<‚ñ6·öÄtQ{?¹é0!„B±ÄŽ3@/(Šþ¿/#}ù'Ã}h${ù'H_yýDõÈ£ÿá¡ì- ө®ÅU¼f,M‘fãFg–¦HÓltÃÐ"˦éÞµgÃŒt9Ò4E–_yªò³ã•ß ë§?¬~õwÅÉû9Ëv$HS¤cßï¨Ó®>(òj|Š“ômžî¯ÁÚ'ïûâP¡RÕ?ÝÑöãÎg&¯ç"„BÅÒÍÎ6¯¹öÜÒ7Tb®Ö ” íc“Á†ûM½!¤îFAB!„P,‘”øÛç0} o¿ÇÂxè›p¢Ÿ°_nP±¤k Tm^ïçÄ>99lc†…¿¡õW(sûD3B!„P,B!„BÅ!„B!„P,B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„B¡X"„B!„Š%B!„Byƒøÿ£“«NdIEND®B`‚flickcurl-1.25/docs/flickcurl-oauth.xml0000644000175000017500000003270712130421223015105 00000000000000 Authenticating Flickcurl for OAuth
Introduction This section describes the supported Flickr authentication - the legacy authentication was deprecated at the start of August 2012 and should not be used for new applications.
Build Flickcurl library and <command>flickcurl(1)</command> utility $ ./configure $ make Add the utils directory to your shell search path: $ PATH=`pwd`/utils:$PATH on bourne shells such as Bash or $ setenv PATH `pwd`/utils:$PATH on c shells such as tcsh You should get an error if you now try the utility: $ flickcurl photos.getInfo 1234567 flickcurl: Configuration file /Users/dajobe/.flickcurl.conf not found. ... This is because there is no configuration set for the library. For the flickcurl(1) utility, it reads the configuration from a file ~/.flickcurl.conf which contains 4 parameters used for authentication: Client Key, Client Secret, Access Token and Access Token Secret. This section describes how those parameters are obtained.
Register application to get Client Key and Client Secret NOTE: In the pictures below, the Flickr web site is shown in English and the screenshots are valid as of August 2012. Flickr upgrade the web site now and then so these instructions may not match the latest look. Hopefully you can figure it out! Start by navigating to the Flickr App Garden at http://www.flickr.com/services/ and follow the link 'Create an App' taking you to http://www.flickr.com/services/apps/create/ Flickr App Garden - Get your API Key Select the link 'Request an API Key' taking you to http://www.flickr.com/services/apps/create/apply/ Flickr App Garden - Commercial / Non-Commercial Select either of the two buttons: 'Apply for a Non-Commercial Key' or 'Apply for a Commercial Key' as appropriate. Flickr App Garden - Describe application Fill in the form fields and submit it via the 'Submit' button. Flickr App Garden - Key and Secret Flickr will return a page containing both the API Key that looks something like: 0123456789abcdef0123456789abcdef and Secret which looks something like: fedcba9876543210 These strings should be used for the values of the Client Key (oauth_client_key) and Client Secret (oauth_client_secret) keys in either the ~/.flickcurl.conf if used with the flickcurl(1) utility or in code, with the flickcurl_set_oauth_client_key() and flickcurl_set_oauth_client_secret() functions. You may need to change the key to be of type mobile since no callback URL is usually appropriate for a command-line application or library. This step is probably no longer needed since the callback is specified in a later step. Click the 'Edit auth flow for this app' link below the Key and Secret Flickr App Garden - Edit authentication flow Change the 'App Type' to 'Mobile Application' then set the 'Mobile Permissions' to 'Read', 'Write' Or 'Delete' as appropriate. Flickr App Garden - Edit authentication flow: mobile This sequence will make the new key 'Auth mode Mobile' and an authentication URL will be shown on the same page something like http://www.flickr.com/auth-11111111111111111. This URL should NOT be used and is only for the legacy Flickr authentication flow. Finish with the 'Save Changes' button to confirm and return you to the application page. Flickr App Garden - Application page If you ever need to alter or view the authentication, use the link 'Edit the authentication flow' on right-hand side of the application page. All your Flickr applications are linked from http://www.flickr.com/services/apps/by/me
Getting Authentication Token from Client Key and Client Secret If using the flickcurl command line tool, create a file ~/.flickcurl.conf with the two values found in the previous section - API becomes oauth_client_key and the Shared Secret becomes oauth_client_secret like this: [flickr] oauth_client_key=0123456789abcdef0123456789abcdef oauth_client_secret=fedcba9876543210 Next the Request Token, Request Token Secret need to be created and the Authentication URL generated from them. The request token is created using the API request: flickcurl_oauth_create_request_token() which takes an optional Callback URL argument, that can be used for the browser to redirect to, if required. Otherwise use "oob" or NULL. It creates and sets the Request Token and Request Token Secret in the flickcurl object, which can be returned with: flickcurl_get_oauth_request_token() and flickcurl_get_oauth_request_token_secret(). rc = flickcurl_oauth_create_request_token(fc, callback); request_token = flickcurl_get_oauth_request_token(fc); request_token_secret = flickcurl_get_oauth_request_token_secret(fc); uri = flickcurl_oauth_get_authorize_uri(fc); The flickcurl(1) utility can also perform this sequence with: $ flickcurl oauth-create which will print the request token, request token secret and Authentication URL. This command takes an optional callback URL argument. The resulting request token and secret will look like 72157626737672178-022bbd2f4c2f3432 and fccb68c4e6103197 respectively. The Authentication URL should then be used to prompt the user a web browser to validate the request. Flickr will return a page that says something like: "[APP NAME] wants to link to your Flickr account" with more information and two buttons. Click the button with the text: [OK, I'LL AUTHORIZE IT] Flickr App Garden - Mobile Auth Flickr will then return the 9-digit Verifier that looks like 123-456-789 In one of two ways depending if a callback URL was given: Callback URL: Returns a redirect to the Callback URL with a query parameter oauth_verifier whose value is the Verifier. The application has to extract that value and pass it to the flickcurl library. No callback URL: Will display a page that shows the Verifier. This will require the user to type it into the application. Now the Request Token, Request Token Secret and Verifier can be used to generate the Access Token and Access Token Secret. /* These are required to be set for this call */ flickcurl_set_oauth_request_token(fc, request_token); flickcurl_set_oauth_request_token_secret(fc, request_token_secret); rc = flickcurl_oauth_create_access_token(fc, verifier); This sets the Access Token and Access Token Secret in the flickcurl object, which can be returned with: flickcurl_get_oauth_token() and flickcurl_get_oauth_token_secret(). The application should then store these values for use in making API calls along with the Client Key and Client Secret. The flickcurl(1) utility can also perform this verification with: $ flickcurl oauth-verify 72157626737672178-022bbd2f4c2f3432 fccb68c4e6103197 123-456-789 flickcurl: OAuth access token returned token '72157626737672178-022bbd2f4c2f3432' secret token 'fccb68c4e6103197' flickcurl: Updated configuration file /Users/NAME/.flickcurl.conf with authentication token It writes the resulting Access Token and Access Token Secret to the ~/.flickcurl.conf configuration file as the oauth_token and oauth_token_secret fields to give something like: $ cat ~/.flickcurl.conf [flickr] oauth_token=12345678901234567-abcdef0123456789 oauth_token_secret=abcdef9876543210 oauth_client_key=0123456789abcdef0123456789abcdef oauth_client_secret=fedcba9876543210 At this stage, the flickcurl(1) utility or library is authenticated and ready to use.
Use Flickcurl Now the configuration has been created and authentication completed, the library and the flickcurl(1) utility will work. $ flickcurl photos.getInfo 1234567 flickcurl: Found photo with URI http://www.flickr.com/photos/yogi/1234567/ ID 1234567 and 1 tags ...
Upgrading from legacy Flickr authentication The flickcurl_auth_oauth_getAccessToken() function turns an existing legacy-authenticated application and updates it to use OAuth. After this call, the legacy authentication tokens will expire within 24hrs (according to Flickr) so should no longer be used. rc = flickcurl_auth_oauth_getAccessToken(fc); The OAuth access token and access token secret are then saved to the flickcurl object and can be read via flickcurl_get_oauth_token() and flickcurl_get_oauth_token_secret() and saved along with the Client Key (was API) and Client Secret (was Shared Secret). The flickcurl(1) utility can also perform this upgrade with: $ flickcurl oauth-upgrade It writes the resulting Access Token and Access Token Secret to the ~/.flickcurl.conf configuration file as the oauth_token and oauth_token_secret and rewrites the api_key (API Key) and secret (Shared Secret fields) as oauth_client_key (Client Key) and oauth_client_secret (Client Secret) respectively. .
flickcurl-1.25/docs/flickcurl-extras.xml0000644000175000017500000000474212210457674015313 00000000000000 date_taken Date item was taken date_upload Date item was uploaded geo Geotagging latitude, longitude and accuracy icon_server Item owner icon fields last_update Date item was last updated license Item License machine_tags Machine tags media Item Format: photo or video o_dims Original item dimensions original_format Original item secret and format owner_name Item owner ID path_alias Path alias for owner like /photos/USERNAME tags Item clean tags (safe for HTML, URLs) url_m URL of medium size image url_o URL of original size image url_s URL of small size image url_sq URL of square size image url_t URL of thumbnail size image views Number of times item has been viewed flickcurl-1.25/docs/flickcurl-sections.txt0000644000175000017500000003336412210726306015644 00000000000000
section-general FLICKCURL_DEPRECATED FLICKCURL_MAX_ACTIVITY_EVENTS flickcurl_array_free flickcurl_array_join flickcurl_array_split
section-core flickcurl flickcurl_version_string flickcurl_license_string flickcurl_copyright_string flickcurl_short_copyright_string flickcurl_home_url_string flickcurl_flickr_replace_service_uri flickcurl_flickr_service_uri flickcurl_flickr_upload_service_uri flickcurl_message_handler flickcurl_init flickcurl_finish flickcurl_new flickcurl_new_with_handle flickcurl_free flickcurl_get_current_request_wait flickcurl_get_extras_format_info flickcurl_get_feed_format_info flickcurl_curl_setopt_handler flickcurl_set_curl_setopt_handler flickcurl_set_data flickcurl_set_error_handler flickcurl_set_http_accept flickcurl_set_proxy flickcurl_set_request_delay flickcurl_set_service_uri flickcurl_set_replace_service_uri flickcurl_set_upload_service_uri flickcurl_set_sign flickcurl_set_tag_handler flickcurl_set_user_agent flickcurl_set_write flickcurl_set_xml_data
section-config flickcurl_config_read_ini flickcurl_config_var_handler flickcurl_config_write_ini
section-activity flickcurl_activity flickcurl_activity_event flickcurl_activity_userComments flickcurl_activity_userPhotos flickcurl_free_activities
section-auth flickcurl_get_api_key flickcurl_set_api_key flickcurl_get_shared_secret flickcurl_set_shared_secret flickcurl_get_auth_token flickcurl_set_auth_token flickcurl_auth_checkToken flickcurl_auth_getFrob flickcurl_auth_getFullToken flickcurl_auth_getToken flickcurl_auth_oauth_getAccessToken flickcurl_flickr_oauth_access_token_uri flickcurl_flickr_oauth_authorize_uri flickcurl_flickr_oauth_request_token_uri flickcurl_get_oauth_client_key flickcurl_set_oauth_client_key flickcurl_get_oauth_client_secret flickcurl_set_oauth_client_secret flickcurl_get_oauth_request_token flickcurl_set_oauth_request_token flickcurl_get_oauth_request_token_secret flickcurl_set_oauth_request_token_secret flickcurl_get_oauth_token flickcurl_set_oauth_token flickcurl_get_oauth_token_secret flickcurl_set_oauth_token_secret flickcurl_get_oauth_username flickcurl_get_oauth_user_nsid flickcurl_oauth_create_request_token flickcurl_oauth_get_authorize_uri flickcurl_oauth_create_access_token
section-blogs flickcurl_blog flickcurl_blogs_getList flickcurl_blog_service flickcurl_blogs_getServices flickcurl_blogs_postPhoto flickcurl_free_blogs flickcurl_free_blog_services
section-category flickcurl_category flickcurl_free_categories flickcurl_free_category
section-collections flickcurl_collection flickcurl_collections_getInfo flickcurl_collections_getTree flickcurl_free_collection flickcurl_free_collections
section-comment flickcurl_comment flickcurl_free_comment flickcurl_free_comments
section-commons flickcurl_institution flickcurl_institution_url_type flickcurl_free_institution flickcurl_free_institutions flickcurl_get_institution_url_type_label flickcurl_commons_getInstitutions
section-contact flickcurl_contact flickcurl_contacts_getList flickcurl_contacts_getListRecentlyUploaded flickcurl_contacts_getPublicList flickcurl_contacts_getTaggingSuggestions flickcurl_free_contact flickcurl_free_contacts
section-context flickcurl_context flickcurl_context_type flickcurl_get_context_type_field_label flickcurl_free_context flickcurl_free_contexts
section-exif flickcurl_exif flickcurl_free_exif flickcurl_free_exifs
section-favorite flickcurl_favorites_add flickcurl_favorites_getContext flickcurl_favorites_getList flickcurl_favorites_getList_params flickcurl_favorites_getPublicList flickcurl_favorites_getPublicList_params flickcurl_favorites_remove
section-gallery flickcurl_gallery flickcurl_free_gallery flickcurl_free_galleries flickcurl_galleries_addPhoto flickcurl_galleries_create flickcurl_galleries_editMeta flickcurl_galleries_editPhoto flickcurl_galleries_editPhotos flickcurl_galleries_getInfo flickcurl_galleries_getList flickcurl_galleries_getListForPhoto flickcurl_galleries_getPhotos_params flickcurl_galleries_getPhotos
section-group flickcurl_group flickcurl_free_group flickcurl_free_groups flickcurl_groups_browse flickcurl_groups_getInfo flickcurl_groups_join flickcurl_groups_joinRequest flickcurl_groups_leave flickcurl_member flickcurl_free_member flickcurl_free_members flickcurl_groups_members_getList flickcurl_groups_pools_add flickcurl_groups_pools_getContext flickcurl_groups_pools_getGroups flickcurl_groups_pools_getPhotos flickcurl_groups_pools_getPhotos_params flickcurl_groups_pools_remove flickcurl_groups_search
section-machinetags flickcurl_tag_namespace flickcurl_tag_predicate_value flickcurl_free_tag_namespace flickcurl_free_tag_namespaces flickcurl_free_tag_predicate_value flickcurl_free_tag_predicate_values flickcurl_machinetags_getNamespaces flickcurl_machinetags_getPairs flickcurl_machinetags_getPredicates flickcurl_machinetags_getRecentValues flickcurl_machinetags_getValues
section-note flickcurl_note
section-panda flickcurl_panda_getList flickcurl_panda_getPhotos
section-person flickcurl_free_person flickcurl_free_persons flickcurl_get_person_field_label flickcurl_person flickcurl_person_field flickcurl_person_field_type
section-people flickcurl_people_findByEmail flickcurl_people_findByUsername flickcurl_people_getGroups flickcurl_people_getInfo flickcurl_people_getPhotos flickcurl_people_getPhotos_params flickcurl_people_getPhotosOf flickcurl_people_getPhotosOf_params flickcurl_people_getPublicGroups flickcurl_people_getPublicPhotos flickcurl_people_getPublicPhotos_params flickcurl_people_getUploadStatus
section-photo flickcurl_photo flickcurl_free_photo flickcurl_free_photos flickcurl_get_photo_field_label flickcurl_photo_as_page_uri flickcurl_photo_as_short_uri flickcurl_photo_as_source_uri flickcurl_photo_as_user_icon_uri flickcurl_photo_id_as_short_uri flickcurl_source_uri_as_photo_id flickcurl_photo_field flickcurl_photo_field_type flickcurl_field_value_type flickcurl_photos_addTags flickcurl_photos_comments_addComment flickcurl_photos_comments_deleteComment flickcurl_photos_comments_editComment flickcurl_photos_comments_getList flickcurl_photos_comments_getRecentForContacts_params flickcurl_photos_delete flickcurl_photos_geo_batchCorrectLocation flickcurl_photos_geo_correctLocation flickcurl_photos_geo_getLocation flickcurl_photos_geo_getPerms flickcurl_photos_geo_photosForLocation flickcurl_photos_geo_photosForLocation_params flickcurl_photos_geo_removeLocation flickcurl_photos_geo_setContext flickcurl_photos_geo_setLocation flickcurl_photos_geo_setPerms flickcurl_photos_getAllContexts flickcurl_photos_getContactsPhotos flickcurl_photos_getContactsPhotos_params flickcurl_photos_getContactsPublicPhotos flickcurl_photos_getContactsPublicPhotos_params flickcurl_photos_getContext flickcurl_photos_getCounts flickcurl_photos_getExif flickcurl_photos_getFavorites flickcurl_photos_getInfo flickcurl_photos_getInfo2 flickcurl_photos_getNotInSet flickcurl_photos_getNotInSet_params flickcurl_photos_getPerms flickcurl_photos_getRecent flickcurl_photos_getRecent_params flickcurl_photos_getSizes flickcurl_photos_getUntagged flickcurl_photos_getUntagged_params flickcurl_photos_getWithGeoData flickcurl_photos_getWithGeoData_params flickcurl_photos_getWithoutGeoData flickcurl_photos_getWithoutGeoData_params flickcurl_photos_licenses_getInfo flickcurl_photos_licenses_getInfo_by_id flickcurl_photos_licenses_setLicense flickcurl_photos_notes_add flickcurl_photos_notes_delete flickcurl_photos_notes_edit flickcurl_photos_recentlyUpdated flickcurl_photos_recentlyUpdated_params flickcurl_photos_removeTag flickcurl_photos_replace flickcurl_photos_search flickcurl_photos_search_params flickcurl_search_params flickcurl_search_params_init flickcurl_photos_setContentType flickcurl_photos_setDates flickcurl_photos_setMeta flickcurl_photos_setPerms flickcurl_photos_setSafetyLevel flickcurl_photos_setTags flickcurl_photos_transform_rotate flickcurl_photos_upload_checkTickets flickcurl_photos_upload_params
section-photos-people flickcurl_photos_people_add flickcurl_photos_people_delete flickcurl_photos_people_deleteCoords flickcurl_photos_people_editCoords flickcurl_photos_people_getList
section-photoslist flickcurl_photos_list flickcurl_photos_list_params flickcurl_photos_list_params_init flickcurl_free_photos_list
section-photoset flickcurl_photoset flickcurl_free_photoset flickcurl_free_photosets flickcurl_photosets_addPhoto flickcurl_photosets_comments_addComment flickcurl_photosets_comments_deleteComment flickcurl_photosets_comments_editComment flickcurl_photosets_comments_getList flickcurl_photosets_create flickcurl_photosets_delete flickcurl_photosets_editMeta flickcurl_photosets_editPhotos flickcurl_photosets_getContext flickcurl_photosets_getInfo flickcurl_photosets_getList flickcurl_photosets_getPhotos flickcurl_photosets_getPhotos_params flickcurl_photosets_orderSets flickcurl_photosets_removePhoto flickcurl_photosets_removePhotos flickcurl_photosets_reorderPhotos flickcurl_photosets_setPrimaryPhoto
section-place flickcurl_place flickcurl_free_place flickcurl_free_places flickcurl_place_type flickcurl_place_type_info flickcurl_place_type_to_id flickcurl_free_place_type_infos flickcurl_get_place_type_by_label flickcurl_get_place_type_label flickcurl_places_find flickcurl_places_findByLatLon flickcurl_places_forUser flickcurl_places_getChildrenWithPhotosPublic flickcurl_places_getChildrenWithPhotosPublic2 flickcurl_places_getInfo flickcurl_places_getInfo2 flickcurl_places_getInfoByUrl flickcurl_places_getPlaceTypes flickcurl_places_getShapeHistory flickcurl_places_getTopPlacesList flickcurl_place_id_to_type flickcurl_places_placesForBoundingBox flickcurl_places_placesForContacts flickcurl_places_placesForUser flickcurl_places_placesForTags flickcurl_places_resolvePlaceId flickcurl_places_resolvePlaceURL flickcurl_places_tagsForPlace
section-prefs flickcurl_prefs_getContentType flickcurl_prefs_getGeoPerms flickcurl_prefs_getHidden flickcurl_prefs_getPrivacy flickcurl_prefs_getSafetyLevel
section-reflection flickcurl_arg flickcurl_method flickcurl_free_method flickcurl_reflection_getMethodInfo flickcurl_reflection_getMethods
section-serializer flickcurl_serializer flickcurl_serializer_factory flickcurl_new_serializer flickcurl_free_serializer flickcurl_serialize_photo flickcurl_term_type
section-shapes flickcurl_free_shape flickcurl_free_shapes flickcurl_shapedata
section-stats flickcurl_stat flickcurl_view_stats flickcurl_free_stat flickcurl_free_stats flickcurl_free_view_stats flickcurl_stats_getCSVFiles flickcurl_stats_getCollectionDomains flickcurl_stats_getCollectionReferrers flickcurl_stats_getCollectionStats flickcurl_stats_getPhotoDomains flickcurl_stats_getPhotoReferrers flickcurl_stats_getPhotoStats flickcurl_stats_getPhotosetDomains flickcurl_stats_getPhotosetReferrers flickcurl_stats_getPhotosetStats flickcurl_stats_getPhotostreamDomains flickcurl_stats_getPhotostreamReferrers flickcurl_stats_getPhotostreamStats flickcurl_stats_getPopularPhotos flickcurl_stats_getTotalViews
section-tag flickcurl_tag flickcurl_tag_cluster flickcurl_tag_clusters flickcurl_free_tag flickcurl_free_tags flickcurl_free_tag_clusters flickcurl_tag_handler flickcurl_tags_getClusterPhotos flickcurl_tags_getClusters flickcurl_tags_getHotList flickcurl_tags_getListPhoto flickcurl_tags_getListUser flickcurl_tags_getListUserPopular flickcurl_tags_getListUserRaw flickcurl_tags_getMostFrequentlyUsed flickcurl_tags_getRelated
section-test flickcurl_test_echo flickcurl_test_login flickcurl_test_null
section-upload flickcurl_ticket flickcurl_free_ticket flickcurl_free_tickets flickcurl_upload_params flickcurl_upload_status flickcurl_user_upload_status flickcurl_free_upload_status flickcurl_free_user_upload_status flickcurl_upload_status_free
section-urls flickcurl_urls_getGroup flickcurl_urls_getUserPhotos flickcurl_urls_getUserProfile flickcurl_urls_lookupGallery flickcurl_urls_lookupGroup flickcurl_urls_lookupUser
section-video flickcurl_video flickcurl_free_video
section-misc flickcurl_location flickcurl_perms flickcurl_size flickcurl_free_size flickcurl_free_sizes flickcurl_free_location flickcurl_free_perms flickcurl_get_field_value_type_label flickcurl_get_location_accuracy_label flickcurl_interestingness_getList flickcurl_interestingness_getList_params flickcurl_license flickcurl_get_content_type_label flickcurl_get_content_type_from_string flickcurl_get_hidden_label flickcurl_get_hidden_from_string flickcurl_get_safety_level_label flickcurl_get_safety_level_from_string flickcurl_user_icon_uri
section-unused FLICKCURL_API flickcurl_s flickcurl_photo_s flickcurl_serializer_s flickcurl_shapedata_s read_ini_config set_config_var_handler mtwist_drand mtwist_free mtwist_init mtwist_new mtwist_seed_from_system mtwist_u32rand
flickcurl-1.25/docs/appgarden-get-your-api-key.png0000644000175000017500000061626511600753627017074 00000000000000‰PNG  IHDR†Ôfª6Ø|IDATxÚì½y|÷}çlÚíf÷i×ÛÝîvw»}úlçi»fœl7=vÛ†ÞôL]ºi¶Î†N[¯9uÔ†¶r˜vÒ„´c‹jѱeÚ‘CË1-Ù¦,‹¶dØ$K¤Hˆ$D<À ’q×à˜æø}ž?f̃‹’ßñëý²ˆ¹ó›™ßg¾—…1‚ ‚ ‚ ⽋… ‚ ‚ ‚„!5AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„a³ˆ <}p½‡&±¿EzN๙ “a™DïAí÷“ ÉoãÌaäý9O ÷7¸wcg2°ŸŸGoÏiÜ|Çn¸íx‰›î²âîƒ3usï€s1ëc"= ‚ ‚ †×„L·êÄB«Ü|hŒ xâ.ãïûgroÛÆãÝó¦ç2ì{7 öccÍ_Ë{Æ`[‹y“>6—£‡AAAÂðÚX”‚¸ý*„á­ÏÁ˜€§ï1þþÈÛxÐn;xÒ\äô¿K:ˆë“;¸žVŒn¿}…á;©AAÄ;N^ÅðÖ£¡wÖ ]Õ§áÞùÃ5r¶æõºé®“¸õ®:¢ñ®iÄIAAÄ{L2>#€ÓÁ‹BµUíŽIøѰ—À¿Ãíóî•w»û<÷Žîâæ2n2³†îsµ­s•r°L˜ŠÃ'–„·§+) C‚ ‚ ‚¸~ÂÐ çÑÓ1h3u’³T Ã'Ü"˜˜íµtC÷1ôšu&ª‰ÉÚÄ}A<÷Ì$îÞ7†îçq÷ <}ƈpíÅE•8¼k¦ŽÅL†i£3°Ïø1:ƒÈøí(FŽM«ç¹o ½Ï8aßÌ]‡õÇZŒTßÝ#¡šëDÆ'«­Š‡6ª—¸¦–ñÄ¡ íºŒáîcØÿŒ¶™(8ÑäƒÃv£S°Ïl`tjóùñÈA­?<ã„Ý—©°èrÕõ™îƒ“™Š1ÏÝׄ0spœŸG¯v|wï;ÞCNŒº3µ?”®ÉF‹ýSà`™F÷¾ó걜ÆÈTôÝ™ ˆ ‚ ‚ aØ´0¼«5axç¡ÉÚ.›wMÀm*òr9h­ãº:‚'¦vnÑ7—«¶w÷³-$¡ðÈÆõ{ÕNðrû3Þ |µë7v“½³*©Œ³Á6rxâ¾Ü|ßyì?:ëTþ¤ñüS3¦VÈÊøÄ‘ŠvsÓäúwŒU|”Ð÷Ý‘æ¶ÑãjúšAAÄ{ZÅÄ­=cèÝgm˜èÅýšI”;N£÷à˜‰É {«V1†»+-rÇTËѪ,¥µ’ÐÔÀ7ÝswÞgžÔå¹’%íj×o+Z% OÃq•Ö-³ ®·î›À#‡ÆL­jOë⛆O»E0–Áþ;Ì,˧Ñ{h¬¦±$ M®­j¡œ@wOõñßüÌFS×ôÖž1t›ö]ëU·+AAA¼G,†#v—EBdjºŽ¸ãÐ[)”ö¹Ê±~B½wTŠºhK癚¬:>«V·w;«­’¦IhÌEÄþñ²Ó_užÇqþeÍÂtµë×Ǿ:™Ìh•€1rð4n½ï4n7ÅŠÛ,—’ =×c´¢í7¸òf°ÿ®ÚV&+Ó$4Õçyó¡j·Sû!k¶»ÚõëS]¦Â̲*4vÙ­wEï¡bß™ÀþCUî¨åv7¹&•å:„ C‚ ‚ ‚„ᎄaÕÀ¹ö2fISsŽ&ËW8ÞÁöM¬ž&ç°ßDØU[@‹–»«]¿õä3¦×á¾V„aÃOï(!L³}¨j¹ÞúØÝv· µÔw©†"AAAÂðm) O6™€&îˆBó$4MX—¿älZ¶¶~2Áê„0=ãÏÔr]1r F¦Î;Nâîƒg[†ñ&úÚ­Gƒ×]Þ\ªÕxu}— ‚ ‚ H^+aXåJzޤ>£ºzrœ ‚ψàE¢(ƒĦ²ps3;…Å$4‰ºçp÷™DÕ>㕉nî˜@àš¬ß8–rØÄøDãZÝ^B£ÇÆjº’V[rOÂUim!ùÌ­%÷M#ñ‰ºe/ÔÄ:çkX'eX+­šUÂ2†Þ{Fpó=§Ñ}pϽæ†;I ‚ ‚ aø¶†æ‚é$ž›ã 2†È’«ÚEò¾&ŠŒ'7ªÖ+»šc?t²õ:„wÁææ…ðDOµëå¯Å®ÑúÍ`&†ËIY96çFfл¯NÜ &†«Eæ™J”DåðÁêOÔ©cxë3Áæ]`oÁÓS1p™âµ+òÍ\dd01ƒ“ã¬wMIAA$ (Â!>7Ý‚‹çFBrÃsp¿v¶åbñbUâ}šÄ³…Kd×hý&cWWy·òª¢;³aZÄþ¦»jg%½s$Öº04s'm)ÑMOÜÕºûܺ $ ‚ ‚ †- ÃxaøÄ5Èìèg]‹aeù§«²mV—IxÚDôøg\¸ó.sÑtÓ=cYâš;‡mou┦%ƒÿÌX IËÑøž;`bA»gö*«æÕ®ß:·ûë¹Þ6‚Û÷Mbd&Zãúа×på¼óÐ2!E¿rÍÅʸÀÛ¯ÛÑóæ‚u&WÅu©®7˜Àð¡³UñªÅó¼û¨ñúõ]‚ ‚ ‚x× Ã6|2¿/—; —;†@R|—™K¡¨/·; —; (wÖ¿ D‘P.wn_._ íøfÝT…ü¾¨¶>N¸Ží¬Û—?”i*û¬Ù¹ÛÓ½É5žAAAÂh]æÞÂõ ‚ ‚ ‚ H’0$‚ ‚ ‚ aH ‚ ‚ ‚„áQ>RUÐ]x ×'‚ ‚ ‚ aøC'JÀ¿Y„ÿ¯OAAA ‚ ‚ ‚ aønbuu•Úx×öêßAA$ ‚ ‚ ‚ ˆw¦0Áó6»µÚ‰ÝçêÀ÷ˆ7ü…öŒ™0T·ÝýŒÏsâé£Ó¸û>MhöÌ¿+²¨òKÓ¸á¶8š†B7Ývûµ²"î3èøÎòu†M÷!ƒŽ]XönbðÔ6ODU†#ž®¹hØëAÛgsç¤ÀvÐË® º¾Ü]»œNEaÙåÁàš ç°–=¡‰ç‘5Xv™¯ë>Ä-Å[»ÆBm»<èÓDìÕ[-l‡Ö4ñ³núQçZ1zØË.ÚzƒqppÌ&1pPûí`òY¯®_•ˆ%Ô6Ù‚3 À~zK=ÎCÉw€•“ ‚ Þ†Â0>ÚWƒö€úE=îЄ›m}v01·Ë…@œCÀe‡Õf‡/® F>âÆ¨Í «mîˆQDŠœöQ¬6FíNÄ5 WÜ9ŒvmŸCv7¸¢åKŒÃ9jƒÕj…ݨÿտƶãàs¹à‹p9FmVØFˆ4 œ£_'ˆ-°´÷#®ñ\.7⼈ˆË›Õ‡;Òôükõ5¤ç8n¸o½÷Ç ÷èÅš€§ï9ŽîqV8ûï8ŽîS—- CGMah…³Â%Ë~ô¬Zwq¦<“1ŒŽ»a=ï‡{»âã(À5ç‡õ¼w¦tì_ ¤¬Û—/£âÄÜ>¼cÊ Ûø‚z^Ž)/¬ã~øuë2Æña;ï†m*¤»þê~₈ÀRñ¸’«´óÌn¸mÏÍÅJýŽ Ea÷Â6®.[TÆ—\¸é¶ãè~-ˆHR„˜ÉÀÊÎÓ9£îþ¤³®ëÏeÜ ë¸IíØb¨ ÃFÖ1%`ôRÖ±Ü1¹j`îšMÁ:–€}9_%Ô| ¬cI¸Ãî÷ ½4€Wà[ËÀv)‰Ñ…œ®Í¯Žˆ#Ë®5ØbÚ±bªõçþ5Xöl•,@®ë°ìÚ€[ÔÄ×Þ)£c ØÙŠã‘KÇjsp¥63yŒò²kv“^b¶¸ü;ÎÁ®m×’ÍŸ¡Ë1´íò ût‘”Üı1DüØjÌ«uÍwÙBÇ.ºÎé>ˆ"Üþ<¸L^;Î º{› ðÅDÄYØÆ]àk~à) ﶃ‰*ae?â…eךyû2¦ âçIàp$1º,hû«×¯j÷Wõøeð±œÚ^³åörŸZ‡e×Fuçk;èeOÈðì&‚ †MÆÚºU a[Ϩq°ã´Á:êD„«E“Å‚.k[_Õïý6UÐq®¡ªyËnØãqôUüÞcƒÅíØ]ñ{{÷ˆéW÷ÚÛf`œ]•tÁ-Ön‡‘.µ:»{С­3äæKË8úÛM¶iA瀣©ù×Äb˜ÜÀÍ·ÇÝç9D¦&pÃmÇ1’Âð®Ja˜Ã#w©‚‘kJž¬ž'†pûmÇqó3`ŒÁ~ÒànzÃmÇÑ{&¦.› âΊy7ôBd¹í8n8´QnÓgFpÃm“ˆ3nnºj›7ÜfÅ­wèÿ> gFë·‡¬Ëž…}[m‡Gî8^µ­ÛÁ/Í~{bI€óØÙªeo>ä¯ÚÎÍÏá8t7üÅ%uй½Quž7ôÌ×9—ãö‰×ÌbØ^GFf#Un¦}—41‘É¢»Â µí@L»ÏD öš¸¨gÀ˜ˆ¡}•óuî©Î)•R-nŽ‚*O­Ã²+×ò6,»<°†U!2Ôëe_"cp¯W§eÏ–juóè¿¿ú<—%8øuËW Ça,»¶g îsêm,ˆU"»_מíG2õɰöWÌ߀=VÇMu,   ”„‘^ãqs ¡ê}íòÂVÔó9â­žß5NÎa?,»ü¦Þ,#À±œ×>âÔnßÊö°ìòÃ)ÔëWõû«éñïÕ>ˆ2â)Éà5ѳÇËÞÈ»Èõ ‚ Þ2aÈa°C0}£µ­[œs ,ÖºzÐÝÕgÔQP}#8mš Û 'Ïcx·& Gás¢«M[Öc¸§,0û‡áŠóé*ŠÁ!8]£èé(/o<žzÛŽƒñtjÛîèct¨$ûqósŒjË´c”ãubÙV4 t–޹odÖÁî’¥u$ 6œ-®—ûµ³¸á6Í ´(ÖJBK†·…u.Ç\Ž/žØ§ ¨;_‹\I[†LÀw©âˆe‚¸UAMxÁ ·„m[†uŸ*èl›ê9;GNã†ÛŽÃâËÛ(¶éÑ“¸áŽp:7Ö[ºÁ3†È”*®n:° Ž1ðn—ê>;“C|F·<¡‰¥(ºï8Žz–!–Úá<IŒ Þw7Ü1­m'aO20!„›u‚—1†Ñƒ#¥eYFâÌå´¶;‰þzé¢åö¶Ó ©çéWÅòÝg¥s¹ù [ nohÂ:xM,†Er¿í{½hß»†ö}Ûê¾D»wyÐv0® ŽŒñk.ˆ l×T!’Ò>-¨V¢îKyM€xÐwIµ"¡rì¢EÇ.:O«vÑWc—¥kз èÛãAÛaŒÉ¼ßË!ŒñèÜåA×¹<Ë©ÿÓâ=5ñÕïPÿ\Ú*·°¥*j›tï*nŸÁ¡¹zšŠ£½°|>Œ4UsPëc,¾=F+WY4qhßåA¿&ë[|6dêBNêšà5ûh5°×Ko "cˆÏn•Üicà–UQÕ~0®~ÊdѵËKï¶ê!P<íšEX± .½‡ÖªDU<œ‡/ Î#.€YƒöUã-»6áàóê÷«ºýµº-}º¶4~¼âÑ·W½/†ý2 ‚ †×]¶õ”â€JVĶ.X8#%¡X`·öQ†ú»âLtjâ­Su[]%×ÕžáQ8 u«¸ö~s‹[Ím—„a7|šè¨/ Ý¥¤3}ð‰ >kQÔu–’Ð…_{Ÿ½$PuÛm4ÿê-†Õ%ô¶186ðo†´¿ÏÂ%ê…a5wõ–{;†Ok¢®h ³në-™~5o&‰'î:Ž›tVA& ðoràD¡)aø´[ÑB·Þv, Æ¿çrpUaè7$¤ñÛ,ÍWÝC:Ñi¼¦Õ®¤Æä6ñp¾p¢Éö- Ãòöëõ«ºýuMjø@µØª¿í>ÍÓ ‚ ax5JÖ±v ;ã¥ä3Åx¿¶žÑ²0l/‹­²{i·g‡mhÃÖQøâžR†ÏMì.Š$Î U‹\9#è€Sx¹mCï™=´î¶u°(ÚÌZYà¶¡£³íÆ$4%WÑÝCÚv#èk¯¶Öšµ•у#¸á¶Óp$Eð‚Š˜‰¢[2ñRŒáLÝøš$Ÿ)Æá=1—+[ö–Ê3Q­Ìqxâ®ã¸á€[7hÛÀí·à9·:ïæ£!]Œá΄¡ã¨7Üv.½ynÏAlJ€ªçX<—;•Ëy8ž¬†OhçZ¶jÖÛ^ƒõ½û6ÕZZ-° Öc kdtýªe­O_æ!“Ãð©œ1Í-ñ@Ò`m±ŸÛ†u¹ Åsm­wñÔö%Æ2AÄ5÷òˆqè;»Fé€#Z*eBíEA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!ñnA/Èà…Ú‚ Þqˆàyñ]q."σ§kJA×^ò®!´Y,èè­˜—Æà-t>çªøwõ6öØÜcp vÂÒ1î]ÐØÎÁNX>:€tËër†›Wÿ=ØaAç óš›ýÈ:,»Ö0¸,]ßvÈð:¼‰¶]XŠì]ÇC¸vû²èÜåÁàšD7ùÑ߃­öÕÁ :œ¦Ï‹¥î*w¢«Í‚¶6 ,#ýð®çÔý¤x× ,–[àH×ßæ;í9sÍÚrGðê´ ­Ï^³­¸Çרÿ¸Ðe± m÷8Æàê„ÅÒ‡È5¿FÍõ½–…l܉¡¡Qð׸pËQãsYÇÀ‚ç ?,÷E‘fLý÷Þpƒw™„Áû=è<‘½>ï&!‹ÝUǺ†ŽÞ¬kbùîóà–ÓM=W:- 8¹ªgÚP§ŽkÞ]Ïí†Å²N¾…uÞEc"‚ ÞÂÐÖÓ¦ Ò:+vi |Ô‚ûÿ®|8;Ðf± Ï¡>œí°´õ¿+‚î=¸åÞ- CÞÙ‹¥ M´[ÐÖ _Rb®ü‚=‡x½Ú@äÑ­í§ëÈ6F2°_Š¡k¯ú[ÿÂ5²@´_Ëí½×¨¸[†µú'ç€ÅÒ~ „¡ ,í]Âàà ÊÀ†í>¤°X>ª ¿·Ü Wƒ—úœxÇBš1¸ÏqËcñ†Âp`¯mG2×çÝ$dб˃ŽC! ÒŽ÷Hí»<°ìòÂSJÇpãs馞+í úñ¦ŸiW‹£ÿX,ÅD ÞMc"‚ ÞíÂP°íîïC‡Å‚®_•0ü¨N~ÔäAw£ÍbA÷°‘8¯>Ûˆû0jµÂ6êD\4®q;`«1¯òK·Ïå€ÍfƒmÔw„/¿Ä#>ø"qÄ}NجVŒ:Üe÷"1·;Ž Àn³Á6ê@€3ºU·;êpÕ<1?×íq©Çn¯uì<œ#ݰXÚ0äpƒÕ—T{¿·V« vW JÌ5ß& G–]~ôÞ€e—£)ý‹Y„ÛŸ—ÉÃ~) ›#ƒ@¦ìñóˆd$øR°Ž%á Ôc£‡½ªœ-TÌTÁ¸7R~Ù 8gS°]Jbt6[>íxâálcI8Ãbiy‡# Û¥,"1Â0âÏÀ6–€Í¡Û–vüqAF`Y=~ÇZÞ|ÐpÃå‹ú‹Ë)µ»Èàr—¯C­öW¯;‡€sÖQ"ü®WqY»œxÛå#pÚGÕ~«ë•÷`qpä²ÂjµÂî T¹úvX­6¸> tXÐ^SvÀˆÀa³ª÷QqÐ,rp»\¥ã.߯.D*]µçŒ™U’1£XaŒGÀ0¸ šµ_QƋϡ€.—qQDÄíF$cÔ†Q§¯ÂíP›Ïóð9í°YmpúTApÚaµZápG*,>>ŒÚ¬°ZG Ï âs†çÕ}Ùlv­}88Fm°ÚFá‹‹Û²Á~ÌûJsÏ0ÆâèoS­…õÚºJ°p¸\.8±‰þÔ|Ÿãîšç¨¿_ãàs¹ÕóâØm±ÀÒ9Tº–ªÕ° >ÓãˆÃíò⟾Òþjµ®ïé¯­Í «­âÚ3.àRßqv8N]¾ò¹.rŒô´Ãbé‚Ý/õG$—ÖG*·ÛT[—„¡Î×^†ª•PÌàëîKQ‚k¡ø -„a{IÊð­åà j?Ç[y7i–å A¾ Ë.úfÅÒ1|ôCã3­F›j×9p©Ïí}_ë^ô[¿‹å p‹Í߃͌‰®êç¾ÈEàréž_|¤âþâás¹áEDü.¸#i$ ët?³ªf4Îa¤ÓK[i Õœ0äЯskïwÀ9ÐYå.fiëC@{Ùú:*æï†=bör ¿£ÚõlPsqô·Wï§sqÆÀ9ú«çYÚa ˆ`,Ž¡Ý•óºµ}Å×Á> ,–>Äkí¯½Ú‰w–p1ØaæBg/=Ü›níe=ÔëåþmpõEÛy"W,,„L\‹¼°…Õ¯±ý{ªÝŽºNçLc’ú÷x`90µHr,\aI{±ÇM\šp‹&dz/K¢ÃÄýI†2l‡ýó6`±šÇß9\ý…{´G½®Å~7Ô¡ö;§Ÿß‡xƒöwô·æõ9"-\/#ÝmËvÁÅ·¾]Þ=‚6‹Y¿­¾çDw…Ûf[×°6PŽc°Ó¤?Ô†•Ëv¨÷gG›Å‚vØS-S ûÌ…a{Â0­Ý»éúíW†{\uwn· ½_×"6uýÑHu¿u¨û±sºkn±ÀÒg¯ûü7´‡éµµ`Ø­¶£{¤Ûôcç*­…º{º­ë¦ýÀ‚A§&nšmk0t…¡ã°–][jûf2U.퇒KÂ0 ÆŒ\ƒe—=c¼ùs¼ÅwSÉ3¤B²p\÷üoMvX,è·ëŽETŸqaX§M«®ó÷"ïz·ì~| ãˆúc"Ã]•ϸNŒÄÒXbHësk, º­íX´{+‚>‹–{/Ð ™ H^ êÃÓÒ9 Q÷/ šµ2ÎnøjW|öªÒâ mÀÉ!nï7ÝyULúÕAB\ûzÙa¥­ ޏ¨ v-%×’VÚ„1K¢m—Ýcª¥Ìz@a¾ ÷¢öƒqõÜ3YtíòÀÒ» ^‹!±ìÚ€#¥¾È­‡¼°ìòW.´¸¿v½èDø<á1"S0Ü«CÑ‚5Ñ^ôRùxň ð¥$mùâ1H9è- â³ê¤ï’Ã(äнGˆˆ¥ãß„#¥ ÝáXö„t4Š}‹#&ª±(‹ýŒÐm± cÐÙ°ýË×݈ϵ‹-ôa­v«±¹¼OíkC®·+b¸Sx”ÚXëïý®âaënSEe\[Ö¡¶E·- } ² O»o£ý¥X¿Z°£ÏªL‹‚A;&k·K6À1²ÛK»I, ï(µ{GÚÛÛÑÞÞ†v-fÌ Vtÿ®ß~í°t À©µC{Uû²ÎibºàDàsGLc*-–.89];[vÃg`¢¯üœÝØm± ­{D;'£ý%·ûRûhûŽhmY\žw «mm×oËû©ì+ñtóÏ0÷ÐnÕ²&šˆðª¶î„ÝçPŸ•ÅöiП*?&ÕìEwÐÝCÚÇ´8†»ÛÔv×àâ ß¯aŠc ­YhÝúužÿf}¯½G»^;:K^4 xŸ­ô~QûP‡©‹¨Cs%Œ3ývG ý@}¯µÒÖåg}Û^/Ú‹ìYÃn-FP/ ËÿV´w†¶€*М§ÖaÙå5,b`¯ÃIX5o‘Í[¤ú9®´ün*º’vH¹c!ƒÑ±mìÞ«ÆZÃJ˰ÓDdëã—µ©þz">ø"KuïE}|cóãˆÚc¢âó¸gD}Ɖ»Î:îF—Å‚ŽAužµKµÝ¶òÇñ¶>Ä™÷„ î8 ’ ‚„áUÄkƒ¬ö>+|>Ü5 M[·µ5ahx›¿à‹ƒVG,–6ô `dx#Öõ…ÚfžH€‹àv»`µah íºlµß>Wr™Röm°é¬8®uÀ¢=Ð-–6tõ Àjw!Î×rÑ ÃŠýiÛ©vc©˜%å¯Ý¾‘®Ò‹¦Õ6qžP_⃳9øF‡×5wOQ÷_ƒ-¦;÷a?,»‚h/ÝŽSº¯¸©ÚÌâû´—x».Þ„[ت²DÚ3 L” çá^Ë`t,†þƒë%¡WP ù‹_‰ èÛcÜ.K%KÇà8â‡e×úNÇ1r:†‘±¸* ÷l!bø¢­µÇ°–=‘j1¢ ¶w ºÕ@›E»kɊѨý+¯{+×Ë9Ћ¥Çð{<àC„[ß®È#Àír`Ô:Œþnm°áˆ›¢-–. [G0<<ëÈÚ-´÷ÙµÁ„Þ3€Ã@[=WRM\—Ω£4ð/Ît‰¥û¼ø5Ût×Ö‰¾þ>ôõõ¡¯¯=êÀº–X©ß~º¯ð†ç@åýfîfæ, Åv ,=£%q3²[j2 Úº`µŽ`xÄŠ¡¾r»—ÏŸ7>ŠƒCÝ3¢^[®5ØO­gOsÏ0ÕcÍÃâ º Öˆ±½jõ§Z}¦²O-3V½e=>Z² 6†m´õ9ªãÈzFw$ ÍÚά=ÊÖoƒZÜçЮ¥Î2í©;¨?7®Â TÜ®zÿµØÖÚ³u÷¡-ôÖ8ÄÀ_Gjq„‡9ƒ[©/'?¼©tè=Qªžã­¿›˜A§Y²œ=~ Íæ X ;û‡`µŽ`dDÅjÂnKsmZy=Ýól§÷`1‘úŒë3|ØT?æ¨lÝXÚ‡Àkqµ–6‹öLŒ£¿ŽA$ wDÝQãK[‡æÓ¼0loRsªÅ ímíèèÜÎÎníë´N¸F5w&ÍÒÐÙi°l¨ƒªnÝ ‘+½`‹qú/|ªSÏØÑ·»Ãà4ì⚆æçÕœ0tT¸›ªnG­´ cyôì1ÏBg驱BËXvùáÔY}ç6aÙå‡=£ºböë³Å Ytìò ¯*ñ‹*à,“†D ËkV>?ߨ–!Ë\ç¾Ja¨³Hj™é: –Èl)ÆÐ© &Ê_À½èèÝ@goÎLe ƒsØk. ™¨~aíÆè`,»‡aê„¥c£Ã»Kâ¦QûW^÷V®Wå ¼Þ`¡ÑvnxmèÜm†¥¾(ºKnS¥mµw ³³=Ã.5Cža Â馿ýXïçèÐYFTËk{¿¾Ñnõw¾ö®™Ã*aX³ý:Kbßb±` tšY—êÅU/ïìoG[_YX,me+gG':;wcØÅU Êg‚îïzm9:Z?f‰vš†×m( ÛÚ´†¶²§FþTݾæ}Bp·û‡N8W#glK[WÙ:SŠl¯ü(Є0¬ÓvÕí¡ïÏåm¨çb|¿¨n}Í Cóí¶ÚÖ­ÄV ÃvÓ3îWŸáúp¦{¯Ôr[mæÝTüØØçÈCdp \Fªð´ØAŒ¡“¯rá/ŠøFmZy=Ýóì܃úç‚k°–ŽAC´þY¡zrubÔ¡f³uÃbiÈ] -(` ‚„áUe›T],]#àD<σçEÄ5÷»ÝCî–…á€öp®k1P]2\†`õ YUnxjL_l>Î`l7C½5ÁW”¾öºE]ÌY,mýˆDìÖÖqYÑ©sQ½v°C{aW<õ—VÚ¤øÕ¶Ï‘‡(Êà¢(cT³²YÃåe†ýeWŸÑCkš»euÖ9~-ZãK°«c2`’-TµìùaÏäѳË˾(ÅAC V! ½pd*b¥ÊÛ ”cLÃ~Xv­Ûc!Ž¡±¬.¦aÈ-‹©Ý#ˆ¾¡ªÏFí_yÝ[¹^jÝ —¨O£Þ†ÝƒÎ·@ÅËîÁrÂßp•0TïAí y—Í ’í#C°:#Ú}ÕwižŸR×b諾8}IK:Û-°tYë~Ù¯%Öj ÃzíסG\‹ìÒ–»zaèЄ¡èÖ\AõÙ^9†‡†áŒˆ;†æmo°ŸÊ¾"¶ð «´×†m°ó îÁNخߟj–ù©è%K¢n/º‡JîЕçXŒ¯*¶eÀ>‚QC¢¬:4Š®ü\YDöiïŽzmWÝæâ²hUÐ]/ãsaÀ7­­µuõ³µyah9˜Ð•$âйk Ckyõù:œ‹%T7ÕCɦöÕÌ»©œ}Zj˜õÚ%Ÿ©ß¦•×£Ñ=ÏvpÖ÷¢ª|3ØûÚÊîØ|9 Bê‡õ#NÑe› †×$}¹™?|}mÅN“å*´/»=ƒpøºAQ̶í€+‡Û>¨~ñ×â«ÕqEÀÅ}îi7 苃Ž>+ºùÃn¾üõ»½Ž@.[¿–˜Ã^:†Ž¾øâqøÃêñ›Ôܱ0Ôܦz†lðq‰ªÔÙú/‚Í·I16d³*À]Ô„UÇ‘LémÙ€#\€ë’³×~„+Õ©²ìZÀƒG$Rã÷l™×rêü]ì>¬•«pÄÑ·Ï«} Þ„KЄaoˆ?…®=åZZf û5¹LßX‘p=ºò¢&*ÛöEà ‹pÏjµºzc%aØÖ¤0,¥¹·X0ìc`¢«d…Ô¾ì6jÿªAy }X ŒhnICðÅ#p ÷”f´¶]MvÀçq¢«ÍRœVÞƒÚÀ¾{ÈŽH<[g)¦†×>íÝÃðéæÕ‹1´´uÈåY- ‰j"¶²ÕÎÉ]SaØlûsm=¶&RÕWί- KÏCK'Fœ>Dô´[JÉC󶬿ŸZ}¥™g˜ú¬/[êê Ãö’%¸O'¶ëõ'Ó66íZ¶ì†ÕÐõá.¸E×f·:p–¬TëU g5‹¤¿b@!bø`9óhÛ^Uh "û­¶•6¿w ®LyÐÐ1\Ž1tX¯- K/Õb_×ý­»Þõڿ꺷Ї‹Ë곉îî·ÛÁvÝw÷ôèÜ3÷ c¬}Æû£k`´œê¿Â-Õb©Uà~PKS¾:z†+ýpZ–Sóç Ó}õî4w%5Z7o¶ýÚó`È­ºßÌåùj23WÒ¢e §Ãèj?äˆèŽ»Ã Ï«d£¶¬·Ÿê¾Òü3¬K^tµ­ÕÖ•çRü€  ×úýɬÍú„°£»]Ÿ™q7l¾b|¦}ºóïèÚ­–\U¢™âÇó"Fûwë²Gw ­t.µÛ®^{TõчÝÚ=×Ö¡Þ·¥L“Ù¿‹Ys-í8?Ý`»-´uɽ³¦0ô•ŠÚëÿ͘ëáuC¬øàlÞäùšGß^õ½²lúoíÝäÓ\I[†iÍ‹Éìlí8ÿJkrí6­¾ÎõïE¶ƒ{°ÑØÁmë7<ã:º‡ j¶C"¾Ê¿ë~¸'‚„á ‘ç!ŠÍ.Ï##Î5òÁÅãàL–SãÔ ˆ\<^4qåäD.Ž8gò"ÕcàøëUT]ßÒ¶›m“fŠ«1†bFD<£T½tÛ‡³`LF<%µà~,ƒK‰ˆWÅ„”çÇS¢á:4ì3©Î1¨Û‹gä·¨·Úþ-,ßR_«³]m;µÚ¸òyNݯXû˜øfûUÍsÕ\¸¯g„ë~¯6yþqμïïd[5úMKûiª]´X[‹vëÏø:ý©…>Qïüy®¹{j´§­füiåñŠ×ºOñnôíî*•)¹ÿ]Ã"æÍ·õUì##©Ïì÷Èà©Õ6mê^¼VϦ·Á3Ž †ïhÔÚ^ýUe Ê®œm¦n=ïvÔzSkj¶P³¯±{<°æ¨Wýác´¿ ímª%d4Nmò¶k®•Ã>þÝÑ'âjÚ®Ë×›bŒ¾¥ýƒCèïMKA$ ßR£ƒ¥t÷Õn¨vôuÀÍ¿1}#p æV8ÛpƒŽ<õ!âªqô ½½ƒ£j·9ÎÁ.t¾Âå­èîá.tôÙ®‰õvÇÏÙ¸ƒ=]èhoGGgM’OA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚ aHAAA0$‚ ‚ ‚ HAAA$ ‚ ‚ ‚ †AAA C‚ ‚ ‚ ‚„!AAAA ‚ ‚ ‚x»Cšh¢‰&šh¢é­›hCA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0¤‰&šh¢‰&†AAÂ&šh¢‰&šHA Cšh¢‰&šh"aHA$ i¢‰&šh¢‰„!AA0|›O<Ï#ŸÏA¼£¼ ÐC„!AA¦V'I’ðÊ«§0>q©!ãSŸ¸„‹ãvŒOØqqü’ÊÄ%ŒÛÕ¿Çí·O`Ì®®sqbB]vb'ì¸81‹ã—0fŸÀø„º½‰‰‹Ÿ˜Ô–·ãℽæ1¨û´c|ÜÞðx‹Ë^œ¸T:Þòñ—Ï£™s7l¯Ä¥¦×-oÃnØïÅÒo Ö3Y Ôßµ¿M¶§?nã9W·Ëc»Ö¦òº]ÔPÏÃnzÇ/éú‹ñ|õmR}}kƒ]w=šXÎÐÖöŠëgo­m.N¨ŒÏcÌ~©ÌÄÆíã·Ûëžoõý=YÑÆµÚ¯úz˜SÙç[¼Kç1®=GjßKÅv>a gΜÕT =ßIA$ i2yƒ›ÿ¬( ì¼Í¯ «/.ùµµ5êÏ$ ‚ †4µ:°T®å•&×WJzÐàFZ%ÕÓ‹É"&Âèó>M4]••íDè²··"f­/GC†A CzC73p2†²‚¥¥s#C•Ñ!šað'Dl¥Èæ"iÛyQMA“+(àE@)Æ=± a¨!) ‘ŒŒpZ/2(¬†…àZk°]\§ckvŸ¨6Õ ål¦=Qc·¨qÞõú8k`iCöiFK]‹kÙèºhƒïš×·¼Pù[ kdí¯cÕoÔ.’ÞÔ<¾&Û Qÿ®÷¹\Žb IA$ iÚ±0\^m8 •dàMOw<ƒ;žIà¾S¸" ÞX*àžiô¾žÁ|PÂzRÁ׬¾q&‹@RRÅž¢s;-`C$£àžW8|þ¥4¦üäDF„áÕ CŤ­L\•eI1 ®w0äs2EƒUª‘*áRê—¬!VÏÊg"ê " D(êXÚXŸ¢±ê|Ñ‚å³Yëh3.  t!ŸGÀçÅââ"üëˆE¢ˆl…ÛN ²E<‘@<žÀöö6É$<«$“9dSq„¢!„#ÛÈç%ÉDÑØ6Éb±$ ‹xöüœþ ÜÁ4f½)¬ÒÅsðo¥qi!‚W.mÁéNÀ1¿+¾8–æ½ ,orXÝLcÁËai+‹9_Ê^Æb±Ün7VWWáñx°¼¼ —k ²$«}W†y.ˆÔ¦œÿ ÄØ$²›¯!|ù0X>‡lf³Î |iOŸÛ‚o[D2™…c5‰õˆûj ¾-þ`þ°o Šèv…¼}â©W§r˜ðJxe6I¯ˆY¿„‹+"ÞtåqÙ'b3-éÚ_ƒ„TRÂ'gÆs°-æqÙ/`~]Âìz“k"V·äy\y›æñꬻ[D$©À±"`vS®éK„!AAÂÞÐWm1Ô%ŒÑUÌK «!†ÒxßW"°|iÎçqe“!Ä)ø¦Ã¿¼w ¿üÍ(Ž- ààÍ<"’¼Æ€‚l$dX— Nåpx2 ¿ˆÕ˜„y–½a<7Ã#–aðÄœ^qnµ÷¶Äò`§ýÀ•°™^XÎú X޽¹ø8È•n„ŨÂÊ‚·B0(Œ½ê*|꘶®öo™ËB³ø)Y¨Š‚ToÉbæ–¬*¡Çšpýd¥)‹âÕ¸³²&D^£}Öú»(Ðë `T´]ƒc ylmnhbÊ…Ù+³X^\Âå™ËXZ]ÁÒò._¾Œ©é)\™ÅÒâÉ bÛ[pÎÍaii‰$‡íX‹.'¦S˜Å•¹E°<0xnÇ.ø°ïÄ"¾u|Oœ\àՋ§Oy1tfÏœñâûg61òº}/,á;/-á©7ü¾°‰‘± ^¸ÀS6<ºŒgΧ¡#Ïó…BX^^†ÇãÓé„Ë5Y‘t]GÈG8‘öFríe$ÝG°ízLàˆnÂ>åÇþ¡E|÷Ô:®¬ç0·Å‘s~|ÿ¥U<||ƒ'½Ø74þ—=xcjpÉŒj™Ôä†ÎrãðÝS)<4’Â?žLá±3½ÉáÈÅ,Ž/*ê½StéC".þ”ÃðxG/äðÈ™~p1ƒo½ÊáÙó^+ “a[0ëqf>þÓiœ)àç8ÌúEÔ*sCÂð½) ë>‹$ø’ÀøÂ)à÷¾|øÐöM íaà·þôÀ—ßžŸ6¹ºÏ.¸A0|︒*F µž”ñ¥W9X>Äûï áGï‹À²g¿ØÅéUœÍâ'î ãWŽáåù&ÖþÉ=AüؽaLoHà©IÿóÉ~to–»Bø‘Ïmá¿|;WP¿úzï»'ˆWæ¼±,¡óÙþÉÞ >x ŠQŸØÖ€øõç€?<| ¸õ8ðüpt ìË€cnè …%‹ ¢½Ä¡b° ÆM 2Íb¨¾UËF±=d((™> jš˜†RW ÅaöfE\³–·¸Õbë6²ò5+›šÜJì[EDÂ[p»ÝX__‡gÕÉÉI¸–—‹Ç±Û†×çƒÛëÁúæVWW‘ã%p©[$Iäøñ8<îU,--ÃçóbÕíƒ$J˜YKau=W&ƒ8éãU{'/ñú•(NN…ðòts¾4V—¢xi,€—&C˜ZMcÙŸ„g#÷‡OG.¬ãÍ%®úƒ8ŽƒÏçÃÜÜæçç±°°€D*©ûœ£þ/Ïm!éCtþ(b Cˆ->‹ð•#`…âÑf]›>ïÃW¢Äó„³ð3¸|e GFC˜q'pz*€3ÎÖBØŽE‘Ì †ö¿è–ã%L¯åñÊe¯8r8u9‡ç'2xäl—C²v?•r#“b˜Z‘ðÒt§œYœ¼ÂãÑSiÜw"_P†/$A*3nÇ/çpr‘Ç…ÕŽNdqÁ)a~C4ÞÈ:H¾G…¡™W®„ýcÀŸ< |dðᇀ›>øÐÖ«þÿƒ7=|øaà×÷·<<6 øª¨¬áñ–ÂçÀ8 8A„á[ãJ*—-dZ\`.¯`Ò/ã‹#¼ï+aX¾Âçsx~6µ„ŒϦñ/ï ãWŠá¸+ñµ<,{·ðϺC˜ ËxeQÀ¯>¼ K×ھŞIúD7ÜÁï ¤pt¦%/VðoBþ7O?ûð¿_;4,Ä€µ`ßókC½5Ð$ ‰Áͪ!Ãð»Þ"XtETEg-TÀŠV¦Ö1ZUÖ¬ÆÖ]ÏXÇ$üiVÜ­'cidY¬'  Ûò@RÈñØÜÜD¾P(Ï2µv²Úîµ([ÃŒþÇ ÛÉ<‰< ªr» ²?ê,Ý5êÀ H%SX]]Åää$B¡ÆÇDZ¹áWŸ…ŠÁïL*@Ê¥¡d9H9ЍöÛB!!Ÿ‡$ËÆã¨ÌtZl§¼!/“ù0˜Ö>ÌK ’9 ÛYflŸÒŸ¬ä¹­àEà’«€•¨¤Ý”5,ózq¦”ãk•« é½e1Ôß+þ$pðpûQà7÷7=´=И>ÜôMà·þØ}x}Hå·ã[u^ñ 0p h{°èÙts§¯~/˜+ùîlÚßPÛͲ°×9ß¡g¶ý@ûj:ºŽ£ëëå®êµ Ö?÷¤º\Û³`¼Ù2Xÿ Цm¯ßMB aHÂð‡h1dª¬r VGá}_Áò¥ίŠÈ€dNƶ ~¢;‚_y(Šó.ú$X¾ÄÝÅ|ˆá Ç9ü»û#ø™¯Gñø^b(ȯÅþ‹¯Gðþ{#ø÷Äñ/‡ðÿ=Ŧdùðºø·7fm^+,ŠW™•­yLQÅmUü`åI› Æ+ÇÌ`dREÖGºšŽ&®µb Ñ 6¯UÍf\BŲ&·â[†Mc3w\SAØÐmV1Ãó£¦Àgæ×Í`~Ö,ËйccwõBG‘+ö£”U’R잊Q]’‹Ï<…A–d0Vü¿b¶¥Ëe±UycW4R±[ÚH³ˆ+ÐÊÉÎ…7ãE»fLw"L;w%€¬¨s&VÍQ˜öѪ,DtmM„¡~š ßþø{Àënì5½&÷çýú·ÛžŽÎ©®¨o¥ÅÐþF…¬A#!RÛ u}KïòfØ­k³Î µ—x¬¹vïžÔ­—:lNÈ9Š×õ10ÎL>YÞGÇ)0‘DA„áMªÎ^2Ãà’A(3L®ó°hÃ3+yäe5ûàƒg³øñî0~åá(Ž»ÔDïûb¸?‚…ˆÝÃIüTw¿ð@Ï:Ý~5ax_?ÒÂÿópøJ?ÛÁ9‚ ¼îûɃÀÏ> L‡Õ„3Ú€Q–ò/Vþe`óbÓß]‚kØ„‡C`b[³I@6šE&Ê#º”Bh6ÄZé ™õ i ãÛXYÇÖLS¯bkjbV* CÝ@_QL\Gu_—A@¶2k$ZoÍXÒ®Vî4Ž‘­G¥˜@³C®ˆ©¼*Kh³î®¬{o¿ Ç\K€+e·e˜Ò•``ºL¼êRÅq© R q­hϦb=+?6TZÀý¶•š×Íà†­·ÊÕ̹$WXöÌë•ÂÐ6E×m£Å±´-ËXIÚ¯ Y IßÿëIà;ÿõàÃûT‘wãÍY Íøµos x~ˆóoÍ9F24 Iƒ‰—³]0ZÒÎöÓÿØ{Ã*Ÿ­¶¸Öj³M˜usyÁî2Ö Fë­=ݺ0tÖ†•¢ð  C†?da¨˜¸{iVQ&×EMnáÌŠˆ¼$ƒ<`ËâÇïàW¿¹‹yŒy%X¾ÆuG°Vðí üÜ×Ãø_ã3GRxe1‹ÕXÎ@®°Œ¿?Š÷ßÀW^Éá¿ØÆ¿þjOÅ1<«Y­^à†Çÿç{€3HJÉÁ¥9¸ÝnŒ_‡ßçÃòò2––ᘚ†g̓øF ‹/l`ô\~Â+Oùà|΋Ùç½]‰Ãþí%Ì|߃ÉþeÌ zà±…à~m cÎÁþl/s˜üÎ2N}ÎÈ\² 0Ëš×m7Q(ä ‚˜°OàÊìÌ/.À½æÁf0€X<Žt6ƒ‚$©‰pP#‰ÊÕ–Þj×ÿkV4Ö³Ú5[†ƒ5á"ÚŠP­ñ·YÉŠš5Vû<+„¡^1û%;Þ<{3³—‘沈,¤p¡w¯wÍÀýj“.â̽W°t|o~Õ‰éï¹1úyLô-bqx‹Ç61Ú3‡©GW±åH`ú±\x`±å4䂬µ‹6Øge·¿Z.¢ª0 `aa^Ÿž5/<Þ">¬y½ðú|ðû×±¾±‰ÐVñxÙl¢(V7o)>h>®°Y œb6oȸ›¶àNÚ”[ªÒœ5´äq©;¢›f1qQ•ø€ÞU³lÑ‚VÛz×`Ë%cŠæ[‰Rß©év[% `.  Å„JÚŒbù•J‹§Þ$Xj¿ i]L 1 dQÔ1ƒ€S÷§”\J+Ï»ÂB };1£’UºÇÛY÷¼ÒM$ ߣÂp†€Ï>ÒWáZ)özËÿo( µe»øö(°묅#áúË>iâÖÈÀܳe¡R¤mp&ËBf÷þj+š³†Ðp-”ƒ&îºmYµã“@ß`µûeϸÑ5ÒyVý}÷¸IÌž¶Íâ1—í{ÃxnCë Út»lå‚ÙŽ–ÏE¬# k ¼Ð^)¯FJeË­åA`w7×V®ë€»öul?F⃠aHS3®¤úÁ¥QŠ °–ñ±Çc¸ù`—6Dˆ€ÃS<þp ¿z6Qo A =¸ß{"…¥° ^dxcYÀW_Kã÷Oà#ߎá7‰ã3ÏqX ð‡ßOàæG⸰VÀô¦„}¶,~ï±>ýl ÇçE`j ìCùóWÀV“Z<¡:rE Ç! ‹Ãëõa}c~ÿB[AÄømWžòàͯÍ!4“ÀêÉuÌò`åÄü"Í&±~>‚õ Ql9Ï&q&™K!²À!êJ!8à!‹Šq,Ïtu a´`ûe>/`s#€T*¥–î(ˆÈdsH$SˆD¢·°¾¾ŸÏÇ g ÏÖÖ|ðx½ðúüXß  !ºG*ÉÏòE±Ú$g–=¥YÑV\3 ÂU»Vĺ•s©0ã â§X>„U»BVÕ­c&.hA@…]aK‚ÕžJ…0d&ÂÐÐV0ÆÂÖŠ_jÇÖÕa¨obEg3ì:Õ§?¿Zµ3¡sU*.{Ihêú…^–úB¥0,/[_êD63ÿAÂð=* e¦fýý ’Ë<üÆ?ÿ³øƒïë~}_mQ¨OüÔ€g®€I×ñ\†Ÿ­/\ ¹|µ%ÎqÖ(:*bælÛVIµ„!ï-/c­«‘Ù²°ôI`,lt·l;PR–ËÑòyERûÕâ«(€é AUcÙ@<»Î–¬¯,ÂÀ¸¥Š¶hUê„æU Ã'U×`½(쯛ØÌuÕ},°­ÞFÏÍMv’ÄA¦æ„a­˜*…Ûi†¡Ë<~p™G0©@a@Aæ·D½œÇ‰9  Ûœ„×ynQ'vk]7¥ÖÅEãr%EaHÉgÞ›ÂpÈ |äáH5aø?IÞøì3†µ²˜ö³^Çd-EaÒþ†¹+`Û“2 ÇT+\It0qù ê„AºIëXËc`,Y,#a£›¥YÜcqmÇ®B6¯È»MÅèÜR-î¼ù16 *w( +i;Ñ`f®k¾l î™-/7z¢¶%‘ HÒT[ªÂ¡”5°˜ð¨vñce·J r±®_ÑuL7•M¬?ÕzS)¹ï) +Y™ KVÎgȤX% Š -”êA©\£.AÈ*Æ Œ& 1JÙ‹‹ê252EA:Ââʲ–\ÆL%Uùê™—G0ht¹äž˜ÉòˆÅXßXÇâÒ2fff1aŸÄØÄ%اgpŹ·Ç‹P$ ŽãP(H$²,CÖþÏÌèÔ•ÉXXé7­­ÅÐæêõQŒî¢LV¿ÜÖ¨¨f¨d5­nQTÃÂW7M3"h>ÉŽ¡~¦¢¶m=$³ß%íwI÷ïz˛̫»ŽÔø¸šAÒm[û¿¢(&±€JùÃJñƒär2³:ˆŠ‰Õ“„! ÃfÞÿJ-^_·>á·Õƒ>:L¬XßbxcoE)‹^àwúÁ¾3~ý…¡™5Ëqª†¨ÐâÕô¢£óY KÎ:5šl]êE`1®Ï}Á¸¾UÊ7n~¼­ÃŽ³Í·¥õ¨1³«m°Í‚ÓÅ=.´( ƒ µ·Ua8°6¢;N½˜3[§™ë:z¬BDëÊu P]D‚„!M-¹’êc `P}VE¥ÒŽkÃéGnJµð)YAô›5ù±²¥ÐhÍT´ë®Û«p©S¤:>púÿËÕ®•ⲎŪ$š•j#Š2ñ$VJUf´xê¨>!¥k!S+Y]£ŠñEVÉdŽF°æób~~öKSxsô"F'&0épÀµì‚oÝhlY>WÊŒZ÷h`­Ó]b»²…K©( T‡@–º«²•Ë©)GÍeÍÖm4zz“““p8¸téÖÖÖ IR!-£\Qÿ!G©è+:ñ¨4¸V5® Ã÷¨0üýAÕU´Qñú?ü>ðë}ÀË‹@2o†7šÔ6¼±"‰Í¯íûûW®ß¹”\1Mb ãa0û’ŠÃ ”DŒ&´Jñ‰ èYÚ0Ô¹-[}š{i—CsW,ÆÖ(!z¯^¶7ëb›®NÔbÊ“F d±MzfÁøX<­Iª%Cj%¤Ù‰0ì_0¯³XxUq§M^W½Û¨=Æ/UÄ’ð HÒÔ¬0T`êªY(S y,‡ x}.•$—+’YTjf"´ôiñeõG—qè‡Iw/ÏäàÜuVBÉ Tªµ«p5-/MÊxÌ–Á—‡9¼0“G(Ë4k–jÔ+»Ãê]g’ ]9ð•û)Ʊ)Ju"T[ªB±,æW#ØÜ ­#&% ¤ó þSËe™em¬r5„‰of…;ªÉøØ_]Gw<÷xíD/5Ý;5¡U*žþ,X`ÌÖ± ÙVçw& ãºD3îõ²±(ÞôIjZ±v\aè›Ô%u9ôé9ô š'°iµM®&+)_ÃíÕòX\o)nñºêcB»gÁlÇZÕA„¡Và^Ÿ,B?æâó NœOã+Ã>õl‡Æ³Ø÷jOeñƒ‹|ûT ÷Kâ^åp|&þS)|ýõ "†pŽŠºj­à‹c)|âP l<¾{6ƒ§9ÏâÓ9Œ/ðsÈ´Qe>ŸG&“A.ËC.ÈêØR«àøh ߟÌâ…Ë9>ÇCUk¯,Éà2i$ „äÓ9är9ð|‚ N#ã’à2iÈ’Œl–G!/"ŸÏ£P¡(oÁƒ\1 úPÃSø›¡=ŸÁ+Ÿ!sK°r8p6‹þ3óƒüœR/cÕ.— ªûYh[Âç^æ0p!ƒGϦñÕ—SøÊKIì~!ožàðì”@V-G Èd2ØÜ\G8´…B^³&I0$µ9içñÝsY<öf¿ÊáÞãËâûg8|ýd?œÂ7ŽrøÌS |}„Ã#odqðõ ú­zG’ø›§ÕZ‹_yqŸx<†#WòØÎJšÅ!_È#X‡gm LªÌ²¢NËþm¼9]ÌHÊJÅÀõª-”•ñ­Ñ ~ëÀ6þÕÝ!üÜ×Bøûc)ŒoH¸ûXÿýÛ1|ÏžÅ\P„Ý#à¨#‡ÓË$r5„a)Eª\1K©åuZ5ÐSd’$AEDùB9žG"•@0²Ÿ_͘zùÊ .M^Â%Ç .;g±¼ºŠõ "Ñ\î8ny"þó9\ZÉãû·ñÕ×rè;Eïñ$¾ñR_|!Ï>Å×OfÑûrŸ|6Ž'Æyìy!…O?À÷/ ed±P†n·@²$7vv–T§acB™‹c°äšÇêÒ2\®%8s˜››ƒËå‚ÓéÄêê*á÷ûá^ucqq ‘H —†ßçÃì•+X^ZÁÚÚæççáYóann KX^^…×ëƒÇãÆÂÂ<ææÔøÑ×Ö|^,-©Ë¸Ýn,,,Àëõ!É^'E ïZÆ/I'&3øÒóI|îpw=—À'ŸÚÆ×_åðÇñ©§¸û…¾w.'ÎgðÅ—S86ÁãÞ—ÓxäµN¸ à%¹´Ýd2 ¿ßÍÍMó¬¯$ I~ðá„áÀñ ¥†½uÏ],ZѰ(‚v_ã›t1,%1©!„ôYIm:!b×%|é[¨°„=Ø5÷I1 t¨N”ÓŠ0ƒµ¯V ¢+÷Æz÷\}¶ØV¯k1&´Ý$•DA¦–c MТ8× peX—yØ\yÍâ%G§Œ­æ1¾ZÀØJ§œß8Þ5!›)ÍÑJVRM./¹à^]ÅÊÊ \.W §Ó ǃ`0ßš^Ïâ±’É$|>®\™ÁüÜ–––°¸¸ˆÅÅe¸Ý«ðx|Xó¬Á»æÁÊŠ N¸\ËðúÖ±â^ÆÊšn·[[ª{éêê*¼~?RéÌõ‰‚Riwý6C—s8íâqàl6W_Èà©Ñ^¾œÇº„9_çÒ8½$àÌR+fà bùC†$i÷»¯-JI¾·…áo>ªÖ(¼ÞÂðCûÀ>;|ýÏiôTsqe–Àh¸¶pë¬H¦Òí0qÍZ”ô"Å,fM/Ê,Oºúrz×SƒòÁ«†ú6¨S§wß,ÆIþ°…aeÈb6ÕV®«Yl"Õ.$HÒ´#aXÃ’¢(@"£ [`edlg,DøbœŒí´Œí´‚í´‚pJÁF´€åS]kÅxé,‰²Ì°É1d†­„Œ•ˆŒ`Ša+®àòºˆXV”ú¥ÜJÉ‹±†2à‰H¸(ÀŸÁåÄ8àŠ'ÞãŽ/æá ‰X ËðÇeD8±´‚0§À¿-cj½€ù‚`BÁ\@D&ȲRΖYGDûd8Æšg bÑÝRQJ‰û¹<Ãó3>w”ÃîÝÆ?ýR?õÜ÷j¡4ÃY·„Ÿëàwo¡ÿ|—6DŸk^Üž5xÖ¼XózáõyáóùàßXÇf0ˆH4Šx"l6«Æá)JóÂPy‹…¡öï¹¹9d³¹rò””’1fø˜À± B’$Õ· 6'€•Æó eI åcŒ}W<†c«|æ2saxÕ‚³xÍ\C0$aÈ€/½ü×q†7êÑ×’Ïø“À½#M¸> &´ùÝ~°Ç.½Åç'©Y1}a5É—oRXjIIIsY„Ë©ˆ-ZÇY¹tyÿu]Uµó „ Tˆ«»®%ë$Õ.$HÒÔ²0\2¾äµZqfI&J¿+&ËÕ[G©ñ[½ß•Ší*õ`˜‹ÁЇâo LQ ÈuŽUiÐuÎ òƒØØØ¨Ð*r¢‚éÍî}-…ÿð>ðånüö6þÏP #‹<Ù3øÀ=QÜøpo¬˜Xñà«|å‡7– (È ò2ƒ?!Ã0æ•0’N+˜\/à+/§ð}6„ÿò@Ž Ùx¦ƒør¡t¥yAÞª°.ö;ÆÀç$’I„Â!x}^,.¹0ëœÅ•9'æç±´º‚5ïÖ„"aÄcq¤R)¤Óiär<„¼Q!ËŠVû²|=Yiîº5ÙO ý¨X?QAUßÜÞÞF>_(eq­…,ÉåÿKåä?Ь€Éå}4ÚN+÷YIݱ^a)1‘TM±Y1mË¢nø<©q¿)²¢ºn+ ž º¿s9†ïIaxt^-CñÁ&„aÑbX++é5DâþtìŒç½7Xójù†á£å2³öö„ËE¼ek0Õ.$H¾WßÐ-àYY..¹Ô„#¢„BAD¡ B,HÄæ åõ Ñ0¯òïF¿ë·W¹l½u̶_(ˆE ’$B’ d…‚ EÊCÌKD¥éóheŸ’$!Í¥±¹¹‰P(d¸>úŽÑœ‚;_ìÝÆ¿ïÞÆÞWrpEøS ¾|2ƒû»þp ‹þŽ\æñá¯GñßFï™,ò"0Ì£ëxŸˆãÖ'Ø;œÀ±¯. øÛçãø±Ïná‹#œf(ȪU1/ëU lp…”+cµ² cÆÒŽìÚöSýO…Bé¬Zƒq}c®•%Ì\¹‚KS“°OMbæÊ,­,Áë÷!ÚB<™—NƒK§‘Ëæ ðj<š¨ë7b¡º_™ö=±úúçó…’*ý®Yô*ûeñ>ª·ßzÇ ‹ê~$Q*ý_ß'õÛÛÉ}шâyšßKïeQT—ÓŸGÓ÷MÅ¿ÍîËZm(Šê}—Ig°ººJïƒ÷š0Üä€[ž>ôÍæ¬U°·±8üÀçGÀ"Ù÷Þ`mొ¤3K4€};b({AIg†ïM1x•Ë(Š‚åååÅo½•4p55$¡0ÄÊ15.PWÎBF1<¯Ž­Õ²‚'•J!¨ÕÔk­RoËQÿ`ÍâßßÅî‰áÉK900„Ó úý$~äs!Üy$…‰ ß½Àãº#øÿîàûó!†?y2Žºg¸;Œÿt_¿ÒÆ_%ðóYìâð/ÿ6Œ½ÇSd`lMÄñ+\ô(ØN¯œ¤e@fP Z ƒP¬z]ÜŽ›èÇ|>D*‰À&VVWáœwªå4&.Â>9‰Yç¬Zƒq+ˆx2!ŸW\Ñ"§³@Õuo®èS¦ý«¢_Ö͘Éê»@ÖÜw«å4®¦ÇÕÜÿ¸Êý6:îŠí›¶5Y ߫½üÖ?6! {MÊR4°0¶=|fx~þ½9XÓ ÃNª‡÷ކ£ÛÔ& CšÇ}j Ê5’Ï Î Á­ DVgàΘ.I +ZguâÕбÀ|0DZµµ…L&£;ffH 3±.âóÃ~òÞ~µo#ó9( XŽˆø1¼ÿïBxð4‡‹ë"¾þ‡_úÚ>v`/Í Ø÷fïßÂøR÷Z9¼¼ áø"SË9ŸÃŸ<žÀ¿ÙÂC¶άæqã7#øWwmáÎWÓXZÏA>çþqpSa°óÏû,–æx(°RŽš‹ùf>`°ög}?VxžG,‡có‹ ˜rLcôâ.ŒÂ>y s sXu»‡‘N«uÿê >4ñaÂL¨ Åþ}|'"«Ù{¨QŸG“ûnæy¡/ñQ§XÓ¢ÜìóC›(+é{T2¨Ö¿Ï¾ üÆ·ˆÁ&b+çµ?<1ߣI<ļÏÑÀõmïJšV¯OmA0$ka=Ë cÈ Hg³G£Xß\ÇŠ{³Îù†YIkî³ ÁÖ¨\@e ´f¶¥¯¦…jQj¿ËÖ¯fÄ- œ#‘A(/§ãù^_Îã/¾ŸÀîá×Ä`÷Ke`Ì«àgz"xßßñü”Ûj{$_øjñý$N¹Üu,Ë_ñW‡SHèJÕ…8ß<Åoã÷láwOàƒ}Qü³=aüùá$ì ¹µðÍ àÿþõw~êðçÇÀœQà˜ì™E`S3ÛÔHèÂÐÄ‚«†×àÖ.D¤ÓilmmÁëõb~q“ÓS8?z£Çà˜¹ ×’ þÍ DcÛàAMƒ«°â×Ίw½¬ï¬IVç¾®Ù&5οjùzÏ4¹¾îo>ÇcmmÛ{QJ °ºÛž~­‘å°·ù ¦¿Þ|ñ°d´A0|B¦0òd2Äb1lll`eesss˜rLãÒä%LÏ\Æìü–WWàõy± `;ƒki¥¾Å°ÙÌ¢Mfmh©Cc MSÖ°êBäR¥5ëh“âY–eDÂD"‘êì”:‹áâ–ŒG/ä°ëh Mcƒ“ ) ' øéî0~âžl+áñ'ßág¾Æ_?›Âì–ˆ»^â`ùÜ&þÇ#qÌòÈK ˜ xc î>‘Æüz–{Bxÿ—‚ø‘φñ™ç’XÚVP`0î~øÉGqʇþ ppð¦ÁޏÁŸ…¼² Æ‹&¶[äNEP3ý½™åXý¬¢”“½dyÛñÖ77°¼º‚Ù¹9\šœÄÅ‹a·Ûqåʬ®®" "•JA¥ª uÅN#aêkñ5e•kÖ¢¾«=pý…k£ëÇZ¶··±±±ÕÕU8ç0se—g®`vv ‹‹X^qÃç÷# a{;ŽÇA  -“£:0–$ KK«WïN 4k¦w»kFP4è¢I—5¥®ºÃÕ ÁJ …B¡¶··M ”Þ¢ $yþ„„Í” QVÃ!Â"î?™ÅFÒX3¼<ÏãöÁ8~k_;Å!œŽ:ütw?¶g Ÿx*…ï\Èâ‚§€7V øô`?õ¥0þ߇£øÍï&ðOö„ñ©ç’ØH*Pg7€¿´?ý8ðÛG€ãn°­,€œld€µ”ƒ¨Z}yT íYU~(Pꈮ«µªëÎ¥(%©˜|¦žç‘J§ގ·îÇÒÊ2®ÌÎâÒÔ%LNOcfv®å%x}>D¢pkj³î” «Û÷ª¶ÕH4¶r5!¦›¾Фûðµ²–ÖÙ& Ã÷°Å°Ø7ü)à…9௎¿Ýß\b™R¬¡nÞG¾xR…Ñ\Õ;… ‚x/ Ã&Öh¡ö[¡ "“É # ÂëõcyÅ…æç°èZÆòŠkk>¬¯o ÜB8A<–@*™B:A6›E.'@ò(ˆ"$Y®Û>¦îk¿¢×UJU4Uˆßˆá»c9üÔýüÔ½a¼º’‡ xqøøKÀ/~ØcB9«(D((êÕr¹Õ_Ûâz†Zˆ0–€ñZ¨¢G.·s½Ø¾f„;Z°:·0è•$ ù|¹\ét©T ñX¡H뛬y½X^YÅüÂ"fgç0ëœÃòò*üþ „#jAû¼‡,ËÍO«dZucmUü5cáßi,p#/…f>(T¬GÉgHâ<`[¾}øß‡_?ÐÀ:¨‰Â>üf¿šhæ‰i`!’éÇF‚ âÝ. ¯v`YgY¦0ˆ¢žç‘N§‘H$‰D°µµ…ÍÍMlll`}}ØØØ€ßï‡ßï‡Ïï‡ß¿ŽõÍ’ŒÅâà8µ–[>¯:wÚŠ¢ÀÕ(ÆÐt&‹£—ô3ˆfTaºù¬ô’--©˜YòtJP©2U ¶¯h¿…™º˜2£ˆ4«ë· G"‘(¹V4¶ºšÂ ÉP­wuú\±mr È)ð&dlçÈP…ä倈‡ÎäÐù‡?;œÄ·Îg0ä°ûîÙÆÝ'8\Høèc üè[Ø{*PJ†rð ð߇€¿ö /—Ã/e†x üÑãÀ'žþæ%à›€W—­tÝþH7‚ ˆw’0d×` X#y…¢(ªkY!^Íf‘N§ÁqR©b±8Âá0667áõy±â^ÅÂâ"æç籸¸ˆ••ø|>ƒAD£Q¤R)är9 âõ«ÿÖ„0\jFȧSxóÌØÎÅÛLL]ÆÊò–\‹pÎ- ¶¹qû ¢ncš…`ks ‹.lF:Ë6SÖÜ,ÁŠG1;} 6› glç`;kÛç. ')%ýW€PŒ®Ÿ2tÛ3Z*¹TÓ“ÄÒ&çÆ*\w8°Öæonn" ªI+Ý/pq.‹3sY¼¾ÀcÒ/b=®€däE^D±,;5¤7úÅÊ``È€í,Ê©®«î˜ˆ§&³xjFÄZ@ÿÂ2Ø=6 û<ð†O4>+À15ñ‰q\¾|33—159©I[OÀÑïÁÙîY¦’X;»°+…ÜvbZ†Qà$‰<ä‚¢ Fíø™É0&³©!ÄkºˆÕ°B5ï¸ÔŠXª¥sC^Á¥ÓˆDÕ¸ÅåÕ8çç0ëœÅìü——à^óÀ¿îÇVh Ñx ÉT \&\.!/@E(²Ò0>±¥ø@ ©Œ¢-•‘Ùi)“fÝVA„a÷3ÐÄ}PçÙDA¼Ý…áUº‚2V‘ˆ¢ Z¹Ô#Éd Ñh`ïæ03{Ó3Ì\™Áüâ–WWá[_G0Äv<†t6£f2¼Ï Ü:´¦„!¦ÈØrNàæ?àwþÇïâãðG¸sÏ=øö?î׿üEìÞóœõþâö;‘ÌG"ž@ŠKC’%¼üƒ§qï—îÇ ¯O€çÓà2H¢ŽK#™J‚ `ŒÁíœÀ׿ô9üöoÿ~þ~¿ú‘àOÿüS؈qH%Sà2 "ø\ÉD™LV ‹“D¤S¤Rq¤RIHŠjQÌ <¸dãcgqë-ÃðØ D^@2‘@2™R³yÝX+Ä…i<óèwÑuçßá±§_Àð‘A<6ø,Ü‹—ñÐï`o÷—`›t‚Ë (9DÃA¼vò8~ç#¿ˆ»{¿ÍÀ=5€Þ‡ÆÃÂ>} />ÿ ºï¿ŸúÂñ8ÜóÓØ·ï1ì{ð>|ùþ¯cÑF*™WŽ¡÷«ÝØóÙÿƒÿúá_ÅÎ:1~ò%|é+{ñµžátû!¤ê~¢°Æq†&ƒY’á]ó" ›g•OÉxn”Óç3øÊ+iÜõ| _=ÎáÞ—8|óÕ¾ó{%ðĹ,ιœ^Ìc|­€PFFeÅ ýΙÈCAbݰÊÌ;:wß’~d‰cÔÄ>y¡€t:ƒD* 1_@Ò“Å_pblÿ\'‚ý‡EŒ~cãÿ¸ˆ Ìc¼wç¾æ„ãñ5xÏEàziKÛX|É•Wðœ Ásr þ³aHiÖ¸Þa«Yb›±´šs' ­ˆÌ?$ ©T ÐV×üáÇ? ›}™\¡tÎË“è¸ù×ðð“G|ø¿ü$~æÚÐóÍ}øôŸ}¿÷{¿öÿùQüÞÇþþæî¼1<€÷½ï}ø»=wãg~âŸá+=Š»¿€[þàcøƒý>>ÝñqüÛŸþÏ8<Œ_úñ ãöÏ¢ãO>†ïy‘XR—‹†é2e*-§ÍÏçóðz}Õ¥*t­|Q„ ÇzÃÓYz3ƒžSö½šÅÁsY|ã¥Iâ/Ÿ‰á–ƒqÜõbg×Dd  s*j5ÆÒæ6 ˜ñ‹ð„E¤Rn‡5:+fš5˜€ªÏ•ÉÀ¶ŸÃâóëX9Dx&…Åc›p<åÁ•ø°8¼‰…#>\øÆ.îwaå…MœÿƬ{®`îÅ ¸Nlàìý3xõs—°xd2¯4»×Œ»cSî¤;$î$ÞôzÅ2¢\·4™L"Àµ¼ÇÌe\Å…±QŒÛ'pÅyK«ËØÜ ™J]Ö¯…%u'Éq€ÚåHšù ÐàxIRŒaK±Êh¢,†Aïlah’ÂüØñ—àœŸÃÒÊ2|ë~„"a$¹r‚ &6iÖ:·AØLL¤r¯÷¥¿FZøš®yºåE)¸¯+ %l:Îá'ß÷/ðÅûûðôžÅôÌ.œy ·ç³ø‹ÎÏà•§Ç/ßt3ž|øüü/·#Î@äsÈåûÞ>üsÿ?òÏm7²XÀùÅÏþâ—Ψñqºº³—'ðGí¿†o>>ø_ýyxöu¤3›øäïý>ò_ÿ>ýWwà¯>óüï¿üŽþàQüì/ý2À€»nû|áK_Â'ÿ䣸ÜßíÅèŒSvüƇ>„Ã/¿‰oüÕ_àçá—ð‘ß¾O>ÿ"q®JÀ1}Ŭ¶ÉdH&’æߊR’d @$ ¬Ddlg6“ ³Æ× xâÍ,¾øB½žÁå€ Q1xö•ôk)#*Çpô"/>ŸÄC§8¼6_€+¬ ¯Å_Ê¥Ø>EKÞ£ï4F·A0/åQœdV s„¨ˆ'ƒi(øTqWá+I§ðŸ Âg `å• Ì>µ†¹ïû¹œ„ÖtlOS®­Ä6›ÐÆÌ=M®ÛLìÒ5¢,#Ëçَ¿±×’ ÓšKðØØ&''±°°¿ßH$‚L6‹|¡Pÿ¹ÕŒ¶KàÕP§ÝI’+i+ý¥aI— “‚ ˆwZò½{‘ à³6(ŠêBú–Õ>lÖµµøâjfÐYË5L©ãJZg§º’¾µü(lv²9²,áÊÄø›]·£ã“·áå'ÁúÅßÄñc‡ñO?ð“xê¹£¸ãSÿ x÷víEçŸ}ŸøÔ_á~äC¸ïÀ.¼ü$þÓ/ý>¸t¶B„1\™¾ˆýæøúwŸÀð¡ŸÿÏøÁ2™mt~âÐÞþ1üýÞ¯àëßø<øí'qâp?~ògð™?ý-|þÞ¯ào?óçødÇ'qß½=xø«÷âßü»ŸÆw¾Š/wÝ…ýÅoûwøè-Ù…e½(×6lÆ%°b^8F Çqj“Õ­O’!K Ь@ar•hg`PdõÿL+e‘/ÑŒ OT?® “×€£ØÔgNPðòå¾ðb{^Lá;g²øæ©ŽLeñærk[¢i¹‚¬f ­¬úÓ¬¨Sij-™õéFÕ9ŠÄç%0™A¤¬ 1'#Î!îN"ÍëNb"ÍÅž5ª¯×tQxÔ‰¹Û‰l”Mõ*;E ¸ÞmžD$)l¶°êöb~~“SŒOØ1>q —/_†Ë¥º¦&“Ið¼`þám'Ç«ˆÍÄ‹‘+)Y ›}¿6c'‹!AÄ»3ÆPØÎ7f‰lÙDˆîx¬b®¯Õ§ŽªóÀ³-㪀µXyI1)`þf*·YU2N£°¨Ð×°z0¥ø¹äJêZ^nøU•)2Â®ËøÝÿö»¸4·Q3]¹§Ñ×׃{¿ú5¼9r ·~êssÛøúïÄÍííøý߆WÎ\À ?xßýΣxé” ÇŸ~~Ç]8õꋸíÓw#›S¯‹ÂÊå-V—æñ÷Ÿû ž¶îøÔÿÂðk“à…οq_¹çó¸ùæßǧÿúoñ²mös/áOoýsÀ÷~ßz|ãgOãÀ_Å-ôǸõÏ>…O|ú/ñÊ…ËøÇ¯uáoýSüþÿž}ñDã©r¤þZ¶jÑaÀúú:"‘ø_ЬŠÃâÿK1`&”2NjûU +*¬ÒmÒ¤«æE΀€c³<ž¾$àÀé º_äð…á$þþù¾÷fW6D$yõ\Y‚ äKrý¥ÜŸyžÁ”asIˆe•Šþ¢SÅfDÑ5UwœJñcƒ,ÊóŠIûÖŠk+Ö¦Tt»RÊu++Ɔª€IÊf½šMÞÒj&PVÃV¹Ž.©•îãZYI–µR3‚€l&‹íí866ƒXYõ`vv—¦¸ti ÓŽ,,¸àöx …J¥Ï 8êy<˜ºù6ëÎÛLÛÖ³^§v¤émcجlE(‚,†Aïa˜Ç…Ñ‹H$M›ø3Š6VJ\Y™ £ì†g6Hb ðÇ%ì:’Á‡z£xd4ƒ0§˜€ÉÚ`9/C‰ó`™*þ4°š eë3s7Õ)c’ÎvÃÌ­¬Y W–¿$ òY8¯Ì!•̓) 3ðÙ467×áóû‘ŠÅ°¸ä†ÌÖ=¸ìp`vÞ…mŽC4ÅV0„xŠC2Ƽk±ø6–—=PÙ`4>—ƒÇ½Œð¶zÍV\KØN¤¡H .ßÚ*f.Ï`qqñTéd‹‹.0(X÷¹Ø #›áØôavvNç\+ËH¤2ØôzpÅ9 çü¶ãI$©ZVÆ6âñx‹ÅÔŒ¤&Ë3Y³JFdIVÅ’lD‘E)¹W%Ñ{wÊ )^A“áŽ1L¸ó™ËáÔ|¿–ÆÓã–¢ ²µ³(Š‚L&¿ß¯ÆE²j³a*'Á¹‘ÇÓã|çÍ4Fœ¤xµsdÅØë²* ‹¦‰JóR"€¡:IéßúíéS·?¾4²8¶jÍ2@šZ›-:qP­$ß¹J3£$Ë( àyéL©”V“5ÅF ïº+îUÌ»qÅ9‹Ù9§š1Õ»†`h ñd¼ @’dó~Z«‰Y|tû­Ö=ËåŒÂ! C†A$ õS>_À¥KSc—tŠ‹Ë+Ȉ yIAFPà‰J˜ßâd¤ó o, xÚžÃü– ±FüŸÂw¬€}7‰ù\]'Rð%d-ˆ!“WÎ’È€­,0|)àu?ØÓóÀùu`!¼îŽ.qA7ÂFK¥\rQ4Za´Á³(yUp,.¯4% ¢¹XHž™ Ô²Y‡é *è,?0MžÂ´ÿJ…Ñu‚ÂX£ÐXœ¾*V®"k'3¬£_O·?E)šštƒVf^„Û¤­˜Â°¼¼ŒT*¥fª­ãÚkè¿ + Æ*á(+e¨“ŠN,ꎑiFIx ˆ¥l$%„9 £î<&}2¶sL+ç¡ CA°½½T*erÍb"¬³ö½žÂÁÑ ¾mÍáøŒ€KÞ®là‹Êˆ¦dij2R‚R _„Ì!Ï *®OQ­™‰?ïçJ³š¶ +[%+F¨:ã=SÝd‹YVµõJ׺‘ûh½8ߊ¾`pcSê ´רl—fm³±‰¬¾…Q”$är9¤8ÑØ6¶B[ð¯¯cÍçƒÇ»÷ÚÜÞ5¬ùÖ°æóÂëóÁï÷c3°‰H4Šd*…œÀC”$(¨ïúΫŽï­<'ÅüÜsÙ¹’¾×…a3Öüf¼jÜc4p#‚x‡ CQáœ[([ÆÃtžáõå<œÉàà…¦ÖEœsçqï±þÏ`C3IŸ~&†Šâéé‚j)jàE†dàò@€“ð¿søÑ»‚è|.‰•m [œŒ—çx<6šÅðlRBÎÿëeàËon~øö40^ó?˜¶óÚXš•„™^…2Iý¿˜•¡Ôß%AD äÁ­gÙÌ!³É#±–Ææ¥—š†ŒU æËZ‹U[~ŠÊe‘huKƒ{£û™Q2£0dŠÁ½±JÖyÁW C†ŠRL1Ô2Ô €f…a!_ÀÊÊ ²ÙìÎ’é:ë`QÅa¥ëi&³2†êÎI/ Ó»`ªH’I’L?ã2NϰïT‡Æ³ø‡—8|m„ÃÀ…,{3‹Áq/Nñ8v™ÇˆS€s]¯g@†; aiCA,ÃÀ‹ 23 Ã’¬[ÕÅôîÄÌ­“ºûA='ÅØGñCÖ¢0dï aXe1Ñ[¨B>.“A<G8Æææ&|~¼>/Ükx¼kðx½šhôÁç÷c}s[á-lǶ‘âRj™ Y6¶©‚Ö2É2€ÏQŒá{:ưֽت»xw! ܈w."xž/R[¼®£HÂpçÂP’$¬¬zpùÊLÕ̀™­>9˜Ä¿Å'OâØl‡.ñø#øé/„pÏÉ4B)†;ŽÄñ±GcxÁY¯yæ%†õ„„K¾FæD¼¾(b!$ãž‘ ~ìïøãC \ ˆxcYÀ'žŠá·¿EÏWÌII瀡¨C4k8³ø9C©kóh¨ó,fmkà×ðš«4°`e׬Ÿwpí<êì_³Õ"¬Bšõ±fYu^ç­ê*þ¼h]í×X»˜†+Oá5>Ÿhm¤Ù#Íx>ÔþU44œG[öÓ¿¦§y%óËæÔ¢eˆVogzY6¯†ùKñTƒG©Å 4,^‹z*Ç v±¨¡•]YÔþu44,¢-+*~þG»&ùc[Õ/}ªý¨ýkÝ÷"ýúŽUõ4±  ÿâÖ{Oy~”ÏÁßI`hÛþ‰‡™¾ÈžÜ#ÑðË ~ÿž(OíÎÑ´ØÜ£ògâœqK„Kß“°,ØãÑÙÔ®Ñ00m0MAØâ‰Ý2¾žâKFùÛÇâ¼Ð"óòa…ys€¯<Ÿds·É-9~ïŽ0_Ycÿ°mœ;À¿^¿÷2<Ð ˆ`Ǯ±P< p×êV82fpÜgstÔ¦ËoqÂkÐÒoðÆÞ¿X“æ¶­׿—ââ7RܵMá€×γ®Sn:&NcèFEÏÈS„¶£1ƒu‡sì6Q´Òc“ôTçGN#å¬ççzÌgf*>ëÉ]œN7ƒXû< ¶³&[ÎgÈ:Nñ|ÇvÈf³D"Ƽcô Ðv²#­­´´áÄÉ6zúzñŽûˆ$bÈrÓ0±, Û¶Éæd<##Ÿ_Ñ0<½€a=‹3ÝG3,„üúá|ºªÙšh3óXÚä-þÍLz9ØÜDSÓA<Ñ*À¨Féj=Hss3[»Hš•24o[+MMÍx^V.h`þŠ6Ô¨—~O ‚ 2¥ýž@xPéj\JCÃ<Ö¶y û6%ºZÒÔÔLkW`z`8%Þ@?ÍMMló”^ÓLâé÷V€¤¨×ƒ7ÿþ’ѬY†ß*†R~­ý^ZW.˜šxûÛÜsÓÖ_unþ6š›šh>X~ÞL¢QUÅÛÕJsS3]^·¨tµÒÔÔD›': t÷·¤©©©â|$»6¸×rCѤZ<¤—ƒ“^W%àË_3‰Ç@U£´57ÑÔ<ùºK~w­ýH’»½)žµ‹hh˜ÇÁ2ÀÒ¼´†y+HÖ8?MKçÑÐÐÀª.©,.Þà™þZOwý²³†jÔ‹7ª¢FÝkÛ{@;÷ïôg ©“ ¤Ž…ñyKIkÃdÛ*XvÐÑÖ•“ä¦Ë›½y©Yc 9jA˜dÕ¢ÉRÕ+Û4-qYÉ2F¨iI Ë+$‡jWåk¯ì’ÑVWfX>¯­:]+Mzý†E«H ÔæV©®V44а¼!²ùŸL†žÆ¥“÷YSJšdíâ©ÎĆ%óª[ÄÁ€éǼÉçmÑ¢ù•× }„ÔÅÒªíç-Ù€TµŸù+ÚjŸyË A¶m É ¤üÏÕ£À"×< óÝsiª$“å £ <«]îõœ·œ€Ôïþ\»Ns­§½~¦åçÝ4 N ÛVÌŸüžææ£JóòU/¦5*f¼GD´¹È—šÀÐ °bÁäm  ¹&0T"™—Þ6, 5iN3'TÖ.h ¡aYé>3ûYÐÐÀü*‰wåù˜ÏžƒÓÌÅ5çζñIsðwZ–Åö»\ƒƒ) ©PÖá¯_Lðï–Fù§wÆøçwG9ë•ëÛuš\»^â÷îŠð‡Fñ¥/·(ü‹›üÙ“i:&Wn’øÃû¢üÝSq^;’«øF9ì±ø³Çbü»û"|iEŠ?}"ÎïßáïžJð~§–ƒØ9ÿíUø÷/â¬ïG¤ôbÁmš&á`„ÞÞnGFéïïgll„p(„”‘0M-¡mO0øQ€ñ£Q,ÅFÏ:XJ ûÐü¡Ù–] ¸¯CŽöúŽ»¹fÅ·¹ö¹EÜöê­,ó^^xñY~7=s7?yR2…kz“åãÆÍï좳»‡®®n|ºªÐÙ~œ¶Î:N¶ÓÝÝKûñc ‰ÆèïëaÏž=t÷ô2êó1 06¸es†Û5VÈòö¡,¯7gyf{–5‡^ÝŸe[—Ék;³líÖ]ÀP€ªƒÔ+MKD»Yá8“aAÙßÈf³®$òÓ÷3I™ øM]ð¥±u2–®Sªƒ°œ|ÿ¢°ÓưJ9Œ „#ì¢KjÖ*Ĭ¼cªÇ.™ÝX¦aØ5œj– £ã&÷lL³ö„ÊG9^ß“á©2ï´(lk×ØÒ¦ñq‡ÎÆ“:{ú&¤J¹©n d] Y³>ÌÌU÷ÖÓ·4[føTMff·N—A8k&ûT$¬§*[î—¦Ä)üA=œlïàÐá#ì?x€#G[éèîddt„`8DV–1MkÕý6ö¬ ¥f\Àáó† ,Z²”¥Kݱdñ‚bÑÛ& „éaqCó–6æ‹z“ƒ+Ðаˆ.ÕdÃ"ìxóà2™/W´Iš–æ d—­ä Ë+Úf?‹Ê Eµ‹å,Qùq¶­pAGÒ}ýÆÅå‚o³ –4z§†+Vòæ@ )ž+uu© –ýœï+ždK¦=ù÷´hƒ{\¦§±n çfY£Û·hТµ¨ù^̆†%tI¡öç‹üÅ´%ÝÞ¼¥ Ì[ÞŠ&ÍKç¹ %Y ì—6Rk…l±p>Vt)?w+»¤ ÐT˜ó—5ZñzIm,hh`Áòf—=*‚“e¦‡åóg–&'[ËÆÖq­§¿~¥}× «Ï·ìÜޝö ×dq#æ´÷ˆš¿Gò×NH4.?%0,€Ý"4=e׺Öý»ˆVoKÊæË s¢ð^Öæ¯‡ËÐΣ9Z,ç¥ÇɪóXš¢^¼É¨ —6åŸ`ù¼Â|iýL¤³¿Àpï¾}¤2éÚ΄€iC[Àà®Oþõí1þ¿÷ÄXס•þ”ÃÒ$þÛ}aþwÇ8:aÐØ§òïï óG&Ø=lpï®,_|<Îÿº7ÆUïe92a¢; pxÔæïŸOñoo‹pæËvfùúò8ÿï_øã¢¼ÒmB[¾´þÛëðv?$´JæÄ.Åã ÊsönY^X»§Rœ®«`…”tš¢ÓAðöÁÇøåSßäÒG¿Ì½Ï_ÃËO-å•Û~ÉÝ??‡ûun¿û—d3 `3>Ô˃ØñÉö8Dgw?þ±qRéŸ|´•Í[¶rààšw7±§y-G;õúîãàÁ}´ke÷îxÆ“‚sWÅy¤1ÍÍëÒÜ·)ÃË;eVîy®)Ã/ßNsû{IÞܧðö9]ÔUÄ×õ33³)¶ãÐ×ׇ®éÓô¹ÇôûóŒ‹EQr2¶e{.E58ª6Y©r­å–Q áÌR‚8%°qŽ]d§“¥©³(ü«ŽIÕlÞm‘Y±WfÃñO|œá¶Ín_ŸáMj”x`C†¥[2<¶]båž,kÛvôêœÕÙÙ­òq§ÆI¿MLrÐí¼ñM¥¹-µ"2ÊW œê9áTtfxNmeëh­ìÞEi¶¨ÅÏôºõÊIg%IÛ"‹DÉf³†1ùóXœjû¢¨½2ÕŠrs&˲±t“L&C8atlœ¾AN´µs¤õ8-GŽrüÄIºûz÷»ŒªöùÈPÅ0ü\r ëùü®S^ýyÄUŠ»‹³xñ¢ó·¨Ä¾¹†$ Ì[²’¦¦F646±vù¢RakªD<ýmlÚÀŠ¥¥ÇÚV̯’J¬œW*Ü.›GCÃRBm^Zbœ¦•̹ ¨²øw™±yËÛêè1Læ·m=%`è>§²ˆö¬]T»o/ æ±dÙJšZûIªeÇÕ°¼‚åô¬]œW…ãè*™öÌo aÙÁ¢°qq¡WÓݶ¡a šÙ°¡‘¦F×øeþòV„ÚV![œÔYÖïV«ð/1º*«òý¡R›ûXyÿ_ôà²ýnfžžÇ†VLšò€iYs È4Nw­?{`X5Wò×ÏË hh˜Çò 4nØ@cS£ ç-g|Ú{d¨ ûMºRí©€’ àñôÓz°™µ+—1¿°˜2ÅýÛŸcMÑÊó0åœ0=,)ü,ò‹;‹j›ü”Ï—Zócmì«lȳãó/emãÁ’\µjþÎCÛ¶i=~”ñ åI•Û¦fB“Gã¿Þå_Üam‡BJuˆåk–ùóG#ü§Ûƒlê6i›0ù÷Ç9ci„õ=*[ût.?ÍïÝâ?ÞæïW$ùÑk .Yä•V…ËVKüÇ%AîÜše÷Ék‡Î-Åüç39§ŠÇó21âø±£de•‘„Ã+ûe^Ù—ãá¦,OïÍòfKŽ7)¼|@å¾2<½GfÕ‘,[;tTã{M˜žÑ™ÊOÓu1 sà%0s9^}ø~.8÷<-ú)×]#«Þy—c'OÒu⾉ b¡0©¤TÖCGÍ~9gÒõ.µ._å¦h`4%»Uã¼LkÆ2UáTˆÙ°©c™4u’‰J­þRÂiÁ¡1‹pÊæøˆÎ–.mÝͽ&ÛÚ ÖíÏòž,wlLséª —¾‘äžMoì‘yè£ wl–xb‡Ì²O²3ÁXVÉe§¼VféMò;*;Ï%c&'o‚T«ø5f]2Ð’Mn™d·Òdé”LêÿÓ,¬º†Ï;Â@o?c£c„B!RÉ$™´ë.ªªjé¼llgjðXáL[K]œZã ”ß7NÞÍ8ïØk†®£é:ªª’H¥˜†ðŒÒ“7À9zü'Nž »·‡á‘aÁ©LÚ5•ªG²xª±Þðõ9`8ûCQǼ®~Þ=†¦‡eó]ÙX£WÍ3+‹…çüùó™?ó,bÑ¢Ålè—ð6-¯(N-.ÃþU‹ªÀ p E²ëªØÀZOÀ-N7ִįª+5\Òè©t;_[¦æšg”ÉæòÛÎ[ÑvŠÀp… ÞÔjsœ) ]­,_¼ B’·¡_¢Õ¬ª(Æ ÇÓ*UœÉ€§kÅ|›ž¢dн>ó™?‹-bÙ†þIF'³†åï³t îbÁºÊÏA #ÉÝw-¸¶Ëf™4RÌ|­=À°ö¹)°‰Ås -fÑ¢¥´œæé8Ââ¼|ZÔœÕÇ`VHgç/ZTbÙ§†óæå |šK,ãts¢(]†7ê²yÙøì€á‚*C¨(+–VºÑ®lýÌÌv~ã¡ã8tuw104Xr?¬aXa 8â·øóGãüÓ%!ž9¨‘$ÕáÕà _{:Îï]ä‘=2¾¤à<çŸ_àñ=2ƒ1›íý¯Nó…Çbüñƒ1þô¡8ç¿• yHcíq•;¶fØÒmàM:øÓ6-^‹]:ýq]u ©"¢*¨&Âv¦Îòª®ú µ¬%Pu&€Ø#ÛÍ€DVж šôÔ-±Ùz`7O}ø¯î|€‡Ÿ»«q1×;Ÿ;Ïý.þ»¿àêË ;;ßkg›†;ò`achš¦!IY ]'›•Ñ G8Ø–‰®ëºI"™Â±mÒ: G,Ã}a‹˜Í`Ìb0j2u#A¢Cq‹ñ”kV2ù߬Ý«F:+1:6V»¿°¬°úFøÕÙgñµ¿þ&=ü/¿öo¿»†·×¼É·ÝÄš÷>äãõ²uG –iWìÇ6 4%GNUÂ*¹¶ÉTïÃ] p„˜ºÇ®"‚šÑ “A¤˜¹Øupc3òÿ¶p³«£6ÊÀbE.cX³›¬FÞTÌ RŠ % b)ðFmÚ¼ëÛd^ÙŸå /íαú`ŽÍ2lÏpÿ–—¼•àÕCª{¨ùìFEQÒ䬜Ïs•çn º¼ͽ]¦¹1‰•/“ÒV÷6ö4óª,O“É.‹NÍ&I¤?í\¯4í™yº–clÔCOW7}}} 2<<Œgx˜‘‘Á ¡PˆX,F:™"q c\‡Q Ý0pÊŠ™Ì°‹|MYüeÙ!׊¢>NÛ±1tUÓÈærd¤ éL†X"N dÜ?Žgl„þÁºzzèèꤧ¯‘ÑQÁ ñxœ\.‡ašŸY/匽osÀð·Vó&—9Ì÷™ž ®„®ÜQPêgÃÚ tE},kh añ*…Ñ»¡’1lX‚§¬p\^ÁEY>¯y‹»®…­ÉiŽsAÀºÏiXÚ\¶M`J¹ÝdÆ0Ï–¬h+IT¥›XbwjÃÂùXYÖóå2£“¥¤f´U+ 1 &Ñþ&W†º¼µÆ¹´.ŸGCÃ2bf`ØV†vhIsûÖÚ¸–¦®h±(_Ù¥ž0¬ º ,òʲ9ѶrÁd)©éeíòEèìçãô×zúë÷ÙC÷ý-¢¿Üˆ¦­‘µM]¨ÓÞ#y‰å²2×Uoã”RRw^, Ù+U0¤ó§†óhUžUyÉt[ræ9!fþ-v]GûMq À°üZ%i^»Šæ<‹,%=nñ¼$«æàï40ò ÓÑÕíØS~q;:C‚/.óO9Á-ÉøR9Ýaí •s^JòŸo sGS†´g¿šâ Ë"¼Ø¢‘’Ͷ>gä¸e«Ì9Þ:¦HÛŒÅmNøu|)ANË‚œU Ù¢,Þ™¹¸«:nÕôN˜ìêÑÙ?l’–þ”ÅX¢}\Ç—09áÓ9äÑiÖØÝ­ñúA•íÊôæ3Uÿ6ÚÅê]kØÒü*¯¾þ8wÝq-7.ü7~ÿkœýWÂÅ矇e5\>Å” %ÿm[±MáaÓr+`Ëqߣjº}bšéF‹(¦@3]i f TK ÛUúÀz €™ áiÎO$Åï÷cÛö4ý‚Ñî“\ò÷_ã/ÿò+,½ÿaÞyÿC?ÚÊÊ—žåÂóÏâɧŸgÍ+/³ö£=˜†JÀç#‰’•²D}#tÞÇž½û±Ë˜ªŠâ¸šcEDYñ] {ŸäüêÔì§©8.f׳#ÊLoì«XˆÂvf @±KÒi+ŸI蔢,„Ía[ šÊ Æâ:ý!“M«Çà°G§y@ck‡Êê–˶eØÐ¥¹Ï·]¦]’d¡‰D³Pä—¡1GÀXÌà…Õ‡>éÖYdM䌲áªyí0Ý}]Žøª#•9ŒåÀ°V¯éL½©Ó1•Î,zÓ4ˆ„Cø¼>ÆFF »«‹îîn<##øÆ}ô÷÷Ó?ÐÏèè^¯T*C&" 'Pá8hªŒaZn¸#ÐMÍp0mÇ=w“³7'Ÿ¨-±35QWþfÙ6Ц‘ÍfI$S„#üx}^F¼£ŒŒ2ê+ ŸŸÏ‡b‚p$B*&§¸€±üûé·Í÷æ´ ¸¯W&Z/€ÿ\¥¤“íîû×.v‹ÆU]¥â¼a]^¢¶"«Ø&\`¸h%ž¤DÔsÐí·Ëƒ†BÁ<é¼ÉÍ+&³ž KòìÂ’ÉYv=† ,[ÛŒW2ó²¾–5¶MzÙ°,ß³Õ²olÁò&wÛ¼\qƒGÅ 4æû¤6à xhÌïÇewÊ#*Ê.œÅôDñ¶æ³ k˜Ï˜y¼`y#ÞdoÛW¸ª«È–Î[²O2IWS¾ÇnIæ¤X逡 + –®m%ZvžÝC·(_°l]õ3†B$Y1ßí\{°ƒk—{+¤Àª—•K—ÑäQOy>Nw­§¿~Ÿ-0,\Ëy‹WÒHâ)\÷E0§½G­ù÷°¼©¿ì±ÚÀ°+°û£HeïwÁŠÖÎW  Kè7g˜y ·2or3¯´ž20t}æ-å 'J2ÐÅò.0”ªæ *M˳|«çw  !†Cj9\*Þ«Wáóu…/-øáiþè–K¶fð&m KÐê5xºYæª5iÖžT°ØÜ¥óöq•îjºœm ²:ø26¡ŒCV/?Fg àPÖáTÕ78=0t¿C&ïSYy@åÙ9Ö¶*¼Ú’cMKŽgvK¼{Dá‘­K7fxt›ÄsMžÙ)ñÎ!™ÁY÷w~̪¦lÙð&+¹…{¯¿ŒÿüíÿùüÏßÿOœwö÷0-m€¼r`1 0Uu`…Ò¯|{1©0Ÿ30ôù}D£ÑJ6º0<º½‘³¾ü×|ù+ÇU×ßÄ[k׳s×N^~~9_|.-{˜'—=ʪ6sdÿ.–ßϾð*»÷ìçà¶-¼¼ì>î}à1r–` ˆ¦i躆cÛ¥>8Ë"—•÷Ž1âñÉdÒX–S:åÀPL «çg §)Òª‹;èU2†EѲ0-cÛ®1ŽCþ1DZ±ŠàÁ޶ã.HºMFuˆe¼ ›¡¨E0ã‚'¿ˆ é©T 9›uMu*î3ÂæÞwnÍðü®,/ï•y³%ÇÖ.…}:=Þ¸I0ã`Ó²&P ÷ó À‹™Š“h *o‚òç͆Õþ5C!º®£©²$ …ñàó“N§I&SŒŒŒ004ÀÀÐ ãþét–h$ŠÇ3ŒgdŒx\"'gñŽáŸÇPs*ÁxŽ>¿ÌXTARMrºbæ{£m0,§â#d20œ"çQ[æ[‡ÜSnȹ©tšX7B¼WVÈ$ç-ZN¿Tb‡§ºG„H²aiINÕëwjý^IIÝ=Röf~ )™D’Ô_ëœpÙØeñ0Ÿ~˜ùûBúõÎÁßD` h*;víœ «¾¼I›Þ°I,†m—ÉU¦9V¥ÎkŠŠÍ0 ’µOØŒFmÆ“¶Ë.Š!È*EͲ‹õ©eÙ¨ªŠ,ËèºQÙ ”ÿwrÔ`õÁ«È¼Òœáé&™c^“Æ# —½çÚõVRØÒ¥qÜk2³‰K)ç088XøAL› ¤ôãÏ °ïèfÞ~íqn¹v1]²ˆ .ú1>x?% !*˜(§è9™q*Ú«ÜkjU0+ްkö¹=Hy6Ì®ÜM'Í¥Ö°jß}ýȲ<Ù8£ª¨x÷Ñ{ùÚ¿Ë÷âóG‘²9>Þú>×_»ˆ«®ùÜ~?½ø žw^x>ôËŸ™·Þ^ÃKË—sÝO/ãÌïÌ碟_Å‹«Þa×®¸çÞÛ¸öæ›XÿÑ|ab!?¯_Ãæ¿ùÊWY°àÇ\{ó´õ¢k:†¡cZVmS™ê¸Šüb„`Š>0q ìëlVíkUè¶[`;…¼E7FÃ1mlÇÁ0t7VÃq°LÛ*¾BlGÑ(¦¸[«Ò ¦Yö~q‹Õ‡³<¿7ÇÓûd^<¢ðúQ—vå¸gcš%›Ò,Ù$³öPŽ'¶eX¶=Í3»³¬:¤°îXŽ{4Rš¶(.pÁä6§Ô;(ËèºË’ §Ã7`¯wqd¦ç0¹»6p)4Ö˜…ÏÓ0QTUWÑ4›T*ÅÐÐýà {†£ ŽKìn±j÷¯îæõ¦6·8ÒåPG--öwÇèI2:‘%œÐIfM$E'«X–Ûkìœ\«U…êZ‘3õ¨Í< G`èétšp$˜wŒÞþ>Nœl£õØQNœl£»·Ïè(þ‰ â‰Y)ëöaê:¦iÁ¢˜ë1œYJz*¹ 3¹—~N=†ÿ¨Ãô°|QžE)dÖÍߘk·$ÏŠ­Xµ–y6lZÖwnœ6Cõ4²hþ¼)#^~ׯç !رc†nÔ½*.j° Å¢²Jžä”n¢Ê¸£ÀF¢&ÛNª¼°Kæ…f™wŽæxûˆÊ‡m9>ìÈñ^K–##&•¢)ƒªª„Ãa<™L¦f/“¦;´©¬?‘eS‡†?åÈHÈæÕ½2;zU¢²ãš²ˆÊUî¡‘JÆ N_ùɸW”|7ÊLOÊ¿Lk7žåsö**7QÅ8–©pJ6¥Ø;çLÓs5ËÂwƹŠbס§¯Ë´¦JÀ¡6²lÙ zúGÑ47§rû¦õ\wÕϹå®ûxxÉ \tÉUüêò_ð³ñaã't02Ðë/ã¾ôþå¿ùw|õ¬Ë8>èá­g—ñßÿËðÍï^Àº;ñŒ÷ðÖ‹2ï Ê/~y ;wïeßá£Ä’~Ï0'¡¿€lN-ößš¦Y–ñ)Èe’Ä#A¡±xYV+%Ø¢N`8Coìl²ú¦#‚Òõ¶{tÇËemËv™EËemËD·mK[T:VÇ}”Ü)Ùa,iãO9dALÕØÐ®ÒØã¹YžÚžãê÷Rür}š›×g¸îí4—½–æºõ}Ñà´-›\NC–³èzULBì© † ÚFM¼qYõ™œœŠ”´^§ÍzYáZ®·bêÛ²Ñ4l6‹¢hH9›PLåh‚­GìÝ7Á;»}¼½ÃÇ;;}¬ÚãcÍn?î彦Öîö±¥%ÈÁžížÃã9F‘ŒMZ¶\ÚªÏá9G:.Iˆgê9;U÷ÑÓ×YÉKÄñùÇâd{;GåÈ‘#;vŒîînFGG‰D"ÈrÓ4‹¦MÅØ"GÌÃz"Zfú̪c‘ë·\¬X¼€E‹—Ó–4ç öß°a&»Xµl æÏgÁ¢%¬jêúœ»¹ñ©¡·‰Eó°dEóÜ‚Ìç ÐÜÜL*•šÚ]¸lC•\s¦ð±¼sž([’® ËÙ®.™{·¦¸îÃ4~$sϦ ·®ÏðÓu¿z'Á»Ç ªƒ“—Ž9¶ãµS2—v» À:d0ÍB=$Š=–pƒÅû†êïAšé‹¶¬°§P¶^ÅÈTäÈ/UtÊ,:槨°ÿ/læLfPDýÀ¥.WƪÇUU¥o ¿”YÞ›WÅ®8B éV‘`v“¾N>þx ïØÅ¦·^ãñ—Þ¤åð>Î9ëøÆßÿ—\y=?þ47þâ*þfÞ—8ó¬ï1ﯿ‡×æŽk~ÂY?úǺÈ)Žã0Ü{œOÜÍŸÿÙÿæ{g~îx€áñ0­{¶rë5—qîÎæ—×,aÏ¡c$3iúû;Ø´e=û!£¸«ûwleÉõ‹¹ô’‹¹öšëyò©;ÞŽaÖò˜Åï§bQn¼ãTõéN*òœ2)sž1´ó–+Eµ ,Zùì;Û²]¹ªŽmåŸS)¯èÑD [.ˆ ¥lNøT^:(óÄ…um*›NäxaW–§÷犗¥4ÍÄç›`bÂO&“ÂqìŠÇužÝ–aÙæ4[;uÆN^IPºO, Þ¾º­—É…™U .ÇÓê{ILµmÏÖr]†#TÝd<‘£u0Áñ¡íc)š:bLs´3Êæ½^žÛ<̳£¬Ûïç£#ã|ÒâçÃý^^ß1ʶcü)Ý®¬¶%˜˜˜ ³³“H$âöþ™VíÏSƒŸâŸ#ÙœL$edl”Îî.ZåàáCj9̉“'èéëeÌç%–ˆ—¢A~—¥¤õ²åõ2çœcHCÃܘŸz̦¹1 ÍÀ ¥õÁ@m÷È2 ‘”,r†ÃXÌÄŸ±È®3¦bB\´{Mvöœ7ilÏñâþÇý6)­J¢VqhO´Žh|Ø¡òÁI…w[d^? ÓîµYsD¦eÌF·Dí¼¯:Wì än<ÅL¹À, Ó0KÀ°Ț˻GZUQ3…žÛ–…m™Åc+üײm¬ü>MÛÆ(î¯Ü¹Whçeƒù×µó³-Ç,^ÏŸ˪]w%fŽËðØ$[`Yn¡ˆ™_Žûú¥}—…·[6¶í²‰DŠÑÑÑR_P]…bíejM3ˆ¥$,Ó ùãõÜróm<¿j-»š÷°æµ×yì‘'8tx/žùyy5·^×Þô‰Tº¸ËC{>æú«.áOç}…‡–=ÉŠ×ße`¸ƒKÎ?“‹/»Ž›nº‰ýèB®½a ¯¿ú WýüBþËù#n¼÷q|á$B8¿+2«ª çtLËÁ.`LË’lŒBÞa~{EVÉJº®ÕĶGM.}-Ám[$6×ÙrBgó }}&G‡,ZGtÚ<úüI Û™‚”›%;[WDB-XçgÔ¤…“™z»pªfæ³'óÒ|Çu.§t'²ôNHŒEƆÇ%öõFybSïìg8’Ï7-[ðslA$¡··—±±1FFF%–Üi óYW°rl5¥+ËÌë{ RU›IÎÀ0墢˜„„íªR»¶AŽpR©,¡P„‘±Qº:ûh9rœ½[8Øz„ööN††G˜˜ÉdÜ FQ'h­ ¶RÒ™.fbÐgXTœ†scιñ[ ;º:ô Oê3,'…Òþ@¯ÎÚƒYÛ!óòÕ‡UÞ<(±r¯ÄóMn/Ã-dxèã4ç¾’âÂ×Ó¬=aáMMWt¹{×MH(‚°,ˆÉN9ij.ð1-*3ø¦ù‚.€?Û¬|†abæ¤"¶ÖmÙ ×U$_Ïr“U ë–U*¶«‹oÓ²1- ÛrŠ Î6)Œ¶7Lw[Û²°,#üŒ2Ðé›À²l ÛB·, ËBϯnÛÇá›é޲÷dÙåû·];ý2€kZÁ@`r¯ØŒÅ1“R (öœ ,ÓDU4tÃÄ2MR‰áp5§°¿¹‰5ë7Ѹell"—Óò=¬:Û7¯ãêËrÁÏçóâtcmüíÿ˜[x™£GZxþÉùáùçrÉO/ç‚ó.äòëîd÷þã(†§ ÛýƒCuI/kÃ|¡<pX 2ÙÊÇ\`hX–m»Žƒ–‰nc™yðg¹@Ò,Hø Ó5±ò¦ ¶%°Í’ƒ¥cÚX†+£ÕmeÚ8†ûº–Ux½üûËïË1íüólÓqAgþñ‘‘‰ÄÌŽŽ.µbR.`±€¬)·u¥vž¡Ð5•T:…¢¨È9µ¸jnš&=]m|øá»¬þ`cñå2ñ·ÿêç|ë»?àªÅWò³Ÿ]ÆÏñ ®¹ñ&^ô36moE×t%'qå¥çñµùßãçW]Ãå—^Âü¿ÿ&·Üû8-;>æÇgžEó‰A¶¿õ*w=°œmÛ¶ñѦyö©'xá¥Whmë ™```躉aªÅ4—J2ÚÝÉîí±{÷Nzúz+1 ßÅ+*™Á²†_!¨ìI¥ž\Ê2A©Î¥~ÀRoaYpBuå©fqnÛùydÛŽcº÷¾“×D;e}µÓì?ìÖø¸G£©_cS§Âª–Ïí¹a]ŠG?ÎðÈV™ëÖ%¹{K†›ßÏpë¦ ÷~$±tsŠ;6%yõHŽ`¶LVë Ür±¨.p6Óy™ \Ì6X\Ô^hv•éMuÿ±#°ì|ou –ÚÔ,ioo§££ƒööv&&&³rIŽ£Äz‘|;‘ýMd<ï“ØD6xKK#K2'º'Ø~\·šûﻟ;n¿ƒ¥Kïç‰'_¦ñ“=ìØü|ÿû\|Ù•œ}æøÉ¯nçù^féí·0ÿ[Ï·¾ón¿ÿ!޵æüïýgžs—^r)÷<úþ šª°Ó{ÜpÑùüïÿõ—¼ðÒ‹\õ³ó'õUv9ÎÎÖ³bÅ Þýp#ã0²QrYz;öŒaåûöÓªx/–iˆG˜ðûÑM»RZ÷¹Ã ±ìzîÅBÏcA.^ÿŒ–,ÇÂr°"?ßÜE¤ÒönkféóϱÁ°@·º-HæüI›˜ ±pl—a¶, I’PÓ4§Í³ü\€¡3 ž©6a€X‹žüe ÛYy){-Õ15ô\#DMŽad#Xz%' Å8Øåã’9‡®ÑÇ»£|¸ËËêfëöóîN/ïìòr¸+„w<ˆ¦Å—PrÝ>‹v¯ÉpØÂŸtHk.[,« [N•: ?Ÿ*²8˿êoü:ÁbCÃÚ:ÚÉfåÓNç¨;›LJñéú*ç ü¹1 çÆÜø †¶m³kÏnr¹Ü´1å ´¢‚}±] X”‚‰¼´À8¹Ð X¬Muo•yiL‡#¦‘Ä1ûPß_~E`XGsþgc>S9iy¢®kLLøéî饻§Îî~F|yù…픵ÂëÛ¶ëi[¥‘ïS´,ŸÏKgg7éT¶ê¬RŸ ‘˜åïÉ,º•^K™Ç3i™éŒDßàÐŒ’;Çvèóòðûïóć›xvëvV|ô Ï7nã¡7V±xéÝ,¸ôBÖm\W܇¢æeÓ4ó Uî—Ž¨ÏìÙ!_B”ËV]™c<£«£‹½û÷±kßÚº‡HçLÆ»xà¶›¹xÑOY´øZyñMÞXõÎñ#ûyö©å¬|ãm&"iT9KÀ7J`ÂO$#§¨dÒIZìæÃ? ‘ÉUGŒÖ$õê‘OO}?ˆ)â1Ê:Å4òµ*s§ª÷W¸óZØ®ÜÑ,‹Òp ¥ìbŸ¢Èa—« Æ7;aË}ÎÅï”2NN ðÕ]ŒW;šŠÒçtAòó½ §<ä´xˆê…GTõö‰º„#\¥‡í.L8B`X:9E%•µˆ¦U [˨Äâ9ŽõÄiîŒÓÜcÃþ ÞÙåãPwˆñ‰ ª®wŸJ|rRcý1…ÚUvöê·è7˜°™HY¥Æô0ttËAÖ¦Sb7K=ÍNå}^·Æ·´Iww/ýƒ(åRÒÓ,ì½®ú™@c=ß§¿f`( tñÅ…›9£j|û–=¬k—NãbNã`c?íó ïá‹ 7sþ¾IDZnY#g\ÑXqþ¾xí.žü$XÌõëoÜÃï§«Æñö²Ÿ3î©|ÌLñüÝî>×y´9`87æÆo0Øw`?©TªÂ\ â Äv¿ð]·A‘79É÷·™…LA#Ù7Apì|ŽáTÌ^mA™äÌÕ·’É)jÔx®ã8•®¤ÓGŸ04ÌR¼D¹<!H$ã¬|ã .¼ôrξèrλø ®»ïä\Žd:M*%¡©9Y&‘H’J¥Ý~9K"™"‹“͹YdrV&™àå_æŠÅ·ÑÞ9LÓ‘Œ„Œ‘Îáh&NVÇŠç°2VFw~VÇŠÊX) ÃбÓ*fNÃRt„¤c*áp€ßèô3`ÇFGxø½u<¾z5+?æå]{xáãO¸áÁùæ÷çógÿû?³úí×lÛdl¸þþ!¢ñ8¹\®èxéšœ¸,µ(“+V_4§xgRU^%MsŠ "¶7KÁ):ŠÚBà÷OpìdOœ¤ß3Êž=;yñùg¸qÉÍÜýУ|Ü|„d,ÂM—žÇ¿ú×ÿ§^y¸¬ ¤C~^yà>Îúë¯ñ­ïžÃíwßË ¯¾ÅηrËñWùùêßÿ=ß=ëSñeæTHE…3ø«×’{*s‡²í*ÃÏ#®Âžüܒ˪…¢féíïæµ7Vñwß:ëïy‰CÇ;y}õ[\uÓÝÜ~ïs456ñæÊ7¹ê—7p˲eçaÞ~óu®¸þN\|Ï®ÚH0ᥗ^æÊknâ«ß»ˆ\| ';=€@3ìöa_·gYvS/Îk-8Wˆý«±Þ‡K!^:€}ÙZÌ;¶ãA<±ëƒ˜Nâ<±£y_ÓQð”S¡/LVTö õ³låKÜÿÀ¼ºéCÖ´åÕ]Í\ÿà=|oÁYœùýo²mûÇ€ ŒÐ²moâèñctvu˜‘“5’ñ(>¯d2I6›Á0M[‹êb AÍëhWõßUµ.Õ*€ÅTŠ¥2©4`ŒXF!™Nóþ[/ð×þ'œ÷ãŸq¼×ƒ™‡IúGYqïý,ÆË€3â`‹‡¦ý><ñ*À¨É´£i¿Ÿ€¬ð&Hša*x<)¤²m£ |eÏŸi¿]í>š[|tyåüßMºv⌅¬ëN ™µÞ›‰Ï¤¹eŒæãþ²ýÚD½ ’šI`ÀGÓþ1Ú<30£Zónæê5Ç8áfnÞª†«oÙÌ·t¡VLŒs`ÿ^:;:Æãñs;::бtww388ÈØØ¡PˆD"A.—s×l¾f“o7Óu˜){q†>?ÇÃd‹šlï280b!™•¤²i8cÛŽ«¼´#Çë{3¼Ù"±é˜ÁæV™;uº‚&¤Iç˜ÉÖ#cŠî~\e5»VphÙŠ¢³gï~$)[ósà´g gã>Zç<ùdžÉî.ÎX¸™‡Ž»`,ÚÞ>InZd³âcE†±âñn©ûg,Ü\Ɔi<¿p3g¼áŸy¿iÿ¤ý~û ê@ås^¨@¦Äó·L>žÕšûúWL~ì²÷ƒSž£À~„Lk4Þ½™3®8A²^[ ž¿ÖŒR]Àp]i)Ï>6²º]®ÜN³´ê¸¿øD?’0YwËfÎXx„hñýÇ8áf¾ý~xιqºCÇCWOw©ÏpŠâ¦È&ˆR¥™Vç²c¯ÂE°W‘»æT„{:E*¤Å4ŒBib†Â§΢Çð×5\GVƒ®¶£üðœ³bÕV~qõ \pïóÄR–Þ³Œoœw?[ò/¾ò/?÷¿üéϹã‰Un\Ï7Ϲ’Ÿy‘oÿøZîzü–.{”s.æDûŽX©,ö£ÛáÂwùÖCÛ±nlÄYyçðÖw^Ç^qþøeÌÞ æ%oÁÓ­X+áüh-ÎÙocݺó¼7ÚÚJV“§du ¦"ñD”÷>ÙÀ%‹Îæ?ÿ»ÿ—]öž÷MÞød3Ëß_̓o½Äk[?$‹»O·-š¢’Éd²YE!HÐÛÕÎÇogwó^öíÙËG[9ÑÖÁøøƒý:t€C‡3Ð7@4&ž5èò ŽxŽix"‚”ìš•”¦•(†È[Ñf’?–÷o:ª(tvv242QãÞªÜSVÔ…üüôüsÜqß#¬þðc‡ØÓ´• Î=›/ùK|看Y÷îV~±ð"\r=ñ7Ýr?¼à<~tñB®¼òçÜwϾò·ÅÙ .âœï|›¿ùÖ™¬^ÿ1þp|v,Âl )¦côÅ,G­…ªÙ0ru¹¥ÜEQŠÓ(05lœ¢k²˜|\õÔÒ5¶¯–j>ÛÁ;6Âñc­ ‰DÈår(Š‚$I®cf$‚ßïÇçóáñx¢¯¯ŽŽNž•Z³lëÔòšèQ‰¦ul{j€‰EÙ·ÿà”.Þ§]\E=ÌßlCñ#%½ì‰C,}Î7/kʃ=.1\½p3_|n0ÏüÙ\“3šÉº»Ë¶&M/»Ï¾[)϶2`øêµ›ùöšà û-¦mEPÙ¶qg,ÜC¿&ºO¸¥k¼§<]]Œf‚¥ 7óÅ7ü% ·p?mi!46ឃ«?ITHIkÃ]•@õÚ%—?/ÍÏ5rÆÂ=Å÷[îK[$’í'Ü^ļì7züg,l¤9>'%sãô†‚Á GC’¤iÙ±ZîkE9Q¹ Í©áCQ+Âîk»Wda.Yc»V¢Tt—ƒTY–AX´ÚËkkÞ# —t•Å: \Çvèš~õôó†–ƒ°L<}ÝÜvÝM|øQ3BÀc.ãÎgß •–éîhã‰åϲpÑU\wã<ñÔ[,ðAž}óCÚ÷|Ä/¯»›ÞÎvî¸ó>~¼è—\p鯸ñÖ‡€°±ìÖã\ñ.ö]MØ›Žã<¿çÜã#87¬GGš?zç§`ö„±†ØË÷â,ß½gýáíôï(öûMU\ضÉÐP÷Ü{%ñ~öOøò—ÿŠ«oú7Ü~%çýh>ßýÁ×¹÷¡;H$Ó“ªÃ’ëžÀ¶ r²D8aÌ;ÎЇ“';L&ñûÇiï8ÁáÃûinÞÍèØ(ƒ~‹7IÜò^š{¶dxvw†5‡e¶œTØÙ§1vHÊ‚hFM[h6µã1j¹JR%.Ü…¸…IRºÚ± IIT%‡aZ8ŽƒœIqôð^zåšvF û¹ø»ßà _þ¾þÇE—^ƲǞ`ùò‡ùÅå—ðòKOñÝo|?þ —ÿü'\qÍÍì:p”xZ*ÝGõÈÇêÍ/¬µ˜t*lÒ©öøqŠÇ>ƒD´œ9tl§"{´4–e«ÖUTO*†É@/ÇŽµ2ÐßÏÐЃƒƒ 3>>N8&‘HÉdH¥RD""‘Ñh”h4B0èÇçóâõzñx< ÐÓÓCgg'ÝÝÝtww¥©###øý~b±’$¡ëF}’Ä™fË,Ö‰Îôó¦ÜxØq–#È*{:U>ë†ÛxòýEf´¢ñZÌnØ?ȆOiÚÝηnæÛoøf‚› ? › w—$¬sÀpnÌÓ”1L§Ó<|ˆt:]ÿuE»ˆNOµÙL•ä´$Ë+ww&Ê® UԎΚ˜`°¯Eͱ{ËÛ,}øY¢Ã|ã«_àï¾{ë6}Ìx(Šc$"~>iÚ/ŸÙ &¿B_pÿÌâ+4E! “–$lKLFI&Ó˜ºŽ©ëH™4¡`P(L:%“L¤I¦$”\šh8†i˜¤“¢ááP„X,¦ê®õ¿ibG3˜Á,FJÅPUÌT3­bät¬XÃÔ02º?†Í¢[&–aa§ÌLMQI ôNv ­šC¶eâó{x󕇸ì¢ïòå/ÿ?<ï,î¹ÿVî¹ÿf~vÅXôó yáå§KùiÔ^™/üì8NÞ ×ÂÐ LÃÂ4LrrŽx,Æ„œ¡¡$)CτŭÒ,Ù˜æž-/íÉñúž,mNrë‡)žÞcS›Æ{‡s¬Ø-qØg¢Ûu0c•YôeJN ùª¨tëN>tÊ ^³€†B` S×Èdd4Ý 9ÖÍÏ:‹g__ÖwpøhCžaÚN´ðÆ›+ééíä–sî¾Ï÷Îù/½¶–@ Šc‰Ê˜‚™˜ÂÙš¯ˆ:@^=Æ-3G½/õ>^§4µba¬h¬Ê!-ߦ¼7»&{Xö7Y–éè8Iwg££#ŒŽŽ200@oo/tttÐßßÏÈÈ>ŸŸÏÇèè¡PUU1t…t:M:!™L“H$ˆÅbƒAÆÇÇcdd„¡¡¡â~{zzŠ`q`` ¸ïp8œïãͺ q6 c=,ÕŒ½œNÞDÊ.÷°-– !òÃNñë"£ âY0ìàX¦ «üi7eÓá3iÐÚä§<õe²#i_]Ý}•ŸK§#0¬W^=ÓÂÉéÖch&xèZ¤4N˜y® ÝläÛ×nãÛ×6òí[vqÙÝ{ØÐçç²…›9㉱²ž¼0ç× §ÝoÞ‰ÓÓÒÅÕ×–®[N˜šaW—ËOïvW%0 –³mSö5M5A_É,& ¯8†O³Qe IÖP«¤¹õÃuy†³é¹Æ|¡\b<ó2R÷ÜÞÎçš`™`Yf1¼¾›aº±–©aÛ%wXh†N4™`tttj°QÖ̧k9ü>Ǧqóf>Ú²‘ƒ÷°wÿ.Öo^Ǻ os¨õÀdÀ5“áG•6ÙqÜó£ë:99‡iZx“›º >ì0XsTfs‡ÊºcïÌrçÖ4K·fyb[†Û?Lrãº4[LR:•ã‘Å–)æºÜ)+œ$Ž“wܯ`ÚÝÞÛt,À–M›ð†‰§$rŠŠaää,ÁpUSްöí5¼úæ*:º†PU­äË*œSï/£N`8çN1éÍLûŸ TÎðŠYÑjp`‹ŠQÈo-‚FÛ®øoµ4µ|®d2z{{ ƒär94MC’$âñ8¡P¯×‹ßï' ¥¤ÏÁ`˜L&M,ahhÑQ@ˆp8L,#‰DˆÅbÄãqb±‘H¤¸Ÿ±±1†‡‡‹½ŒýýýÅQ`,GGG™˜˜ ’J¥Èf³¨ª†m;³“¦Öq½ÊÄ"“î?÷»Ä©t$Î÷ ;Âu%-Ü›n°;íM LËA1YÕA3,gú…„Ö£ÇÃÊ›Gö®¤¿%À°°„=.sxÅ1B`zûó=ƒe½|rŒ ýtÅU—Íz¹ †KRÒ‚äS.I3ŸÌ3ŒÓï×&Ú=È«Ÿ¸Ìž©)´6îÏïWËwÓdÓœ"Hj¢yB+õ5YÍYÃ<wƃH¦ª™¨šMrÀe:¯nL”õÖ–õÃró·GðæøL—1†åà[Ø´îî¡i@®`6/[ÖäÊmÍ9WÒ¹17Nk)©m;ì?°ŸX"Qƒá•r7§œ5íÊE¨Z®°tÿfYv¾¯LC' 3>tIHáÐÝyœ6²ïH;]Ý<ñà-ÌÿÆW¸úÖ{xë­—¹ýÎ;¸ëŽ_ñW_ø ~rùU\vÉB®¾özzøQî½ã6.¸ðR¤˜O0M1è2†CuÉ¥>/`X‡¦ca›¢˜QhÚ"2ŸÏ?ÌÝ›–…m;n¶ -\&-Ÿ7XìŸ*ÕÛ8y hÛ–á¡m9Eàg™Ët–i ;ÜcSUP$ÌøøÄŒÅ´pÈ3|ªªŒÅˆ„C$Q¢ñã^Æü"±5ƒ÷fëSÇqÙ€´î0š GAƒ¶€E˘ÉÇ}ëÚ5ÞlÕxõ Ìýe¸{«ÌÞQ‹¬Q9Ý'¹’Vƒºrʰ:?°ÖßËØÏŠÌ½vs˜L.hªJ(FÑlìIòU÷Û6ðŒâñŒ’Éä°l§,`Þ©ÉÆÎªwìT€WËRW |=¯]/3u*LhÝÌVÕpJ=’n£û_ÇrJ2T»$Eu§ø_EQÈY¹è®k[6¦a¢iÙlY–Q…T2E4#KÉd‘$‰`0HOO7]]=x<£ âõzqÙÇññq¢Ñ(ñxœp8L8& ‰FŠ²Ô‰‰‰"»X0¾éë룷··=cccŒ …ˆÅbùx ²,£ëú§êeé‹TADÕ"d™vþ5ݯ«/¢3íœsl‡…°çô†õHAëeêg¸¯>w`XÈÝ[¸™Ë6†Bv6î¢q E4,²Šm² £Ëx=¹;\ö˜ ÍÀ›k×ðøC·sþ9ßág¿ºMëWñãŸÇ}ßËu¿¼Š›n˜÷ß^ÅSß˙ߙÏW¿ö\{óýÄ3J¥Lï7æŸ%°M—á3-'Pï·±,3ÿÓt‹OÃÎç%æ‡Y`!3¿O»ø<Ó´0,öòûµ0m Ç.Ãh¹ÀÒÊï¿ÀfÊ9ŸœX´J²ëL6í4t,ëätÍrP Åè¶ƒé¸ Ž(1ÒŸ–‡®êÙΛUhHº ­ ª ”…±”CoØdÿˆÉža_ÊÆªGJZNkVCQ?0tJÏqªØø2+Þ !j/â”÷ä–±8¢¬)«¢éT€¡S'0tf ëe9NG`8ƒµXLWIK €°œ],°Ývþ^.ÊRí’¹ð™ïMÛ½omÓ4‘e™H$‚×ë#KGGG.2‰j8ú&Æ G„#ኾÅDB×=µÜgιqÚJIŽ;†wÜGNQjVÕ_4Y)IWûIvlobýÖ9t¬ IÖ°òaÒ–aÍÊÈŠF&+1îeß¡ÃìiÞCww?©DŠÍï¿ËC-ãö;îàñç^äýÍ[xãµ—¸ð¼³8ççpÃm÷òÒ‹Oqö·¿Æÿ÷Eκð~êY^}õn¿õznºýºNââÍ“/¾ÄKÏ<É·=Á@w?û¶mä{ßø[þÛý1K|¡ôVœ\Ië‘’~†ÀÐsÖ´?»ÌŸ•k®DÔ²t,ÛF·E^B*°,‘g Ñ-. l³ ­üpH#ÿ\3ôÌü6fu΢eaXf)kÑ.RËrÈæd†ÇFȤ3Uý¢¢Êz^SL¢±,áŒAB1ÉÅ$‘3ɪ6ºî`é¶é¸v9QíÌ¢ˆ)%NÙÏöÔ B€é¸=I’ÍAÖJra&£”j \a1™¸”ç‚:ÂÎ÷"–[ö:UNUÒ:§Jº]>ç+a 9ûPz1…œvºí¨sÿ3ý­^÷ÔSuBΤ£–p6òÙ)>ƒ ì¢c;yæÉÔÃXmS+³S8"/óT‰F£$“I’É$ñx¼èh:22BoooÑ„¦xÏèÇŠ>_‘]4òy·Fžµ”e™T*E4% ÙÅááaúûû+ú{{{`xx˜±±1ü~1‡QÎʨªŠ¦iE©féû,¿šS}/;SŸü¶pí†Eeïïd¦±¶<²üú˲LÓîfÔrGÒß)i=®½õHÇÅç g;¤´B2­M`*™¬”m„Yê1,>¦i$ÓJÍçͼ_÷¹ê$y¤ªÙS«”Vd󷪀-œGÉœªòH•£é0œsãô†:º:&IW~a8eßùŸM5Å=qÙ%ðþ'üé_ü%WÞp3í½‚ã!BÁ± Ÿû÷säx;­G³zåó\ú³ËYtÙåÜtÇR¶nÝÂg~› Î[À·þîoùæ7¿ËÂE—sÉ%ñ'öøÉO.äÜóÏã¹×WqÛ5¿àk_ù gžù=®¼öVV¬|'Ÿ~”œ!»öìgñ¢ÜzßC|°êe.¾ôº{™é纟]Ÿýï?åÑW6T5«ÌÀNpϯæåd¥`{»”«VÜÖ²MtË)À²>?Û²1-<ÚŽ…aºìƒn»Û–\íüï¶aA¥n98–é2’ùQ}–í‚EÇ´K Ô6±-Ëe/M‹l6ËÐв¦OaVT5:¤%@8K(¥Î(xR})O\e"®MèÄ é¤L&£Õlr&(š…ª9˜f¾Ö+zv=Ì’˜L_£¶"*¥LÍ”*œSË1¢SæÖ›vÕ½ˆÕfM“ ^·Ê©6¨©6õ-“x€¢¨66™­‰KQu[㟠@£–éÕ YˆœâëÔ OõøgctS#{±È,TùÏŒZŸ!†±È,ò«æƒi˜¨ªZd‰ã Æ|^ÆÆÆƒŒÑÓÓÃàÐ9U¾5ÁrÐuÓI§‹f7>Ÿ‘‘èë룧§‡îîn:;;éêꢧ§‡FGGI$®Áˬ¼(6µ;5îáJ§¬1ÑÅ’å,bÉÀFLÕæž?wáh”Ýû`™öÔoÿt«¨§·p¶™•Ÿ0¬m¬27~[Æ0œsã4f =##ôö÷Åjô RŒŽ@ÀHÏ ¸ó&ÎZð#îzøiÖ¯]Íu×ÝÆþGXõÌc<ý›ôÝËÍWþ’Ÿ_~=¿ºj1—œs&ç\r%·Ü|_þÊ<î`)ß™ÿ}º‡ÆiÝ·…›o¼š³Îÿ1?¾tÿýý/¿ö wÞtïmÞÁ+O?ÉÒÛnã¬ùßà»g_Äó¯¿Ãûï¾ÅþäOXxí]<ÿä2V¼º†®£¬{o ãc#Þýç|ï[üõWÿC¥¢…éÛ²+s §]Ù·Ê€™À6M,ËĶ-Ë•{VôË fÕYiµ¢* LAÉ8¦ö(g¦ÛßLûq‡UdmËÎ;—ÚØ–eáþlçY ËíqLIú†±McJFMЇ¨¬ŒæH'uâI_ÒÀ›²ðFdÆÃ2a…`X&IŒËD²:!YÇSðuBq“¸l‘Ñ,$ÅBÑl4ÝÆ¶ò³ŠŽ¤ü ;µ«ä˜…ûÆ.Ì•*FÚÁöbš"KÔšGÎ,Y+18«—©ª7[îÓ˜‚zòg’³Qç¾§Û³|Ÿ§Z@Ïôžf+Q“™æ gԪσ`,_Ì*æ0N!åul§ø¼\.G$!ŽÔŽj`æcŽÀ0Ìbc"‘ ã÷ûuû{zzèèèÀï÷£©ZÅw™cƒ«83 íRûBÅBLñ»r}§ZjY眵‡Ñ1/­G»½’§;0¬‡äSÌãÏÉ|æ×2´¯>wŒƒas®èü†:áá²k›¸yÍØ´rÖ9`87æÆi '‚Ú;;_ް+¥;@,0Ƈo®àkù'üÞ¿=ƒ¯Ïÿ6>û ZŽòÔ‹9ÿÒkð ðÐ5×pÉ~Ê]ÆÏ~ö Vo;IÇ‘=üéÿúxaåó|éÏþ·=ðwÝvgžu.—_{++ž†¯}éÿò­ï|›ùó¿COÿ(¯?~œw.×]{ï¬[?%ÓvôþPÛ±* wCM²uÃjnºù&^Yµ.Pž—"ÍÄ:30†f®,³ ËÆ±íâ ¼®+¦‚¢J¦‚näŠCÕ²ä”Ìé9r²ìþ7§Èdsrr%—&'Kî6Ù,jNB“3d3)ÂÑ#Þʘ¾ pä/Ó´I¤" 9k ¥âHN0UñOäõË úeüYF‘´B8¥â äÏá¨Ó&‘ŒA8‘#•ˆ&e’9‡¤*É&aÅ&­Ú(ºƒaº„¢¢h•@Í™¹§´b»©òú¦7NEŸ¡S´Ô¯)cƒÙgòÍX~§ÑSu0 Øb–€±ÉçL t6à¬^@+긳)Æë¸¢6ÛX±Tf~T->•÷?Θ_øYüh*•"—Ë•±›9ͦmT°£K%”)cà«Wh*ûÜKë1í÷ëipOŸõ.vLqŸÌøscιñ[ M¥õX+žÑ‘*½Ørû“lš¶¼ÏÂK/áò›ïeßžÝ\òƒ¯ò ¯fèð.þì¿ýO¾sÖ9üÍ_ÏãüŸÿ’uŸ°åƒ5|íë_åœ^À?û'ÿ„wæ‘;®ãìœÃ¢‹ðƒ³Àòß –Õ\'LÓÄqìb¿V¥2ÐÁÆ®ì/)ë!qk§(+,Èê‘ÑTÜ…#0LÇe M E‘áèÑ£œ_(G(mÍ™$³©TŽLFER,²¦CV· ÅtÐ-iç3YJCO:ŸŠßa`è|†Àß `(ê†3 Äd£«‚éM‘94ËÀ£“ïU, GäûÆ+ß³a ÃA1 S è “þ°‰/fÓ´é [¨º(CMÓŠÀÐ0Œï/Ó´è ­½mÎù1 çÆÜøÝ†c>/}ý}Äʳ ©ÕßWÎÜUO¢Vý/¦4ŠÉëBàÛ±ŠácÛ™t†h4N*•A’ddY!™Öè3yó€Â3»džÛ•aÍ¡/îÈð@c–'wʬl–yz»Ä]Ó<øQ–¸=c!åØýƒC3÷ Ígò«Þ`huohºN"•"•IŸz¡økb mª’ÁpxB&ÿã?ß}6ÂhÔÁ¶Á4,¡ã~¥7MY¨˜J¾çÔ+U7Âq#SLÛÆ6Á2l7<[Õs:YY#“щ¦u‚IxJ!•ÌH(xÒ*ž´N c• "iHT"Íâ g ¹½Šãñþ„ËF‘„B$­’ÊèÄ3:aÙb"©3Tðús ú²ôû$†Ç3„2±¬Š7¦0äW åkR*¡D–p4C8–%œ1©6AÉÀ›Ue Ò²ENqÐTC³± Óq°…ÀqÜ[CÔkRm2x›U0üLÎzH=Æ5‚úeŽõ‚§S‘¼NcÆ2£duæì”cgãHÊ,¯G€ºžžÀY÷ŸÖè!ލ)1-Žb®«V 0–úÊ+¿‹®¤[7A5lœ²÷a[ºn ªjÉ]uš¹f˜ô Ìù17æÆÜ˜¿;À0ÓÛß;)ËpÒŠy­ÕkÇ5°±,òР“œª hV1X l]7ejÅžA]W‘²Ò™ÑH„H$ÌÈÈ(’¦3:ØÃþýéhï «» ¯ÏÏDXeã¡?{3Ã=Û3,û(ÃÇs<º5Åõf¸usšû?Js×– ·lÈðhS–ñ´ps§(h † Ã3‹`˜—B¹=†YLSŸŠÓ\Jšv·ppÊØ]Iq¸íƒÿæZ/í2šéZŠj E ‡ÃߌòÔzmöÅÔXÁ-Ñ1–n»}«ŠIVÖHK I#–QˆæG$)Že D²xƒi¼¡þx–PZ%’RI§42iPBÅ“²KXD.詌5F ýþ,Ýãƒ~‰t&‡$åð¦zRÃÑc¡ Þ°Äx4ËD4K8*Nëø%‹Ñ¤NoBf,ª‰™Äâ&±¸J<.“Ê(ÄT‹”a#ç,r²ƒ¦;X¶ÀvJýµ¢ÐåPu;¸ž½N%(¢v„H›8éòUÑ– N9{¶îõô9Ö›ÿWö7G”÷yÖbÊš}“b7˜åÏuûŒ}ˆ3ÅŒœ óZc¿ÇñY;ØÎN+˜E«,{1? ΨE j=n¨Sœ£jÛò}èºNË‘cŒOøç€áܘscnÌß`˜Ê¤éíïÃëóVÖU6ßå¿;Žƒª$¤ÞX„ñ ÚZáØÑ6Ž´´²wÏ~:ÀÈx˜ ß(-GŽqüH+ûöîe``ˆxÆ`Ëq‰k6dyá`†'šU>î3x¿MaK·ÆŽ~Ã#:mã&=A‹@F ©Ž3=CàØýu0†ùÂ¥àHªëFjÓËïªz Ëe»§MaÕ×-ÁŽ®ÿäZ׬‹¢šÂ]ޤ¬L0"‹×>Y³unü´RBJß¶¶)Ð YÓɪ™¬J2“#šÈŽeÇeÂq™hB!‘TH¦düñý ‹„I"mIÛx6ƒ ‡¡¸ÉXBÇs£4â ‰xBb,™s{c¼a×E5P§ubILÚ"Ð ¥t|)_Ä`"è²ãA (C0ž#Ñ Ka¿O&S‰åL’ªE:§!É YÍ@¶Á[ØávíóYÐf×`ó jp3E¾ SÉÆÌ&ľ^ð6Ýóœ)ÎÙº‚Ö定wWʿߚc62ÊYíT¼GA]Ÿ³ŽÐ˜ ÓûiÌkf#žm¿eqÕà±Ü µ& ŸùȲÊþI¦SsÀpn̹17æÆï0TuþÁ<##3~Á iIæDß O}°•—6nã¹Í³bÓvVlÙÆ¯½Á׿÷u.þéùj=˜ïÕÐén?ÌÚ7qèÐZaÜ$òqâØa6oÚʶí;9xè»wîbwó^Ò%+áñŒ ‡™˜ðK$ÐLÁp NúM£6QÉ!,ÙH&h¶kFcå# KáÆöŒ U]®¤T2†… hEÉ"g3®¡C±0Ñ4EQeÓ0Ñ4\.G*•:íC‡rS·X%m¾þDß¿}œPÆ)>î`“H% Cd2Y*"Dê-©£ð  ¬£(vl°L]·Ðt›œb‘ͤe•¤¤M«L$uÆã9â± ÉDO\¡/a2”2Ê&±œM0¥ŽI#c!‰‘P†ñpŽñX®,cQ#šPɤL2)“˜bQlüÑþ€Ì˜_f`,Kÿ˜ÄH G$­IëxC*_oX! Y3&á˜L8’!ÏÎDTŸl2‘ÕIÊ:Šj£º)°mpì"&¬<§N…~W”±…5ûéN%COÔZh¨¼Õ­1Ë8I€ ªçUàP¦ip??§Ø~J :[Ye=ìæTùzõÃSaãë‰í¨7(þ™ÌãIêÅÅ¡B_zYcÁø¦8š.îIˆÅ‚TUŸ;Y?;9‹mfèYª«h­ñ 6–ccÚ¸½Œº®ê(ŠNFVIf¢HZ!–ÎM)LD³L„ÓŒSŒSŒ…2â*á´A4¥‘J«¤Ó®qÍ`Êa4fKéDR¾ê‚?¿Bï˜D7Ãh0K:'“r ¦u—ŒfñF²ùÜÆ,¡XŽPT!”Ñ ¤túR qo\!šÔˆ%U ™T2G:£VlÒªƒ”³ÑTÍt0Å4§¾<ÿ¥‚Õš¢x?Õk<›|ÀSÍœa;Q«/³Ö¯C—z~¯TÕ ?;7•L·Þ¾Qfwî?“ÞÐÙ˜ßÔ0½)Æ2YjQžšŒ¦a⟲ÿÀ¡úÔ sEÌܘscnÌßx`X¶ùÈè(CCh†>õ—v^q¥h:ã~^ÙºÇÞÿ€ç7n䵿½¬Úwˆû_~‘ó.]ÈÏn¼†í‡ö!)2B䬂ãØÈŠ‚iY¥¢Dä¿°‚Q€StD­]µU N#"ªŠ»®¾· )é +íåRRÛ²Ée3ŒÐÒÒ¾}û8pàôôôpøðaÚÛÛÙ¹s'»w念£ƒP(tZöÞ_R¶øà¸Äºm‚Ÿ¼Ç´ 'ÃF8®ý{$%ЏïÓõ#Õcò1°¨w»™zgÙeç`ÛqÍo4Usû3’N2#”$r„Y"I…ht?>ñ«wíæ½#GY×r”§7näÙ ²·ã$1)]Œ¯p¿@ݪ˚dúP‹­°ËÀ_©-õ ŠÉN™kªíJ"UlÈT÷ÃuIÕ ÀбWJš“ˆÇ£$â dYFÎÊHR–x°z*Å^ÝůÃÔ-µŽ-°mÃpPTEÕQ)§Ê*$Ó*ᤊ?©Œ)$â ‘„Êp ?e0’6f-"Y“`\%ɈHŒDdF"þH†‰¨ÄD,K8©O©D™ŒER2ˆåL‹ñ°Âø„Êè¸Ê€Wf`\b<š#’Q˜ˆkxB*#…ñ˜F(eJiDâ2±¸L4©U,¢Y IgBÖHå TÍB×,LÃÍ™³gŠë1ÍÉ>•>²S‹§Ì.dÕ"±è>‘äàŽƒƒ2º-jÊi “ä¤Ô €ê•{V\Õ½ÈQ¯Ä•:÷1›Å™zïéz$°3O½±’§_{Ž«®ÿ9?þé–?÷8Ýí¥^À‚Í~¹Ý~­ùòjÓ¹ˆÆQz Eõ¾*¼úËãôçfJ`XÓ€G`Znæâ¤¸ŠŠªBÈòé 9ÕæÝ#Y¾±<È_ˆÐ=¡—®W[–NgC¤Ó™Scpfv>[¶iªÇ¦b2ÉI=«ÕÇZÛD䧬“wÖ¶ƒe9è¦nØ(º‰¬éHŠNZÖHK*ÉtŽXB&Ïâ§f'\Æ1žTH¦rDÒ*C ƒþ¤I0i’Ik„RÃQ¡ˆÂpHe8¨à f ÅÜ8@B¥/¡1”Èe©±,ÁDŽHB!šPH¥MüIOJc$®1ÑE4‚Q…PT&“ §bŠM³œSé1u‚äS‘²V]«T*Í‘#LjDbsÀpn̹17æÆï0L¥ÝÈŠÁÁÚ_zeߢŽc‘J'Ùu`7—ÿj!øþ9ø+ÿ”û—ÝÂ5×/âÊ_ý„^yšöŽã Q Ì•ÖU…¸˜ Š:€a£8Muê8…Cg`˜—’Ú–®›hªŒ5 `˜L&+%»§Eƒ!lïùÑ«QÎ}9ʆrI‚+*a$% "Ëòd&ît†õ2&¢¬§7NÌpy¢ÑqÜo˲°LÃ4Ñt E5ÈJ™¬î2ŒTF%‘Q§¼)‘”N(©‘Iæ¦úS:ýIÑ”I eL¨„b‘DDf0,3—ñE$Æc„L$©Mê$’*RÊ$’VÈ& @a|"Ǩ?‹ÇŸe,(3ÏÉèøcc2Þ L(e• ¢i…xJ&‘QIÊ:]T-ªMÚpÐ ËX–+½µ;ß \}NE€FLf(E °2Õ=\|H04”aï ‡ýËwþÊ{ÿöþŽ,Ès,ÇåëØ–-ölM´$K–¨Y¢FŠ’( œAŠ$DRG"A‚$b æÆÔ@£Ñ@Ïc]ó<íyÞûwÿØUÝUÕÕÝU ¢ÄÆó¬ÝÕ»víý}_U­÷{×z_®|ò —&Ÿs¢ÿ ™LròäI<ÈÐÐÓÓÓæçÉfÒ¨ªr€aÓæ•»3‡×z?.`è­Ñø mÇ!_(0pþ<’¬lÃØˆØˆxëCI‘™™ŸerjjÍ„Ýs=ªÕ2Gïåï?ôGüòùWüâÏÿ,7|ìƒ<þØüðñøá÷óÚÑW‰DB+÷ž­UúÓKùT/e‹,g]Çe.\ÞK´0lb uMÆ6®zÔt]§\©PÞØÃ¥Ûm²*h*#-ÉŸÛYâ7îÌpÇ‘yÑÂëàXï©LšL6ƒ®ë{¯z0˜îz¾è‚ê¦Ä¯›ëëõ8º¸†.Ö¨ë¸8–‹c:˜¦]‹’jQSL*’NIÐ(UªU•LE%TÓ WM‚IA4(T5Ò%‘lA&‘ˆfjÄ é²J¶¬/++:…ŠI®bPªÚk*Å"]¶I¦"˜ÈLL"˜”È–dª¢J¢(̨„3 É’Nªª’.Éd 2¹²B¦¢RPlâ‚A¸ª¯™TEY±‘U3Ð ì‹79¾½†Ï.:ËŒçÝ•~·í9.­€«¹$ÝsÉåÎ>:Ë…¿>ÄÀ_äâm#'K„“)Ž9ÌîÝ» ¼ð Üwß÷Ù±ãvî|^xsçÎ’ÉdVÿÜêºüq©'º…‰lî3lSŒ]Ī.èqMvëŸØkù··Ž÷íZvkRz,‹õ:ï¦A*âÜùLËÚè1܈؈؈·^¡aÌæY³wÆs=$±ÆàÅc|뛟àSÿø7ÜôåÏóò®g §I& YEı­E_µ®v¶{-?[+ êpÌcÑ í.} ›ì*Z îÕZÃk)é¢aƒöxnHæmßNó7å‹‹zÆ>žHÍf±,kå„Ô¥UÔe-[‰nzªºa׳i°^¦²›Ä÷j_³1n¶‡k98õÒMM3ФS *¢AYÔ(VrE™t¡F,Sc!#+Häj:¥šF¥¦S­ª&¡ŠC¸â)Ôª&™¼A4kIkÌ'4f‘lJUB”4b5‰™šN  Ë ÄóÉ‚D¦¤“-éäŠ:¹šE¸¢3WÔ4²E‹|ɤPT)•$Ê…’`QÖ-*¢Ž X¨*è6Ø®/êã¹.žçÖÛ;½Ö’Ô6ö™€q—ã*äD¦&òœ?—áüî(SgrÔ*:†­S.ÈårÔj5fggÙ¿ÿ »v½Ìlã¶ÛîàÅ_"Žt¿‘݉­x…•¯ÞÖ£K¶¾E]¸—rÕn]/`±¡ž^{»#YQˆÆ¢\¼4ÔõçÈF³±±?UŒ¡ãºBA. w%zà:º®£ëê _œÍý}=¹nw»YÇs›í1~VŽƒm;¨’¶6%æÍ" ‘‘†¡¦J˜¦¶ä™Õ˜?ÿx¡/´øsýÇDÉã—ïJñ›w¥ÙqAªÛ†8KåjM“èzÑ…rù®ë.Ÿ_Ç[u>¼nÁ’×H\Ϻèu õªºØ ˆìõ^–]K]Å©î˦[6²î‹Ý’FEP(Öò‰RU¡XQüÿ«*éŠÆ\Å`¾bP¬¨5ƒDÕ`®ê,[Ä*ɲF²(S,J‹Ñ¢Ì\Ù Z”Iä9TY!W3)Ö „šŠ hä‹„`/¨¤2ñ´J<#ω$Š*©ªEFpHd ™tÞ ¨¸”‹Š¤QTIG4ld×E³À´ëjÄ+­Öí¨âWMÂUºå ªŠêb›MÂXøïYÇvÐuAÉd2D£QÒé´_F½“Ö³jª·ÄÒ;ÞÊeÚngBµ+¶¼×÷]7eëYëݨ”vó^éæønÄqš¾*Õ*ó¡ cãc]¿·7’˜ØˆØˆø©†ŽF¸ty۲׆ËêšÖbD¼kú¼uãt"\<—O¿Pâg¾˜ä©s ¹ª³ªÔ¤aš,Äã”J¥ÎI–»Ž¾«aæz-ãôz<þÚ´o®ïº×zhE`äSOþƘ–‹aØ(ª‰¨Ô$Š “«é¤+…²L¹$+jÌ—-ÂU“”hQmrUƒ\Q$]XÈ D3‰‚Lª¨.(ä‹*ŲN¾lPªêTkÉ"§Ø¤K™”J$®0“˜Iˆ„²ùªB¡¦²Q §U¢9™DU'UQÉry…lQ%'ä‡xÕ "jd%Y²PeM³° Çtpl¯3ËºÒØ5)ÊvdoAw—νÓ{«ô¶+*×ߟËä~à¶Î¦zë)©ïÁ:£«Þ½n*=Öê¦$öZ÷0w8o>_`rfŠù` ëÏ‚$f#6b#6b#~rá ‡Åâq®Œ\iíëe÷¶›Ìz= ù·å:.ªª"Åb‘D"A `dd„`0ˆë¸H’Äàà ÃÃÃÌÌL±ÉfÉd3D"†/úÀ°‹ï0tlŸ5Ô‰H4ÌàÅ‹ 111ÁåË—§ÿô)öïßϱcÇ8vìÃÃÃ$“IªÕê¥|´ýßñq…ö™_z©B¬làá¶Öú› ŠÄS ªµêÚI«°×¢Ñë¢ÿÉ[Ç9½«ÝÃUw¹˲^ºU’\wµk[êesm,ÛrÑt YU%š¨QJ‚B¡ª-+dó¾Zj$S%’ª*Iäª …ªNM0( ±šÅ|Å#R²)V J5“xQc!kL©L'f“ñœˆ$«TD•pÅ`®lÊ D³ñ‚D²83…|U%S3 —Lf* ¡¢A.oR*š”J*¥Š@Q)*:UÝ¥"X‚‰¢»8nSif'ašÖR<ÏóItw…ÒʵÏz,h{_4³+ÌqËÃn[)¨Û%(êÖ2cÏ廊¶ÊŠumÐôâÙk_q—å¼ÉdŠ‘±QR™ô0܈؈؈·&c¾¨ÈØÄ¸ÿ…Øm™N‡ƒ¼NÙÉJ&w]|Ñ[–¦éÔj5 …±XŒ……fff¸rå £££\áâÐÃÃÃŒ355ÅÌÌ CCC¤Ói$IâìÙ³¾Ù|6ÃÄÄ8§ÏœæÒðsss¼ð þqìŽçz8®‹mùàP–ÂLMM‡I&“Äb1.^¼Èé3gºÈÐ¥!._¾L8¦T.½¡ª¤^ÓMy‹ŠƒP‘-~iKš·}/Å|ÊÀv¼e h;‘/HgÓˆ’Ô1ùê”°¶ô€u;ïkù»-Sn\ƒ™öÖ <¯öØžá 僬‚W:¯»`l¾£ã¸X–‹n8h†…¬¢A©¦’+û€±P–É—e _t&RÒ™,DÊZEC¨D«s5‡hÍ ^5H”4R‰rU"S–TæK y‰…¼@²(“®jäk•š†\3¨UL25‹xÍ$™QH¥5âixZ%‘•H•2’M²f’ÌÈ$R2éªAAu)‰UÁ¼Šj¡˜.š ªí`º«,˜N 7½(|.#o½îL×Ûü1[Ê_ »žÛÁ;ÐíÍÖc·æµvu]¼»e"»a5»¹Æ.Ÿë¹ \¾r¥'°ŸˆDÃñðÊ*ÞHoß,ÞöKx÷ŸÅ»ï$Þ}ýx?8÷Ô¼ƒóxcY¼š¶‘œmÄFlÄF¼•a±Tdf~–p$Ò]‰Qûcî:XlËFÓ4A \.“L&‰D"„Ãa&''™˜˜`||œ‰‰ &&&˜žžfrr’@ @*•b~~ž™¹Y®Œ\áüà†.  ©Õ&&&ˆÇãØ–ÍÐТ(R(¸pá<»÷íáüÐ*U©©©åV+Ü{ƒ1t×W%U%tMÁ4ÍE#{Çq0t]×1Ms1Eñí*j5x#¡a3#ân{Üz Æÿô™(/ I(†‹ëÙ¸MŒ¡·èl¿¤OšH%Éò¨šÖUÞ²=„µ¬-º)Ik<äx誆$Šºá3aŽ‹eÙØ¶³üýÐM/ÒÕ°±×ª z­ËÊ$ÛšÎÚß“n×¾ÚÒ©3o®mc™&¦a¡ëŠj!*UI¥$¨dj ™šDµ,Q(©Ëse‹XÍ +˜äj™’L®ä ×Dó‘¼H¬(“(*dKu°YV)”tj5›RÕ¢¨Xd%‡lV%•TÅe¦D扼L©¦“*iDr*ѤJ¬ ‘©¤ËŠoÝQ)TUò²IF1Yu¢NE¶‘eU¶Ð4ßgÒt¿—±ÓP¬šÖëãÙö÷M¬6•Ò–îÉ&°é±Â†K¥“˘¿µú½._/›Ý2«ÝövË 6Ï-`ZóÁ×/£ÕU—’€aÇûÔÈÈp&?„ϼù¼süê=°éN?~ý>øý‡á½;àó{àá!¸˜„JgÅíÄm#6¢‹° ÒáØN¶ ÞýmÀú I¸W¯oô<×ópŸ9wlÛ´ÑM Í0‘TAÒ©H9Á‚ “¯ªäJÙ¢@,'IW‰¥«$Ë ÙªA¹ª#Ô4ŠƒxÙ"\µIT,J¢N®bËDÓ:Á„Èt\`>%.Jˆ’J¶¦¨X ‘‚L\X ‰F ƒ¦&'ctt„‘±QFGG9}ê#cÌÍNsâµCœ9{–³çÎpüøö½º‡þSý¤3)ö¼²‹W÷îfnn–;Ÿg×K/röÜÎ;ÇÙ³g'N34ä—Š\¾|™±±1¦§§|öqr‚éÙæçDÂæë>†k1)í÷š&/†+$7?UÒ¥‰ó€‚äpã+%þå1öiØN÷g …CÔj5Û阀yŒ‡'¨èÃ!´—1¯ÄðL7_Å çñ*2, y‹É­ó°üwÏsª±8éTI©TÊ$“q‰ù|–r¥‚(ȘºŽ(Õ$ Û0ql Ë21- ÇqWìçjBÏs—з¼oPX†¬Úárñ¯[ö© Ñ¥®˜µƒèòu]_ñ×r\,Ëñ™EÃBÑMdÍD j¢FEPÉ—ÒL¡F¾â÷+–+ÕªN®b.ÌT-âeZM£PÑ™/™ ‘¼F$¯Ë+ä 2ÕªFª"¬K2 y‘X^¬—¦ªä*¥²ŽP³HWM"5PE#‘ÕÉætÒ9™t^"W)TU ²M¾f’Í©ä‹:‚â ë²î i6ºncZÎ2k‰ýª,˜²Y Ò"žfŽí2®ñÔ©$ÏžËrh¼ÌTÊ·1¬V¯½µMÐf¹hkÓŽDûÖóZ×s˺_¾©àµ çÐá±eéžçvÏ^wðÖZ«]¼‡<@%¦¦g˜höóý R%m¹^݆ñ|÷$üÙ“M °-Þ~¼}…Ç7Ýù#xf’˜î ÃËêŽq/„×™ô÷ï÷ϱu~# }#cä°?î›_CV.›ýõà‰MÀps}ŒHoà=Öàú.Öî¦=xÚ9îÇëÀôøÆ܆ÝcC7H¥Òœ??Ø0tl‡l6ËÂÂû˜šš"—Ë¡i:éTŠóçÏ GÌÎN³‹èï?Îk¯dÿ}ìÛ¿‡Sýý¼òÒnΞ¿H.—fàÄQŽž8Á‰“Ç8rä»÷¾ÂÁ#‡ „C œexhS§Ïpþƒƒ¸Tïãerr’¹¹9._¾L6›ñûãòyâñ8™L–b±D­& ²,¡**³íŒá*ÀЪ܆éÜ¿é¡ÿ¯ªº¼pIæß=Éw•ÐÌî׌å8„B!d©õkË+—1ZŽƒ“)£¾4€|ÿ¤;aO/ ¿:„ôðqÌC¸Ñ’¯R÷Ðè ]ÛÁ³Üº”¿ÿÓÐ ±&¡ë‚X%ŸË’ÍdH¥’$’ rù"Š$“ϧ‰Çâ³yª¥…br¥Šn˜=CÛÛ©+¾ºkÃv¥K· ´Õzî*%·îºöz.ïî®Á¢yŽv,ÛÁ´ü E3‘I1$ƒš¨S Š5ƒdÅ`¡f)ËÔª ¹²ÂLY'P1HÔ,²¢E®ª‘+Ês*‰œH¤ .Ê$J"‰¢D¶ì ت*Ų†X3)ÔL²ŠC²¢“JÉ$“ á¸L0!ËÈdJ*EÁ QÒ‰&b)•tÍ #Ùä*:Å’J¹¢"(&®Ó6½øþ-¾G\ˆ—áXžÁ΀éìPRæöWÃ|k_”GN¥Ù=œeÿHŽ‘ Åðµ†mÇÅtZÕj<ÏÃq>Îôô4óóóD".\¸@$Aeb 1.^@”dR©$cãWÈd²$“QÜËÎ~ÄŽ§Ÿà©'·óêþ=¼°óΜ _Ê35>Êå‘1FÇÆ¹ÂÀ…óœ=žñÉI¦&Æ™œcxø SÓS„B!‚Á ¡P˜XlÉ""ŸÏcšÆâ X–¹Øƒæ8.Žëâáâº.3@W½Cžëa9΢Á½®J­Àp•äÃ0Œ×Ç®bM¡ ?QM˜¼ÿ±ÿéæÃQ½§~7EÓ‡Ãhª¶òóÜ奒žiádKÇGžê§ö¥Ð÷!?ðâ÷ö"ßwëLt  OPñjž¨ù»ÞŽ ¶‡]qó"¨V‹@ˆç€c¹8Žaè(²‚$ÉT*UŠÅ•JMÓ(æsD#HÆÄbq2™<ªª/•®€\×WÀMek¤s5J5Q2ÑtÃö°?or›­ÙÝ » €pWažÜ«Xë†ÞUÏUþîº~‰¦e»¦/t£²j!È&UɤZS©ÖTrUHE#VÕÉ &Ñ"_UÉò9‘x¦J4[c¡ “®*dÊ>,U4²dÙ [sÈ eÙ#]6I¤Uâ ™@L`&&IKäŠ UQ#QÒ™ÏëD2±’B¬¢‘,(dò2¹²BU6ên/Þ†õÞꬭãÂlž¼Ÿ<ÏNƒä³†’bóä™8Ïðêx‘çSÜs0Ê“§’„³ Šn’.jÄ ŠéàÕuÓ¡P5dTªªµ\å–öþS¯í½ë¶2Ú-½kβuÓ:^“Uª»¤TJ+öìhѽ >u±×­µ…dsy&§gˆÅ=m‚¼éz âpýËð›÷¯o[,v8æ·‚o‡Hå †¬Ìªì~¾è!¶¿ÎÀ°"ájxõÚ—Ljxb—e´–W©ÕŸÓ»*JÝŸ¿—c{½¿‚Ô=£¦­ ' ´u{ÞÆxõ:ws§–@ß–U@ßöÇëÇ=ˆW¹Ú9[i=ØõsH­×¶0´ÔúøÔºw±ö:­ïxSC<¨”+œ=;à— ®±îº.µZ QQÃ01M‹ññqB¡¢(‘Íd™šÃ6mâñ.\ Ÿ+‘Í%ãâÐ ÏqñÂ9Ο¡ÿäq†/]frrš±‘QFFFŸ`rrйùy‚¡0¡pˆx,N6©û–‘$ UUÑu}ñ:lËnm›óZÅXpݺ—Ÿ…ãXÌ6 î×èÃiV%µ-U•° cYb§„ñu†«´0¹u5ÒHÁâ¾ÿâ+ ¾ýjum4oyj,C×õ–ž–æä×­³‹É ë¤á¥+¸“ ÄGSûÔÐ;òØIŒcH÷FÛ;Š[ÑpËÆ©qŒC#˜gçpgs8©"^QF?310‡›}ºÎv–ú";%åŽß jX8š$S.—É äóyÒé …b ½.\³¢øJÓàêºÅÜ\’çŸ9ÄK;Òø2CƒLÎf ÆÊ$ò"%AG $ÍB×l§II’¦qYÍ¡ .[O½¨¯§$u½çc ì®"†ã-;/²P¶‹m8膃¢;Hš‰ 눢JMT)Ue %‘\A&ž«ÍÔHåDòU…|M§Z5¨U R“ù²M°ê­ê5“dÉ&”7‰f B™@Z$–“(VDI!VÕ˜tB%•XF –HU²%bÕ@’íîÙÁÕzq-.'ñ¾>ºžšÑß°‘“§NÇ89+0™Ù;œâÖ½a¶ìóò`–‹ ?:ã©“i¦2 Z½,™W80”aËÞ0£)ÏC·1L»cï ç:K2Fضç4®çâyÎrïÇ:x\"ýÒî×Ôv`ÜĶƒÕÎDZ¶è=Žÿ*ëÕÉ$S3³ä ÅÕ_ëÍ Ó"|æüöý+³ƒ«>v[[™iÓïïú!<5Eå†+¾‘ýmǨpý½>ËØÞS®÷µ]Ê?î†{——¤NvJp›ŽÝ^¹_îº=MÌÌ0\×^6ø8Œ”ZÏÛÕµ6ÎYOê·_;}wÀÎÄÊcXà v(a|FjËÁÌÖSps[OÜ ‡[û8{9v-ð´Øë¦Â wÀ¦çahxùõnî®g±9óÜ«­‡—ÏÉ–=Žá‰Öñí»6í€É.ûPon¬«]k€õ…ŵ˜Úûœ­µ^þüëçÝ||Ù÷¶ïZþš[‡;ÏÛŽضcùù'¥ 0÷S ZMàüàEQè¨Æ¹šª¤çú× …ˆF£Ôj5òùÿä${/—)*6–iqiºÈ}»ÃÜøÌ §Â²bqi¶ÂP †¨ºØ¶‡¨šÔÃÁs8®K¡f2›IUm4«,¬÷Ãúk·Cÿo7}®k Þx=”‚®b9ÑQmuRUÇu‰.D™›ŸCj¶ãùIŸyì üÞ¾€Ì¦JC7Ýïø>ü§á‡ß¸¿;FñWî€ï‚}s?~`xt×r`¸Ré`KÚ¹lræcÇã+'û²ÁëIôÑ=­çÜÜždÖ.sìTò×x¬=ä×(­l”ÛÞë‹ù,>ö ^a¥s?×7_÷óK‚.½ÛuI£ÚŒµ÷í«°º“§–ËæSÝwkS9ëÈ©Õ箿´ØKtØçȸ†sÖ´ìZ½·±J­ï…MÀæ¦1ºnÿêk°åúÖÉÜoěТÄå+#¤ë}yk%Ê^CY–)•J¤R)Ξ=Ë¥K—|@'ˆ\¼x‘“'såÊ•zÉé,‘H„t:I!Ÿ¥R.!ˆ"Šªbh¦iøò®»Ü×k%ã:¸ŽÓü µŠ¥–QÅ,ŠAR(Õ8j-RY@.…‘Êaär±[®JºÊŽtÃàÞ¶lY ‹rùòe†‡‡cnnŽ`0ÈåË—¹rå ãããŒù>†¥Òë[JÚ!¡šIéüÝsüßßI³÷ŠL›,ʚə,Äc”J%lËîº< À)è§g·ìAÚò*úËè;/PùÖ‹Ôn݇üø¬±Nº†~dᦽHœFúÎä; m=€~Ïa”ÇO£s„jIBwLô2óZ‰Œ­"ã`à¡à`â`{^mý}ë)½cÐÖÍc\ÃÇ–½ÅÕŸëއë€m¹†¢ˆšIM6¨…ªB¥*S.+$J*ó•pE'+Úä›|Q#Ÿ—Èär5¢Ù‰¢Lº¢-ÊäK ¹ŠFY´Qõ.Æd%pÒ~Œ Xž_½ÐtžŠ¨rtªL¸hÌÊ\•¸˜—Ùöò<[_ð­çç¹å¹9T¨JÁx•{öÌñÑŽó…'¦yü\éP™­»Âܹ/‰©<ÇÆ2¼x&Æ«ƒY¦ã ¶í—ôŽKÜ¿/Ƚ¯FyòLœ©¬Šh¸¿W¼Žtïb‰p»ÝF³èŒ×Î>vÛÙuÅj%¼«L@7 æÁ ¦iýdöfexß ðkw7±~M@ïWïÄùè«p2 ©äÈË(ÂÖ³ð®í+ˆÓ4Åß{¾ò^I}c€aÁÀÓšB¬µ2"›ö¬l-ö®!>S˜è ›ÀˆÚšØoÞ¿Äž‰™¦ä»WÛ!)¿ñ^:·{xå’¿E0û8^º €Ì51rCÒòsßÐÌRž[Ìz9v]ÀðAªƒ]«TgU»è#ç—Æ·Ò¡”´ïÞÖóÞÐ~ÞÒÈiž»æcûž_½Ä²yþ'×ñÞXïœ5¯‡êBëü4@úPèm^WýM–o>¾rÛ_³1CMl°†?ùÀ°Ãኢ25=K(^3Ys‡L&Ã… ¸xñâ¢èËôô4ÉdÃð·aYȲ\/7µá=Çk-`¹åbBáù%OŽ ¶†iHXZÍ~BMÈ¢TS(•ri©A*…‘‹A¤B1?œŸóÿ/…J!¤B©@.…Pª‰%ƒ{V‘hV%mÜsœ:uŠãÇsúôi.\¸ÀÈÈ'Nœ`ppÓ§O300ÀÌÌ ¹\îõŸéžuÃá¾ÿõö4ŸÜY´:ŬqN˜–I×b„Úµc ’%Ühd']F{æ,úS°¦R¸’†-`Czô ê+WÐ=¾gñ¡£7íB¸û0âm‡n;„üð)ôÇN#o?ÂÖc(Ã^@ayûQ„›_D¼c?Ê+hCsè‡F1²˜Ž àYM Œkõ6]Ï#Ÿ«ðÊÓûyòýÅ+ÿ§¼øÑ?gè»`bäîOpøËÇŽý O¼ïOxìƒïæ©þwÿùŸóÐ=Ï#VJ–Âábís¸ûÌî;}€ƒ—é/F¸ ÄS2ôY[¡æYuÀè-Â"·W èõöþï ŒT}K Û…Xž…ßÚ¶z¹é¯Üï}ï|â †]Äb2Ú#Øjôy­Ùch,»-KìoeçG–÷5ßOé*€áŽîú¿úOùLÞîÌòÒØö×]<÷ãËϽcGëµôrìz€a;ÓÖ8vóñ«ë1\é¼ Flñ¾ìÀzeº>Ís¼ì¸ºuF»íʦ{—XäuÍYÛzhžqàÙiÜ·tÚ¹ÒÜïhc…“úë0|ÃC]× G¢ŒON¬Yäy iú"&Ë2ªªaYÖ2sæU¿¼Ý:èsýäÍsë=-¶g¨8ºŒ¥‰˜ª€¥TÐkYÄâje9@*‘‹!¤B)ïƒ@1@.Öa1ŒT!£(Õ8šE­¦‘KQäb¹¸€\M2ßè1ìBe±™1”„ ÑHˆééiÂá0ñxœR©ÄüüòòD ;^ÄžMaŒ.`šÅžçwfyò‚„i»kÊ ™ašÌÎÏaYÖÚ‰oÑ–e–m‰¢×`S,×ï»2,<ÙÀ• ¼d;˜L`\bG°ÆèÇQö¡?qáö}_~õ™ôçÏ¡<ÝxÿAÄ[^Føò¿½ iÛaä»"ܸqËÌóóx%iuö¬ÉD\– fÆ<ýí­<¿ù9yßsì«ÍØ}Ÿcæ‡ßeâ¯réÎOñÚW¯çùOü-O|è/Ùñ¡¿äÿø)º‚m;Ì%.Lóøñ#|î–ïñÁ/|ž{žy†“³óœœ˜àÐðö]â…‹çxöÂ)¿p‚Ç'Îq(=‡èYëŸY/0\«ÿ´WšÕ®³“MË×ÊJŸCÅfSHwuÚLlùºT6¶å`.ºn ª:¢j`ŽÓ0dêËF× ÃÀ0lt]GÓT]A× ]Ç4 lÛÆu\/Ö9dËò°ë›<ŽëaÕ-*ð@3m.Ï—y`o»÷D8.òèNÀ°q}¿5_ï^¡-sÝñ `øVc Û¡P,rú̹Y€¦YÇÁµm,CÅÔ µŠ!—0¤š˜F(ÕJ9ŽZ‰£TP*QäR”©±K _âè±#œ={†Z1ƒ%æqÄ<¶TÄ’J˜B¹´à¿b9@.†‘KaÔòj5"¤Ñ¥<¶VÃÒ$l]ñTLSǵ-l]B’‹å¦r)Êlƒû–¦þ¦r0»^Fj˜Ör»ŠUì†aíš—’zÉ¿ç~ñ»I>ðd‘¹L£oÆi­KôÜUÅkð@”‘ˆß_H‡ùµ6ÖÛç– †‰§šx’Ž'þÿé*n®†;—F{å"ê#Ç1.†1ON¡í<üè1ä_CøæKH½†º÷òý7þˆê ÏbžÂˉ]–HzT« WÎMðønâù÷ü‡>üÇìûÄ»9ó3öÀ7¹ûKœ½ù£¼ôÉÍ<ñw³ýoÿ”'>¸™mŸû2çÏÏã8R½Q=´‡o½™O~ãK<òÒN.†Cœ™žâøÈ‡‡/³ïâvîçé‡yòÊ)Ždè½¼¿×»Ù(Xë|WÃ0ö²‰Õºªw^¿þ9àÔ¥Ú?ºb¾ÖÆž×è¿óp-×q°- Ë´1 c8꺾†a`š–eã8vÝJb‰ó<$›‰`‰Ù„NV°¸,°s ÍËóŒÆeŠ’¯Ü,›‡.¤¸g„GOƹó@˜{†¹w˜ï½àæÍrûžY:•äàd;ö89UäÅ“a8fÛÁßßæû‡xm¸À‰+9ž9eßH‘ªf¯,¦t5â=Ý2Ž]ödÏ昚™¢R­üä–’þÁcK€oÓmÝYQüÖ½ðäEL¢¼ÏXÃÆâvøÕ{ð>³ïÇ+>óFÃf¡™›'–˜™æó5€ßæ×‘1ì ÚKlfßpã~80âûéiµ•Ë›ËdÛ_·ÑÇÙ˱?IÀ°aþÞ÷<^º„Ë7E ¯Pò¯«—ßpGwcÐ\ž¼-¼þ9k—ÕÃF¯ìâߤ¦RÛ°ß§Ø|ßéú=§kkÌÅ0üé†ÍÞÛ®‹ ô÷Ÿ^;j’.÷ Û6°MK0” ª˜G­¥Pª1”òJ9‚\ úý}Å R!„\Œ"—"Èå reh`œéÉQFF/˜›F©ä1¥¦\À’KØr SÌ"—cH¥0R)ŒV‰¡Thµ4º˜Ã”ËXª€eÈ8¦Šmê8¦m™X¦…kÛ8¦Š&f‘KÑ:ËY†Ë%[€¡_JjX†*c›FWCmÕZ•šPë¹mkíéhÉ4©H6µ=ÏoÞ•æþ5dÍ]êZ®Ä²ê¿r¹J"‘ÀqœµkÒ“Öí@xøÌ¢ã‚bàsØcqܼˆ+b]Ž`œ™Å8>òX?ÊÞA¬+A´—Ï#|÷eªŸ}ãänQéŽ ó P8v‘‡>þiv¾ûüгÿÃé›>ÁÐÝ72xëg9zãõ<{ýŸñØßþ1¿ïOyìïá7~‡‰‰®ë1XIóÌðYî|î >õ/ðé›>ÏŽ}»¸ p~vŠþÑ+¿r‰£ÃÙwö4Ï÷açøÅhλ\óÝ Ã\UmóU>Ï['xìö5zÒÝ’¦ ¦€èVxÅó¼E5cÛv|ÿUËÆ4M&¦iú Q·«|¯V?ÛERtt,Ç#Y’˜IʳUÕnTqãx.±´Ì® ^ÊqdºÈ±É<;Ï%¹w„»^ óƒc^-2•Ùv ‘±/œˆpÛ®9¾óÜ,ß}1Àí¯„yt˜gŽÆxêDœí'b¤Ë·±ñÚF»·nÔD»š›5XGÏõ˜˜šdzvI–z^Ïo`øŽïw?¿ã¸þ%8ôÕGÒðû®íq¸é.¼¿ð&†jgÓNÀpûBwçoØHô5©E6«‚6÷Š«°Iò½_k/ÀÐÊtPAõ–‹¬4Ê'›@ÑJ~{Ëú̺8öÇ ›{{†‡—+6Ù Àæ^CTfèpw>†Vfi¶…×?gíã²Ú<ðüòq¿îŽ•þÀq¿²a² ߺÀ@UUúOÁ´í®žç †\Ds(µJ9ŠT®‹¿”ÂHÅÀbÈÅ€/S !CÈå(r9ŠRŽ –#ÔŠQj…(B)†Q+àÈ%,¹ ‹8J G-b*9 %¡”(â,,ˆÅÂóYL]ÛÆ5 KDZtlKö lÃÀ6|ðªK9äJ±B,„Zì*V†®ëúý…u¹@¤lâ,úpÖë…_O`èv ÝÖ·“eZ\¹Â\`£ÙŽç'ÞÞ¨k6­ßGP3 )®´*‘6+’¾ý¶–ÞEïÃ;Þ¼À°Ùpn°³"cÈÜpOëÆ ½Öæ…×vmÍàïúÃK¥EÙ²ahÞãµö óB­Üüàêj“Íž#§®îØ7.*‚ÞÛäÙ0l.¾nO“£Š·µ©Ç0f¯ÍÞØd÷°y—oE$¾i}!ƒ·»ÍcpkxýsÖ>.-kðøR¯gx¸óºj.¡ÝÝ´AkRâ½q¾uKI›¾u]çÌÙ$Eî"érÑå2R)ŠP #‚‹jŸR1„R ¡´ÿ_ ¡ÔA£RŽú埥j!ˆRŽb ¬ZG,`Éy,¹€%°•2ŽVCÄ5d±€$”‰.9;p޳çÎ1;7‡¢(¾ eúö–†eÊX†„¥ÖÐ¥š˜CRÈ•b)ŒX 2×Ä®–˜¸Žß?èX>c¨+MÀp)h”’.ŸYgB½hÞÆà ªÇ{~˜ã—·d96£!ë¾" ‡»fŸU§Ü4Y Z­¶zþuãÓ¶ÞRF¯K°ÙÎXºm­e.`8¾**®¨bGó8 Wwüê».i8œá•'_æûö?ØýžÿΉþŽ+w~‹Ë÷ÜÊðßæÂ÷¾Ì±¯‚?ù~žý‡÷òÜG6óðÿš‡îxœRIÅôàé+§øà­7ñ®¿{/×ýñ»ØüÞ¿ä+·ÝÂáþCÄÇOòÜÁ]<ºç|þ)¶î}–]3ƒÌÉ…ÞR/=W;W½®á«-+õºƒÞ5˜×ªlw5¾µJw׬ÚXòx´m Û2qÌ%vQ×u ÝÀÐÍzå„m˜Ø¦ßí:õRYÏ]¦Â'ä5$ÝCÐdÓÇ#–yùb–ÓsUF"5ŽŽxöLŠÓÎriF`8"°÷RšDÕZd&—õÒÜæòö5ÖA£¾ñ¿¢ª ]&ûÂ??©¥¤¿rwàðí·ùìâɈ¯PªÛðÄeøý®":ÓìxÞG^|“ÃfÉÿ:H¸n·wç Ø͉t'–¹{ᆶ×hM½\k¯¥¤76Ÿgܸ£ƒù|gºMÂæ&0²i/»ÕŽ}CÃö~¹]xVÀ°Ee¶¬Úæîæ‘.×aií^Áe¶뜳NãÒ¿¿ÍgòÁU| K­ëîºGÚŽ¿Òö0܆>«5xq˜\!¿r"Ó 9_·} C>À+†|àWŒ ”"¨å(J)Ò CÈ…r1‚RŠ¡üÇŠAŸ=,ÅЪ9t¹Œ©Ô0”*†"`(ª,PÈg¹<<Äåá!9öïÛÇÞ=»¹rù2²,ãy¶­â˜2–VA“òhB ¥¯ Ó„Ë È•R9‚X ¶ÚU¬’Ä6#–JI%,C_œ·a¶ÎÒî~ãÿ†Á}Ϫ¤Ýî\בҡ1•ŸùbŒï쫪šàº¾¨Fs~¶†ŽCó¿¹ù@}\½î’ÖnänÿNëÏmmm]/i1ñꉨÓ&]Ú”+W®ã13bç}óÈŸü!‡?ô'œúʧ»w cÞÁ•»nehË78úµxî†÷óÌÇßËó{/ôC<ñÐ+ºƒäºÜ¶÷~ëÏÿ”ÿô¶·ñK¿ô‹üÚ¯¿ƒ?ÙügÜ~ë— Ÿ|Œ‰CÛùÎ=ßåS·|›}íK|îþ;Ø5~ž„Vk-Á[¯øL7b^@³æñZÈnÙ¤^ØÁ«é›ìRU³Œ¬¤žÙK™äj=‘Mjœn}óñ=LËÅ4m ÃÄ4 LÝ@S44Í@Qu ÓD7Åjÿ³¬þýÒòfó0l0MÇ‚BÅ`2&1•TH— JU“PVdþ׿Ïû_ãw¯û]ÞùÎßàï>÷ì9GÅT›úB_çRÒ« â*Î×k©ëz,3¼kðúЛÈL‡Í Ïuð\wYy©ëy­6 «M¯›÷•·|½×ß¾¡ƒmùL¢múB7Ц ª2Š"¡¨2ª¡¢†e`[ 1™vÆ{Ëß‚±mÍ\$õz罂þÕ@¦·Jé{ýçT*ÅÈØ(©tj]ëäM ¿p~íÎÕá;ê ÐrAÔᦣð·1·­Ìnº~ÿ¼ïŸó&Uš´$ža­q¬¨úayݳ] ïÂÕ€Aãõ Òµ»Ö^£R«_Cmås·Û4„V:)¿örì#,ßKí*¯§Ð$¼rµs¢©uA›úZ°®Áœu†±|wóÓ¼WÙÙˆ·$0´m›ù`xÉËpµD°uiÊår9‚TŽ —è¥p XTJ¤B1DÌ‘ aäR ¹C©Æ¨fƒSA2É ™lœ‰‰)Îåä‰ã¼öÚkìÛ·WöìæðáÃ$“qÊå"¢PÁÖ°­ˆZ‰!æƒþõƒ~¯cãºJaߢ¢F*E};‹J !b~>¸:CÕ”5ÌíMÛF–jD"!Μ=Ëé3§ãâ¥!fggb|r‚£Çqþâ ÁpˆB©@¥V½†Uyvî½"Ò÷±:YEÖ=_{ßkÙN³51i^çk0,‹™ÙùÖþÂn<Û¸Jp°VòçvQrÖ~žE&ÑmµÓXí:]•þã#üpëóþ~NÎŽb®ÌôÂ"^ËòQï*æùjú!×SŠxµãÚQ{‡ µZµD>Ÿ¡R© )*–avíÀ‘.Œã½å¾ˆ­à†%…â:ht]Çñ°mK·Ðu MÓP UVÐ4]Õ1 Ç1p\§þ²Âà6Œ=w} o/¬o‹çîÒ÷c'v6 293M¾PXßÛàÍ ŸõMìW*ýí{ PðA!ø½Ù ²"d˜/ÀÓ—W~~£ÇðÝ?Ä;xë$i¢ŠWXXb·‡zî­—2Õ^m36b#6â§:ŽK*mõ2\bkuÐX…R1T÷l ˜- Ö’èbS)cë2¶.R-%8ÍÁý‡xþùçya׋¼z`?'ŽçÂù „Ã!òù ©T A(âèUt1ƒR‰#H…y¤|¹P½)„êe¬Í 5„\ö™K¹A)GÑÊ1ÄBx©”t]ê0´-Ûq¨ÕÊLNM0pá9ÁÀù.œgrjŠl&‹(½õè­•¬Ö‰¿¼èð¶ïdxû9J’Û‘)p¡3(êT’ÔDpda ¶3ÝøŠ­À+ßþ;¿t#ß|/çàÁ‰È$ïþòGùù·ÿG~îÿ¿üÒolâWÞ¹‰wþÎÛØôËÿÿ׿ý×ü«õò/~æçŸþÓÿ…ŸùùÏß|ýK '"AðÕø®õžîöµ®ø¯×w®ÛÙkq«½F7#ËØ+×6˜»ÂÀùsŒOLœŸgjlœb±ˆnš˜¦Õúü&Á™µ˜Äe,~Ë5z>h.µîXžíµ¹Ee§zi¶ë÷Z†­ºa é*º¦ )*š*£éša`ŽmãÚͦn×ïç–±óz\“]®‹Ñ±1‚áàº+9Þ4ÀpºúüÊ ¬á¿×7²_i¼öÎ,÷-lf ëûð‰W𢕷F‚Öl\¾ž¾Ç `¸±?éÀÐu=Êå ý§O­‘$Ö¿`l¹´d!ƒ(Åra1ï Ñ(¥(j%!䱕¦®`&Žiù1¶†®”9qü58@ÿÉ£ ] “Š#×Ê(B]©àê<=Q‹£”Ã(å0R)è—§#~_c)‚ÒÄT6ÊYµEœðâµ*Å(j)†TX`¶®’t´—’*²H¹\¢P,R©VQ«nnoè‚ P«Õ% I©‹TrEÍÅð$d Tt ,o)Á[i¾)±“ —œ¨òO>á•+2–³”à¹Í[;8\E‰Æó°>°÷ëÇpNEA\²È°™´Å/ÞšáîÍ¡™dó9¬Îv¸žG<‘ T*u/<³žrÑ.™—e½‚.½«Az½%}-5ž‹£«B×Ûq1 QÔ(29X²D ”allÉÉj‚‚ëyœË‡yðÜ~¾öÒ£|ü¡-¼ç›ŸæºÏ|ˆßûÈ{øÍ?ûïüç·ýGþÏý/øŸþ×ÿ'ÿ¾>~þ¿ÊWx µâúÒzAz7¦ñÞ5¤ÝªØ®Å¤_»½5{ÑÖ†]¬qÃ0‰D"óLMMpºÿGäâà ‡_;ȱÇ™›çØÑ~¢ IæÓœ8Íé‹— ESäS ž?ùӧˆ.$ÉJ‚‚f˜-Ššžë *Žkwè-îòºÝLéqÈ«³‹ {Fµ…aX†‰®ëhš†¦ièºî+¨Ö™È†NW¢F«¬í–ïÇ61 ݰ83pŽ\>ÝlÑô“Øcè'£ðW;à×ïY W–yûíK¥¢o_þö÷á–ã0œ~k%i¢ä÷|iÉêFlÄF¼E¡eZ=vÓtºbt!í¶|¥’@“rXZÛ±MÅ7™¯[G8¶Y…&®mø@ÑTqÔF-R‹²ft|œK—'¸re„p`!D+…Q‹>ÁÏ–ýžAŸ-lf ëQôí1Ôb¹B*EK>»(/²Ž1PWL‰çz˜¶]†š*aYÆÊ¬E“g f›”OL#|ãܰïÓð>}>y>~>¶÷£ûq?²ïCûàý¯ÂûöÁ_í†Í»qÞó"Þo= ¿ñ4|âÞã#x¡ ™‚Ém‡þù—ãì¾$×ef¼&ð^—ži¶/t×.%u]—`0ˆ$IÝ Exë ½ƒkÕ'×užOÍ:–Eµ”f|dEѨTËH’€c[¾¹ãbZ.ºa£jšjâ8.8EK'.W™¯MÇ913Æ+ÃçxêôaîÝó _}t+þîWy×'ÿž_~ÏqÝWÿ‘ïy‰œ*¬®ÌØ­šæÕ”š¾ l­òÒkÑ£x5À°‡5Ü’¨·ï:î"Rd‰T"ÎÌô3“ŒOŒ3tñ"ÃÃÜ=}– ƒ—8}ªŸ£Ç1<6M*] › púÌqNŸ8Á¥K—¹reŠÙé&Æ'ˆDã(šëXˆå,SSST©míx«?ÖÚœé¶T³K†¿±YÖ`mËÆ²¬:`´ÐucÑj£f½ÌÖq–|×di×P3­ çΟ§\­®¿ÕöÍ K Üz ®{¸^Rz[wž†o¿½Õ³°¹·pÓíð«wÁ_?{g¡¦o$n±±o%`hÛ6'ûO#ÊjW=]º˜õû !T1‹© 8¦†S„Ö¢Ù¼†mé~˜Ž¡ú=†šˆ)•0„r%ÄÔÔ('Ï^äØéKœ>;ÄÔÄ(•\½F+†=¥£ `(—›A¡ŒT .ÆbxÉ®¢PW*-…Ëñ%Ã5J=×òýþBðPU Ë4Z{|šÈ¦æ\D7 *áµsóp&g¢pfN/À‰( ã ã á Âþ ì Àîyxyo×4Þ½qß·w¿ˆöÍS <1Ëï?Tà¿oM’©ØËÊ»Z~ñZèÃeÍ÷í¸.sssèš¾”xtËþ¬§\¯Û’Ón“×k&šêïÛ¢XL2tá™LŽ‘±¦§'YˆFˆÅc¤Òij¢ŒÕÞÇã‚ Øžƒá¸hŽCÅÐÈHU¢Õ"S™ƒ‘YO\æÙ³G¸ãåÜut¯F¨™Z+sy-Ù²µJó®ëÑïš±ÑגɦË^ÖnzÛš[]]S©U«” Ê• ™t†H4J4err’K—†¸4|…@(N>_"“ Ðߌ+CC _ºÌéÓ¹88Hÿ‰“\ºO*•B’DªÕ ¢(a5ÔE½ÖÏ‚«ã•qW`ÚõpêÌ¢mû@Ѳ,LÃ÷c4ë,ãâ惡xŒeYØö €q…Ï+ÏóÈå \¸8Ø»…Л\NÁ§÷Ãïý`e_Ããú6&ñí·µ*’¾ãøãÇáî³ÞT÷¼±± ß`è8ç‡Èæ ­ç]šr©ä‹ËhrËTqlDzq,ÛÒ° [—üÐDlUÀT*˜r K*¡ y´Z ¡dlt”“g/snxŠÁ¡q&'Æ(ffÑ«ßâ¢F.ý>Ãv†°M U*…ê¢7¾e†TªÃR¥’@²¨B‘ÙÕJI›~w]Ûq¡Ö04tƒªP£& «³’‹xÄk•ôÀS-܉<Þ ÓðÍ~Æßw€o^?À¿½qç?;'Âx¥¥}¨0ôšMV†¦m333³ègÖ1áuß:ÀÐsE`!&K0p~€ÑÑ+ ^<Ï™s§9sþÑnÆßû1õÊ&¯"Ú?.ß’ËT_êÿ9þúe M5‘%™d*C$atd”é™rÙ Ùt’¡KÜ9sŽ“Gsqè—.^äü™~Ο9ËÅ‹CÄâ)4ݦUŠ®}».óõ¸våàMÞ©¾E,úeý  ¸X~ªéugŲө©fæçPUõ§6c´[à=;ÚØÁ5aóïï}öÍAESÞóFlÄFlÄ0|€¡ëº‚!¦fæZm VHØC\´ˆË hµ ¦\ÂPJ¨B©G(FPÊql¡ˆ-±Å<–XÀ–ŠØRS, ×²H¥Ùø4s3“çgfHÇæ u?Â6qµ¼äS(—#> ,‘ Áú±Q”bEÈ¡KE µ†¥K~bÛŽnvŸéØ,†¦¡a×ûmÛÆqìz9”åÛZØ6–m£©ÕjÕ—Eo–n÷ÖȆZaÝЃpÅáûjü—[Ó<ñ|¾uÞöÞ¿ßïyžÛ+BYÓñÉG\\Ï[{•Z•h4Ú{OQ/=…½°…½ª”^K{…®Ís= ÃB”ej5YVë½¹õ¹u©fÄr†ÀÜ$“ÓŒNŒ24|óÎ011ÎÌìÑ…T]÷A¥ËŠö×X³Žd}½ª¤ë}=¸vb;×âÞ×Ós×%pîh˰ -ÜZýé‚i:覅f訪Œ ˆÔ*eOãà¡# _¸È¹“Çé?q‚Á‹‰Å“H²F“éê Ÿ× ÌÖ|¿­œéî=»b!û›wÞEË´qlwÅ×¾4|…htÃ0Ö½¾Þt¥¤Í×.0–…ÛÏ»ž\¶•’þÊðGOÂý!ZÛ[QÐg#6b#6b#ÞÀÐó<É4‡.ã8Ί JãÛÂ6äR´ÈȅТ}DÃÂB*PŠ ØBK*bIEl¹„-°„<¦”G«P«Iäb!¤– £VPˑž¥ˆ,™×ƒõ2Ñry¥GÒbK­àê"¶eâÚ–_âj;X¶‰iëØ–‰cÚÌC]%3‹â3Ž/˜ ÈÙLŠP(D8&’H$H$Ò„£Aÿñh„P$@&“¢R©"âŠÉ‡Ç ` êÓl;.O мãöï}, ®‡+Á}çà7žÁûW߇ßxï GðÎÅ ¤âXn›¹½·B9±K¶à÷&­Ö§sMJ9»ñìDx¯@XÅ3®½ätYMpÃOÚP‘ÅétŠÉé)®Œ\æÒðgΞaÿáƒìí8¡hÛqZçß}Ù3¯‡ß»Mô¯% ô^çùîvËœu7+ÅE`ÓT¶ÝI8f0Ãk1°_,{÷@ôl×Ð|UÒ.ئ04m{†C¹téCCCœ={ŽÓ§Ïrvà {÷îáÐá×8rä5†/_"™Júd=—Q¹Pp].„5>ðxžwÿ Ǿ1¹œ¸.PQq_žÆýë]¸?¿ ï_ß¶ïàÜÊe¤M×a;ñDœr¹Ü}²Ök‰^·ÌT=‰sgeûõˆ]%·n=‘vñZ›;;çÜõ>2MÓÑr¹J<™ IP©J¸¶·TûëyW§öÚ+ ×¥íÂUÍ^mF^o Ø èií¯ ìjš&¦aµÚ1t}+oP-+5m>Í;ptÕ/µtš7Xú_Ô­²†V,eìæýÞ+Ëè-ïA\³ša¯iý§Î ÂRËÄO00܈؈؈ `øºCU39zìÄro§eo±¼Q«$êV¡º8L©^޹ĆP+‰z_a[.â¨%¥‚-Wpä"j-R\@-‹¤J¹œ@)DQ‹ôj KLcHYt!‹£”}a[ÇqLǵmßBÀ2ëàPÃl(£š:–®`(5t©Œ*dª ̯ ÛJ¾¥¤Ží Ö*ÌÎNsöìY.^¼ÈÄÄÉd’¹¹9Æ''Ÿ˜`dl”±ñI‘ …"µZm V¬¼E|Ð\Yh.ÿ°£ÈÛ¾—âý–ÙÄ&4è%·>E¶ƒ(âÞtçãþêvÈþ6ò*‰ eÛÃ!dY^^MW—Iµ,KT*%¡Šah¸Ž‡®(Š‚mÙëKö{9~5æÎé0uî*ÌÑJl”KSé)Ý›­¿^å¤^ þjÉ^J5ßÈÝ€ëµz;Ì—çzH’D.—#›Í"IŽë⺦fP*—|C;ί·Â{¨SÓâ CÛÁ×o®g-tSVëu9ß^ëf­s¯&òãzT*N>‹®éW½‘º±±ñS ñàèñc¦¹JÔÒ·¯"¤P‹´bµF-QK¾½ï¬[GÄÐ…,¶RÁ”Ê(ÕÕršr)…T-`Ô²hÂJ5„–÷û Õzi¨RÍP+¥*YT¥†iê8–ŠmkØ–±èèÔËF=ÇÆµ lSÅÖ%t¥ˆ.åЄ Z-…&¤Pkqj…Ð0ì‚i€Bò0T SÓplg1<ÏWÑ󾺱³ã¢ëºßc؆käa>¾XbŒÜú¯\ù¯ßNò·?Ì1™2Ú’Áu©®9÷¹1ìŸÛ†·åž·È?vÌ ,ÃbfvÓòJG‘™nĪÏóÖNÆ ©V%“J²°%É"Ål†ØB„\®€(ÖêÆØ†¦bêŽãµöp5®Žì‚·¬«³ Œ·þܶ¤|™%k[|xn‹—œë^£Ù+“Ú-àë…1óÖq}½>Þ-;çu úÖ9kÄnDwð™ïJ¥B,caaJ¹‚mXºA6!Íf)—ËT«edUÁ0͆Öõ±ÂM®d`ïÖ?¼&z:)‰ºØH·ã8wd ×Z][Yt:»µj{½X<Î…¡‹+÷nÃØˆØˆØ†KÿNž>E¥V]ýK¿žThRnÉ8¾AZT mf ÃÈ…(¶”E¯eÉ$c\›äìÐÎ]¼ÂÜÌJ­ˆ®¨¢¨µF-‰­”ФÙtŠÑ+—è?uŒ`8x>(4UlË÷L´M꺄®”QŪD¬&‘kI”Z­šÆ¬å0…z-‡RN2ˆtµãÝŸi†Ži´æ„+$‰º®S©TzöÌòЃšâð® üæÝ¶Ÿ±T¸Mîy×ó…h>¼ï?= óÅE6r©§ÈÏÏCVæçƒ‹leײóköz‹ ‹TOßLh8 ËÕr•|!O¹REU4²Ù ‘(ñx’H$B&›CªÕ2¹l–b¾€ (’Œ"Ѝº¶2Àí(öâ6ýÑmÁ„«¯U(¤ŒºK÷šþî²¼W±1!n½|ëQb…«Y/»÷z1‚ëaZ»±—èptÁ*êºA©T¢X,¢i*žë iñxŒl6K>Ÿ#œgvfŠùù9¢ d22™ ‰D‚l6 Ju%NUU±L»UAº¹¹­lY£ä¹¾þ<×éP½|Ýub¼WT%î…-¤‡1ïì¯òøÌü,㘖¹ 7b#6b#6b®õïÂà ™l§ÝK­C2d*¥Eóx¥K¤RÔ/)-‘óÄ|[Ì!—2„‚Nœbÿ±s:yž+ã“ä²IR±‘à4Ó“—¹|ž±‘!æçg ̼À‹»^`||˱ð< ×4p [1”2º”G­¥Q„$ºB¯¥1„,¦œÃ ~HÅÅЫæƒÝù6JI—€¡Œm]%ª½C¯Iä§q9Ï\ùÿ|-ÉwöW™J™ËW1ÖHìE©ŽlÂá0ÞÏ=7l­€lFŽëP"ÑÈÚJ˜ëYv<Õuð4'”ÁxtÜÕC{¹6¶ G ç"ybñ,±É)ö<ó,üÿý)øKÿ•·ÿ»Ë{çoóÄs;˜šâØÈ/ ðøT„C9Íq(U£{”s“O1;N$w…¼BT3hF ÃT0- Û6p=cIÄ]Aì±·îZö"zërݨØv @»‹¹–à×ëâ÷.ÁŽçz‚@2™$‹Q,1MÛ´(rƒ¢a‚Á0Åbr¹Œ,+èšmÚ‹Ÿ+®ë¶(ûýƒ–i"Ë’$¡(ªªb[6Ùlš……¢á0ÁùÁùóssÌLO3;FVT¡J8ffjšË—/ÆD¹ÞiP)H§ÓõŠY6PUC7ü^IÛÅuÖ` »es{íëh Óþþ®[Uœ<Õu•ý…Àp#6b#6b#Þ2¥¤’"sêÌit]ïðë¶ö°Ù.†&b«5]µTlKóUCëašŽmùÊ¡–Žk8¶‚m èj].¢It!‹.$Q+1ÌJ!3Çìä8§Î ³çµ³¼vz‘Ñqlµ‚+V0äbð•°¥’ï‘(6˜Â<†˜Ã’ŠrK.cI%ôZ¥C*… áÎâ3]¨’Zš‚*‰¤Òiææç˜žž&‹Å˜™™avv–ùùyB¡±XŒ\.×5chÙ.Á”ÍŸÝŸãûL„ÇÎ ˜NÃÓ€Å2E§©fÊk¢žZÔ3›ÄNpÁ±=¼?yÞñ8ÌÖÀ^J¨U% 7‰W¬!ðЭ]EË6n¡Š|ÿkÔþa;Ò×^ÀØ?‚cš`ØÈOŸA|ø ú‹—Pï<‚ø¥ßÜ…òÐ1´íýˆ÷îGÞú*ê+°'BØýãhg'0cÃa³Ø³i¬D¡M)t-ààQ±]fD.¤ DiNîÛÇ-_þ"Ÿú‹?åG·Ü̶>ÊïþÇŸãÆO|ŒÀèɱqF.\dïø<Çs"¶£3›ègësïçÞm_àÁg¾Ä_þ Oü;OÜ‹ßçÔÄ“ ‡÷0Ÿ>ÎüÜáP˜X,F"‘ NS,æ©ÕjäòE ÓÃСæ‹Î˜6¦å´¼¦®«È²Œ( är9ò¹ÙL†…h˜H4n¸d“qfffHÄâ"Ñ*×ñ05•L"ÆÄÄ@€P(B4º°x=ét†r¹†®›«ƒÂnÕs»µ»èvm´ýî:.±XŒó¯º¿pnÄFlÄF¬š¦¡YcñSúžÇÉSýh €½å^ËŽ‰ëXض…Ý`M£î+èÛH˜†Œaø@ÐPJhRMÌbˆù:ËWÆ’òhB¥–D¯Å¨BÌN300Ì©s#œ=?Âåáqär”ê—”F}¦°þ»à3‹þï% !‡\Ž"ÈÅ  Ûí*VHDZTIMËP‘…SÓSœ8y’'NpúôiN:Åèè('Nœ`tt”3gÎ088H4í j–Ç…ÎlMñ¿}6ÆÎóµö‚ÐÎÙÕŠ^ËoÊ=þÞýxi¡.<ãPB¡PÓ.|ý…^À°Í»Ï–dÌ©8Ú±I´ÝÃ'g°+2Xò³§Ñ_¼‚±å‘ÓÔ¾µñ®ƒèû¯`CüΪÿC´çPûG‘<ˆðàAäïíF¾k?òO ÿàâw^Byâvª²6ÛÓTf7,ä*L*‚a^xêIî½åÛ Øf fG¸x×wøæG?ÀÀ‰Äfgœåp0ÅÅšŠi‹ wsÛ÷ßÏÖoÞË}wÝýwÝÅ}÷ÞÁ}÷{·ÝÌ=…­‰ï?ûØõ9øy]¹ É,`&éDŠÉ±qsA Åš¡âØ®ã^ÊæÕÃnµ^À`7=†ÝöXv³þÖË®¶Æ½.AJ[?«çºèºE©X RI&bLNN1?;ÇØÈ(CƒC\dxxˆááKŒ0;;ËÌlšd ÖJ„‚sÌÍÏYˆ‘Ng‘$Û°EÛ²Û‘‡*ËT*e$YÇó<*å<ÉtŠJ©L2™$“+”Q5•Z¥ÀÜÔáp˜ÈB”ùù ccDBaæçæg~>H¹\Y¹¹«n­Dºím;αfffŸœÀéÉ4t¾±cËu}ô]·…X[b9¹ãzúÞ³éõ¾m’ëûúØ1'öð<‘›û¸~Çä[nÎæv\Oßæˆ?×ëÏÓæíËçI›ÛI_ßõŒˆ½ŸwrÇõôýáv¤eëTd`çnÂÚ[c-„û·s]_}õ¸~Ën íÇY1¶lê£ïº› ·ƒGq„úúè»a'Ú0|óC€3çÎR®V:¶½¤c[8¦mê~ùhÝ[Ð4dt½†®”Ë< 1)0¥’ß(çûm¹„%”Ðjt!I-"س(•ry©A.„Ð A¤ÂÂrÆp•¾•VñCS©T«ÄâqæççÉår¤R)fgç™› I¥Rär9ŠÅâ0ì`tî’æðàÉÿõ{IþÍW¼¢^óyõ¨—PýÃ>ø/à l`èÅ’oÀ½$ààu_êÕÕŽCÓ±Ž_Rj«:¦¢ãá9.^¾†“­`2h—ÃX“Iô½—¿õ"·v!={å¡ÃˆßÛƒ|ïa„»^Eyàʳç0ú§Ñ"Üù*µ?Šð­Wð¢Åå`¹Ùª¢í>¦TéB…xxÓûö²÷‡1òüsd¾Jáð+ Ýñmnÿ‡°ï¥WLN2<àh<Ǹb¢[N\yŒ[ï~·ßüM¶Þy [ﺕ{î¾{îÚ·}[oÝ­·ÞÍ-·nå[·ÜÅ7ïü2;Ž|YËN¦Ùùü‹|æ3ŸæsŸû,·Þz+÷Þw?Oíxš={öÐßßÏÔä8©dŒjµŒeà:-Œ~3ÜrnëæŽ×­(ˆ×Ðôzuݚů§\¹×߯•`«—¡«ªŠ$IX¦ÕÚ“×´ÑæØ–ª¡©:¢P£T.‘ÍåH%“DB!Á&&§‰'²Èº‰X+Ÿcbì #£W˜™™#“É“Ë&™˜#KΦ)•«¨ª†mù¥ûK~5^ëÆ—å—½«ªŠ®ëˆ¢´Ø™LƉF£„B"ƒAÆÇ'˜Ÿ Q.ÕÖW^¼àó\¯»yê’a´‡K—‡YˆÇp½ `øf qdûbR¹u Ðš|oÿCúÞ¾í †#\××Ƕ‘JO€cûu}lÚ6ò–›³Éí×Ñ·iûO 0\ižÄÉíôõ]·.`Þ¿…÷|s¿ ›Ö©6¹¾¾MŒ¼€aá¨ÿÞ½a“±C»·Ò××Ǧ-ýXmÇü¿]·u éq7öÑ×·‰1kƒ1|³à IeÒ¾2ébŽmáX¦ß?¨KèJC.aˆy4)‡*f1Ķ˜Ã–|Û[*,–|ÚbK*/C]H¡ÕbÈ•ùÔ<±ð ÁùIB”2! !‡¥–±„R]h¦‰%” bMH£ Ôj ¹AÍGÐ !ÔB¥àÛk…(óóó«—1yË{ MÛö{ â3õ¾ŸÆ|4­äcè5¥ðÁæûÇküÜÍI~ù¶4ûÇ$,§Ù¨Úë9I®k[.ö.‘‹.îå ü§‡á†CxçHŠF¶P$“Éõ&ÀÑméÝJÉ`‹É»ë ¯8õ0p<Ü’Œ=™ÀžL@^À§‘Ÿ<…tÿaÔ—.¢¼týàÖäæ¹)”ûö#|úY„/ìÄ WZÄeujß» (OJäq/<°Égw0¸í~Žn¹…íÿw<|ã¸xì0©qf‚œJWY0l4-ÉîS·ñ…oü9_¿ñóÜzë׸õ{7qÇíßåŽ;náÖ[oæ[ߺ™›n¾•¯}û{|î¦ïqãmŸaÏàm(f‘©ÉžÛùïxŽW^ÝÏoã+7}‹~œÇžy‘;x„›·ÜÍ·¾w·Ý~÷Ý¿íO<Íñ£'ªÀC·ÁéDuk$Þ-³³ÃGÇõZVz-„lÖb {è‹kEQÈd2Äb1Êå2†aà²áI $Š ¶ÓÚ¨·øùîz8އfÚ(ª@¥RE¨)˜†E.“b!c>df6@$§Zª’K%™˜˜`tl’ÉéIææf„ÃaⱩd’\.‡()+«[‰ª«’:¶…®ȲFµZ¦\.‘Ëå©VLÓé¾/p…σV°ÜeOéjçìðw˶9{î,ùRáš|on€¸×§íÀ }ô]¿…-×÷Ñ·¹•5ðîíHžE!¦P)02ÐÏÀdlñ¸Bx„þ£Gé˜¤ÒÆFˆé9†úûéïïgd.Ýš¬jþ¹úû')†ØÜ×Ƕ‘…ðáB+sX‰ÍN‹ÇuÛ†H‡G8z´Ÿ¡ö×ð4bs#ô÷÷Ó?0D¸ Õ¯+Ì\¸Ðr¬Vˆµ<¶Ú}5ÆnÍkµD&‡ük›L718Âs±`Wˆ…‰´úy;u;0¬4^3fn.¼xV%Æ@ÿQŽX¼gÏ ÏÍQÐÚÇgŽ‚Ö t»ÆõU4ô¤o#séecâèÑ~ÂéÛ7÷qÝŠÀp3Cé#ýGé!­y-¯“®,]›UI/Α%ˆ§+mëTcòÀÍôõmbçHÑz#æË_;±‚èÇÀHÛ/­÷É¡úûûjZSV…p8(¦ý÷ÊÀi±u ¢HlÄ¿®ÉØÒæIxçõôõmb  X÷ßÜGߦm‹k£ùþÞ¼‰¾¾>vLŠ-`ñ†Ý᫺ÿNaUb õ÷s´€pE[{ºZWo1`819I0FÓõ5B×±qì6`(äp¥¶”G‹Ør¹µôS.a)¥:ÃWÄYì,cH9”j ¹F)†P Q_…´C«F0„¶\òŸ#1ë`P¯eѪ)ÔJ ¥F+†Q+!Ôr¹Fª„QªQÔj¹G­¦—CV†®ãb˜¦opo«çõ?†A¥Z¥*ԀƎ½·ÈÞeKŸ~®Èùn’÷=™çȤ‚f4×rÒús—äœëµ³7Ë5øÚqÜ_yïÖ³Tã9â)¿¤ |µÒž’ýµÊï:µÊ­¥\¸=°\°ÿgÛÄËŠ8Y·¦bgJØén±†=E}aáÞƒHÛNàTÍå.+XUÀ©¢Ä™Dl¡D)‘ >xŽ…{HîÞÍø£?`æ‘»øÎ9öÀ݆†LNrj&Ìù¼HÑ2¨©~ðòxßÇÿŒ|êùÂM_âË·|ƒoßz ß»õf¾ùÍ/òù¯|Ž>ÿU>ù¥¯òÁ¾Â§ný ç&ŸÀ0eÎ^á‰íåÇvñý<Á§>úA>üïâóŸùO>¿ÓãIö^²ãÈ8î½Ä–Göñ…o?È_ÿ.³cèÀH‘Ç&Rì 8•,1’« º‰á­PfÜm_W·%¤Ý°‘ô°¦º)s]¯­‡×%xíF„¦ÃùTU]†¥R C7U“Ép…Çö†83]ŵ<æƒ%æ“é²N±¦#Ê&šé¢/~^¸¸uÁðpLßâBQ5DIA’4âZ©ŽFˆÄ’Ä“I’±(3ÓÓ\adä c££ŒMHåq=ou€ÖvSžÇâ¦WC§÷²YÐËæ‚·xdí>PEU9ÞMÓ®MõÅ»öQ⺾>n<š¦0°…¾¾>¤­ÀPdÛ¦¥rµ¾¾ÍLjý[77=ÖG_ß ¥~7´ý­‰­(ô³¹ío}}}lɰss}}[–Êá¬96÷õqݲRD¿D±ý›· ÕŸ—f[‡¿ï˜ ïö¯­¿°‚v^ßWgáV¿¯fà´êµ†ü½æ¸a'ÏCñò!qé^¶õõÑ·uÈÿyÙXw†šç‘îßZ?÷nDÏ£0´}Ù=oíá‰CljÇÊÿÜÝílÑ*c·üúê%ŒÛÀ¯ÂŽë;ÌËö•€aû±›éO[mcâ?²m}}[©x#[ûn¬ÓbÛù¶OŠoÀ|5®«i¼GZÁ§>À¦e÷é—uŠ#Û:ŒÁuKcÐa¬oÜ=W¿~JEl- ßÔGßu+°ÉÚ¤›¶’çüŸ%ÉWqÿí‘X~OÛ‡ «ŽÃÚëê- ƒáS³Ó(ª²ö¤» mCÁVE,¹„#pÄFß_Á‰Q«hB‘R.I¹Æ36ØC©Œ!æQ…r9†R£¢¨•8jÕÑ+q¬ZChÁ8je¥E)…ÑJÔR­´€\SÎIeçHçæ+1,1!å1Åó`WlCîÂqŒ:cèXÆÊ=DMç[ô1š´CdÉä“; üÂw’¼ïñ"ç‚¢æ‚ë´œ_Ãynú‘4îü÷Ý/PÜ{……X Y’êÉ¢·>`ØÓ"}ß\bº–à‰ç.±Šž¶å{Z.Ô4Üxs.ƒ•®‚ã¶%¿+b»>^?œ8ÏPÈg¨æÒLž9ɉGàЖ[Øyãxé†qàkŸäüK?"==ÉìÔGgÃ\*ˈ¶N¦:Æ÷¶„ÿñž?æï>ü!¾ø•Oóåo~ƒ›où6wï+ÜrÓ'¸ásÿÈßò³|ä_â½×žOßö׌-ìÇ2ŽïgÛÓ¯pÿSûxäá'ØúÙðƒý)7üùïó±~”×ÎOsd¼ÂKçóìȱmÏ8_¿ï¾ú;™™¥ <<ã†í¯òž¯ÝÍ»¿~;wûøì“»øÖž#üàÜevM†9Ï1R˜¯©dUÙrpÖJ¼¯f®%à²^A›n€êzï¡[öp K×qr¹Œ®é¸¶K±¦qv<ǽ/8?/¢h»O¥Øs6Å §¼|>ÅÉÑ£A©hPJ šQgdƒšæø:`^£bÁgÁñmt]GÕLTMCSŠÅ‰dŠèB”p8ÄÌÌ<ÉL±þÖôì×ÚLè•-ì†ýëf]yûæK•2'ûOâ:Þ0|³ö'í¾ÁglDÏòûü®kJöš¡Ând$] .PÚ¶:<O›ãæM}ôÝpK›äº>ŸÍkœk`˦:“¡±ûzlTü„ðÀÍ×Õaeñ¼;ÃZ«±© Ä51†›ûèÛt##Ë/‹«³%bS2Û`G<+ÌÍ}}lÚ:„§°¹¯ëwÖìÊ×õõqóÑôê÷Õ6~+_k‰í»ž´ÿ·XÀÝx Ö¡„²Á~Ž4Þ¥±îXJºy;“uxÝ–£>«h…¹¡¯M7¨‹m›é뻞IÍâèÍ>0J7³Å×-ïU\u욯¯âƒ—Ý7.±Té£7×Ç/Ý6o[nÞzÔ¿†J£ßíV˘,/¡]Z›­?û@ë:†*Ë×ûë3_“Û¯÷×ï@˜B,ÜÆ0[õõ~óbo¥>oÛFÄÅ1¸îæþГܨ×Gßõ;ÑǺñ^Ñ8ºå:úú6//•µÂl½ÎS»Ã+3y1h€ðJÓZXçý·^Ç×÷õÑwÃŽ:O³íº>ú6ýçV‡µÖÕ[&R FÆF‘$i;Ïuêå¤:Ž©bk¦\Æ’|³yæ±”ªX$—Š359ÎÌÌ$¢Ç‹Ør[*`‹EL1ZK#WâÈ¥/S #Wü²P¥E«&P«qÔòJ)R0J)L­¢”RÈIff'§™Š3Ÿ˜¤RŠáÈuæ²Vf~>ØU¯”çzXm=†¶a,#]:ýÓ J­BM¨5 Å\ÍaËþ*oûn‚=Yà¥Ë ‚ÚØ÷X¦òÃrŸônJí–¢Vá W2ð¾~ïºgÉßyŒp$ЦëMøÉë^)°뵘…U£e–í¯i{`8xšYÂÆ{då×lܪ츼–J¨Õj¨B•Ë'ŽòÔ-ßâ®}€{>ø>nz×oóøW?Í蹓dægãÐ|„±šŠf)„³ÜxÏßð»×ýý޿募û{¾ñõ/±å–›xèöÏrûMÏÇ>ñÞÿ‘äù,ùÞøâÖ÷ΟESö|G~ô2?¿‡mcÛ§6óàGþŸ~÷ïðûÿí7yñàNÏHØ{EæÜ´m/·Ý÷bÑ`ëÙ9þæ ·ó¶ßúþÍÛ~›ŸýÕßå?ýá_ðËïù ¿ó±Ïó—_¿ßÿ$ßzöUnÛ{Šg®Ì3]MçÚX^tÛcØ­ÿâÕÆtÛ'Ø­jf¬f'3xÓ41 £. äQ †ƒUž9žàÜlÙ¤ÀÖW‚üððw¼àî½ó_DTüËñZ6kÖzo·ø®ÔºQ1î…‰õº†mçp‡T6Ùsg¯ÝþÚ»ÆQ`ë&?Q‰ÅˆÅ&ë¿ßÀœµú‰àd{³™¾¾MlÝ}€»wsàè@mÚJÁó°D¿‡~rdˆ£»wpÃ"“á¿nKRYégS£ÇÐ sã"@­'Õ×wÆX~M±7ÖAPxÒ„Ãs ô³sû®k(Í%w±Ý7,>o­ûjOÆ;_kŒ›ûÚgŸÙ´udM`Ø~_ËáõKÉýæ%vH›Ûá÷˜Ý¸£G°ûÀQvn½~t7@ÈŽ9k±¯óæ£ËõV»å×7¹}ó"`Ùv][2/²}Ój¥¤}H{­çêÛBz½Àpµ¾Å×e¾×µmåžOK£Nžaàèn¶ÝÜ>'­smc°¹±QßÄØ´¬×âh½Wp÷šNGë1[úÓ‹LãÕÜK¤²©­Õ*ibqÕqXk]½%a¹ZæÂàà"˜éº–ŠkÊJ]ôÕ@m©„%°”2…Lœé‰1Ž=Æñlj†ç‘kuóy©ˆ%”°å†TD2~ h1€T ¡”ã¨å8R1‚T £”"¨¥(JyµG¯&PÊ $Ó3“Ì,Œ1elaŒáè£ £d ,©€#0k…%ư¹çÍ[š&zÀÐ7¸¯Pª‹»×‰²Í»*üÂÍq>ÿB‰Ë ’î´9^;`èu†Àp÷ GÈÞ|ˆpäÿÏÞ{‡·q^ißHvó&yw³q6›dߴͦg“(N6NoLw[¶ãD±e'¶cËq—»å.—Ør•‹,WK¶,S–E5ªPE6°€, €è ¦Ïü¾?’ ’ ,§|!|Ë$13x晣sÏ}Ÿû æk¬¿04K'rÅ&)eÃRÇ7n«(¦†…ýCšÎë¾Í}ô·ØiÙµ“–ÞÉ ¿þ5ç~ýëœyÒÿòÓO|”Go½ ÛEØÕÇ‘Ö6¶ö¹éÎÊHJ{ÿ.¼ñ|ù«?æÇ?úgŸùs®¸p!Üyk¸˜[®8“_v:??m§žù~2ÿlnYñkY'Éx”ÊM›YõÒ^xþYî¿á .9ùëüñ§_å’3~Ì×¾ø^ßVCçpŽú•:÷mìæŠû^æñ§_ ãîØ|Šþ†¯~øs¼ÿ_ÞÏ;ßþnÞö¶ãŸÞvÿü/ÿÁ;ß÷1þýã'ò‘/}—|÷ ~óðZvöˆ(Æcç€áxà4%²È)&à •†#ý jQÞîbõÁaVìróØŽ!žÝåaÕ7OlsqÏÆ>ž¯ö°rÇ¿ÚÇ£¯»hp¥2i’±0ÃÃÃþþÀ0^Ÿ‡LFFÓTR©™LYV0Œ|_DÓ0G=‹Ê†˜~Ì2¼rÛÛ˜eÔ ¾`¨k:}.ÍMsÀðo4$×ú¶|Œ€…ÉÀÐ> œTTTäc^ó.báÂ%8ÊBòi³Ù°UÌÏKÈ*V"äl㤅’£Pc˜(€Î l¶¥¸#y©ëҺȔ¦&Åc’ l½`¡ùëÆIã*.Ç\€’j¿ŸU6lKjÊ8¯ÉóXr¬R^¦·¸Ê5^úZoyÀÐ>#0‘å­,ÌÛ˜‘Ð¼ÂøçQ1! .*ÿ(p×-)ÍS_4¯ö•óóãÞ`ø¦\¯™Í€ÜÕËŠ¾_óX¸h"0/Î?à˜O½gË‹%±…ïʲb`(äAþh­àLß}gá|F>ó žÿx¶9oþSí×f53­«H`˜³¨;8¹){I™Ñx`h©"º”Bbãj õlœwζöìÚÍÞÝ»qôæ¡GËÆ1²IŒ\C΢ˆ ²q™p/b¬1ê!—ô‘‘¹ãy‰©˜FJPÓ!Ĥ—ÛA‹ÛŽ}ÈN«»…VwÍC-´ Ùñ{ɦ‚èÙj&LOoÏä:³D VÁ•T×õBa‘ù `šy9׈¬Ë4Ç _dY&™ˆ“N'0-§MžØŸáý×óËǃØÝ2²f2òßä&õc<㬲æb9ÛT»ŠÚºV+öãv»ó»˜e$À”‘ÜO—ÈMÑuÃ,N§˜EèÖ(eŒ‚æd mNsFþ÷aÕàeOˆÍ±îéܽø ÎûÙÏ8ûß✯}}æ3|ó??Àí‹.Äãh!ÔÓI­½…./.IF”‚îx‘‹®;…/Ìû 'ôcNýå/Ytîoyú¾kxñ‘Å\~áoøÎOæÛ?;ž²€ýú7<¸î|D͇ßàå—_ᥠXýôãÜ|ÑB~ýϱà{_äê³~ɾõ jÖã‰+´ù,vw›Ü³¾•Ëï^Í kÖ!e: XüôË|õ ßæä}/èS|âÿ}œ¼ÿ£üç ä=ÿò>þå'ð¶·½›·ØÞ†íÝáÔÛ—³·ßOB3ŠÑ÷±AÊLðË•o¤6ñXAŸ5‹˜fûQGÍc±Èû* ’E0­ÒÊÒ2˜fOwŒC})8ìpÄÙjòò!?+ª‡¸÷Õ~žªöò|Í0oèåîW¨ëKJƉ¼8=twwÓÖæÀÞÞF[—ƒx"ƒNÓïêcpÈM(%ÎÍŠ(Š:ZhÆÔ,àç=Õ}rÖæCÖ4÷Ýc¹&SŽ)zúÿë5€É¯3Û¢UcÆ:îÊI,n¥K+!»žìè: ¯/–‹jnÖ/[>*щxÐ{cç?Þ)5Ïþ/­®þê¥Øæ]ÇUÓÌÃ0,ñR n‰x¢ŒÚ3o@£)…v9LEkC!"#— zèéê §³%—BË¥Ñrit%¥H˜ŠŒ¡+hr–\Â_h/Ñ›—¦üdâCˆá^r)j&ˆš ‰1L1*Dî¢y¨™wK¶`/Å>_7ñø0ŠAÊ„éíé-ËèÂ4Ì<0Ôô‚”4ƒ’QI–L&ƒ˜2RBEQPQÌ’LÆH¥’IJ+¥xçb7ßy0L—_Aqæ4'›¡ŒkX?†aÊJ’'hŵ&&&¹žþ#]øýþ"æ´È־ܾbå07æ ‰½9M®_l¦c1æ¶ZÔ~¡X‹YŽ)ÉØ¤+«B\ûÚVξón*λ“N>•SuwŸwwþîwT|üS|õ£ÿÅ7/¡qëël?ÚÈ®ÁòLZbÛJn¾çæÍû9ÿýÙorÑÅWpç-·ñÜcòÌ#pÅeWòÓù øÆÏà[?]Ào]ÈËûnFÒS8{úYµf¯oÙÊÁ-¯°úæK¹òûó¸îWßâ?žÁÂSO戽OZ§Ùg°×©òèÆnzðy*7mÂÐu ¿¾öV>ñÁOrƾƙ_û6 ¾ÿ}ÎþÑ8ó{üô¿Æ7>óE>öÁOò¶·þ3¶÷}” W¼H“?JV7ß¼CÊ|ØP.0|3\IË}Ó1óE5³“Z-Œ“bšXÖØ SÏ—ÈŠŠ ÄEZe(.ãð î³£%LU{Œ}ÝI6ñ³¦6„×!›I“éëë§³«‹æ&;õÍv:{úI "ÑH{k3Í­­tt9qõ000Äð°ŸlNÄ24ÒÉ’˜C‘t]ç°Ä£5uìôFˆi9â©N¶yˆ'VÜÁ9ó¯âÄ/}›Çxë^â‰Çžà±ÇždÅSÏpÏ}pæ9—rڂ˹ÅÔ:žÄ0Dêí¬~ñvnÓ:ž¾||ùC\ö£¯rÓo~ÄõW]A§;ˆWPñ¤Mz•»jylå3ÔìÞ…fš¬ï pâOOåÄO~‘ó~øþø“ñ§_ü„›œÎ=8‹{ÿ°ÛþšKNþŸÿûxÇ'?ÇM•Õô%2¨å.±™Ø38¶ž3†7b3 RÎɦ,S±jLG™í O~& в@Ó@ÌY$²¡¬ÁP2GO0G,£¡k:š$“J¥‰Äc„Ãa†ƒ!¢‘¦¢…èÃ54„³Ï…£­ƒV{míDS)Ò©$޶vœÝx<|>Á`ˆX,A6›Å2-EE/°Éº–¯•4 ³¬ëa•3²)ì•[§8ÅñÄ\ŽƒuuDã±9`ø7Ù»py¡ÖL(ùÄ¿¢ô9VžRh"^¨ušà ê®ß\{ÞÂe8…|ò=NJj›ÏÒ¥‹ò5P.©ðþ˜ó缊Šñf'E&&«œÒ´À°xLù„7_+¨Eêòu#cX¸”e‹æa«(ª+œë¢â®iÏ«t”k‚ª¥ ÇIç–V9Gë¼ê–/š$µ-D¥ÂnEΓö‚´t½SB‹ØY:¼Ëçz{d¼DpÄdªVÓÎÝäñ9W-—À»&Hó ¢Tƒû<ûU1ÌÕsþÒʱ6ŽõEס‚%KæÃSÆÜýl%ÆÜ5—Õ'þ×kòõ˜dò4n>l,Zº”ù…95Ÿ©›ƒŠ%#sPÂywÞbê&Ê4gÙt„U/·=öóŸ¼~ì,©(óü¥8ÓσUƺú‡†õ x‡½äŠí½§H’FC]“14T ML¢¤L%›@“R(RU14S— c>t5‡©+…Ð1t EL"&ÄÄ r:ˆ*ä›ÜÙF&F2>LÇ #M4ºši´Óåi§¸¨ŸT‹– £ QzzûËzjïåeŒÖjJ¿×áÇٳwÕÕ;©o¬gÿ¾:ªwïÄnoeOÍ^víÞE‡££~nÚ0ÌÛ¯ôò³„“f¡±½Équ=æ&™Já ®©3¸Φ檜„|¶ìÀlËlö›ð2€ØE‰-ƒÃ‡º†X]YÍò§^ ©þ09ÝdùÁvþ÷'sVŹbþ©œüµ“8éÓŸ¦bÞùý¿Ï’3OaÑÉ?á×ß:‰_ýÏçùÒOOáñÚF¢TD¹r|LhÞHíàL ÕzƒŸ?‹Zµqî¹³b­ñêçI½EÍчFÙ˜c4Íi&·àÚ+J9„lIÉ)BÁ nÏ0ƒÞaÒX(Hý¡:êÐÝÕEk[+ö–Vºº{Ífñû<¸Ü²¢D àch`X4F.—+jW1¡aÍøð¨$@œ‰¤´ÌºíLË"•N³¿ö9Y:~KzÐý†D"‘ !Lp’ ‘¦`Ú,4A˜`·?‘ÁX:Ùðe–}…DAŽëyÍf¬#ç(•zOH$SÎÏÿ‰©æ¾`42 ð|ãs7ÒJ!Qò¼§oÉÏÊGÐfwÝ%IûÛº^#ó¡•i)oØ”ÇrËi¥)¿+Ç3Žçù—¼¦SÌÃ\ƒû))Gg}.×xš)’£`¨i9T-‡¡J²8¦’›uUBW•[¨Žþ]Q2(b9%— Æó@0 ãî<0Œ 'ýyçÓL Cˆ` 1r© ^_7No'ÁÐ É„—œBÍF1Ä8F¡•†’Ž”†”¾&º6Þ•T3d²YRBšX,–T’h1{£²Ác‘¾Ià1|¦¡ôôôàñ“ÉŠ“¶±¬1À5!f˜äL]׈§Ô÷½FuÃcì±?Άš¥,_¼p)÷®üwöwts×ʸã¹õܹú5nr O>»šžn¢ºÆò=Mœ}ƹ\þ«_pÓ‚ÓYtòYð­“øõ×Nâ÷ßû—þôÇüpÞ9ñ£åûŸú,gýéj^ë"©èÇÿzÎôa&@oÍr­XÇiìå°–3ŽÙšÜ<Ó,1„ÑÍÆ3kÆhU±9tkà k†sŸÌfZFÞDKQt,$1G(è§¿·÷›Îî®|ÛþB¡±XŒ{‡š‰'</ö¦fZZZévö0ìó‰ä™Êh4Š $“I±8Y!ƒiå±ÊV5ÊåÖNØ^×tB‘0ûkŒµ®™†sQ¶)N ìÉâ*÷ÜX[hÔ-_Lż<ûV—˜[[;ìý¼q<ÖGשúÎÅÿŸaáý.:º: G#3&ZÆ`¨ëyW  ]ES54MÃ0T CÁ2,-‡!¥Ñ³q¤tlj8o0$BL !&ÉDúÉÆòm+âÑ~r /ªΛÜd¢™F:–ow‘ ¢ Q,!Ž‘‰cfbB¬`†FIGpN0Ÿ™ œX¦5 ®¤Å} Ç]säçüþš*s°#‹¢’V¡«Â_Ž;Åp$B0ÆIâ8†¤{6Ò½rk¼fûù”9öiŽ—J¥Ø¶­Šê=54·´ÓÓÓO¯³€ÏO:FÎIùD}œÛkA¶jê(ºHZ‘‘ƒ$¤AÜñ&º½{hìÝľÖUTî€ç^¿™‡V]ÄÿŽ»×œL(Ó†iÜ~óÍ|ò£æ?ÿåüà3äÜï}šs~ð)þð£/p˹¿bŲûYòè}œwëõœõüî²Ë¸øškxîùg‰‡ƒtk:÷¬ßÂÕ§Å-§Î=çþžûÎYÀÝ NçÎ_ÿš;ÎXÀu§œÊï¿ÿ=ÎùÚIüîëßàÒÛÿLÍpAŸBçûfÔ‹¼ô®­c©y,³_)W\˲HJÐ7ñ¥5­Ô‡E=ÁZª”äk¬Æx¤>Ö2 äøšïik|Í"¹ya¬ÙlI’I$“DãqÒEÑ‘%·ÇÛãGÌjÄb1º;»hnnÁno¥­­¶¶v:::p:tvvÒÝÝMwg=ÝN†††…Cds94Ýœþ@¹òÞ™Öæ„ë¡( ƒî!ŽÔ=®ëf.‰ùIÞÝÕ,¬˜Ïâå5oª„ìm¬–eáªZJEÅBVÕùçÖÖßȘ´H=Ë–¬Ä%•f­kV.ý‡½^sŒ!à úimk3%™&áÎK-54UÂP•|OCMše ]FWshr9—Dˆ©a2±A²ÑÄp¹HÞ\&Ò DŒ»ÉEúÈFûÈ&Üy s‘‰ !§èÙ8Z&V¨5Œ¡¥#ÙȨÎH£*DP„üߥtlVÀÐÐQóYïJZœÚMt•åñx„D2‘ï+6ú¾>^rfÍ¢Åqz©ºN0&–íð÷†XÅc‘ ƒtŒ¯x<ΡCµ>pˆ#°¿¦–Ý»ö±ß~öTWs`×êëq ¹Ñ4=Ÿg¶(È'¾ºj e3X†ŠnÈÈzšœ%ózŽÛéñ Í½UЋçŸ~šSúS¾üÉOñå}o~ê?ùæÇßËÏæ}'ý7¿üÄÇ8ûçßâ—g|ïŸ<¯}÷œ{î|^~q5b6Ë‘´Âo½—E?þ7Ÿ¹;~{6wüz>·žþ+n=í n›ÿ[®ûÅ\õ³_pÇÏÂ?ý)7>ñ,Á89Ã:þ í߈TôxÃc‘‘ÂìT /ÍwÌàš g¯N³èÕ4Þ/ò|s–×»%öÉ´‡4qÉ"ß%d“>r­Fük&Ý7ŠåÀfÉCNtMùwdD._ü¾®)¨š†eªÈ$q‚Á áp˜p8ŒÏçÃ릧§®®.ˆs‘ºÈDûÉ…s‘õ‘~Ž’‰»óý C}y`BLzÈFÈÄú4!‚ž‰¡g¨™(j&Š&„Q„(j6*¦Ð¤4º, )YtEB•Dºz]eÕ¬Œ3Ÿ)Ôª2E¢jXÃ|b%+ ‰dŠTZ()Õ³þŠÅ†éŒ@ $™J•—(—Ë/Öéx4[Ÿ¥<Õ2-TUCÊId³"Y!K*‘$ìâwûèqváöcèF¾ÌÓ•ššLhØMKËQúúéíë¡·»‹!·¯o˜@(D"™BÕÔ±¢E3Ï2+²„HD“ø†ýôõöaojbÿ¾Ýl~õV<øß~'7]})g/ü5¿:íçÜ~ç­Ô×EÒ,6ö…ùÌÙâ“ó¾Êù§žÊ?û!çV|ó¾õþøÕorÁ—OâœyÿË9_ÿ&×}çüñÔ_óÐÖ ¤%4k¦Iù+¬Ñ7[BZŽº9é„q&Dƒ5v‘÷. b»0Àû® òŽÅAÞ~uw]â½W‡øða>y{„/Ýå»E9ý…翜↪ ÷íÏòlCŽÊN…C*Í~•î°†;eΚdÍ´Êœ›)šÑ´Õ°¬kù¦ìqXL Ã@U5t]Ï$!&‰‰FsF wÖ©ÍìH‹˜Ïâ÷ÒÉ4 M øƒþ9`8s1s1sÀðX%M×ihjÄ5àšº_U04 MÍ¢©"º&¡i2º*’K‡È„È…û£ýdbùÈÆF€¡ 1:PöçÙÂX?ÉP/a_7¡ánüî.†]m¤Ãù¶bÒ$éCŒ ¢¦BšJ&†*ÆÑsIÔ\*o€£Jy³MB×d4UESdºË†¦iN` §†#M&Ì À0]Z=`Eñƒd²Ù9`XÆ8,EFUÕñÈ~TÆf’ø|CtvuÑÐÐ@ý¡::ĺÔ:LK{‰‘µ0òP…ü¾‰Dœ` @2™BÕt4Ã@Q²bŽd*E0app––6:LGGñxۨó'¸eË>®xr·<õ<7Þ÷W-YÊ¥—ßÀ¢³.âü_ýŽßVü’_ÿGœ÷í¯sÖoÎaåaQYÃd–ü[që”r€¡Á´ÉûEÞ±8È[® pÖú4?y,Æ;¯óß·Gøß{¢|öÖ'\ÂveÛb?ï¸6È»®òþë‚|ìæŸ¿+ÊIÄùéS ~³&Á¢)nÜ–aÙþ«›rlu*q«8‚:}1¿`Ë™ˆŠ…f•xòTêoæ À ÛÌfQGÃ0F{#–úþ½ÙÀÐ4Mb±8uG‘ÒsÀp.æb.æb.æ€á±&IÐdo¦¯¯¿ÀŽL#ÂBÓ$d)…¦d04½à4*¥ˆ‘~²áÞ¼l4>P`]d⮼$4î•”Šñüïao7ýÝÍtw4ÐÙÖ€£í±@7b|€lr\|ˆlÔE66„”¢dãèb%—gu%‡¡æ `0ßJC×$t]FUTE¢wÄ•flp_\c¨ä2hŠ”—Uiªª¢ª*š¦¢**ª¦¢ª2Š"“EâÉÉÀЂ雾¿É/0ˆ?,Ý’d¦žtÇõ´D²õ¦Y¶ÎÔmFÍ©UZª7Aåg:ª"1ì àtãpÑÙÙNCS=µ‡ŽÐØâ OMr›Ô5…Þž.êëÓítÄI§2d2R.‡"É£ŒŒ¦(²†¦ê˜F¾Î1*ét G‡#T÷y¨lq²ú@3Oî¨åÏk7sÛòÕ\yÇÃ\tõ-\øÇ‹9÷ÚÛX×>@F+f=ß@ç•’«ÄôM”ëÃWF ĘÉM;rüÓeAÞvE€ËÄÑÃûh¨¯ÅÞx˜À99H6éBN “K #e‚¨R"_Ǩˆèª„¡åòŸ¯Œ0…2ºš7¾Ñµª,#çz{{g®{a²ùŒ’Ë’NÆ …C‚A<ÃÃ~¼Ã~<Þ!<ü~CCCø}bñ8i!5]AÏ_…6ôz½øƒU¹ÆðXÀàL6亪’Ö#ëÚ2Ç\^ßÃ4“ûáTû3F”`^ƽo±LE ·a€¬JB–h4I4–DT”IãÒ”,Žv;5û÷P³¿†CuG¨«m ©¡‰.G}}}üR© ºnL@0EÀT7- H!ús:íñ,uƒa^ouñÜ~;Þw”}à Ã<¶Ò7›-<žÊécXn ä4 EÒ-Z|9íâï¼ÊÏÒ:•#]9Î_—bk§B—[aÝ~³ž‰óþ%!Þ}SˆwÞeþ )~þd„OÞáß–„yÛaÞrmÛU…¸$È[/öc»Ä‡íÊaÞu]ˆÜâ¿ïsâ}Q¾»<Îi/$YT™âŽ=+êslêPØ7`Ò0Œ›ÄrÅBÔ,d=o”cŒ8(O î­Éާ#®7Åߕ鶋Ãñt,m);á³r9 ×Ãá£GÆãÙ9`8s1s1sÀpö¯î'Ý=Ýãe8#ÉÁöDW³HiR:Pcù&õ†" &½¤£ƒùZÂX?bl ÀæA¢u!&¼HI?Z:D.&èë£Õ~ú#{hiªÅÞX‹»§ 3í&Ë7·7å –¦b†>ÒQE×%TUɳ–†‚©Šr=—FË¥Ñå4ª†Ì\c¨êc} u%‡{ÀEKk mŽvvíÚECC;vì`KU[ª¶ÐÐÜ„½µ…~W?‘H„TqßßÂË"o' aæx–d&ùVs6.Y´Àqa5K$XXšA2'à&•PTQÌ’N'Éd³¨ªU¼ö k<Û:ã5#1îœÍñIï¸5ÏxóŽÑvsVI«L‰­ªjD#|{„º&Ä?]⟇xëÕ!Þr}Ûµl×±-a»"À[ÿäãŸ.ȇíb¶«‚¼ûº ¹5ÄîòÍG¢üê¹$x9Í’̰¦%ÇÎ^…z¯N\#œƒü³s¬§¢9Þ½tœ“©5c¥ÍlÊyø`•ùþtN²…{L*¦·¿¦–æãûœKbæb.Ž©±º$IhÚßÛØµü¸ç®á\ü£ÃÁ¡!ºœ]DcQ&=r`‡®k9rébÒ‡"g0Œ –Cüd¢ó˜hÞ\&Ë×f#CÈ ƈ«¨Fã$B^:Úšhh8DÓ³»×)¸‘Òƒh¹–)£i2¢˜A*ô44 S—ÐU]Î eâä’~ĸ1^Ÿ™(j*BO_oY7Ó0Ñ1ó]Î ééíÅÑÙA}}=ÍÍÍÔ××S__O]]v»ŸÏG2™$™LþÍCUÕp»ÝÄ¢±²dre<ÓÔ*Û¨wþÉ0 C ô»öxP0„ÇífØã% ÇÉæDdY!N#)ÊhŽ>ÚCÒ´Ê“/N.Š"o&Ãì­ocä`³¸>m"³XÆüêº,©H9…T"‰8€«o€––6ÚÚÚˆF£ù:Çqî‘&!AÝ¡} öàv244@ àCR(rSצ–ÿͦQü±Ã7ƒ<ÖúÒr$ŽS³ô½ˆ‹°µSã[$±]Ķ(ÄžJÈYt ©,Û•åîê4¯·Jt{ti®“Û6§yºV ³ð‡4n­Lñµ£œøpŒŸ¯Œñåe1>{o‚¿=Ì;nˆa[Ævqw\â³÷Ç8ñ(ï[ÆvmÛal×…±]Âö§o½À‡í~Þ²ÈÏ;® òžÂ|äö('ÞãO&ùÍÚ8‹«Ú†5rš™o©Sä´[V³ùr羜ïb9@ÑšYrj‘X”ŽîNºº»;#=—Äü5C`Õ|óW:J¾ï\¿Ûü•½üŽwøë«¨q ox_çª…Øæ¯:ns˜pÖ°ta6›m4æ/Z†=¢·s³®»äªf~aÌóþ¢ÍÝêÖWz æ×üÂUŽãxü$w]º™.=Šç¯Ô%W'',؃=ûF±™ÓžóLz/ÒÔÈ 6³dorOùV(¢ËÙ?àŸ"ñcN CA΄n1‚©çÛ뚊’KäÔÌfò†3¶0Üœ `Ii,%zt , ËÔÐTQÈ ²B€¡^;NG3Îîv<ž!Z[[9X[G¯³,K1¤4ŠCÏÆÈ%†ÉDúÉ„{#ýänt!<–áJª㥤†¦`Y†ibæ( )þò –ÿa&“ÁãñH$&?ÕŸÎ6~¦äºP×P'ÓV)-)ȲB*•"%¤É) ±h ¿Ï×ëÅívãêëg8@Ìdñy‡ñx=C!±8ñh”T*™¯%šVîj•¨­2'Ìär*sLò;ðZãe¤ê’‰²Å¤¶e~•GÁo  ©j9<Þú\=ì;°êêjª«w²³zÛ«wP½ïƒ^?¦‘g\G?Òœ 0¢üž’³•sÎFê{¼e¤V@„éו;©ñÌQ‘OÜÇveÛUÃ|ðÞ–¹øÕ$'?áÒ×’¼|T¤¶Cb ¨“Hìjϰɞ£Ç£QmùÉCQ¾°4ÆÕ›³léP¨í“y­Uâî©I³´:ËÖ§øÙ³InÜ!òTÈù«¼ýÊ ¶«ÂØ. b»$Ì ·EùÒƒ >rG”½6È[®òçk¯ðc»ÔmQÛ…AÞyq˜«^KáNEÀgIx9†<Sß[˜†¹/GÒË÷«¢}­ímx†½sŒáÿÏ€áÊ ó–ÛK¾ïXYmÞ? 0”ì̳ÙXfÞð¾ù9\~\æPp¬*€Áù¬¬¬Án·S½~ól6l¶Å8¥ãsþoÖuw¬œÍ¶ˆªúzîÄ_89–c³ÍÃ.ͼæéºt´r‚͜°`34eÿâëUèiå„Ûß0´,ƒªû«8aÁfV÷ÈcÏ8gÁfN¸´™Ècx|¥†‰tŠ.gw¾—¡5M~meê(Ùbl)ÀÔL=/çT•,ÙØ` EúÈDzÉDz¢½q7Ɉ‡H`˜d4B$ ·ÇIWW]]8ÚÚÚhjjÆ7ì¡îà>jjj¨Þ¹Ý»w²gÏ.šë x1å4Z&†"ÄÑ…(¦CNù‹Ú`ô!&P ÀÐÙÓ73²Æ€áX»Š±÷3%«#À0NÿåP_lJ<Çï÷#ÂôIÚLÒÀ™GT˜áò;z˜|“ ‚ é–n–”¬š®jH²ŒˆÇã‚€&«¼Ãx‡dpp‚¡¢”;†9}"oè:OGW7n—`8N"‘&#HH’ަY†5¹†i"Æ3'Ô–j,nMÇ¢#ËUâZºJ*¢ß5ˆ×ëÃå ¥µ…#õõ8x„Þ!/ŠQì¬Äs-¾‘úÅ™ÀÇùXÓ´2™ÎŒ¥'¢sïÞo¿*„íâ ¶›ü¼åº ¸-Ê{nóÞ;£|vY’_<›æÒJë%^¨Íp÷Ž wU§ØÑ©±­Iääea>|cˆË¶ˆtD-t}=~¡°Á¡A… ­[:eš<{œ2—lLñÕi.}Mà‡EøÉ îÙžâΪ4ç­MòÙ»"¼ãŠ ¶‹ByÖ±PÇø¶ÅAÎ%+®¨|sú5<[F¯Ü‡ÌPëZ¨YÖ–ÅÛMSsÑhtþ]›Žú:jjj¨«wÐÆKùÜözª«kpùݬœo£¢(IüNjª«©wº©_9¿4@Ð\N'‘q@DÂít‘òÌ•–pQWSMuu®ˆ4–¤GÜ8Ý‘qàÔítåǨ%p¹ü$üNjªkpøK ·ÓNMM 5uõ“ŽíŽ$H¸ÔTWSgw!Ž9lAðS_SCM¿0+ç¨džÍÆ’J;‘„4zÎŽú:ª«k¨wø§fô&ìëXY­b%þ„›ºêjjê&^‹ˆËNÍï…›%è˜%çzl6‹*]ã®c}M 555Øþ1éæs<ýupÖ×Q]]=þÜ Ç’¤öšjªkÆ_ëqcLø©^VͶ‡?6Å8¦[7îˆgMþÚj–…É»¦Þ9•pT-Áf›Çz» AËÊåõø]öüõ,žŸéÎw*@µt3'Ü|”»nÞÌ ×tŽ­9ËBŠ%ñÄr$|!jj]ÔuÄ‹Öd—[@È Ô¢¦)€?;þØW€š#CÔuD§\y`XM}(‹ýˆ+yìónaܘ´¬€Ó-L–óÊ!.^°™Â3 7s‚*ªC…}Sqꎸ¨®õàŠiãÎÓé+Å2W|šõ<'%%'It÷:qMl\ êêéî¹…PÐË@_;ýÝí õ´ãê$@L…P3Q!‚ž gc(B#CBˆ‰!2ñ„˜‹L|%DIGèéé/KÞ4®ÆPUg†EÇe™D"ñ—†e$Ç~¿Ÿp8L.—+¿†g6€`4‘¶0à ²+v<ÿy”==˜‚„•P÷w mjÀè–vNNÄ ÓeËTM##fIg‰±xŒtF(j%QN¸F¹œDåk[9ïâó¹íî»xzÕ³¼¼áe6W½Êî½Õ446âèèdpÈC2%ä¯&%*óu’“Ws‚ôpB ¢U8)WÊWÄš–…®ëè…+ª¢’ËåH'ÓqtóÔhΦFðX¤¢)`X†”|ʹžP+̘llWøöÃQ>xCˆn óö«"¼åR?o¹4Ä[/ òÏ—yÇ•!Þu]˜ÜácwFø¯{ã|á¿^äÖ-)¾½,Â{osʪ4/4Ëlk“è i¼zTâÕv…hF£Û«á–iè˱µEfs«Ê®.™š>wDcÅž7lNñÊ™.Jc¿Â=[3œñtŠ“W$ùì=QÞvSÛ5ÞySˆ;w‹øÓc_kä‰ÖôàŽ2ÿ>MLªÏ©Ù}ßM×éé©iò=nþÍ…äª*0Hű—faY V-œøžù+óÀÐUµdÒ{%%…B=ól6*Š$¨‰úeØl6*Ýîêe“޳´*ZìËlØlËHL8Ö²ú‚}ùøýUM¤~–ÏŸ<þUŽ<;g_^1yü W‘°¬ÉǶٰÙ*¨ñk“XÔå󯶩XnÇŠÔ³h⾋ÖÃ4û:V.œü¹ó–á/€–šeó'¼¿ˆúH©ëZ™ŸÇºHɺ=—Ã_ÈŸ‹cÕ¢IŸY±¬."JÌñ´×]p°dÞø÷æ-®D˜rNmTº&ƒÃñצ‚}u“Ç1íº)qmç-\8~­/©)Á®·ÏJG€U%ÖÐüåië4ç[ò;—æ‡ 6su­@¤é(',ØLUÈ;ïµÛGÙÄѸّ_“Í“ß[°šeåxiéÄ÷¾Ç¥€áÄm«© økk9aÁf*}ccª¾3',h,É&Zóc:gSˆHa|WïcYžÚÆIŸsWá=ûsùcŽ~'²Ãœ¸`3´ææ€á”µN†A_?.—«,y•&¥ãƒd#}ȹ†&ç夺„š‹!gÂÈÙ8ª, Í›šŽ³»›ýµhhn¤·¯¡¡!Üî!|~/ñx˜œ' !¥ÃñA„è@¡Áýb܃šÜGÑ2a!Œ– £fc(Ù0¹Ä0ÙØ`Áìf9@M…è:FóIœ §IšF€áßš”tpph4Š,ÉÓËË•–j»aZK#½v”Ì’—I_W‰²¯K1|1rÏÖ \»žìòÝèÝü.±4Æ@SPóûÜ­R¬€ib&†a éù¾†iÎÀnX£©D†‡[Η¾ñU|l%µõû¨;º—šƒ;ظyÏ®zšÖ<Ï kžçÙ5/°yëëìÙ¿—öÎ>4YÇ4 LÍÂ2Æf¦nä˜jqYfy.Žw5gÁÈ•ø=oF3Y~gAZe&öÇÊ(2‹ý—”ô8±ì¥ûØEÑtð¥L69dîÛ+sí¶,¿Qà'O%8éÁÿso”ßæý7y×5!þùÊ o¿,Ì?_à—‡xÏ5a>rs˜[âŸo ñá{£|ë‰?|2ÊE¯¦øþò(¿]—¡i(Ǧ#/ÖçØÜ*±§SaO§LS¢ePGW,Žtåx±1Ëk 2GûT6Ûe6¶ÊT÷jÜW惷GyËå!Þ}KŒg$bY½ $¸Édã¥rXárÀÛl8•ÓÇpÂï²"Óíì¦ÙnÏ›kÏ:×9`xÜ=*æ [lùÄx¹]À_Ëjò,ˆ¿œÏ_nÇ’,´Ù˜·¤*Ÿ'ì,žgÃVQJR¨Q½Ä†Í¶´p4ªÙ°U¬Bìù:²Eë ‰g‚Ê%óò ,RB¦(å·_nO ’øŠ¥Uø#n܉ñ M°/-ÍÅ’¢zµ¶¼p~‘¹/®v{IUž=,¶Ù°-\?ŽM«…1ž›m!uþ<àq×äDZ¸Ê=ùŒÛ·hLuùmý…}W:õË ×£pÉ™%‹ª&±9#ã¯*²RÂÛíÆï÷ã÷û‰–ä Â–gÄF¶«[:Û¼åy02qŽ­Ó\wš%óò`5QXOö¼œuI¿èXÕù}#õ,´g Ç¬¶ä8¼3¬›ü<®¬÷cY5K+ ×Ú]†NbSÇÀpEáVηa›·{Bò$ª–Ø rßéÏ·Ô9¹vî˳uY K q΂Íüð¹á1ùì†=œ°`3ɯÙHkÄ]]›t?|´7¿³!®^°™nîD’Cœ¶`3çìÌ×õiî^NX°™§‹ež€áiϹò×!È3K{Ñ´h~Lk£¬ài 6sñÎø” hõ£UE ¶À€fœ¶`3',í,\Ÿ•Våḻa;'œß:ö½–óÛ?Ö1 §ý7y`p€¾þ>4M›‘UÒe\ÒC&Ò‡”‰ahÒ(0ÔU]Ñ”š&@cÞ &1ìó I¥’d3I²BQˆ¢d#¨B%éGN #¥†CˆñÄø ¹„%DOÇ02q´L$ob“‰¢ˆùRÈ17Ùˆ 1Ú”ô 'ƒt÷ö”ÅJX†•Úd)éT6è#׿¯ gj nËå"£©Úì껦:®99‘³ s(HæÉd®ZCúêèû!£ „Wì!}õz„›6¡TÚÑz(u]È/FnÂŽcFRÉ †(cæ,EY/c.^’3‚Ø‹©[ƒn»ç.*N>…ƒG„bA‚a/N[¶naÕªUl|u#k_^ÏÅW]ÉyŸÏ×^ÂúW6‘E”´F¬_ÀÝfØ%íÎ!Ç,Ô¸‰’6Ð$SôÄ8žmšUßðrjÿÊE—N¨­ÑÿŽ cÇ¿álŸõ&aÒœ›Ph’5’‚F mÐ6hòiìëSy¹Mâñ:‘»v‹\_%pÁËiN>Å÷Kpâý1>qg„Þå=׆x×5!þϵ!Þru¾á¿]ä„ë‚|ì¶'Üâ£wG¹tcŠsV§øÍê×lxþÄ EîÝ™f“]&WÙÕ*±±%Çšƒ9jº4ukÔ÷k8ÃQÁdOk–ÏßÃvIˆ-±¹C"-¹–ÀZ3Kmg’¡S&H¤¨—i¹Æ6S(2Ù,]´µ·½)ëp̷ʈßËi§®º’åK ÀĞȳ.…Ä|´Æp^>‘Ï'êó¨)b«\ëNY7’دrjX’ ›%ÕþQ©º˜õJÔ²‚åÃõ.iêzªˆ—ËI}] ëW.¥bØ–¬çË3xó–՗ߊÑë1›mË*«¨ª¬¤ªº* ç-›Ä攆õK'0[€¬ Ün7{=Õ•«XTð'Îñô×=/»´ÙSY]EeeÕU+óÀstNó,ñˆlsU™5«“Æ1Ëu“¯W‚’seü S­Õ ìÂXaÅò1¶Û]µ¸p¬éÏwò9eyàü<“g÷%ñøB…ß÷áÔF€ávN8¿¹hMÊ21b"/GÍDúÈÆ\äâCÈ)j:‚^†z¶ðs6Š*Æ‘… ¹„—l´ŸL¸—L´Ÿ\ÂGOoßdÙá4ÀP×tUE.˜Ïü½CÓ0éëë#“ÉŒkUñ†€a‰ÄÐ2 ÌP©¦ ñ®WH_¾­Ù9 ­Õ¸r?âc{É=²ñ¾¤ï©B|~?â£;ŸÚKnÍAämͨ­(=^4ûZ—ýh/z—=ÂðÄ0C)ÌŒ<¾lNQTº{û¹öÖ[¸úÆÛ‘¤|rïõ…Ù·ÿ(/<·ž—_|…¦;í]}œ»èr>ùùÏpâ×?Éã+'›H ähÙ<ÀkÖ°yE5Ö6àØ>ˆ§.Š¿I Ø*éÈïI»¤ˆ‰’¶Ðå`hÍRFr=±ŽÑœn;«(å¯wkÒÏ™¬B§+ÁáŽ(]ž ®@š¾@†pJ%%ê$rAÁ`(¡ÓЩÒØé”y©Mä‰Ã2wìÌqù&³×¦øÉŠ8ßx(ÆÿÜåã·…ùàaN¸&È¿\柮ð¯W‡y÷5aÞuM€Ýæ»ÆùÞC1>uw˜S_Hq玼˜à²×þô²ÀcD^iȱ·S¡Õ«ŠTÖ |ê®(¶KB|ñ¡8à ²n•X+o204ß`O$ptvâì홆1^Ž7…‹Æ€¡sÕÂñ2NK`UÅ0\ŽÍ6¿`ÐQlÚ1•qŠ0¹ë–Œî+9Wå“ðbæFrŒ‚¥I@IJù~üŠCóדtV,\8ÆxŽ‚…%E ªøüòÇ.f”ò€`þd0QÞ,ÉÉ"›ÅU®ñn®S0cÅûÎ GX°ŠŠŠ|Ì«`þÂE,\¸‡0±Ž0Ï\-«OL` ýD"N–Î@å’"ÙeÅü¼Ür0›ãi¯»æ•UŽŽ±b> .di¥³Äõ]åñ}g»n&þ>ü• íä¦Ô'¦?ßI2Uwg g>–Ô EíPÑš”Y}ižÁ© t>ÏÞÚQR óÀÒêq2ÓJ—<¥ùL1سo¨æ„ÕØ³cŽ£/¹*o.0‰ÓÞGdV_³™.uŒÎ¯ärä näñrüM†Ù?œ†3Ÿß‡³Ç™/à·JCkLNe™†*b(t5‡ªåÐU S•±T M•ÑT¥Àʪˆ®¤‘s1¤tˆ\ÊC6>@6žw0G"Rhus!&ÉÅÝ`ØO66@.áEIѳ…–ÙÚˆ´TŒ£a¤¤—L¬!ÚK66€œ ÒÛÛ?¾nŠù°L u„1TU”\9—E’$r¹ÙlQÉf³£?D&“ùÛ¨1,:UQq se¼²Œ!J&p&–ª¡§²È[‘yh;ú@ T µ¡éùƒÈ›‘_i {Ï6¾@vE ÊËGÈý¹ ẗÈ>¼eO+Ê6¤õµH›“{|'òÆ#È{:^oBÛß…á c©zÙÒ´œ$ÑÐÜ•7ÞÀÒû$™ ‡SìÙ{˜Ç—?Í-7ÜÆŠGž¤éh3Hško¾‡þ×GùòWÿ›õÖ’ËåuÔ¿Ò͆'¶ðÂSkYyï 2ã¾ÓC­Úç-Z‰ÓŸÀ52ç +K2: ûÊÑvË×WcwØ©©\ÉÂy#&B¤˜Z´ªAJŒž§Í¶§T @MÝóà߯’õõDŠÖÌXáñ†3­›7 2Õ¥ëkp ÉIí*Fö­¦?߉rËslæÄ“ûþ97í)0tÚháiϹð§’T®Ø^ƒÚ˜iÌ¥‡°‡²8äåš?\;ŒæsöëÅ“ÊáépòÛ9mShjó™óaåpLbNÛ(ª…¬-°Žµ% l&篷#×ö®y™lµK âöpõùcÇsVj)kCøÝ–œ¿y–óJ$t9»éëwMýÝkâm&º*c2†–ÃÐTT5ÏjŠˆœ!ƽ£f0B´ŸLÌE6žÿf Æcd㮃Xhss!&Ýd£d£…íãƒH /Z:œg Ó!„–‰æ[WdãhÙ$9!I*#øf†ÅŒaÁ|F7 tEÂ34ÀÑúzŽÖåàÁƒ444°k×.¶oßN}}= ¡¡®®.|>ß_ß|Æ*ûq¼~Š¢”ÏYe€Ekù]p˜–¥êX¢Ž.¨èáº;‚é‹#?¿á¾-(;(›šÈ>¼ôëîxáá­/l#WÕŠî‹ >SMòªµ$®\G®²+£”=©tšªÕ,8ç7,ºø<î¾ã6î»çnî»ûN–,¾†óÏþ=œw)÷ß÷$[·`É’%|î³ÿÅoÎúMŽF4U£{¿›§ï\ǯOû?;õg,<çN?}>?úIK—ÞF[w;ñD‚Žî^\¿†Ë/¸‚kϾƒkº0-—¿‘[îÿ]³€¥\ɲ'®bù³W³fã-lÞ¹Œš#ÏÒìx¾ÁÂm¤ÓýhzËÒói™ã: P‚i´&6,Ç(¿Æ8EÀдÆ7¹3'0”SOþ%Y¿rŒ“¦QL/“œ`nd™˜&H²I4©àghHrÄcs‡‡ª‡X{ÀË¡®$uŽ»íAÖÕ óøëƒ<°¹çvºØÚàpw×iì3ÍÑ7œÁÞ— Ç' Ê fÁ•W7,22x“íºAJ‡ÂÓ YîØ“áOSœñ|Œï>ždÞ}>v[„÷Þáÿ.ñþäãmyù§‹ü¼õŠoYäׄ¹ìõI©„„Ó(E•kVT.hŸÊ¥tÑ0M†††èêê"™LW@8 ßœpMpv\´t)ómcMì]¤¦¶¢÷4]¾­ðþÂEó¦0Ÿ)’TŽ˜ÝŒ“|Ö³¤¢Ø…s5î$¹XVä 9ñ¢Q`™—Οj‘ñã³-\ʲEó°UäY¿R Ëª]㩊ŠycRÔ%•%œEóçUµ¸¢È5AÕÒ…ãæmi•sÊ9)Þ×±rþø9,Ô Žiw]¾†mÌisNaêëqT³dþ¼ñçY±U5ΘLŒ—’Úæ³té"l¶yTº¤’s<ýu¨^6~^¯¬C•Î WÍŸŽÍEéqL½n&ΣsÕÂÀpе“s•]VïeeÅØšÛw¤^qêóß»0âV—vZ±¡<ˆÛ†Åñ@m| ûá¥cf/?|ÔYX“öªCãö;q©¿Vʱ֑ß÷š±ãœ¶Â9~mÇ\ù¿¯.ã>"óÒÍ›9áǸï¾fÉ¥Eçrþ>j|QŽóÀ5cïvÿ¾)Írþ±á„CfÅ,]N'펎%^`š¦,¢I)4)…ªd󌡮`hJ&J6ìB ÷"EûÉÅÉÄúòàoDFï'ëGŒºc…è‚bÒDŒ¶‹"ƽÈé`¡±}]J Ë) %‹¥åÀT‰Çc´··±cÇ6vìØ1&%!y1 s\» Uɤ’‚AÜ^ýýýôõõöÓëïïg`` ß[/üë6¸/‘8y¼Ã„"‘¼¡P9®åÖ1‹$±„ì,ÌD=’Ó²èn”­vä­­Hµ]äjšPëû!%ýÀ+¤/|šÔ¢µH[°rZÙIk,ž`ý†\páYüéÂ…üaáœ~ÚiœvÊ|¾ÿýŸòõoþ€Ÿÿb>^x 7ßt w>?øîW¹äÊ‹qyú12M›:xü–g8íÔÓùñÏ~̵WßȃËâºëodù#ÑÝÙGN̲s×V.»ú"~ôÝsõY·àÚÀ05Z{·qÉ pÚ9WsÑe÷qö¢8ã¼Ë9ûâK¹èêKùÓõ‹¸úÖ‹Xúð%<òÜm<µî¶ï{_Љ¬äÈf4Âa‰h\AÎMW7qÒñ¬a‰ZD«ŒzFËœ"y7)í z¬,Þlاr%Ð31XÓÕÏ•¨‘1»Å]‡Œ¨ÑïIòj}€VO–A¿Hç`šÖÁiZ»l9âåñí=<±ÃŦÃn~©›»6ôñü^/+wñðë.žÛí¦¦#L›;Eso„maYtcòÓÄ")ƒ;MÃ:Û:O7f¹k¯À[2œ¹:ÍWÄùʃI>¹4Ê{® ñ‰%až®Ï‘UÇNÈBÇ´ô™å¢Çæb\.€,·ÖpÂvŠªÒÛßGo_oþá×\áßM"‘@Òfx*ƒ—D‚„ •ñY©fQ’=ù8Sôµ¦~o&çU!‘@(±o^2¹*ÏHM8ÿâCM(ïü4IB+:†&$”ó6ݾÓGþzÌf>4I@„’ó0:¿ a†Z²ò¯»&åÛY ¾tBâXׯôëF’´YÍïñ8_Ç†í£µzB*7~MÕjÙ‰¬Q⻪‘Håd£¼¹KåHdµ)ÁcqÛŠc¾>S|†eYHÙ©ß›†%¤9ŠªÐÝÓCS³½ ÀÂÔeäTLÜ@ËÅ1tS×Ð%—BLzòµ~Ñ>ÄèÐ(ÌÅcýy/…ö0ê"éGL ’ ZV䥘FÊD‘%CQ•lÞØFÑÓ0‰Çctt88pàMMöéCk:)i‰>†S¼$IúËKI§a‚, ¯€D:…¡å×K« V¡˜uš°Xº Šªº)© ˜˜²ˆÚЋ²±yk;F_$ÏfÍœÑaè^o'W>Å’þÄŸïXÂÙgŸÁ‰'~…~ð¿xïÿû8úØgøÞ÷¾ÇïÏþ-—_z>¿8ùG|ú³äú;n$–ˆ“ÖéÝâÐf;ëÖ­ãñ§–³ví:öÖìáÀÁÚ<[ODÚ[ÚY³v5Ýñ[ÛKªGÂÐe6¬æ²Ïç¼Kïáâ+â·|€³.[É%·má²Û«8ç’'8eáõüáªûùýÕÏð닯àþWâÜO*ÇÞæÅ—šXñÌ^6¼RÏŽ]44ùpö&$Y5Æ÷W,–•Ž#ÿ¬šÒR/¿UâÚ›–1580'3Ô•½³f+Ëi2•¼º@ë9ÅB1,L$ÅDU-tÕBÌ„*®á ½)j»âli òTõ¯Û£ìsÄØrØËê݃¼°ÇÃC¯»x ª—‡·õóôn7=1|a‘!†®A^ŽHFÊSEK7ϪQú&G}:[ºUž8$²½["50-«Ä\YÇÞ‡r&¥rAb¹`´è%d3t9»|Óê9 ÷÷Ù£nùb*æå{ÒÕ%þ6Æe_>›myI0/'œWÒµr.æâXb*㙹sÀpš—ašôö»hll.㉻…©å“Cd".„pJ&ˆ¡)D£aü>?©x„\:o6ë#$ïÏ¿Èà˜<4êBŒÕö‘‹ôÃ\“w'õ“‰ %‡1”4†‘o¡„.¢ë9 CASsȹ Š(’SyǺ2Ó0g†S$¨µ>†ÓîîD17ÞøáX 9f#%5‹êP­Ò7*„4'ÐЖ5Þ£ðƒ•ÓAPò Ñ4§À„±åd•g/wÝw7—,:›§¹Ÿ{—ÞÀ¹gŸÁ¿8~ì³ü÷'>Ëþç3ÌûÂÇùôg>Ìû?ðÞ÷wòàò‡‘U‰hO–¡½ ümq\.ŽÖeß¾Øív‚¡ñxœd* øôöõpx{#õ:<ºžc[Í£\|íÅ\tå\vÃ#œû§‡8ç’Ǹðº5\xýËœuésüñê•\~çjþpÓκâžYwáfâé4Õ{<ðÐËÜzë}ܼd)gžy>?ÿéB~}ÆU\tÑŸ¹í¶Õ<º|;75±w¿“£õ^ºz#drù>Šª"¢Hº¬bªz„–iLM– gUsZN?ÆÙÖËqÊjã15¸´LcÒ½oDÞ;~½ë˜“\LóÀZ·LLËBR,¢‚NN·ˆ Ñ”N,%ãdhéK²«5DU£º¾¯5zxrû k÷¹ÙXçaÕ^nîå©mClm³¿5ÊŽ#^wÆpxRôxÒD’9RY IÕ0, òР3ÿ¬edÈf©ÚTsüõµ˜#é4ó;å½§\óši€g(ÆÑéÀãõ¼y·×¹óïS²Zµ”ŠŠ…¬ªóÿÍŒÉ_·Š¥+kJ2zZ¤žeKVâ’æ®Ý\ü×d“ƒ»6 •^“±ax´—üfªâ<¶´šs–6bOÿ0óþwãJ ड±y|MÚÿ`›º‚œò "Dœ¢¿ÏÍþÚZ[[ ‡ÈbŒLÂM&2"í‡b¬Ÿ\Ä…î'îC÷’Žô’‰’K # !4)*„ÉÅ=yðíÏ÷3ÌÅ ¦7ÃÍ*r?Ñ¥ †$€œF£ôŽ´«˜AÆ4Âêš>uÃ)’Ð`ø·âJªê:ÝÎ^TE]íϱÈý¦2D™ÊßœžA—„OÓ?q¦ä2-ˆ44·pã­K8ë7§²ôÆëxüþ;¸ùš+ùú×¾Éûÿó¿øðG>Æç>óq>õ‰ÿÇÇ>ú>ùßÿÉ·¾õEÖW¾‚¦©øÛ÷Dˆ÷fÑT QI$RiT"E8!Ê"f²ø¼¼Ã^\úwG#²á…Woᬠ/äü«ಛžç–;×óÐ}yâÁ׸ï¾M,¾åE.¿åY.¾ùaμò .¸áV^Û¾‚Dr€XBäõ­,[ö ?ò 7ß|_øâçyûÛÿ•w¾ó]ü뿾›÷œðA>ú‘ÿáË_þ.ßþÎÉœ<ÿ^QM8¢`(9û¶spíJš^™î»loÅÓç$â@ˆ†‘³"ªj`fÌ2§ÎÒ-s¬>Ï:Æõi‡5n•¥f®›f1ᜧX¯Å.¦Å÷í<a[ ÿ7À0À0-tÝBÌ™DR ¢lU:<­®4uQ¶5…Ùt$Ⱥý>VïñòÒ¾!Û2ÀsÕVïôðÀkýÜ»±ŸU{<¼~4ÀžÖ0Qš»ãîŒÒåPŠOËkZ2…ùLÙmSfbjË‘›–ª9,º½Ú;:ƒÇ.cž†s1s1s1Ç–~¹=š›í¤Ré%C¦®¢¤Q™HFÆG<2ÌÚý:tˆÁr™¹t  cyc™QÖ°Àæbänr)/²@ÍÅÑä4†šÃÔutY —ô‘ ÷’¹P2á¼tT•P”¦"¡Kit9&%Ѥ†šC@WÓô–b §0¤Ð ]× í*2èŵ+Ó°kÀ0›éD×ô™MfÊ•‡Í„[Ó½Œf1à›DÊØQ£‰‰LÔÄú¶ç G©Þ[ÃU×^ÎïÏ9“«/]Ä7.æŠEð¥/~™ý·÷ó_ÿõINùùøÃ‚SYxæ¯8ãÔŸpîùg²}ï^t]ÇÛ§_Ø` ÓÔÐuMÕÉf²ø}~|Ä”€$ ¸=C8»zqðà9DO$RÜ¿âN^ð[~åƒ,¾ù¸ëy^~ü%¶?WÉËOlàž»×qÑõOó‡kþÌnZÍ%·ßÌ®ÚHgü‚"/®ßÇmw<ÄC-ãÚk¯æË_>‘“Nú_øÂçyßûþƒ·¿ýÿò¯ÿúoüû¿ŸÀ»O8|ôDîþó+¤ !ì£æ™Ç9ºéE¶oàȆ•Ô=ó GV=Aã+«iØ¼Ž¦ª tÔlg°¡£•è‹l2ŽaèãÍWôBÍ¢9³1țʌ‹ÁM9¦|%ž kb•~xaNdÌFL&·1-Fë Ã"+dr‰´B0ªà‹*ôù³Ø{ãìk ²é°Ÿ‡ýTÖXµ×ÃÃÛúy¾zˆ—k<¼°kˆ'¶ºXµÃÍÊ]ìíLN8µ¢îöæHͤYžÙÔLn£3Õ.[e¿Ù©=}½8:;‰ÅãsÀp.æb.æb.æ€áñ~ùüZÛ„Ãá©“¦‘œÂÐÐ2aÒ±>²‘>”Äb:HsS#{vµ!E#d¢.²‘>2‘>2±²ñ!Ä„15Œ” d£¨RMòý5SW1u]Í! a²ñ¡|­blEah9LMÆÐ$LUÂÔrJMÉ¢È"R.‹N %ÆÜ— GÌgä\¶4cXâõ7 ¯x2‰ÛíA×ékÊM°ËÝÆœ ­é’Íuh£Ë½¨ ¶E ÖÑœÌBy`xóm×pù•çqùeçsùEçrÞ¹§sâ‰_ä}ïÿOþçsŸã÷¿;“®ü7\y1—\t.W]{1‡ë1$÷¡(®Úqo ÍÔd•D,ɰׇ{h¿?H&%' x^­]´îìÃ]—À”4¼¡Vn[v?ùÍλê!n¹ãY^XöÛŸ\Ëþç_aûÊ ¬¸‹®_É®{ˆón^Å•KoàPÓËdÅ(nwš'Ÿ|+¯º™Ûo»K.¹„üàœþù,Xð[¾öµ¯ò¡}ˆO}ê“|í¤¯ð…/|žO|ò+<ñä6dƒNjžyŒÁ¶ºÔrä©û©»ö,Zo»˜®§½úU¶¬ãè««hÞü" ›ÖQ¿éEúÖ’K'1Å?L®×<4ˆ £§SXRKÕ°tË(Pa¦5;‘ce­gê¯w,ûÎèÐk¡(2’”C–%4MÅ0Ì¢{³5™ée‹¹cWòs­1Ã׃fºn¢é¢dKÊyƒOš¦4mî Ž¡4 ŽtÅ9Ðá¥Vlà™jks ;A&§#ʲjb˜VÑwhä;eÌ\#l5¦/GRZŽYM¹5†%êÁ;:;èèê$-¼y÷ܹ$f.æb.æb.þaa$¥«»›Á¡!¦Žž‹#Äû#ùæôšÀ=ØÏžÝ{8p`?þá!”l )å%@Œ{Ò¤L9—D•4%‹®åÐ5MWÐ5C×0 Ó00 ]Í¡æR¨b-—B9‹¦ÊHÙ‘Hšp(ÎÐPŒ®®8mmQŽ õjö8ß044Ã4UEQPUUU‘$ EQÐ4 MÓ$‰d2ù7 } Á`Ã0ÿ²ÀК%0´¦†%©Ä™M*È—"F¢"mŽ>¶í|W*Ÿç…UñÐC·sçÒ«¹øOgsú¯΂ߞÂå—œÇ ×^ÂuW^ÄÅü-‹o¸„>WZÂd`W€¡æ ñH‚”Ç;즭­æf;}}}„Ã䜆ª(ÃÚ:hÞÚƒ§!®+tºöríç󋋸ઇxàžÇx}ù3Ô<¾Šý+Ö³û™—xñá¸fÉr~íãüæŠû¸iÙµtöì$—KÑÝâλžâw ~Ï…ü#çw¿ûÝÙÜxÃõ,¾j1§~*_ýêÿò‹“Á—_Æÿx!?øÑ¯yuS#¦žöfj׬ Ù3ˆç¹´\|1­§|‚¡óN$øì Ä]‡ñ»šékØO÷¡4ïÜÈŽåws䕈!}Ä6½Lxý3$¶¼Jj{‰};ÈÚ‡ØÜ@ÎцÜß‹êõ EÂé4–ª;0œÈ@—Zƒ¥ 0úž 04'Ö½¦A"eØëaxØK( “ÍdQUE–1L UUPT]/8Ÿ1æi™¾ #Àp­³Á”†…¦¢ddIËË\%Õ$'ëÄÒ ž4‡œqõ$éäp‡²„ ‘TŽTVE3&Õ’5ÁÓCs–ÀÐ:Àп­¦ê47Ûér:‘Šû´Îù˜‹¹˜‹¹˜†Çç•H$èíí£«Û9}2Ux¬K)Ę‹\¸Ÿl¤-ã!ñSWw]»ªéîrIEÐĹ”5ÅPÒhª”ïhhùÐ5t]EÓ CA×4tMEÓõ<Ó4dEFÈÄIB‘8Þa¡XŸ7FSóG9ÙSÓÃ+•½¼ôr[¶´óúf/­;BO_OY,Åd)iž1”…x"×ë% Fñù|ƒAÂá0‘HÞ„ä¯b>3E‚54ä!K`šfùRÒ7 g[ï5›zÇÙ˜ã^ºa‘Héø‚Y|¡ ÞaýýšZRS»×·¬å…5ËYñÔ}<üÈíÜwÿn¿m1W^q67Ý~ÁˆŸ\Ĥ{Ë0ýà »ýôöwSô0uµµ:\ÇÑ£õ´µ·Ž„IgRô»z8ZÓHóÖ>íT]¢±cWÜôGN?÷&λü~îºù^6>ð8»~–}Ëײã±5ßýîw8õ”S¹òŠË¹ô²+8ó7³kOþ;<Ðp˜ý+÷q}ç߉ãû?¢ãûÿFÏÿNÿ§à=º™È@qo?Ñá~<}mÔ®}ŠÆ×^"îî'×ßÿñû¿¼šÄ¶MD^}‰ð†5Ä6¬&V¹žØkHnßLºf'‘Z2íMÈ}NÌl¦ ¸T±Ì˜X*cZT³ô…+ÁžMZW†UBNlMf®'}Œ5óƒ‰,º)äÿ¤é„úz{éîÇIoO·‡h4B("•ÎLD‰Ä"$ÓiTUÿý+ °ò,k‰ZÎÀhÁìÖ‚Ô0M²²A<£d$Y%ÕHe$29ôJM—Ý\~\Hk†ˆSÕ–[çYto.þ›$IÔ76ÑÛßnèsÀp.æb.æb.æ€áñ~e2h¶·Ìlú`šX²˜7’ ÷’‹ô!¥Ü¤ã!𨲥Š#G“ˆGÀT0tËбLË40LÃȳƒy÷?Ë4ˆ'Â!< ý®Ü^/ýƒ.=Äöêj¶íÚÏkUÛØ´žÆæ^}ÕΆ Ù¸ñ(k×6²n]3[·¶±wo'Û·7ÒÕë*«ŽnÄ•´Ø|ÆPDQdphýû÷søðaZZZhhh ±±‘††Ž=Jww7ápø/ÊN·*z{ûaLúUî“úÙ˜}̦ýÅ‘ÃKÓM’ih\'›³PdEÒPT I–sB&N8â¡ÏÕF«ãµGv²¹j-*7’%ĨJG¥¶×iÞÒÍ®—Rµf7uÛëi¬µ³æ…5ÜuÏÝTn~…šƒ{ØTµMk6Óº­ô ‚,eØSû,\¹ˆ³.]Á™ÝÇ‚ß/æÁëï¢òÞ'Ùõð*6Üû7_y çýé~wù£œ|Þe<üü „£vÒ‚Äáú~î½oW^±˜‹/ü¼àî¸ýNî^z—]z)¿þõéüàû?àÛßüßûÞ·øùÏÁEÝDS³°pîßÁ¾¥wÓø»Ë9ð…ïÐðÅOÑTñ8å½TŸýe¶\x‡žx’PO©è0ÞÁ.ê7¯Ç±g)ϹÎ|O?BÎÓ.¤PB>r1G3‰£u¤öVß¼‘ð†5„Ö¬Ä÷ìrþ™lc¨:ŠD¨B†4ˆ©°Ô(––Æ2D°d05ÀÄÀ˜Ü £¸‚9E­ßkkÄÔ¢„ÜÓšrJôj-”Š¢ˆ% B¸=CôôtÑÜÔLss3G;Ív:»»èéé¢Ãá §·—h4$+yÙ½ª¢êŠ$£ë*Ь`Fþž£æ„™ÆTÓiÿ± Ü©ku Ä 1ÑÔ·T“ùÙÞlÞ`OÂq€¯\çS •JÑÐØÌààÐØ¿s} çb.æb.æb?T¡( >ŸÃGê§·/<¶‘L|lÌE&æ&›ò"ËI|¾aÚÛÛq¹\H’”OÏ Oá­ Oâ'H”$¶lÛÎæ;ØPµ•gž[Íöí»Ù³w6¾Â3/¼À‹6òúÖmÔ5ÕÓÑ5ÈöívvWÛ9°¿…ÇÛimë¡§w÷Ð0ÃÞ]#RÒ€ÊHƒ{Ó0 À0[†9üÁN§“––ÚÚÚðz½tuuÑØØHSSÝÝÝ¿c8a*;;;‘eevVýÇŠDË©õ:–Ö1¢â‚äMQ „´N4"Ñ×ã£þh'ÁI4®‘HÈ9]Ï×\F^ž–rxôÁðéÏüW.¾!OL•æ××SyáùTžt:k>û-Öñ‹¼òµ³îkÿÁs_þ8·|þ;ÜòóS8°~A_ÎúƒzyÝûv‘@´%¼v%†˜•7¦’AzZw1ØYG"0ˆ–N£Å"È7BGÁ'%¼q-–ª‘ î"Üu?áÎû‰÷>Mr`‚{9ÿr‘}¨B–è’à%ÁÈË,ªWµJè‘K™©PÂ-Æš ,Ë‘LŽ—äÛ{˜J]ׄ^¯—¡¡!z{ó÷…–¶VœÎÚÚ[in¶ãìq ÇI§â¸=C z‡ÀÆãñN¦ÒIü~/›X,FV”‹>{ F•ñN§“êrÍ‘þ•Eç>Ú«¢p/6MÆ5¾<©oY,~9Ž˜‚œæ¾å÷ûijnÁëõ½¹·Ò¹$f.æb.æb.þQ¡a„BÔ,i¡ÈTEÄÔ5,C=41A¨ëìÞSCíá#ì­­eë¶mttvᄈÅ$R D);ú¤?›ˆ'Òd² ªb©ÀFÀžiÒÓ×;5+V¢Á½®éj Çc:F–tM'N“N§Aþº5†Eç¥j&ÝÝÝS7¶/Çq¶Öó3µÃ(§ìXkgHLUE¡¯·“={·10àgïþC<ØLCc7ö¶ºz ºEÂa“pÄ"ÌÏá8KT ̬…3H¹¢]"‘6 ß¡ Ž*G×vräÅNšÖõâ«O" qaåk—ð ¯äs'_Åç~z%ó*.gÑù·ñôQõäZ»{?úÝãüàœÕœvÕ.¸å.6ïY$JóÚæ#,_þO>ñ÷Üs7‹]ÈUW]ÁÕW_ËÂ… ùÅ/ÁO~r2ßþηùÔ§?Å¿ôMn»óYb)=› ö¥gÙxÑ"^ü៸ý³¿âŠÿú27|èýÜóáwqÇgþ›¿ý1.ûúóÈÕ ·»Îƒ5Ôoz‰þ†:ľ2ûöyåEôL°2qÚömâðª»8ôêrzuHª„eb™äb1¢›×“¨Ú‚¥Kd†Öãíx‘ÁÞZ††ºñ 4áëÙ…¿gÁžU„{#Úó8ɾ¤^ ãy)v5罎¦©"›YÌÀ8É}¨»8Å&åÕÅ™“~651“AȤ‘d)ÿÝ*Ü3$I"—ËO&ˆFÃø|>††Ü ûCD)â±0íím4´4Òjo¡­­×  )'¡È>¿go.ú]}¤ÒDQDVUt]#›É ådLÃ* „‹Ù?³¼ï׸WfÓpfß΢œûÄLµÏ~ïï ÝÑA(ž†s1s1s1 ß´:Ãd’ÚÚºÑÄgFP Õ×ÒôLH$%‹a%(¡ Ìc ø<Ø5éí˜69‰ îe1ƒ®Ê3ƒþJ®¤SL³q¹\¥ë ­c^ÇZ‹8“TõÔ<Îb@–i’Í$ ii¶S³·šƒµ5ìݵƒ-[¶Pµ£†£ÝÄ㢠¢8¶Æ,tr’@2GÅñ뻄[2˜iÂYŸ‚’Ö0-ƒt6Äþ†WX¹î6–>p×,]Äe·_·_É£ËnäÁ;¯ã¢E—qÒiWó•Óïà£_½ˆS~ÿ;6¼ˆªfèêŽñú–£lØð»wU³«zwÜ~'\p]t1§Ÿ~:'ŸüsæŸz ?ø.ŸúÔ'ùÊW¿Ï£OTæ[øú©¯\Cýº—¸ï»g²ðßà´>Ãâÿ÷ï¬øô»ØøíPyæÿ²æ”/òÜegÒZ·“–ê*ìÛ6ãéh!ÛÝFrÇf"Õ¯cjùï !eiÙ¾†—nþÛ—ßBWÝrÙ$š!#æR¤:‰¼ô,âÑF0ÄÝëè;D¯;LŸßÀå“ôKô2 øSx‡ýx¼ý y:tíÇÛ½Š˜óqÄÀNL]%žh¦»s½=O1ìÝB$RG*ÙŽ˜u!ËA%ªI˜¦Še©˜#5|Lv-‹ñšØº¡°±8Ng]] ¹ †‚¤YUQUmôb˜y3˰òÿ·,$I&ôÓ××Ãà ›@ÀG<™@×uTU&‘ˆGƒt8Z©ol ¡¡‰¡áét—ËE¿‹D"ªè(’L"%’“ÔQiþÄ2§•ŸÎ”Ë1‡™}IìÄKf’±·¶9èíí'™LÍù˜‹¹˜‹¹˜†oÖ+•JsäÈÑñgšæÏLðP°Ìñ&SP&X±¦AŽÖd{<Ó4‘$‘d:A"•D×túz33g%Ã1`hÍ ü›† e$gxxx|}!3<¡ŸùËL¬@9æÌÀä ;XJRjŽií ]%™HG‰ÇÂx‡èèì µ£×Ð0²¬MXS€©î§ÃÑDWO7_¯×CÀï%N“Ëå …[“¿–e’Í¥Èr™‚áFºûwQßRÉÃkؼýaž[~êf®½÷F~òÛpþU? Íù:Š*ÑÐägÓæ¶nÝÍ¡ƒû©­ÙÃÓO=Î-·^ǵ×\Å•W^ 7\Ï·ßÉâ+®àg?ù¿üÅ9¬ÛP‡¤š„ú:©yá!¼½m¬ùãåœûáÿåôû×~ø=<õ¥xå§ÿÅ+§}…—ç‘-ןAgÝvnXMë®*‚}]dìG‰W¾D¦é(š® ý¬\É ·\@Ö5D½ý–‰fšdsY¢mMø×>ÔÓŠ‹ÈÀZ\½ ôº¢ øt_yµa#Ñ4Ê03ÿG«  SêjEÓH i‚Ñ.·{»ƒÚúFö>Ìþƒu¼öúë¬Y¿Ž»kˆDôŒ4¸Ÿ¡Vf¢ùŒ<±Á=cŒá‰ŒÇ;L4–#;ÖZÃceþŽ·1ÍDiàH’iäDÓ41 MSÐ4ÝбŠ^ÑÃ!ÃçÂápp´±žƒµ5ÔîÛKÝáCì­=€½ÍA,)bèV ph!å²(Š‚i*膂¢ ˆ¹8ñ´—p¢¸w-í¯q°qÑÄ’®ÓÜbó¶6^ÞXǦ×Q¹i/®©âñ'Wqÿý°òé•<õô –/˜»ï¾Ë.¿Šk¯¿—Ý{†Ž»µ‘­÷]»ë0ÛŸx”~ð}Îûørý§ÿ'¾þŸ¼|ÚÿðúYßâ¥3¾ÌΫϠ§nûV­ s5ñ¡~2õu$*×#v;Ùsà‹þt1§žò+î»ù ¾ábžyä>j÷í%™J!iiQ$zè¾V¢ã˜éfÂý/ÓßÓŽË“fÈ/ãì Q[×ÂѦ^z½q¼™áˆH0aˆeøZHú¶#'Ž"Šx¼¯ì"“ Ð×y€š­°}ãön»‡úëioßÌg^ÏFú×Ñé¸ÁÁÕèrz| ŒÅrXìâÚ=Ã"L'I§3„B!œ=NZÚ¸èhk§¾¾ gW7nŸ—tZ à ÒßïbØç#‹ç׆‘€`êÙLþÁ‚iZ£} MÓD–rÄqDU'“Í …ðz½ô÷÷ÓÛÛKO/½ÎŽ®œN'míÚݸ=~²™,b6M8àÃçÆçõ!iEBQä© _(,—ÛÀÞ*C0›¶#á…Úº#a4MŸ†Ga_^Íf W‘°,,ÍÏòù¶Iï¯räMÔ\UK&ïk« ^ÈÊšeó'¼·ˆúÈÜœÏÅ\ÌÅ0|C/QÌÑÑÙËåš…‹¥5û¤}š—¬*$Òiü‘±”€7 ³·Ãv:ÂþƒuT8À«UÛÙ\]Í+[¶ðĪÙ¼cm­ì9PÃê—Ö³ç@P„ž>gY'Ë´P'¸’ê{²Mq>u`hIgûúI¥R“ÙÚca åZ–Û®¢œ÷@Nzϯ¯+–ÏĘ`è¹\ÀOo/]]8ÚÚ8zä(;÷îaÿÁ‚á¼4pâÁ$)K‹½‡£­°>²È’Œ®i˜¦ŠaʆŒ¦g”$Y1¦ÉX&D£9zû“Ø[ƒ44z©«`×Þ.^ßÚÌËðâº]<ýÌfyt5wß»œo~€??°Žú憡⬭æñËP¿éIjŸ\ÊÓ‹æsßϾÈ}_ÿ÷í#Üý±â§_`Ãü/ñÒFSõ«ì[ó4ΣIzï#üÊjZö×rÆÂ…|àýïãßþíÝ|ï;'ñóï}ƒï}óœuÖY¼¶¥Š`,F2"X³ƒÐÚg±2zržÎ—éìê¦{@àHÓ[·îc׿ÍT­™£õm úÒ¸})ÄŽobýS×Q¹ööí\Ë‘šJnÂëmCÌzt­¡·gJ6–>vMÍ2XêbyºY&MÕÐt]7űxŒ`(Äð°ß—¾Þ~\}½D ²‘a·—ö6ÝN'n¯—l6G"¤»³‹DFD“s„‚Ãø†‡‰Çd2„l–tZÀÒ¼ci¡î[QdY&“ÉÇIÅ“$b |>ƒÞ!èïw144D$EH& ù½8Z›ii¶Óí졯¯·ÛÍð°p8L*•$“I#)r9ÓÊ×Jªªš—À–j11“`65‡³¬],vMg²¬;L<–IJŽíߘ9`ø× ÇÊ…Øl6–×øó _ýJl6‹«Ýöe〠¥¹Xb³1oY=–`g¾ÍÆüe5y†Qp°dž ›m>vÁ"Q¿›ÍƲw~_É™QÕ8Fq.æb.æbÎò%I2}ý.:::¦M¬™šO2Hû]UU2™ étšh<Ž×çcÀíaphˆ¶Î.êí­Ø;»Ù}ð íÝýØ;ì:p_©dýÆMìÚ·Ÿ=ûkyeójêêØäÛöì§µ³‹@$ˆ×çÅÑÕÉg˜T*EOooY’1˰ ÉŸŽª©H¹,Ú0œ ÌN†³µ€·ŽO™Ÿiš8{zs¹ÙË@߀„uÖ’Pk °\`8n}æYAÓ(¶l4'1ˆã{ÜYc,‘5P˜¦$åH¥R$Iñ8¿ŸÞþ~œ½ƒ¤SYLÜÀ6™¤…ûöí¦fïnítv8éëÀ3è!0ì# ’L$Èårcxµ ÍVUƒlÆ W‰D%üþ,îÎÞö6?‡²{w›·Ô³î¥V>»uÑÓ—ÄÐUš¶¾Âíg~ŸWn;‡7þŽ—ÿô+VžþnþÊÿãŸz/ç~ü½Ü}ÒÇxâÇŸåŽS¾ÂºÇocת'hi 3üÑpã-·ÐÖÙM2•fxÛëD^^ªA.²–Ãk¨9ØBM½—m;y}ÃfwT²eåc¼þÚ.:]Qú\Qz= ®/ÞÞ]d»Q3}Ä-C¯âñ¶R³c5‡«n¥öµ»Ùþò#ìyýšj^£qO%{¶m`pÐ…eê {+X‹*E òQ«(Êd»°Æú¾ÑŒ‰# TME–e„´@VÈ’J¤ˆDÂH²‚¢(DCaúzúèíw1<ì#“Éàs»8røáx9+àó âì¿ï°ϰ·×‡ª(ȲH6›¿ÿ¨ŠŠ®ë蚎,ËH9 MU³Y’é4±BÿÔtZ 'JˆHÀGwGíííôôõÒáè §·—ž¾^úúúdÀÕOo_Ã>’ªG‰FãS-1#¡È*†žo«aŽÔOŽÈs§‘`X…ÅlÍô]¦<Ð8 - røÈQR©7ÿ!Ü\s¼a¶yËFÿ&°|^üYBÄË夾®†õ+—Ra³1¹ÁžUnmL6Z·›­»`a_>›mË*«¨ª¬¤ªº* ç-#27ïs1s1 ý¥ª*>Ÿ£ åà †i¢ª*RN"™J Gðø‚ †‰¥RxÜê[©;r„¶Ž­gËÎ]TïÛÇ¡úzž]·ž7Vâèë¥jÇNì]ô ÑÔÞÎþºCÔ75ãö †p ‹ÇI¦Ò¤ÒŠ*aúhÒb™º®Ñ;ҮœzÞ|FU¤œˆ¦©cl¢ª"Iš¦¡(ùPUU%ßë0QìJúW††nÐÙÕ…nÿ°ÀPUU¢Ñ(ƒCn|þ@ž Ñ´±Å:ÎÆ¿ Z%€á ,‰®çÓ˜ 6-ÓD3tv:hnjàPÝ!ŽiàpÝvßêjÒX_O?Š¢OšI’ˆÇ$“)tUGÓMTÕB̤DB%É1äèêÐÛ%•R0u®C5¬½õJ6Ýq1UK~Ïë×-äÅ Næ–ï}žs?÷QÎþø¸éóÿÁÍ'ýóç½—óOû¯=~7Á¾.dŸ‡xÍ\¯®eïžüæôSxß»ÿ•·¾õ­ØÞòVÞú–·ò›w¾óÿ²ðÜ?°{ï2‰C¯®#¾¥,‹¸çeª^}’ç×ïåù GØðR{6¾ÄPíkl{ìA^xþ5öàÀ‘¶„h´·ãjߌ>€.{‰&ŽÐïZCGG-5UÓ¶ÿa†ì¯aß·…£»7ÓQ·ÇÁ­ì|m-}}ùïøàà*üÃÕèjºèš.ˆY.0,z˲¦eÀG f,ÓBÓ´|mŸa È2©Tšx2… dQe™p`˜ÎÎnÒéb:Ű{gWÝÝNúúûpö:qö³DÂ>\ƒüÃøý>¡±H”p(L0F–•<`Óó³ Ã@Ó tÝ@W5r9‘d2A4!Žòñã øÄÕ?@Wg'---8{úÈJ"þ!œÎœÎ.ºº:éïs1ìõ …ˆD"$ ¾TMÃÒ ,Ë•d[ãÚ_¼ ÀІƒîAšš[Èd2sÀðïÎÇf[RÖVUبXnGó×±¨H Z±0Ï.Î_nGr®Âf›C*ªWt®†#LdEEE>æU0á".\‚C˜›÷¹˜‹¹˜†ÇüÒup8ÌÁCu3üc]pÿ3-2Y!“%'ÉøB!†¼^\ƒƒ´8ÚÙw¨Ž­{°÷` ޾öíßÏóë6R¹e+M­-Ô<Èæ;¨k¨§¯¿ŸÍ;wR{ø0¢’£§·‡P(‚É’é49IB3ŒÒ:$ËIJ ,Ë(°Cª¦Ò[` '5s.‘丒ªª‚,åÐÕüóL&ƒÏçÃçóá÷ûfxx¿ßßï'ň'âhš–U›úçâßKm3]Œl§êãöQU•lV¤»»gf×ãÙÃÐ:FùFe_S$”‚¡³ÛÉ®}û©=|”·(H"•DÈ ÈŠŽ¬˜¨ º9Æ Mê›7 Il‰ñX¦…®©¤R ¡ === ÒÕ餹ÉΡƒ‡Ø¿?{÷ìÅn·“ËÉ“.R$¡µµG7©x‚T"E6›AÊåòMÒ5Ã0Ñ Y5Pð° „ß‹ëH-{·ÒT¹ŠC«e÷ò;XwýÅ÷i®¾î:vÕì'Š0¸n©½Õ`i„úV³~õã<´¢Š?/¯bÅòçÙºj%=UÏóÂwðØ“¯²q«ƒ—^obÃŽvª÷ÔÐѸ1z] ÕÒbŒºÚJvlø3-ûŸ!ÖSG×þÙñ*öÚ*ZlaËKOÑÞÚ€iXô:#:Œ¡eGk<-«ÐâÞœe=]9µpS}§L Ó0ÑtM7± “œ˜%žH¢*&r6C8`ØçÃâ÷ûrâö#dÜC.ÚÚtv8hok£««‹¾Þ>z{zèíí%!Šº¦#fE²Y‘´ Ö·’—¢VA-¡«‚ ͉$Siâ±8¿·{aŸEUñqˆž}[È>K÷ÅmìZô0ßü§¿å¦›¾À-·ÜÄãÜÅÊå/q95…†¦l]’⯭BűãçÎ%óκ üòå}<óÜ26.‹”KxâÇ?áå·¶sòrûNä³ûD>çÏŸ§©ü!G-¢0ÂÈp6µe[ÈH=Êám/p=met\O¥£ ƒ–’lòÓ’Ù»q9™—NâéîÚ†ÓÞÍÒ˜@—\‘D„°€ H‚L0ÂåràöDrQ{zºèê½ƒÆ†FZZZèïëC¯¤««‹ŽŽ.FG-ø|úz»éîë¡·¿—þ>ŒF#v‡Ÿ?„ª*‘Å!â„*+kI”¢Ê‡ˆk©ÛcÌ-ôÑßßO?]]477ÒØXG]]Õ5õ8œn<.ýýôööG2 zl6>A#/„Cn·»ÃA(@™ž­ZB™j¢US_GP(¬ÃßÑÃ6ç`t riMÄŒæR_0J ½Ó‚gÒ¿=°« Uu°ë¶ÈLá™ÒzJÏŒÑ<@•GE¼Äg>ónzá F}UIÜô™Ïð™Ç/!ª*úœ]<þÆAôšS© 4b˜ø%à_X€<Ã¥qf¡K\¼šÁ锋äs6õ*¹ÅÅÔ55ÐÒÒH}c=½X,Âbx¦9Ëôarfá¤Y­ñ´j5ÒáQ•ˆ”)b·Û6›èêÓÑØÒFk{+}½t÷õ‘s#fÀý+!:Ë#‰BDJ*¸œ.:;;ÉÏϧ¡¡²²2ÊÊÊ(..¦¤¤„ÒÒRz{{ …BÈ’<Þ …„áP8 !z] ˆÌ«9‘H`0„(ˆQ£ P8L0Š ‚á0þ`¯ß‡×ïà "óG¢ 0šFúèÄðãèÂüËv ÕXÄ-º° àóµÚèîàFY)3¯‘r5ƒ¼’LJôœÍ r25À…k~®)¬ ÓÜ#Ò7,£3…°»È’2¿YF"òظƒÃÕñØÇM__?-M­T–UPt½˜²ÒR23²ÉJÏ 7'‹’’bzzû……)ÛQ‡ÃF¢YtQde✢ª„ÃB^A‹ —®}YGM8rÒ1ÙÃྠì[IÿÞÔmx…Œ·'íÝ'(ݶˆæ³›éª¹NWW'ý5uΞ@êéE–ûê8KJÊ%}~/7Ýúÿøí_rçñÓ{îàÿþÕßrÓ·$é|9ç3š9v®‚Ô«gi¯;‡àiE†6\¥©jÙé—9¾g9I»^âôîÈO9Nmöejn¤’w9‰£[?äò™$ìŽaz÷âq÷¡ªRâ!ëó‘¿ï¥:Ûsw’cß'²à …#3ƒ>›Í†ÝîˆtÝntº~Z[Û±Zí‚Z[©­m¤±¥…ÆæFjëj©olAg0âõyÑêÄétF£l¸]^DAŒÌâŽLHé#‹~">Ÿ»ÝŽÅbÁd23¨7àó±ÛÌ476ÑÒÒFWW7­mÍ´w´£Óa±Zðû}ôèuzê).)ePo  ÌߥãýQT•²²2†Œ#é®F '‰ádlÎéCUUDK)/Ü4Ù­t ›_¸‰Ïܶ+êZ:ÈÁ¢®¦7=ÀmŸ‰Ì£=Xz0ò·(nz|3ž±íÞÏg>s?õ^í=РAƒF ¾„B!ŠKKðø¼3‹qeæµ~ÈÀðð0Á`hÒ˜‰Û.~NBù£¢ÊãE’ÏÄnwâr»ñüx¼^¬öH—Ñ4j¦««‹ôŒLN§\ä•L’NžãÔé3Ü(( ¹­ƒkyùÃy$aã9†²Þ®â”ÍÊsjüGIq8lX­‘Œ°àÇlbhØŒÁh¤°Ÿ–ÖfZZÚ0 ™±9ìtwwÒÔÔDkk+mm-´¶t Âf³c±Œ¢×ë0šÌ8Ý.dIF#ÙŠ±¾wä¨ÍfadØ„ÛëÂj³b4Ó×ßOoïÆ3^¯Ÿ®ÎVë[(/¯¢¶¶ ‹Å‰ H‰EåLË E…8NEшáï¢ùÌmIxTÃApFOÄãpàñLÍ/Tƒ}l~a1ùÆ ó™ªÍ7M3²‰ÄV8Óï¯Aƒ 1\ø%SY]ňÙŸÈD5­Èœt2AÕHá ÅHàs0Äë÷á°[1Žšé×hno£¬º–¬Ü|.§erêìyŽ$%qàðQNœJ¦ ¤”¶öNŠŠŠhhl¦»§—þ~ÃÃÃØlV‚A?~¿|Æp^WÒiÄ00Æ*$I¢·¯—Êê*r¯çr-;›²²²HÜÇòC—ËEyy9äää——Gvv6‹%23Ëöü~?yyyäççSVVF^^………ôõõ!I½}¸=¾Ä:z‰ÆDã%½]¢ùŠ3^[•ú¦jRÓÏp5#™òÊöžmgÿ™Z ³Oa칆îÇãm¦»ýí©äæd²mÛZ.ŸÚI[q*Öö"FÛJ©-L'+ý…Źح^ìÖ2úû“í¨¨3óçšW1þ^)òֹ̌¤Ž1 *òL×ÓéryuoC®ª*ê$aÅØbšŠ,K„…H¬…Çë# „ü¸½Œ¦úúúèî·ã°˨•ÁÁêë먪®¥¹µ…þþ~Ñõ`Ðé1D¤ÊÁ`€pXˆÊý£Ç‚ ¡¨2¢(#K*’(  ‡#ª‹Q‹£ÑÄð³ÙI0(¢(sâ8ˆ³Óí"¿¨€P0ôɬ?iEÌÇœcxŸùL´˜Ä>G¥£»’ΰëÝ&ÉLµ×Uƒ 1ü^DQ¤¥­•ž¾y:m³Œª“VÊá`t†ÎA0èG–D6;u ”VUÑÙÓÀnšš²®å’™‘ÉÅÔtöŸ8CjF6U5ÔÔÔS[WGcSí† X,Vœ.^¯ŸÏ,Hã²¢(ãn‚Š¢ÐÕÕ3w129ÇPT¤H±‘$q–â|l^LftÔˆÉÄÈÈÃÃø\.àœ„aÌÐF‘L&f³£Ñ8')ŒÔ© ‹%* edĈÕjHQE‘¶öΩî–ñfˆ-ÐèeÁ9…G§1Qòx]ä\¿Êé”Ã$Ÿ=‘c{X·þ-NÛ˱Ó{8uv/×NRY™AKk1}ý ˜FõXlv,–FSƒ1ˆVgî¨ót{27™P×Hÿ±£M/Y’±Y­Œ èꣷ«‡æ–fÊ+*)**¤àú5òó¯3dsL“8ª¨Šˆ×ë «»•®>B‚@ àC£LQ‘A–A’@QE%,€ª" ^W#’£€°%ûÀ:ª÷Ry}éçßãØîElXñ n}‰ÓçqòÔ.*s×aHCq;«¨.Ûʙ䣜>•JÖÅ«Œö´0PvƒâK'h¾vsc>C-…tÖÒÛÞNCÝ^¯ оø»˜ÇîÄ—$0èîŠaÇI\‹ÓSv™E6sažÏÙôû¨“I® ’,âõF¤¨n¯¯?€?Âår188H{g}ý“›®nšê©«©¡¡¾ææfZ[[èîî‰Ðôë°Z팚G0Ú„ü~áðD¼"K㙈²¤Î\0ŒWR:é¶ãeåÛшáI¬9Í"L¢£…¤5‹yà¶ÛxàñÅ$iÆ24hЈá's‘$‰Þ>››f)>Õir«ˆ‘ßïÇãõ`µZ1™MQ‰‘‘òòʈé̵l6;µ\ÎÌ"5+“êºzúôtvvÓÒÚ‚ÅlÆh62l4b±ŽâõúðûBÁPd¦N–'ej©Ó:Õ„"+„BA:bIIc\Wä)”¤Èó›Ý …Bƒ~ÂA?áP€PÐ?P€pp¡`€P(H0 ô#ð#ô z ‡|„C>„!ä'ôz ½„‚¾ñmLÞnäçÆö#²=§ÓIggçLÙïÇ)ýŒge.b¨~:{Ëfüv&ë0Y9ÉËO§¼¢‚äSgxæé'È¿‘‡Å:JiyW³R¸šqŽ —‘|n/G’6q$i)s=ÿ"Õµ¹tôÔ£7ôãtÚ‡ÂSekÓ÷G™‡ø)q”)]BuÒõÉ|JL3›™¢“÷%2C&ÈÑ(IBE‚¡0n·‹Í‚Ñ Çç.d¨ÒøeIÂårÒÚÞHUc]Ý^§®¡žöÎvº{{6„‘g´µTPPà Qe’0J8¤#ìÀç­ÁãÌÇÕsç)zk÷2Ò~¿½QeÔRD^Î+lÛü$G@G]:~cæŽRrÎ åàJS/3\SŠ­¥}ceEïc6¢ªÁ˜s›1ß§˜]«‰×St´·RZZBss+z½Ç3W3n–5ãx–89.cúbÃd¨ÌñÙR¦@uŽãNAFÇHšª*ãçMEQ‡Âx<üÁ .—ËËÈð½Ý½ôõôÓÙÙICCuµÍ454Q[SAKKÍMÍô q8˜Mƈ9Π»ÍßDul»r| Uót »zºiljBjРAƒ~Y–1”U”ÏZƲ÷”UVq£¸˜«YY¤ee“}ý-míèõꨪ®¦­½“ÉÄðˆ‰ž Ì££‘hŸ¯×‹,Kãaβ,O±›W§É·d9â1l ðù|x<Ünw4ŒÜ1Ÿ‰ÃY0’{8Q@KR¤ )„#aÖc&2cÛû› ˆ„ÃcA£Ù†Â¤ÛL`ì¾áèïcYˆc˜üØcÿ>a^ŠnC˜”¡(‹alv}}ýóÏBÅ+…Œ·˜@Ù\™pqÏéÍÚiSèè$-+…‚â**ª8°ÿ ·ßþ=V®XÆè¨ ×CCsÍ­Í´¶µRZ^Â…‹gI9ŸLAá5J*rIϹȉ3Ùx;G’vQQS€Õ62µc<›41QÙéBâCqÀœãµS£™{¢ L¸°NzNª¢ „C8£ôôQW×@Qq1%åe—’—ƒ²ÊjFLV$9VdÜ.;V«ŸÏ‘‘@ P½¨¢Ù¯'ìî@ôö¢DÉ‹ÓÝIw×1ÊJ×SZ²ƒ¾ö$ôݧ1t'S}}/çøîŤžXK}î J/SY¸§£)b<3×{31—󪨊Äð°–Öj*+(/-¢¦¦’öö6º»{ÑétCX,A\@'‘ùc\fÙß³µjâ3‹c·SYÈRd!!Ž8Ùú|>Ün7V«‹ÅÊÈÈH¤k¨ µ¥á .§‹ã0]]tutÒÙÕÅð¿ß‡ËåÂår122ŒÙdÁã +꼋t1%Ø*ÔÕ7ÒÝÓ$I1Ô Aƒ 1ü$.Š¢`µZ)(*œÙùˆE JÊË)­¬¢°´”ÒŠ*jêè×é±Zí˜Lf††"K¯×K(" Œ“›q(«S¾#<Q”„©D+àà÷ùñz=3ˆ ÝnÇápàt:q8tŽÍÎ#]ŠHžäë²L@šö{¬ëRŒÌBižÛK1r ¥9¶7ñ3 3:jC¯7Ä jb$ðãî&&²]5þ‚mf­ÒÖ^GZæ9JËoPWWGRR

!ýºÛNRY¼ŒË+H»ô¥Ùi)ÞNeÉøý'*•I¬Ó:ló‘¥1A„"c6ÐÖÑJEi™W¸zõ Ô×7P[SIeE U5µ8\žˆ™Ï\ç˜éŸÅD£/¦É…ÇSe~¹|<Ï{²L^–‘åH€ýXNj0Äåràp¹0†qº"†6ë(º~ú{{imoÇ`0ø0èõzÚÚZèhïÂdE”¤ù¯˜9s«ªP^Q…^¯Ÿ)¹×ˆ¡ 4hЈáoîËÐçó‘{=o†:)$IÂd6ápºpEW™ýþ ¡€(Jãoz1?VtŒ¯ph¢[ðy}x<Þ)¤oœðEº\.ÜnOtÖÐG     ‡ÃCÁ¸‰¡¢N˜Ïˆ’„íŽÒÈrLâ(K2²ÁäÛJãò½ÿ¸Ý¿@0ȰшÙ<ú˜BUM!™9¨o¨ «³ƒÔÔ+¼ôü3Üñƒ›ùùO~ÈÕ«—©¬ªæÀÁƒ=~Œ«éTVUSW_OEYçΜfÕû+Xµz;vîfÏÁÍÜ(ÊÄ8bˆQÄ*ÿî‰áXE®ªÑü;EEA?N·§ËE0žšû8 F£ŽîžVÚ:Z¨­«¥¼¢‚šºk©k¬§oÀ@($L¸ÛD‰€")ø~ü~BØ‹ràŒàõéñxzq9[5•cÌ£¿÷2}ÝÉôõ$#‰Þ)ï•2Žuã&†cüNVp»Ý†ô477P\”OVV&¹Ù¹“ŸwììtR._eÈb‹Dü|RÄPý Ã9?{ ²‰ÕÅÈ^8Äíta³Ú0 ãr¹‘$£ÑÈÀÀ]]´·w24ýƒÁ¨ SŒ:3Níâ(Š;Ç0FÁ¤¨ê¸|TŒB’æ ƒŸŒ‘N¿ßN¯Çáp$&7@>éb¢‡®1îSPœEÎË´µ7 è'3#ƒçŸ~ŠÛ~ðþíÿÈö›¹xñ2/¿ôu„%ÑYE5ŽîH¼3…³Î_E>'Ù¸šqž¦æ& CÃdçdòȃpÛÍßáÕW_dëö-¼ñúëÜuç­<ø“òöÒÅ,Yô?ºý|ãÿ}™ï|óŸXôÚë”Õ4’–•Α¤Ý4µÔàö8ãëv&Ò)\HѾ€˜ŒyƒxçÜbœÄA¶dIÄçób³;±ZŒ˜Ìt÷vÑÐØHs[×D¡¯NÌ&ú<.›ȼ–AZZ½ÝÝŒè1êpX­ø<ÞÈÌ­Q%LÌ¡)³agŸ)œLMz8EŽtÊœN;m30 Çæ°Ó§$£òSuÖEŽ)щóê<„Ÿ8æ ç#ÉvòÕiÏ)úE ÈÒ´DŽˆ¬^B‘”™̽_ª¢âpº¸‘_ˆ(ˆŸØ÷ VÄhРAƒ™/)-/Ãb³Žo6§KUQ …¸ÝîñŸÝîÀf³MÁ)3$ðz½øýþqSi¬Àû¸\4cÅUÌQdÅœ1L~œ2Ñx;†‚$áòzéîé‹`Ä*@pŸˆüp!²ÑDÞë9å” ^¯›s°ÿðNò‹ èäú</z÷–¿ÃÎ];ùá}÷pÏ·ò‹‡àGw߯C÷ÿˆÅ¯½Êë/½Èw¾þ5{ð§ddç¡3˜8}ñ I'÷ÐÛßN(˜¿»©’˜¡Î|ÓÃ4h>”t®…xeŠ1»J¤Ë?~79ꤩ !††TÕT“““Cmm ÅyÙegSROIQ å5ÔÕ7ÓÖÞ‹ËídäM'ª‚ª(S’GæíŠ©‘Ná¬{.«a_À?.U•,ÄûÚ/TršÈû8èÅûyW™yÎŽ¹M5æ~Ç$ʱÒ:Ñ’ÒŠOl¾P#†4hРA#†“ˆa}cƒº‰yŽ9Š@¿ßÕn‹vÿœãs~ ê®)L•›ÎUÈ,€¨Œª¢¢HJTn™éîî[J*Dgö„ó…ŸFÈ’Œ Š8\.º{úæ—~y" ¼wj‚ä%®®à\…¯ÊˆÉÀùËÇ8~ê0¹7®ÓÞÞIyy‡áèÑÃlܸ‘[où?ûÉ]<ó«_rç­ÿÆ×ÿá‹<øÀ}¬\µ‚>XŻ˖ÓÜÖMckÇ’qö܆ƒÈò,.ˆJbr¸9;V •ž~‚¯&ø·y²@'N ÓçÞT&åÊL•¥Oٜʘ±ª¨„Ã.‡ÃP?­-Mt¶·SUUEqq)yydd晕̀ވ¬HcúÏi„D¿K;ÍŒjVò‹KV婯ôÇ‹§K;Ì5!É6Äuþ›Wzï‚ÈBœ…Õ8”ݽ446#Ï¥ш¡ 4hЈáÇQ…ž¾^šZš#«â³c“"+2Ïwâ+$Æ·©ªS3Σÿ&„ÈìâÀÀ]qñ1ãjРAƒNúB1RQ]5!ÝId&e>â£%Q‡ü~ÿ¸ùÌl’¦±.‚/àÇíõàöùñBÁñ9DUQñ¸=°s÷.:'KIç(x$!Œßç&àŸŸ¿ßMÀï%àwO¹ß½…¦?Žìöþ™÷ŸyŸ‘m{§\÷Ga·Û0 ÇßXA§K/Áû(û3½ø^êšÊ8ph3‡âè±ã9|˜½{wñö¯qó7¿ÆÝ·Ÿü·}ïÛÜùƒ›yöé§xcÑë<öðϹïŽïñÚK/PP\Bk×é×òÙs`+× Òp»ÓEbEmÜÄ0ѯù^÷xfé’7½CÇþŽ7 §K g{<5Æ3#„^7·RÕé3ʤNjC9¹¶Éç…¨aÖŒ(ŠXÌq–HŸyd?j§0Ñ®^ ©æ¼2áq²éOÏÌA¸UfÎ}ƸݬrÔèßdI¦¸¤ “Ùò‰~jEŒ 4hЈate×ét’_X05LxÚ¾³ QP•h×KTÄ0Áp€€ÏÃéfØh¡§_GSk'UuÍäW’™[@JjG“/r15;RÈM+T¡ãVš:{èè3PÑÐBm[íÝýè ÃŒZíx¼~$I& ÑÞÞÎÙäÓtuuÇEbYA„‰ìÁqÓþ.Äø·X˜ïqÄ8î3;Âa° `s8Âjµ&F>(Û]pço!]Ƹˆfä—’²l}ì~–-[ÂÑã‡ÉÊÉ"=#=»vpû÷¿Ë?ýÃßóä¯ãé_?Ƀ?€Þs'wßq+ßûηøÞÍßâ¹gŸ!+;Î^=iÙ9:¶“êÚB|~wü„ù£vZ%ꉘ˜¨ÓûÏíã0Yðv"ŸŒW:mƒÁ £££˜Íf ²¤Ì$¨Sˆ:»äX™<‹¨Ìý¹œ6Ã=×õ߸¤tÂÓDf¾™Æùäí1î㸞¯Ï÷‰/jРAƒ ÿá;†@ÜëysÃÉóùƒ8nŒ& ú!Ú;{hhh¥´²Š¬‚B.§çpêÂŽœHa÷¡lÝ„M{°yÏ16ï9ÊšmGxÓ~&¥ †£õAÔMPUð‚èGF©nî ²©•ôëŤ^+âZ~)µMm´võ14l" !ˆ½ŽŒ«—éêîŠkvNU"qS0±!}zaµYÑéux<žùçó2ûOW, áBe˜êäyµ©]U‘ɺvŽïßú ^íE’OŸ¦°¤”ììl’’ŽòÚ+/ð½ï|‹ŸÞOþê zø!~xß=Üu{„Þ}ç­¬^½’ëE””×q%=C'vÒÚ^Gp²ñÌobÞo¡ä'£“;£RMàx™O»Õù^—…ìÓ,¥*‘űÁÁAt:.— Q‘¢.«v»}Ü=y,6G¥èù:Ɖ7kPÖ9ý(qñ~†¹Îû^Å·¡Æw|(ªŠÝéàú‘9ujРAƒ~ÒZÒˆMN^.‚ ÌòE?ußš[¹–›ÏÅôkœ¹t•ã§/p0é{Ÿ`Ûþ#lÜy€u;öòÁ¦=¼¿iïoÜÉû›ö°zË>Ön;Àæ}ÇÙ{ü WÒ²ñûü3ª  ˆnÈLAY—®Ýàø¹+O¾Âù«Ù”TPTRCsKn·QÖ“vé<Ý=q­`Çt%ý4#ê–:j±Ð¯Óã/ÞZt«Ÿüq{›S=A‘rá(÷Ü÷–/‹3çΑš–ÎÁûywùÛ¬[³Š_>ò7û›Ü~û¸çÞ{¸ï¾{¹ãöÛ¸å»ßæ§?ù1째¼’‹—³8’t’Ã'w3 ë@B '@¿Éb"±Ûëg'÷£µòzÆãö:ß1ý»×ëexx˜¡¡!¼^/’(áø¢­­N‡ÑhÄdÁb±âry£‹IáPˆp8Œ ˆ¢uH6c7Ûë¢æá<äkÊ÷Ç‚¢`ˆ?3‘Î<Ï)ªä5QX\ø‰Ÿ´"Fƒ 4hÄpÒÿ‚¸=ž‰}˜¶ª=ùïEeåìÚŒ•·±|íFÞù`#KWodéª,ý`o¯ÙÄŠÛyoãNVnÚÅúؼû›waë¾cN¾@Ê•LÒ3¯cµÍ(hBÁ0†!Ù×K8q:•CI8˜tž”+™\ͼNÊ•k\/¨Àl¶"‰"ÃÃ.ž;MWÄPšf #ÅaóÛ$†’(a2›éÐ!¹¾þ‡ †LêÌ€Ãmåø©½¼¶è%vìØAò™38t€åï,åÿœõkײqýz¾wó·øçúßþ·oóýïßÊwÜÅC=Ä¢E¯søÈa²óòI¹”Áæí;8qnÛpÄíR#†ÿ1ˆá´YEI’ðz¼x½‘Å&EQðx\ ôP]]Icc]]]´µ7ÓÞÞÎðÐn—›Å‚^7À€NǰɌÙbÆëuãv¹ðy½ø}‘˜I’Æó`ÕD àb(‰ýºªjª>ù¯A­ˆÑ Aƒ 1œ¸””–2jµÄt‚›2ë¢@k[‡Ž%³jýv–­ÙÄÛk6²ôƒ¼ùÁF–~°‰·×láí·ò·;X½y›wìaËöÝlÞy€’ØŸtžƒI9œt‘¡ S u‚ ÉÎÎçTò%NžIåØé‹\LÍä|j6GNEHb¿N,ËX,£ädeNÌÆáJ:%³PüôÜ aÓƒúÁuD*º2C¸ÐûÄEHÔq‹Äa“Žã§ö°}×f’NœäÔ©3ìÛ»‡ukVòæ¢WY»f-ÇŽã×O=Îý÷ÞÃwÜÅwÜã<ÆòåËY¿~=~ø!§N!· ”-;·qþòÜ;êtûÓOê㯴2‘(‘:[ïmÔì[<2äx_¯x[¦/t)“2[')'Æ¢vTU%ð3::BwwmmôööÒÚÖDssÆ!36« ½n€Æ†:êêëéè·ƒ^‡^¯CoÐ34ldÔ2ŠËåÄïó$1>ÙfLƒ—ðü‰ó|¯¤8ž¹Fˆ[J, "mí4µ6kÄPƒ 4hÄð·F U¨­¯c@§CËq/ ˜‘ÍUUÛÈÊ ;Y¼âC½»Ž7Þ[Ï›«7²|ýVÖîØÇÚmûX¶n'ËÖncçþ½lZ³œw½ÈòwW²y÷q6ïMæÃGÙv ™æÎ^Ef²ã_(¢¯¿Ÿ¤§Y±zÛwdßÁÜ;sžSgγ~Ëf6mÙBuU5²¬ ItvôMíÎ1‡õ;'%•d‚Á FÓCÆáÙI_¢¦%R"‘Ø…D»ç|ïTÚ»ê9uf/YÙiääæqþÂE’’ŽsúL2gÎaßáC>z˜C÷³mËVV¬xŸeËV°yËVöìÝËêÕkxá…ؾsE¥UìÚ¿ƒÌœsCþÞÙû¸;§ ÁûMuá£edÆÓYJäµITr9—9M,⤀")ã11v»‘‘a †a\.>ŸóÈím-´´µÑÛ¯£³»“ææF::Úhhj¤¹­Ž®vºº;éééapp—ÛØç-^2'Ùœ·˜ˆ£j¼d0ŽN¯¨­¯£_7 C 4hРÃßfǰ£«“öÎDQŒ!½”§’ȺfÞ^¹‘—Þ\Å+KWóæŠyoÝ6¶î;ÊžCÉlßs€Ýûö°c÷Vvlý€§¾»nùWþÅ“,~3¯¯ÞÎ+ïoañ¦¤–"‰ò”8‚P(DGG«×|Àw¿ÿî½ï~õˇY·ò-ÞXô2>úSžyúqÒÓ®àõz„CTTÖÒÕÓ=?¹P7g =^F“³etn²¯Ì0žÎÂG1©I”|Ì1c8n¯BUmûo!óZ×®]'%å"§O'séÒeR¯¦qúü%Ž<É¥KW¸qãW®\âÒ¥+œK¹ÀÁƒ‡Ø²u 6màÄÉ“\I½ÊÁ#;),Í$ÎQĪŸ,1\H‡f¡äõã’’.”ø/„øNW2$¯3Ë/ŽíÉ@ADäèéJEÂx½<^/þ@‡ÃAG{+õõõttuÒ;8@o/-­Í”——SS[ÈÙ4%¯qÎÎi¢‹(‰gæp/Gq¾sI¼9š“þ)-+Åb³j3†4hРA#†¿Mb¨2P[_7Õ€fzaýµ£w€7×mâ©%ïòôÒ÷yaÙ^yo=o¬ÝÌkï­aù‡°oÇ*žúÉ-üìÿÌ~ð ~ùèÏxõ•¼úþ^\¶§—mâ‘%pòB¢ Eg}Ô輊Þ0ľ][¸õ»_åÞÛ¿Éwnþ·Þy_ÿ×opóÍßâ®»ncÿþ}˜ÍfB¡ ×oÐ11T‡‰¡$ãp81âp9ã+‘û© ÇœX„D¥¤,—'Ÿ}€'Ÿ~„—^{†%K_cíš÷Ù±c+‡äLòY.]ºÂÅ‹—9wî<§Oæì¹.^¼ÌÅ‹—9á"—®\æÂÅT>Ìþƒ›©oªD…9öïc&†çëúiq%]èó^(±ov0^™¥çãŹࢪ FãCCCø~Bá0`»Ý†Á``Ø8Œ/àOxqg:›íûbVé)$æ–Ï ótJÀý,¯ûä®­ªªx<^ Š ñú}Ÿ¬”[#†4hРA#†S/V»’ÒRBáÐÌLê)îy*f‡Õöñʇkyeýz^Ù¸™×oäùµëyzåz~±äMzð6nÿ—/ó¿ý7ßô÷<ò³ûX½q»ŽŸa÷‘S¼PÀ¦³9d•Ô Éò„f5º1‡ÝÆ™äÓ|ñK_áÞåïnúŸýÂ7øÞwñ‹_<À#ÝÇî][Ðéúƒä\Ë¥£§7®‚÷w±ch±Z0šŒ‘¢r!…ÛB¥z‰¹DfÝæ3¿˜ñ»ŠÅ:BaigÏgïÁÍlØüKßy‰^yœ_?ó3ž~æ!Þ}÷uÞ{ÿ-Þ^¶„-Û¶²oïANž8CJÊ%Χ\"+3›ÆÆVÒ2®røø6úú»eiŽî©ò›!`,€%B"?Šô4ÑCõ#Â…>¿…F=D/²$£ÈÊÏE±Meö|±ðu¶æ·?‘ïsïmæ"fóîxóãÙöˆÌŠ[((*ä·ñ-¨14hРA#†“.@€…ùC¡Y 85:  …9z)›Õ»O±|Ë^ÿ`Ï-_ÏóË×óòÊ <³z-ÿòÕ¿çÿ}áoøæ7ÿ•[¾ù/Üùýï°ì¥¤\8ǥ̫KIc{J.Ý£qk‹üp¹œ\¾|‘ï|ûûÜtÓ·¸óÞ{¹ïÎ{XöæK¬^ñË—>ÃÉã»èïkGêêéêa¦œTQUdEBUTYEQUŽÖ}*²¢ Œý.½…¬ *Do¯¢J Š,!K‘ßUYÔŽ²‚¬H(ª¹yeEA‘AQTTY‰@‰<–"G_ŽnGQUF-L&s$?mòJ{,)$fo‡j>™ÚôÛ*q‡h(x<2:UU Cx½nœ.;›ÃÐ]=mÔ4”s=?Ë©§8p|«×,aŪż¶øi^xñ1^xñq^[ô«?xsgOsèÈNŽØÉˆY"ˉÏi~Ô™¾Kž›¨<õ£túí$”nà|²ÆxçÛf!8’}£ ¯¡°‚#aÆ£ô¢‹ãy«ãœp,Í^™G8é\6“@M79RâëÇñ¼'›éÄ@¯&@ I€$ÆKj£¿‡ý²ŠòßÊ÷ŸVÄhРAƒ2uåüFA>¾@`Ú7x´`Fšò…~£®›E+7s×Ožä›ßý1ßúÁÜüÃ'xêõ•ìNÉáûwÜ;ô÷Üòoßåþ{äáŸdñ›KY³v¯½öÏ>ÿ k¶ï'éJ£vŠªNªT‚~/M5l\ýï¿ù;?\ÁÁë9¼k Gw¯çàŽ5d\>IO+bX¢³³›Îîθåd“ë·Y VE¿±JŒ;¨“»IòÔâ0ÎØœ;¢FŠOY–1ŽbµÄ,üæt.dþ9a'Kå#ÌÊͶ_JÝËR:5J¸%IBÂø}\.fË0C?==­Ô5”SP”Ã¥+É$ØËŽ]²vÝr¿õ,É)½ñ§ßFŒÇÇM ?.yéBn÷qKO§ÿ³}.bu ‹GäZKˆ£%~‡dªô! »EêôaÚŒ"Ã.ŸY GIâDwqæ« O¹6#£pÒUE8MùüΡrˆ›'Úù‹7¨>žDæ'/LƒtõtÓØÜ´ðκF 5hРAƒF ?¾Kaq—sfd…¬Nh£¢$¦¬¹— »’xuÉ:^}s//ýÿj o¼·›KÍüäÑ'¸é+_åñ{Ä¢gñÆKKygéRV½ÿo¿ý&ï.…?àèñôöõ"Iá)E„Ò×ÝÎá=XÿÞkìß²ŠÃÛ×r`Ójn]ÃîM+HNÚA}M1Ь`¥«§+Nb8©¸›ª` (r¤X‹”zòÄ]&¿OÊ4R3™ìMÑIÍ#OœB¸¢FÔèƒá0&³›Í6µèM¤Œ·3O±©,PO6[¢ûª*È’„ ˆ„Ã"ŠéüÊŠ„$‰á0Á ÛeÔÄаŽÞ¾šš«©¨,¤§¯E'I¿k—CZºP’¹Ð×,Ž™Ê¸SŒí ¢ŠÁ&RÐ&¹ÂOz“@z“ÀÙêjCä´†é4ɘ\*F‘:½@IÄ`—±{eLfN§3v‡-‘3ˆßqVb¨&N1R‰w† e›ÝBo_--­ôô 0bÅápâõùå‰\:E‘‘$‘°"ðâñº}ñ±–x]^?RÒD^ÿ…Èi?ÎÎN"äs!ðèßD ¬M¦I&¯3Dv»DZSˆËu!®wŠt™eúF$®59W¤¨[¤¤G A/Ð>"Òl¨¨Ô‰t˜e\wH!(ª²Š(ƒ ©ˆ’Êx":IhÔF<‹*‰ÊGã}ìDM}æÚnŒó¡Û㦶®–¡á¡žW#†4hРA#†‰_šZšÐ D h¦ue¦KÛzIÉ,âø¥Φ”r·WmãÝu{IN-ààö=ì~ï]–<÷,ýìA¼ÿ'Üÿ£{¹û®;¸í¶Ûùîw¿Çw¿wßs7/œ!8E ²$b1¹z)™[VrìÀvNÚÉÅ3G¸–z–ÜÌËT”Òß׃$I~º»{“REIb8àaH¯£½³A‡ÅfÁãõ!‹a<^/noUR‘„ æáAhmïÆë FÈF4âC„”Ü.oIV¢ò3YV„0F³ƒPXF Õ–å)U*ËRäßUEÁj·cÁãñLíTþ–ˆ¡,IH’<÷ñú Ãp8HWOy7ò¸r5•+iéäRVVAu]« I?z‘©ÃO'1œëøUf—-«rd–PUA’ .‘>«B¿E¦iX¢kTÁäVé3K¤7…I©¨Ð)Üè“Þ&·#ÌåÆ )uA.6„Él‘(ê(ê S«—é°ûÁè”ÑÛF= þ°JXT I +üû#†JJI?UÅî°S^QŽËåÒˆ¡ 4hЈáoªÐÕÝMGW'É$-J #¦¡3wý:ç2‹Ø6“'¯°kïIV¬ØÀªµÛØu0‰Û¶rbë–-~§~y?¿xð6üé-Üß·¹çŽïððwòÔãwóò³?&;ã8¡€J…¡Ê^¯‡†ºJr¯¥RUQLc}%ÝM ú±YÌø}>DQD–dü~ïTbwWAÁaÖ‘ýg/^¤°´êúJ:;:"d±½‡êÚF6ôƒT–æsöô).\J§«¯aƒ¾¾n,f ƒ½}ŒZF1ihl§¶±“Á¡aL6'ªª ×ÐéÉ-¬¡K7Ì訕ãÆa#ÖQ –Q 6›½NG¿aEQpŒšéëëÅ0d_ÔéÜDä`‰¬ðÏR„ƒ¼^/áP%jÚ#I’$EIn2³…Ì0Åø» „Ñ驪­¥¸¼Œœ×ÉÈÍ%ëZ6iYôôöãõx‘%i†ÄoN’1!ýØÉÑoÚ|&‘¢?²¯©ÉÇAf!¡9¶Yg Çþmqd Áqü‚ŠÍ«Ò<,Q¯WrA·I¦ [¤¸'Lzk˜´Ö0×ÚE2›%ÎT…I*÷s®V¤¨7„É£Ò:$RÒ+R¡é¶H 9e†œ*>ab§Ôùž×|d8‰h¼Äp]ÚŽ«qž¤è uIi)Á`ð·"ÕÖŠ 4hРÃiÆæ&¼>ßÌZdòlžÃ&;g¯°aO ï¯>À{ïlæÝw>äÃ-Ûxcñ[¼¾xËßÝÌ–5ïr`Û³œØÿ+’<É‘O±ýÃ'9²í®y’ܳÑRyQðͬÕ9"ÁŸÔ‰]©(²„ß «+>b¨N~.ÀHo=R’8y.…ÒÊRR“9{*‰“)8þ*ï/ßËÅ ™½Nzv¥¹dee’š~ž¤#GX¿a§N$sdçÎ;ÉÙ3ÉÒóÊ|Þ¹‡))¬Û~„}ÇS8wú”B0,Rxù ×s®ÑÙÝE8žôÚ¨±íæã! !(c«û²‚Ëå@¯×c6› øøý>v»¯×‹$JÈ’< 2og‘ø ý¹ˆ‡ ˆ’„ÛãfhÄHgw M ê±Z­©û¡N:¦ÇQÄ;ûø»0o¯;e¼ ñvõ~ÓÄ0ž€öy Vô !ò?yÆ ¬BHˆº‹0âVv„é·)ôXú,2F…œv™óõ!R›B4U¼a•ªž çëü«ô‘R+p­Y!§UDïˆD^¨L=Å=Ó·î_<÷Mp‘).Wäyæ>Cá†á!JËË&Ì}4b¨Aƒ 4b¨þöŠG"Y†•¸Üî)ÿ¨*ò4c°X­lܸŸ<ü"ÿôíÇøÖwá—?ËÛï.ã™ßà…—–ñô+«xí•Elxÿ5’½M~úfJ¯í'/ó )göröèVvø©¶ ¸£…Ù¤e|uŽJq²·‹¤à÷‡èê싯0³Ÿ«‘¾&Š‹s©jl §¿‡Sç±}óRn‘žq•×^_Íî#ç¸QÕOo·Ž®ÚJJ‹ )®«àJÒaÞÿ` ×o¡äú ÎìÛÆé‹8u>£޳o×NœHÆëñ’r`k×là\V=W/¥sh×>Μ8͉“gX³öCÞ\úëÖo&ý|2+VnÀìðPšu•Š’"õz¤èìgÌ•ùxç{æÈW›a ë¶ŠŠÛå@§Ó¡×ëq9Ø­ ƒƒôõöa0 1:jÁår q¹\¸\.B¡p¤£(Ê(’2»ãG•sNÿ“¢"Ë2ª¬ÆŽ ˆe4_‘ýïñ¢~ M€ÄŒCs¹Îè"N>ÏNŠTQ£ ^c?§ÆOL?'©ãÇ–$«ŠŠ¨€?§‚Ã'ãA–TÚŒY­AN×ø9Uä|m˜Ëõz­“~òÓ‡yäñ§yuÉ»¬Ú¸‹­{NpýF ===ØlœN;^—‹ÕŠËãC (м0";­«¯ùÌdÙØ˜2D=‰¨ŒÄ²+5A$:“½Íˆi”“9"½ŒG8yœËNÞ ˜Yó©cøÖ¥âÙ“<âBuù_©Æ»,ÏÛ)„³šÝAd«¡E‡¢w@XŽÊ9Õ ‚-v•ñ×yublKÿùø}RR.pîÜyÚ[Ûéìî%7û*kßzž_ÿäüè–æÎ›ÿ…;o¿ƒµnájj:§N&ÿú œN7Š"V%<ª„W…fªÕÈŒ}’ÎP™Ì”Y^ïIÆ)Ç2G!þ›òÙHÄ}6^"·Ð¸ 5ñc~AÄ0^b5}f_[ÈÂOŒÏž:9?5¢‡_Øüj"RñD:Š y¼ùˆfŒÇŒEÎ%Y¦»·—ªÚj|A¿F 5hРAƒF ?-qM-Íôö÷áö¸ç-ÈÊÊJسw/«VÀöíÛ9uò$Y—ÒØ 7-¸ÝB¡r4Î@U"Ù}Š¢$dt06g6öS’$DQ"ã÷ûéŠ;®BJI• v N“ñ) Oê`ª‰Dê õYCoÆjµ †æÏ0›OþË4¹¢2©û9dÇ»+ ÷’óøV^$˜TŠ<êAq8Sgå¤ãÛšE0½ðÕ*¼ë®:V‚T;€Ð®GèAu£XÜ(v7xÃ(¾ðDQ(+‘ã<žnÖdbèõsêd2yy7C„BA:+¯’¶í9Ž.¹‡/ÝÁ{¿ü>?üæ—xྻIOÏäÌé3lÝ´£~Ÿ$ÑrrÅÒOš±ŸBû0u>=²aªŒa¢üvªQ‡Äo²Ãåä©3uR·HùèÏ#/1ÑÎ\"ÛýMôÄùÙ™LBæ5:Rç:çg|ÎEebV™ ‹ŠªÆ/YGJ›Èߦ6%NR9á#ó_ô6a!LgW'µuuˆQs-jРAƒ~J:†]=‘,C›Í>¯Èl6ÓÙÕESs ô:¬ÖQÜn7@QÆM¦ÎgMö›TÌE_EQPY–‘$Qp(L0$ààóùðx<¸\nœNN§3b8¹`‹ÖDSVõÇš_±\:Uf8Q$*‹wî èï×aw8ÇBÚR Æše›ô»¢¨¨V7¾CÙ¸W\À½6•pZªÃ‡ÔgÆw¢ï¶\B‡Kð®KÃýþe|;®áÝwÿÎ\ünH.&\ÒŠÔ¦C,ï$\ÒF¸¬‡`~J¿¹w¹ß‚lõ¢JrÜE¿¢¨ØìvN?EYY‚fH×Akænj¾Låîg¨Kz›²+Ù½âI~zû×IKM¥¼´‚ë71:2ŠEȶéù ¬€•™¹l.*a_}5IM¤ê{¹n1Ri7Óà¶Óp¡—ü˜änU@Ž£Š"¡¨"²:µ ¨N9&›àÄ*úÕÙI»ú[&U !x‰Î´}Ïx s”¿EAU” b–H‡3gÏéÝçÉÄpúao†a<G®®ÆX,ŠÇÙ5Öë¡Ä דÍqæ ¦þ@€öΛ«ßZ£Aƒ 4bã24UUæ_Æ/TTUŸã“e ITE !,Š?¿/BüÜno”ø9q88NœN'.— ·ÛÛíÆãñàõzñz½‰Cu‚ Ê㿎1¥h×è7M cÍ Mëv÷ôáöx"Žœ1TcüMQTTABlÒ8WA ½ ©× !©×DðJ󵄲ñÈdzâžM™¯ÔáÛ•ƒëÍd|ï_ œRJ(«†À¡ëx÷dâÝ“‹w.á‹å÷dã?˜O¨°Åˆ›¸‚È€NÇñ£§hhhf@ßlj}’²ò—oy–¶coã¨8Cp°”îÚ^ô_I:´“ÎŽí;ŒÛíePò“Üׯ«GRxiåQ^ß|šE»ÎñÆ¡Þ9“Æ{²Ys%ƒ×rÙYRÊ¡ÆNõ¶‘ç"€ ²H—±‰ºÁ2:M- Ø{09¸ýV¢°âEBBUäI óò1üÍCuª$|ìAÀëqãr:pº\A@ ñI;D cÌÆŠÞùmÃxe· È–gC%ökèt¹hmo£½£ý·ú½§14hРA#†1.V›•Ú†ôC†©ME-»Šþ7ñˤøPÔHçO#‘B8Œ üþ>_·Û‹ÛíÁívãtºq8\8Nìv'G„:\.>Ÿ@ @(BDd9â>™ÈŒá zU™J Çâ1æ7Q|ÍBüT%†|ôwAèéíÃçõÍœÏQ,ðÕI#rÓ_±ˆ €ÔgA6¸ ‘¿)£.ÄÆA„úB5ݯ5¾Zïà ‚û¯8pïÚËøÖ]!¸?—ÀÑ||Û2ñlKÅ¿7—@zþ¤ëx^=Ž{ÑIü'KÍ®øf¹€`0HKK '“NÒÙÑKKskÿŠõOý€³ËæÆöW(HÆk¨f =ƒõ¯ÜÉ¡PY]Gò‰dü>AÇZycÇ/9Â[+Oò檓¼ùÁ)Þ\ŠWÞ?ÂË«öðÒÚ}¼ºå8¯¹È’Œlö5âGE<ÊÝÆ;Gß`În2ªNQÚr‘†ÁZÍôÚ»1º Øý&|¢‡°âG”CȪ4•$BÊæ#‹‰ëEòï\¡úHßB n'SÍS~/ÆAº;;hïè@oÐcÅ4lÄïõ#Ér|³t$0Ë8#GêDŠš˜º`!‹P‰úD p˜ÿ\8›ùÕf£µ­Þ¾>jРAƒ~šî|>•µ5ôëb~¹OwäSUUV"PäñLÁpH ðBÙ§Û‹ÓáïüYF­X­VF­¬V+V«‡Ã…ÛíÁçó  ‡…™Ùu³Š¢ÐÙ¯+éD1¦ [WTK¨i’MYQŽšÐ¨ )$J ÕÄ‹:ÇC_ÿ Á`(ñy§ùºU±ä¥0³XUA•d”`ÅíA²¸Qý¹uxöf*é"\ÑCàB9ÞMix6¦ãÝ›‡÷D6â•Ä¡K¥xÀùÂq|G‹‘Íî¸I†×ã¡´¤ŒÓ§Ï`6âé娇/²ò×w²ý•Ÿ°ë¹¼ÿ}šŠÎÓRyŽS›ž%+5‰ì¼ë¤]I#RëeOM%‹¶ŸáÍÇY¶á4Ë6žcÙ†³¼µêo¼±…7ÞÙÍë‹¶óú+ÛX´ü0K^áÐ@*&¿»—ÝŸüãÿÇ#‹çè±ç9ñ3Ößx–å9»Ø–žÌἃ\®9Iù@M¦Rº­­ØV)Õ%G>‘®¢\.7—›ÃÎ訳قÉlatÔ†eÔ†ÝæÄårãöz¢.y^šñªfÖ}V!,Æc¨NêŽßFCÙ \ê¿1 ¶@ë0JXA Nf«GÍU䉡ÅñÈ‹Hp<¤l=9úøRôßD„èþH‘DZYm C„ÂáÄ:–³½oJ Y0Óæ±&GMÌQ¥«É5edAF²,ë&P҉ؤCªë@®ëCu»ñ§—ã~?÷«Éø“Ê-žùÉtôâ°;ÉÎÎáòå˸ì6ú+³©NZNÙéudXNÒº—ص~)ÇíäFf­ùÉ ö4’rþ"ÅE%„CaŠmCl),æõMgxóý“,ÝtŠ¥[.ðö†3,ZºE¯¯åUÇx{åÞ\º‹E«³òB6WGûQ‰æÁZî|ñ~ôÝ›©=›Î`Ç Rê?ä‘ã¸õí+|ÿÑuÜôðÝ|ë×÷ñ÷ŸàçkeÙ‰%uÝÀê7£„}ÎQ|=ç·)à‹,:ÌêèñH %NqtÕˆ ÊIã9Žãu%%†\U¼´67—{ââB2²3(«(#ïZ67òò©ª®¥££ý ÛC8Âf³aÁãvãõz#¹ªŠ‘`IäeÜk~ò­Ä¿Xã³>«YŒgÇy!9ˆñõùî?í1TEepPO[G;v‡ca‹#1Ô Aƒ 1üÍ^jêjéîíEšÜ­›¥È CX­v,+v»=*÷  H¢4u¸m6C†q’6ŠLݾ$˄à >o@ H(ÆnóÐѬ§¶¢›ž®8î§ÈI£öñÃvX[„úd&jµU’ £ÞËÔ.hã5°¹J Š(#6Ô7ˆAè²¢–ÀÑfè°ƒÁ£>T·Ý£¨íf8Ü£ÈÆ« p®µÒ„Úi¬.Ô‹à Aå kB_ØÊèð(¢(&VÌ%*ûû v* †DTIAî&|£™@~bψrÜ]‹ÅÆ…Ë©dçä¨È£õø*Ê÷,Á\p{ެŧ±uU`Ó·bi+ hîÆ1jäàc´7uàEÒGºY›Ã¢ §XºêË6¦°lÓ–oJféò¼ùöÞ^™ÄÒwðæÒ}¼±ék2ó)òX‰ÒÎL¶{Ÿ¦²ôÖAŽ6ëxåT?z¡‚Ûx–ûþR¾vë3|ý®Wøç»_å wüŒ[ßù1—Ncöê ÚGpöÔáê®Å©oÆgè"déç’`GUB ¨!/²ßò"Kâ¬E½:fŒÄ´àÙÞOe–—'-`(“HËä|=e‚9g®ão £O7kÖÛG®áC êú(--£½­‰¶öNÚZZ))*%íê KK1˜F1©¬.¥¹¹‰–úª*Kéí »»“þþlv7B0„ÏídÔbG’ÔØòÐÉïÓôsªÄüLO•_*1š›dα7#ƒqŽ×}Ö.`œù„óUQ”ééí£³»“@0øÑ;Ì1Ô Aƒ 1üø/MMtvuÍ-aLÄ `Š ©2½m™ó“D<.N§¿/HÀÂåpb³90ŒµØhjmáJÚUŽMæÌÕËÜ(®&'­– Ë’Ù»ùB\Ã)6ö“‹ÛÂ^Ø\Û+`M9”é`c­Ãu°¶ål3êÑz(D ‡PºŒ°¾ òûàÝBÔÕeÚ†º­¶–C…t8Z [‹aK ø”3l­„‹­p¾ öVÁZ¸Ø[*áùH®§÷J5ŽQçøeBE÷Çed’ˆ ÆlT«E‘ÐéÙºm£—,rº¯ƒ÷/f³xíi–®;ͲMçXºé,K·¦ðÎÆÓ¼óÁ1Þ|ï0KÞ;ÄâwòÆî‹l,*§9àA’2[ös¢r;y#º¡ðš^îýe:7߽Лï{‰ï>ô·ÿò-îþåJnýù ¾ñÓçyzÛ"Jû qÍFq4r™‡\ømFº› (Î=CîÕ$j Sj+C°õ!»ôx‡ÛqZ ûÜ(ªŒòÓà I0enZ—q,A]Ú8¿Q™Ò=Ž+}ÖãG™[:ïq«ÎÓ5Wc4\Õi]º(VP$•`0ˆßçÁë âóºiok"''úæ.œn?#ÃC”\§¾®ŽÌ«©œH:Ɖó)Ü((àúõÚÚºpج :Û:Å#=ÃCfN·‹`0Œ$Îì&ª’2ÇË¢ÆÌ;Œ7bF&c"³ˆ³¹)Êx%£syŸ/@Gg½ýý‘sœ&%Õ Aƒ 1üôÃŽ®Ú::q¹<ñKfh5§Ë@§šL->ûûuœKMçøùK¤\MãÜÅKì;~’Õ[6±qÿ~r+*9yá<[víåä™ód_¿N{G7ºëºÐhwÆPžè†¨€:j‡“õ°ªvÖ ¾œÊ Uƒ°­6V¡¶@ATDçaêÅVØÓ #ØU« !¯GPv•ÂÉèqG¶Û ‡¤6èµ@a©ƒœAèA]y67 X-tT¶àöº'òã .O„8Îgl’ˆÑÍôº–v7£—P(LO_?I§NSŸyÞ{„Ñ¥Ó”zca ÖÚk¸:ÊL]H£=ø:+Q¼nZztlݺƒP ȰäP[ïœLeÉš3¼³)…%›Ï°dý –¾wˆ¥«òöÚ,Yuœ¥ïfñŠC,>z‘uµ ÙÊ¡ªÍ¼™{˜=©¿YÊÝ?ÙÄ·ï~›ü4w<ø"÷>¶‚ýú=~üÌî~b-ß{êY–|ŸVS#¿ Û@­åX­C¨ª‚Ó2HæÅ<òðϹå–[xøg°lñk\½LwK%þZÌõ¸-ƒ µ¦Œ–S[h»²ŸÞœs˜Ëòð6V"ö¶€Áˆlw€×ˆâì]¤¸æÙ&k´§uc9òBâæ' +LxÆN™#›PÚ­SAû1èûèÐawºQ™€ßƒ®¯›ŽŽª«*ÈËË!»¨Î¾ZèÓá°šÒÑÜÕGÀï"?'‹«W³)/¯ ïÆušššéêꦫ»‡Aý0°„Óé ½½þ~~I…0²$Ït?V˜_Jžˆ|tyªq›Ù¨ñG‡ÃI[[;ƒƒƒ¿õï<­ˆÑ Aƒ 1œå¢ÓÒÑÕ…Õf³s¤Nê Äæcærþ´Çêëï&é| û’Os.5•´¬,² й^\B[{;V»“ÙĈyÇK0BÅHȽ ! b|q“gäÆº*MÈé‡;ªÉ ×»àH¨AYQÙp¶us9l­†Zsä~A5³ uq%øBp ys ¤ö¢ft£î¯•p¤r;a(€Š‚âñ¡«†­epºεÀŽrØ^ ×ûPSº­.Úš; ‡‚³ŠóIÀâ)¸ãíÆ,¤«kžQàቷÛC]C»ö¤ðø!B‹îgôþ¿EwpަlC’¥Å;ˆ4ÒŒ'kBI5µu8pAÒv±©¼˜7ŸgÉÚÓ,[†wVañÛ»xsÉ6–¼{€·6žeÙ–Þ^}ŒÅËöòÖÑslk¦Hx…Q>ÌÙÏ­¯¤qÇ“ùÞݯqóý¯rÛÏòðOੇ~ÎOŸYÉO_ø€G_ÜÈOoãÖžcËÕÍôÛºx-ØÛîoÆí± x\ƒt¤ñúãóå/‘/ýýßó7ýwÞ{o½½„ú‚+xúJ¸G ¤Ðså({Þ»ïÿ€÷VÜÃŽ÷ãÔú—¸¶ÿêέ£ñÂ^:RÏ`*ÌÄY[B ³qØ€ô#£ Ê*¢?Œ*HóK/'uÕfäï)ÓæQUe~¢ü»ØsA™8¨Uuî¹G5Qƒª‘EŽšS) ‚߉Åñû°;Œ:œx¼^vn·¯Ç‰ÕjfÐ4Šßï¤0/‡Óg.pùÊUÎO!-í*—®\æüÅKÜ(,Áhw3ØßMÊ…ódddÐÜÔÎÈÈ0#=&£·×0&IÅøeá‰Âx:~óuãÙ³w‡†Œ4·¶1zzúE)>SO‚&’»§Ìò3Þ¬8|­-mìÙwm«VrùåÇ9ÿ£!íÕ‡)<¹“Ö’Lt XªÒ±_Ù…gå/ð¯{•œã‡9}.Q¨r[X“WÀ»Î±ô½c,}ÿ0o.ÛDzUGyûÃã¼¹â om:Í[[RX²ê(‹VìeÅÙKœîï ¨ÊŒºYzx%ßøþþí/sóŸã,åΟ>Ëcwþ ÏÝõ5~úØ+<õÔ«<ÿä¯ùÅ‹[¹÷­—9R°Ÿa¯‘°×ŠSׄ±¯‹ —Û¹·ŽÚ y穇øÊß~‘¿úü_ó¹Ï¿ü«¿áßø:;>\г· E€'HëÙ­¬Ûñ¿Þø}žXs;‹6<Ϫ½«ùðÈ[l>ôSÖoû9ÛÖ=GòÎUœßú;—Ñ}5‰ I aïÂPÙŠ¡ºSGÝ!‹Áî"ìö!Ã0>upÿø•/óùÏŽÏîóüñŸþñ—Á3¿ü1C­Å€ŒbuÐtz3Ž>Á‹;ïåÉ÷ðÒ¶çyëÐ*ÞIZƪ¤'X¶ý¼¹úÞÛò«×/áèÊç¨NÚJ@ßGÐé¡ûF55§¯Ñq­”¡ÊV e­èJ®ëÀÜÚ‹½[[7‚×lÁoqry1zNši 5…ŒëÌ4—ŠeÀòqt£ã2RR'v3º’,âšt41hoÄèîÁ´¢Œw>Õ©¯:é£;ƒ O7ÿ‰lO•¼>/v»«ÍŽÙlÆl6£Ó ÐÑÑÁ€N;¨¤° ˜¶–ÚZ›©(-#?ëYW¯R^YÃЈŸ×M}u19y7hë褭­CÃCŒŒ c±Œb6ÐÑÞBoï‚(Å·ø3W¤Å´÷R¥V`~ãšÙ$ÀçW•öŽNÚÚÚq¹\1Ô Aƒ 1ü´C_ÀOGWýº‰*¨ª‚(J„â  Ê"ðEŸ×G_žöæ~ZzélécØ0Jmy9™Å [)Í«âFvy™å¤_, åDggqùÜ JŠêéìJ$ÇpÂàAÔ “—ª³¬˜«Dß§h…&Õ”ê¤ÂjrÇE‰Ž4Ê1\ ' èñû#¦QŒ##]ß5b8}_•i¿+q̉)*Š$ †p¸\ŒÚ èõt¶wPWSGiI7òòÈ8ŸÂÕø¼y-§V¼Á¾u«iíèAQRmý,½žÃ û“yíƒ,Z{ˆEOóÖ¦ó,þ ™7–eÑ[Xüî¿{”Å[ϰ£¬’b§ Q SÕSÀ]K~Ìç¾ùC¾ûÃ7¸ãÑ7yzñJ6íØÍ•”c\9»‡ý[ßeÙSwðô#¿âÉ•I<·ëntfâº:Œ˜:Kê.ÇeÅ¢ë£éòaμõk^ýÑíüÛ?•/~é¯ùüß|Ž?þÓ?áÿøøñÝ7ÓÛP¨ºªN¬a͉'xiÇ}<¹îû<µá^^ßõëȱ¤5Üóï~°˜¶.å©õ‹Ø¼üÊOî!lÔã5Ù(;z…ëvpîÐ)rΦ“yô2'6$óp •rhϪ +§Šž‚jJš,mÀÚ£G‘Dü!£MF?"3lV±8ÀåQð‡T$ùSL Uebý'ºž°ƒ6K×ûvR0°ƒ2Ã1šŒ¹„$?È*~¿IVgïÄ$†ê,®°cãÑ'YŽäJ¢H($#+ ~—‘a3—§ÝJO-u5T–ÓÔÚ‚Ñ4ŠÅ<ÂõÜ,Nž:CvNEEE—”R\ZLeU%ôööRSSCMM=>ð“%†‰ÌšN{wÉfÂ5d"{÷)=÷:¯/~‹õnaýê-¼òì"6¼û!§v%+é2¹'Ó(>—Iååëº@wN9r8ÀàˆDv¹Ë7¼d•(¬ QÓ¦sPÆhUqzU\^ð †°‰èT?îèD€"O›uUõé)Jær÷"2uoqcp=…}Çð…H¡Ãnoˆp8àwþ„G~õ¯-YÎÛËV²òýH:|œ”çØþÆ*ê“ÓC~²‹Ã¬Ø®ã­-|x´‹-'Ø‘<Ä‘Ë6Rr|d•I4¨”·J4ôHt$Ìv_pì|¦Æ¼Ä›I8×m§§ŽÓd‰!g+…»¸Üý,9ú%¶P¦KÆöb7PUUEß ãÈ&Ó§ƒ@0€ ã÷ú†Ãˆ’4NÇæÇr%澨Šïn¼Á¦£íì»dåàU›NXw`€Ãç-”6 #ÝxIQeIVTur#~jÇ}2w“©Žµã&$ÇcN3åß#NFW7ºã\èx‘óÝϑѳœÃyüÞ#†!ZZZhim£¥³ƒ–ö6::"RÍþþ~t:ƒ“É„ÅbÁëõâõz ‡… n(«1æ©çøð)03‡+)²$âr¹ðz½86ôƒM£„!„€×ï#,«sž¦,ê-ÄЇ8Î=³ñ»™Š&³…ªÚ:õ†OÅùV+b4hРAƒF ç CÃCtvua·;â#cÑ’Ho÷¥…õ4ÕvÓÑÞG¿Ž‘3n·¯×ËáÆëö!â¤Ü®ÈLŒ‚FQ”ØRÒßÁ‹$JtttD^›xet‰v†»HT~ºP[ufÁ †0´ööÓTSGYi-%%%ded’z1•Ô‹—ÉÊÈ¢¡¡AT&=„ŠÓ:JKC-µ•Õ ôêñºý±×£Ü#¬ª£ä%SÕ[ÈÞ¼M¬»°œ×¾À;Iϱ=ý-N­%«ñEíg©l:CÉ­¬\ýß|ò!6¤mÀì&ä¶áè©§&õ©GÖ’zöúê42l`Ý»ËyäÇ?âë_û;>÷×ÿ—ÿßþü—ÿü{|åËŸãø®‘Ã>èO?IîµC\­Jãrñ1.—ìaÏ镼üÆãÜöoñËï}›~ñc–üè»|ûËÁ ?¾šãûðw6á1ÓVTCòû8sä9e\:y†½ëײmÅ2ŽmÙDjÒqò®d})›+ÇϳoÝÖ¿¾Se þÂÑKVv¯$7ï:†þ2†u5´ÔeóöÒç¸ãŽ›ùõÓÏòîªuìOºÈþýçxëÍ£<óz;O:°Ù!¤(dôs¶¦ŠœŽ.ê†ô{¼˜B"nY%8EÖ=I’ SgucŒÏ9?e—“g…ƒb€Q¯Ž6S!u†L‡s0zzQDø#DoxÈÀ°É„Ñd¢··––6Z[[éì줵µ•ææfÚÛÛijj¢µµ•¡¡a</n·‹‘‘aœN'^¯—`0H0D–ÔÄceÔi„f¸:«ê4 D?cñäœBüNÄó¾SÿÞ?0HcSóLçkjРAƒ~ú:†£–QÚ;;1†ç^•Ÿ!ÝR&u#ĸ‰ßGxúÿž:†~¿Ÿîî,žîšú)Úù…t ã|а¬ôE‡ƒ¸œN¬f úÝÝ= ê‡&ñ=EéïéàLÒQvmÙÉ™“©(­bh°ŸþÞ>¬V;^ ŸÇ‡–AR§ºGŠr5E¢Šx% :{'5úr ;3H­OâTå>naǵ强ïܽê6’Êá ;»F©L?;·ž$yÃZêÊqwQ|ñ­­­|øÁJ¾ÿoÿŸüÑó_ÿËåþ×ßãÛÿü².1 >ÕÇvòá $•^$»4…‚s¤§§°ëÀnýÕ£üúî[8úëŸóîná¦/~Ž7ü mçOÖ÷b0P–’Å–×ßãÐŽƒd_É àÊrN&çÔ®Ÿ>ÌõÓI\O¹@î…T.>͆7–±ùÅ·ñu`t*ì:=̾¤"®]Ë 8ÿ"g“±â½wøë/þ ø¿ÿ'_üÒçøÊ?|Ÿ”üÔ-ä¤ìcïárÎæ Ø\`õùyqÿ~¾ÿ³xü×yaõj^ߺ™‡±3õ*'‹ ¹ÚÚH•aˆn¯à$EŠÎò¿ÑÕœ§”-4@EP¦9’*ª¢ ø5322‚ÝnÅn·¢×áp¸6ÐØXOcc3:‹ÅŠÁ` ½½…îîNêhkk£··»ÍM8Âïóâv{ðû#3ŒãŠˆxžƒ¢.l!FSJyŒ'q¾ÛMz¬–ÖvÚ;»c/K7’"r˜é«/¢:ãE—qè[pzi­Èc¨¯›ã‡öóÍ›¾Æïÿþç3ÿé3ü¯ÿþ_¸ý[ÿDuAZä|`1rcç:ÞÚ¼“õgNsêÒ’woåðªìÛ¸–M›ßåµGïæ{oæÞ›þŽÿó'È?¼…¶Ô“„Mƒ˜Ú{ÉÙs’å<ÅÞõHO>GúÉsÔÐXt‚«É>›LVòI2O'sùd2W®áìªÍ(fC*ÛNè8p<ëyYT–dpôð>î½÷^þÏŸ–/~éoøÂ?ÇŸÿùŸòý[¾ÁÁ=+9á2Ç.ö“Y‘’vös÷«/óËÇ~Æá›8ºg'»wmfÓÎ ¼øî"î|ìçüãwpçS¿æþ—_á©ÕÒÖŽS’PÔ‰‚}AÇÞx'Rí–ªÄ:¶äè±9¦AwU;Þ$QÀårátºðûø|>FGMôõõÐÖÖBuu5---ôôôa·¹pÙíèu:Z[Ûhok§»»“þ^ô†!lv'’(aµš0aµÚÃHbDR?Ÿb &iœ/‹0¡®k¤3—j"‹…5µõôõéðx}1Ô Aƒ 1ü´CŸÏGGG'-­mñK†æªÐÔiªò±’EQ`>óé$†ÃÃÃ˜Íæ™.ˆG·PƒÎw¿xnO…8»ãóQÓç-•IQ‘“L<&ßWÃü>~/n·ƒQËz½£i„¾¾šë(¯(''û:55 ŒŒZ& S£Q§ƒÆ¦ôƒøü~œNç”ö·q $D ÒQLTÒ¦ÄÙ=æü8ª­(H’„ „#™š>§»ÍÁ0„eÔA 8‰D‰¡Ûe£½£‰–¶fêꩪ© ¦®šæ–:;:Ñéq{|“²ÚÆÆUYF‘%DT)Œ"„‘ÂÂ^;~C/½4×”P•ŸFké5¼¦Ae<ÍU´íx—–¢s´W£¹!œœƒ|øÎ#<}ß?qû¿~…?üã?å÷ÿÛïóŸÿóïñùÏý§ßzk]’ÓA[~%û—¬áW?{‚äÃÇ(»–Iþ•‹œÚ´‘‹{v‘sö¥éh(È£¥¤˜òœlÒ÷§úÌU»É­TØv¬ÓçÒ)*È ¹¡ˆô«gøñO~Èÿùì_ð¥¿ýùWÁç?÷yÖ¯]J^n*)i5œL3SÓ& ‡¹XZÊKžçÃu¯ñÖÛ/ðíü3_ýÚ—ø×oÿ wß/?¸ïv>÷Õ/ð‡Ÿýþ×ügþîÛÿÂÉŠR‚3bF·ƒ5YÖ>eŸl<Æãø~ŠJ‹±XìȲªC 4hРÃO;1”$‰îîjjêæ6 ˜³#¤ÆO2æl6ªóÊ”þ½HIY¡³³ŸÏ¿ôó“&†$0×´"ÈìÝŸ¸;žj¬cqRhùiU$YŠd׉Rt®sR÷½Øl£ôöõP_ß@M]UU”•–PTRLIyzƒyb&4Ri"ŠN§Aý ƒúAl6’¤"I2Š$Éh”„a¿¿k”€ÓŒðª0ôbJ=…©,ƒ‘Ò –]¤1ç·¼ÁÖg~È wü+ßúÂøÒŸýú¿Ï7ÿþ‹døžÎD»º´|¶¿¶š_ýê5öï;NaVUE\Ù³‡´ƒ©Ì¹FsY m•U4—URšyôÝÇiº’‹ª¹\ °íx+)®’Ÿw…úš|ÒÓÎqßïåÿ|öÏù—þ†?ÿìŸsËw¾Ååó¨¬,â|F ç²,´öŠøCa’®çñ³gÆcÞÊ/¹‹[︉»îù7~õ«ŸñÞ{Kx{ÙÜþÃ;ù³¿ùcþûïÿßøáÝd45’¤)ï©OgjÊõiÃÏÓ]k¦„—ªSÂì]6uÖãyÊ"ÎŒcTAQdDQ$  ðy½8|þBXÄj±0j6c21 éèí릹¹™þÁ H7ttuÓ×ßn`½~aÓn¯g¢ã©$ Ÿí³¨,`!o®mL»ØJËËp:]Ÿ*¥† 4hРÃY¾èÕh–auMâØ¬KÂÄ0Îî“1Tã †ÿ\IeI¦­­-ö|Ñl«ûÿQˆ¡:­h—*Óˆ‚%†c£Ù"”±N£Œªªx<l;›“‰þ¾Ú;»hjmÃ0bŸJ Q … èȹ‘OZf6ÕÕõ à éõXMfÜÑ‚` „#FM“ZYŠD0ÖèïÆÓ^³©‚‘’lzÒÎPql;V¿Ç®×žãÝGîgÝ£÷Ótx+Á¡>|£VŠOg°ãµ5¼½d;¶Ÿàô‰ËÜÈ)¥$»Òk7¨*©¦¦¢ŽŠ¢rò¯åsõì.l;Do~aU!)ÍÃîã5¤œ¿@úÕÓ”—æpãz:¿~æ)þâ/ÿœÏÿÍ_ò÷_ù{6o\IWk¥åå$]l%õº“!£‚Ë`Ó…óüúÅG¹ç{_çé_ý€×ßÏâ¥O²jÍÛ<°‹{vòâsÏðů~žßûOÿ‰[ŸyšÊAYŒÁãÔĈ¡:‹u:1Tç#†³„qÆK gÙßñó¾B8„( B˜@ÀÇãfÔ2ŠÝéFdûinn¦©µ¶ŽÚÛ£n©==Xì6äéFU…Æ%3ƒ@ÆI õÕuµ“æy5b¨Aƒ 4bø©ž1ÔQ]_‹7àŸ[b¥$HPÔY¤K± ;•™9\jlbØÙÝý»Í U³‡J¿æ2€¿Ï¢¨Ÿø~.¨[¯£b¬ÍÕ5œKêIM.Ue<&oæÂ (3¶!Ë2*¢, ‚ŸHœp3{/…0C#ÃÜ(.%-#—¢ÂRjjª¨©¨¤¥®ŽîŽº{ºéï×3<<Š×@–•I£¸‘X 1$ …$|>T—Ñj&hèÅÙÒ€±,î«çh>±Ÿ‘©ŽQ|VUsI^¹‹ƒk÷qlçimOââ©4J¯×Pz½ŠÜŒb²3Џ–q´K™œ9~”­‡©nÀ†C©“¦{VqºÞt†WͤÔE…)q'Sc#Ô©»5%NBI§|®§Çö(Ȳ„(Ë(2¸]LÆztè zúúèîîf@7ˆÓãž †Ì'‡S†‡T|Šä”8ˆaôæ=‘n¨Ïïûôœzµ"Fƒ 4hÄpî‹ahˆú†z,VKü+ÃJŒÊ-ÆhÎÄíÔ˜³<êx–™2ž17k6e¥l²D×<ÄP—ØÄ"'êoZÃÉxWª§§gžn˜BÀe¥¾¾†¶Žvœ.7a!Œ"É(²‚¢¨z2Ÿ+ál myRcªèbìÔ\&suøâéTª ’Îy2Ôî’.ĉ5zûp8ŒÅbappÞÞ^ª««©¬¨¦¼¸ˆüëÙääd“žžEîBzúñ‚ãïñØ&Íff«P8™_“$dYAQTyÒN|ˆ^Š,öjé¡5«”º”*O¦“¾ë$W·ŸàÆÑT®ŸL'óxi§®’–’Iê¹,Î=Oê¶#x{zÐ9aßéQN_(#-õ8ÎíâZz2•¥¤œ;Â÷¿w3ô'Ä]÷ÜEnÖ ºVò [HºØOa—WAg±òòÖœ9²ƒkÉ›¸pú9²S°róî~ñ niϽ·–—/á'÷ÜÊ_ÿõ_òêÞ}˜|þ‡S¦õ)òìRÉé„p®÷?^–ùŽxœ9ÕŽÕyŽKY’ñz½<Ïxf¢$Jqu c.®Å;‹¨Æñ3£¡©‘îîn‚Á F 5hРAƒF Wˆ¡Él¦¹­•Á!ü…½JÔÙ/“P£3]ª¢Œ“Dy2Û[-WdTUë¹Ä^MtmE€$‰tÇ$†±+/•21¯7Y¦6ùºBÂÖúŠ¢`³Ù0 s ’ ½®ˆM[×s1-ªú*zz°˜G°Y,8œ~! Y 2Š*£ˆAQ#¹|³²åºX•˜äY)õü³H ½s]ga…xÂät®÷VV·ÛM(Æïó`µ˜2ÐÒÒF}C3zý0`hÆL\[{ µMµ èìG§Óa2bwØqº]BâÄM™ü¡S"a¢AÙáÂm0ajéFWZC{v9uWr¨<“NÑá‹äí>Cú†£”<‹d¡E¯²æ ƒg‹¹xå4‡ŽlbåÊ%,]ò O=ñ(7}íïøü_ýo¾úÕÏóÐÏïaßž9v®€¤ËƒÔ·…qûEjúûyyÓ&NìÙ@iÚ~’¾ÍÎuضg?olÞÄË·²zçaV¬\ÅK?ÀOﻕµ/ãÄ©3…ÓÍdâÍÒû(o®cTeaÒêx]>ã•ãÇÛŒ'¬>Q¨ÎBÂçyýU¥¼²‚¡¡!AЈ¡ 4hЈáï 1´;ìttwÑÑÙ1ÿª0ê,r½iň%‚“:Zò$©—:ižHUÅ©ÄE)裫»ŽÎ^zzô šÄ0½mtu÷Ïd«s1…Éò´xgß:£±‘e™¡¡!ÌfsÌ.áÂ>¹çÙ¶{;éׯqñJ2§N$''‹Ü¼|Ò3ʸQPOwO:Ã6‡•æº JÊÊ±Ú ÃȲcöjkŽÏX(–[ãB;|ñvlÔˆa"×?B˜ñUA’‹’¤ÄUKX¬Fzû»¨«¯áúõ\2Ò3ÈÎÍ!;'‹¬¼ë4µu"„cÏÁÉŠŒ?˜y,‰ „Ý^Ü#V,=ƒŒÔwajë‡pIeÍa ÏÐË«6ñË¥×øÇ;ßç¿ðS~ïßÄýß¿ãO>ûçüÏ?ø}þÛú ý¹?ᇮdãþzzõ2N¿ŸŒš–oþ¼Ó‡h¾qž“Ö±iÝ+œ9±…«WÏ‘™Áµ+WH;~ˆË^åÅŸç@aaÄxf!Q ,€äÄCÎÝf¢ó¶qSGçÛ¿ù¤ÛñÒXÏE‰Ñ}Œóy‡E‘Ââ"l6²,kÄPƒ 4hÄðw…z}^úuÔ5ÔÏ]”«Êã‹A¼Æ~Ê&Ù«O&‡ª"ƒ¬à¶9Ð÷õÓßÓÉÕ+éäå×ñÿg￞ãJÓ|] ¡{E”þÝèF7ŒÑ•.%N„"N(¤àè„´KŠš³µçÔÞ5³[}fª»§ «º»šåÉ*’ -H  $Hð†ð “@"aÒ{ï3—_ëÑE&€¬šéêžõE¼Ai–_øžõ{ßßû¼ë3V;é › ßÓøýiÝ{ÊË—Ã8}1Þ¾¸ÏêNWRã"Ùa‡¿UnfìPµê˜þÃêíj¬–ªª8N2™L èÞ’L%©€ku‘5—›@ØÃÓ¶[|óí—\¿{›Ë×osüw'ùÕ/¿åòͧŒÎØXYš¦éÒIÎ^nbtxŠeë Îu7¡p„d*A<aav–ù¹%dY«Q$eÔH§5ö¬}ˆ¨vnê»+u*u/‡:ê ß :&øìP¡+¿d™H,F8&‰âñú°.Í1<:ÂÄ̪¼ E‘€×ëWÝXç–ò¢Ñ8%QD”eT]EßÒçAÛøÙ15š‚y—Êè¼Jû`‘ïïúùM£ÿöÅ,Çþyˆÿãÿ«ÿÝÿé{þ7ÿûâõ¿þøßþ¾æ×_Oã kD³.u½àüŸÿ'Îþá >¹ÉÜÈ=†^_`äY3ö¡×D§̲>ÙKÇí&þëoMëÌ4ЦíÞ‡…÷ƒjâŽõ¾¿žóà ´êÃô­t2«'¼^U²ŽuÈæs R,ÿý[ñ˜`h†f˜a† †ï>DIÄ0:ö¶ö$yWª§N>Ÿ'‘J’ßè§( —·M7 dI$ôãñ†˜_Z)Ob?~ŠeiP8Âð›W49Ïæ»\üî<—ÏœçW¿ú˜ó7ï‘ɤxÕù–—¹~ó6žuŒ&™èíÂévÕ)Síá2ˆñƒêÉ~h*¤"+ØívJ¥Ò>i_e@TU]×0TD<„Í:ÏððÝ}Ãù5ÿåóñ§¿âøg¿å׿ùg~÷¯?çÔçŸrïÚºî5Óû¸™‹ú%}ú^­® n©T»ÉÖ €ûœ7{¦=æ{ê…¢êzÇÃÔ%Ö«hÔC´¸;Œ"_'ÜÖT«ÞŠ„A”¤ŸÔß:sc†f˜a† † U׉Äc  íJÛźN)—fx°gÝÝLÏM1ôv›uËÔ4=¯û™µ®H¥°Or»ùß|{Žp*ƒsiŽ¿ÿ”›-™_ ¯÷'¿9Åéï.ñ¬õ.Oî4sîûSt¾EeÖ+ÌÎ3;oaÝíCÓ4ÒÉ]ݯ™œžbjjŠ™™™òÿg¦˜šžfbj†Éé&§fŸšfjÚÂÄô ãSÓLL–crrš‰É)Æ&'™˜´019ÎÄÔ$“S³LNM21¹SLNM253Íäô“ÓSLLM–czŠé™¦fÊË›š™ÞŒ÷–׫òûéi¦¦§˜œ™Æ27ËâÒ"šªíØ·ZYi5 ]EeŒJ¶XÈE$Q&Ÿ/’-$3"Ñ$áxEÕHÅ=ø¢BA?oûßÐÒr‡ g/óæE/^—ËŸýáüöøhë~ÅŠo‘7t={A_ï0¶‘h‚b©Èúʯžw09=G¦Tª¸w‚¦ëegDý€³qˆ j½µŠ‡51øa¦3õ¨[:»An/­gôí*÷æóÍ@–dâñ.—‡•%¶ù%f&§è¢ïåz^¾âíÈ0ÇÚ¶éx:‡ß±NÈãÄëñÉæPTQ(– KEDIBÓ@×4ÉáHëâ<3 Æ&Çéíïáa[;­;Ÿ%•J3::Ioÿ«®ÚÝàÌ×_pú드oläÒ¥ Üø˜'ím4ß¾ËøÄÖ¥ÞŽ1;·ÀêÚ:‡ƒµµ5<^™t†T2E*•"“ÉÍdÉfs[‘Ë’ÍeÉä²d²UQù}6[Žt:M(bµÚ‘tפÐ@Šx]k ö¼fhh”‘·“<èìÇã‹‹ÅI%Ó‚„,‹drq$YESdEEU>‹öe—ˆ†ÂryVl \kºÎÛ÷i½÷€'/ŸqùÚ9N~w–K—®rÿÞcÞ¼$Òýª‹Óߟäúõ› °¸¸„×ë% ‹'H¥³òY²…ì÷}íðé£px§Äæ’rˆ÷ýP@4êœÜ×L{Ö÷NÙ5vÀáŽïÐ5I”)æ óE²™4‘P” Ï‡ÇéÄãvÇ·)sšª°îX¥·¿—ögÏfžŒ{}×Ú‘P˜d2N6W@“t£|| C/²aP”URB‘h.K0“d%gÚã¡ßn§mjŠ[ƒC\èzÉï››ùº÷5ÁbiÇÔ†õ$ìWw˜º»Fy 4Ö 5[Dð×u~Ž:ÒQëQþ+ÿÌ[XZYF©.'0Áp3rÖfh‰mM°òACMÖܼÌÍÇ8ÖdÝõš`o¥¡á,¹Ã¯`¿Wþl¾Ž÷'8qì å8ú1#¡æº¶~Tõ¾†ŽðÁÇXbÊ_Èd1ÇHkakßÐlý¿?Íç?k罟ãUvœ[+VþæývÞ«Š¿ù‡.þñÒ^±r,›Ãïó±d·³d[dnnžÑ·c¼îéâÕÀ+ZÞåÒå‹|öM·ÚžYF×4¬ K<ëèfnyŽîWOi½}“Gw[io{LGG;#£ã,Z˜ž² I¦âø>b±8ÙL–\6K6•¢X,‚^vœ4tƒB¡p`¿Å½&žª¢’J¥p»Ý5÷ïÆ¢Pdyѹï¿å»ïÏs«õ)§.·òâE/o‡F™›Y ŒOFYXœÂ¶æ¢”/’NgE ¡X W(P(äQd MUˆGÃLŒ³d]f|ø-¯{ûxÒù˜[wîsëúM®_½AÛÓnBÑÏŸÓÜr—¶‡¹Üø7nÞæy×k‡y;1Á䌅EëKk6üA?@I’%‘R±ˆ( eET§Fsù: ­Þº©z&߇QzÞ5%u_h0¨õªVæýU1ý`uµÜLÝ@×4YA–D„R‰b±ˆ ˆÛÞ«ë ‘hœ™Ù9û‡efrœéñQ&GG™šœ`Æ2Éì‚õu'ÉT²Ò6a«ÇŸ¦©d2ÒétÅLÊ@Ò¡ È$„Þl†µxk0̤ÛÃx$Dn‡Z¾mhFuEäöÆò{©pFUËœC‚̾êc=®¨µÎי>jÆÁ<ê5ì9 ±Î†a015‰ÛãFÕT k‚aSxv™`áhC–Ô>¹k:ÚÀ‘FËërôÀ0om¢¡áÿ\¦h<Ú@CÃ1Ú,<Ön>:Ò@CÃÇ8”ÚëÚpì8Í­­477ÓtòcŽ44ÐÐpòÓŸL ÖFŽ`öß÷ï|þ,ÎmBÛ©éÂ0,¿v¼Åʽ'Vn=±rêlOùýŸXÉù•9ÞûOí4.•j€aˆ¿{¿¿»4ýN+·žÌqêleyÝLdþ `G ñ7ï·sjQ<ô{½ã;³ú ÷< G8i)ƒ¡µé( GT0ì»î¢áC' ú°Š&þ»Ž\.Çäô‘htßI¯¡k” qñ¾°H2ÌÊš ÇŠ•eë,ëë.’é¢P$ŸI‹„$]UÈÄ„}!’ñ$¹|ŽD<ŠcÍÁÌܳ‹+,ÌŽ3ûv„ׯ^ÑõfˆÅe'kË+¼yÙÅ­Ö®ßl⫯NòÝ©ó´¿zNïX/-worîܮݸËž1V\„R‘t*Éøè8ó ø~ÂáñX”d<7n¯“D*Ž$ËhªJ1_@er©$‘P„P$€ÛíeaÆÂ@ÿ“s6òÅ ‹Ë8=>¼ë+4þŠ“ßŸåêõ;Ün¹ËµÛ·hºu›û·nóàÙ]š[nr«¥‡7H2daz Ëô,ápEÖK±hIÑ6UEUU1* ½=µ®Fúòø­ëÈØ{¬×ªêš6öIó¬G!üÑÁðÝÒ%÷žäoÿ…±ëuEÑÉårÄ#qB .ç:k«vVí+ÌÏÏ215ÎàÈ8ã¬;œˆ‚´ùº®“Ïe°X¦Ÿ$›Î’ŽgÈe ‚ˆ(Š(Š‚®iå^ŒÈ:¨û—~ê»UEè:YŒ}ž#FýY÷SmÊþæ³½ÀPG0äGÃÜ3õ*•{€¡ªi KÄ6Û ™`X[1lhhàÈÇ(û€¡’ò0Ò×Mw÷Ž˜°kÒfŸ¡»»› kpÇk ËÝÝ}8‚šŽ5ptO0<†%–Â>ÒGw_ýËÙ†J ‡#H.d¢¯¾ Á ØÌMp¤¡»ƒUðTÒ‰\í‰èÑ EnâdÕûb±T ËH#V‚a`(9¬#tw÷U­§€Çn'–S6÷KÐaÇSµ)G°<¹Íí•õŸÀ“Ú¾ö?Ææò¬Çih8B«ÅAN©lOãA‡¥¼nöàÖ1?ð8î Îí¼÷É8ŸÒÎ{¿\*oû60ìÆº '®wñÞû]Lÿ}¿++ÛÕÙœÃ^V"Ï:¶Ö]±Îyér3±²[åŽyBô 9蛋«¬HcTìˆ×‘$¥J ‡'‡ °L»éóËï±L»éóâÍhµ—1)‡±µoBAHÄ7×aãõÔJy[Ž¿ ËT¶S,`óÒ7æfdŸ÷*…ÞHÕ~ÛkTo˘ƒî1/ŽÄþŠ·’rÔ<¿„˜O,GÐ:B÷ˆ…˜°ãAįÇúº»é±nÛ7å{M ëÄ}}}ŒLì|½¾{GÊÚÆ‘†Ž·Yˆ¥„2m"˜ò0²Çr뻆ŒÍcrìC'ÝsìC'Tƒ¼NÌ++¨xlYºG3Xƒ[ûWHŠx’ ©`‘¾Ñ4#6aÛub‚a£P(0·0ÛëÙδkR #˲¹,ùRYU…"Å|žl¶@¾ "J*¢$’Ïæ‘Y.†YšœbàÅƇǘ_œgl|„Ž'í\¹~›žòôé#†º{xr¯… oðªï- sót?kçÖífZîÞäÔÉÓܼqŸÇž¨ŸùùÞŽa™_À“Î(r€F2'Ž¢ÈêæRÓÊ`"Kù\T*M±TBHÅ|;Á²m‘ÅÅyºÛŸò´å}cã<}ö˜ëׯsóîc.ßncrÎG:'–ÛAè5ê1÷Ø’(á÷û‰'û¦8êºF¡gee•é9+w—;›—]²ÙìOîoÝOK1<ÊÉÑÐÐÀ‰¾`M0ŒM4íH©làdŸ§[VŽÙþÚ‘Û*OëS4аë³Çš,û¨—Û£Ùš:p9Õ`˜³4Öøž£ôU&kB*µ †a0ÑôÁþ`¸m"ª`iþ¨JÙÌѸmŽaõMðÑÎåÔJJqðQCGNNT¶g¤¬>~ÐZ™(zø¸¡ ¢ŽÎã»÷C=Çb›Z¸ý}MÖÍÇj‹Æ‰:ŽcÈøùÛ÷ÛùÅPŽØô8ï½ßNgDÛ†]Xv¨+––Ãá¹Åݯõí佘"f ÿ®”Ó÷N,‘ª¯Î³Û_{»h`¹ÞÎ{ïOUÞg`üeEn®DnqfÇgÊ*åßýCõÏýX åeô]ïÞñÞ~&ÕÛ»ã»~6EÌ9Wõ}ÛBð¬îJ¿}ïýQÊî÷Z®·óÞš,¯ÿ>û ö¶´Óæ© ‡žî“»Î‘Žò¶4nO­ÞPè6í®×cô<¶ãû>b"V9G¾:ŽWÔûzïÛ¯Á£¬Mì¾9Ipâ뼆6ÓTGƒ4|èb$«Òù¹“†ŸG¶ÎC¥ñçΊš¸÷”Ï[Ë}÷®×>W}ÞÃGI(a_YaiÙVW-˜*ªdÒEEA–4IÀn[£ox†‘©e–W½Øm‹ ã ÆI'=V-¡Ýû|Ô‰b(´}°=-;U¶FKîP÷#7±íAÖÖz”—¬\ƒMÖÜ¡¯!ÃPhú•“†Ï“(†Aj!LÇNš]Ú&6ê¤áC?–lYIï¾î¦áC/ÑÀÚæ£áC'“å:ÚØB¬ Ž£¢ †õI’pyÜLLOÖœ€l­·¦ª¸×WxÚÖÁ¬ÅÊÔô‘h‚çí]œ<}?}Óç®ðÕ§ä7¿û”—ã d“^.5_åòåfß{Bÿ‹çt¿ì ­£ƒža¦'­ŒŽ3::F:¯!dã„"!2Ù†¡¡©…\ÃÐÑU EÖ0 E’PU‘d"M$%—I“H¥‰FƒÌ/¯¡ÊàX_æõ«W¼èzÍÝ[wùîÔ)¾þö$g¾<ËÅÆÓüÓGÿ•«wŸQLyðàgO}Ë×_MãÙ3Ü¿y®Îçtµ·ñ¦€eO„t6O2•"›Ë#‰Ên„½'Ü¥b‰ÕÕ5ÄêÖ{¥éÕiŽ[æš®£[é Ã@s>¼N‡ƒUû ýýýttýÝoùþÄiÏ6qîò5®\¿Jëf^=NÏÀ#£}Œ[¦™ž›&žI É"šª ©šV>îååsÁ¨51Ö©ÝG±¦*eTí^ýàÔ¹zš­ÿ†6‡©Ûï÷Æ;g¯éšN©T¢ËH'3„£VW×Yœ³210ÌЛfggÉæ ƒÊaàIßC1f#;@GÓ¶?7ØöÿjrC(ÜTÙ^ûil@±º²©õ¨Â‡„÷}2ô¡ÞÚÉzÎÝZ뵟ñŒaúI5¶ÿ©*†ÁÀv–AåãnÅαÊDK°7WÔ£&º»;iëì¦õdeâeñU€òcÚº;ik뤻³‰£ =9¥±\듪VáŽì—JÚ@«CØL…lÞTìrû.g7¡/¶õÝö¦c44œØT à 6r²…{×4«Ô67—k O”'Î GhsäªTÅtSÇvn_YÑ8rÒRµ#Lä &N¥¡¡¬°´y­Çhh8IÌhû¨¢~|tœÖα\Ådg¿c‘: nsçºx:?®Lˆ÷ß¿»÷MSÿP†K 7©üÜ]Ù†;ão>™ÂZIÃ|g0|ÐSQÓß9euío®‡Êð÷þxr*ðI+huá-‡²i„ówï·snEÜþób KK7ï½ßÉ©W«t¾²Ó9´ZÊ¢Y^ÎLÕr¶>[½ÌrÚ§B,’Ãá12dç\¥&³Ö{·Àpÿ}°±-mmtný¬¿©†j{wÕµc¤ÊÊöɉԵ{;_·4£¡á'Û:élk£³»³ †GN–‰" qØ-Œt·Ñx|ë\>̽Ã,›÷«­õhÚZϪ]‡½†”`І½ÆqØÊ&4G.¥7Á°éWN޽¬:O³YŽ|è¤Ñ¦`msÓðóHÕ>++ŒGnçL0¬w¨ªJ8adttIÌV±—ªÊ8lSüëÇÿ¦s×¹y«»+Ààà·î¾¤­ã-}¯‡9sâs®ß¸Æ„ÝE1ççüµKLÌ/‘ˆ%(åó”òY²é8‘h9­RS´ŠÊ·1A/ ¤óÍ@×5ñ(ž¹q^¿Â3oejt¶¶çÜ|ðŒ'/^Ð~ï§¾ýŸ~ý=©t¾×ÏøÕ/þ•ýõùì“ßóå‰?ñíésŸg}}]ÓkL"˵U:F• V5aÓŒÝýwÂMUš£¦*(І¦‚"Hø½zÞpëQ -Ï:xüà-­-´Ü½Ãõ‹ùü÷ÇùÅ¿~Ì¿þþs._jâÒÙ/øý~Ç¥Khôˆ§íOèÆí÷’L„ œ¸mK¸W×ÑU@‘6S?UÅ@S I&`[\&—|Ü¿×JkË}î=ê¢ãõ ¯ûßÐÞv—›ç9{é7.æ÷_ÿ_|ò)Ï»{q{<8kX,ñù8Vø\ë¬ÎͦʵLºV^øFÝ¢±Gz¨QU¤¶#íר+ºžt¾Ã¸T©“?Ô0§^ƒ‘]¯ïgcïÑT UVK%JùÅbq°¨×(e'Œh*H;¾@ƒPLcr]aÒ¯£P’ âCÛãyA”P]—+¦[l¶lÙH(ݶzpÿCÖ×{¼ê=¦õ<Tÿ¸³øàN´ÙËî€ '·MîšPc(ÔHåTû.g7Ûöô¿ @Ƕ¥‹ŽoØ>y4ê«14Rkج›Û#Øù¨¡+©w»¶Y±óAC'ú&8y¤üoãÑ>jíÛQ?£³ñ8G«TÊš&ö?ö\`hÙ]_™ÚÿîJSõ,Õ„¾÷ÞoçøPn[*i_DD(ˆä "9q{]Þ»‚áÈ¥NÞ{œ çßoç½ÉmPtëgeP²>è⽟ÍÕ<Æ»À°°µ¼Í4ØÂëRõó†"ø·?ë*Ç?tñwŸôó÷ŸŒb-5ôo«`¯ú{½CSUû²“¿?± k*†ìƒZÏ­”^‘+?«­–¡éhÕ5Xv(Þ€®]ÀU ·^ßPî6Ï©#G9öÁG|ðÁq¬¹i«Gøà£-@;̽cgêû~`xØkÈrß»;ôC' zËjyôWÕªs·È±œ´)XÛ¼4|¬z8¡Òü+'GïL0¬wè†A:›¥·¿oï‰ê†¡¡#f"<~xçÏxÞÝG"#‡X_qâ $(J ²,‹ÑT‰x¦bF o¥|i¨'Šb!ƒ¨A.'Oðúbxf O4ÂòÊ4Ï^<åâ§9óûo9ûÝWœ¿uËÎqæÛF¾i¼Æ¹æfî^½Æí‹øãŸ>ÃHô­Ð×÷š‰‰YÖ—Wð9×q{<¤ÒY@GÌgdm4½lÅ¿±ñÆ–µæ4jzRì5¹’%™T*…Ëå:üĸZÙá[$Œ]Ê£¡«ˆr‘PÔG$-óT·ÛËÒ’ÁAž>IÛ³—ûôw|ûÙ¹|í:¯û°­X˜œäáÇœûò4—O¡ohëÒ<ÓcãLMYYZ^'‹"…òñ§Ü§Q×TŠE¢P¢X”$\©€Ó±Â“¹róƒC¯il:Ë/Ê‹7=¬®Ûhú_ÿë¯ùÝoÏ™ïÏòågŸsöô®œ<ÃÀТ  …Y[[ÇíóKĉÅãäs)4EF(¶÷¶ãdÔì?X}½îÛB`u©‰áAjàaRŒõ˜¡ì²{yŽè{ÔÀU÷×;hwB©¨Ã«x¼„æL‚ ƒjðÒ"ð³–4¿{™#­Âɧ‡J¬g6²‹=Le´Ú5ƒÕp¼‘NºñÌl¯ëð][ª´¯ëÙG‡ÃêTwÕî14UÃ27ËÊÚêî‡_&î㫸vVêÒ,)GÛîz¢œ¶Ö6¬±tYiú¸o[êÕDg+ÝÖXù©ÃÇ8Œ­ï?Ù°V¯K5Èäö]N­TÒ6ÇV Õȉ#;Ô‘æFZ'‚º îCÁ›JÚNØŠqòH Ç«×3Èñª”ØÎlÖ=Žä6T•òþnµ FоÖfú*5`¹”£\ku¤‘ؾÇBÙ;UX© †[û|ÿý[Ìz°d±J!Îñ÷ÛyïgsåÚ¶pUËMöÌg”@¹ïo.¹·”˳îmÇíøûíüÍu?ÖÝÛTLù÷I'ÿø$² Ø„•¹M; ZtóÞû=Ø«ÕèÅUî E*©¤ƒays|þ~;ï°VŒn Œ€}nì-Åpÿ}°û8ì †×N³uËŒe#Źђ;4ZšÊ)šÛö¥“Ön+ŠäDC 5ÜQOÛvŰÎ{Çø5UÖ{?0Ts )è¤álŠœ¢#ˆ‚¨“ZÓð¡“^ ›Šá‘*Ð\å×[½Z CU`(rüC ­"”Dž¾Þró='‹e5Æ04ÉñDX"^NíÓTtU-;ê[ýÎ6fšjà\q²¶îam­œò¸¶¾ÂèÛqGÇéêꦫí—OsâóßsîôiΞ9ų—ÏYv:™¶Œróþ>;qš¡®7¼l¿Ë“ާ¼zýš¡Á1&Æg™žšcaÁŽßí!Ê9䪬¢ª*º¦£o¦ ê; @ݵÁ[¦’;êж5¤ß^µëçtOA ‘Hž V/ƒŠMÅ@e»`¨oN¾uc#ÑTßU¼X>~Ü5 4YEUTYE–TDQ"ñD±­®0??Ïpÿúúú°ZçY´NÑñ¢ï.6qîäžÞlætãw4?¼ÍÍ 9}æ:Wn?âåën†úÞðúÍK–VW‘…p$AÐ “É iº¢"—d ‰h"C CVTbQ? ÖE‰<éTŠ…9 <âæÍÛ\¿tÓ_|ÅŸN|Í÷ŸEWßkœ7]ÏžráìY._¹ÎÓÎ.zzz˜š|ËäÄ“CÃL½Äë¦H§s§\¡X¢(”v›Êìu©ì|õ»@C=é„õ‚àAßËÁXS!‡Ú>ÆÞiŸu7{¯NýÜø…P¸9ÿãC¸º€Îc(=³%~s/ÅWÝV#2ÿt'ËÏŸä˜ò¨L¬ ,U’¼¨Ík’¬oÝ* ¥¼¨!o«UÕ¶T|ŒÃµ§x׉ïªT×ã®ß寛\={†Ï~÷[šŸt’ÉèéžâνºúÅ“8ÖÝ<ÞËãŽæ–]HŠB±( ë:’TDÒdT]C%ò¹éL’hȇͺÈÐð(=¯»Yq­{èlkåäŸñ§_rþâ5®^¹ÂÍ›Wiº~ƒ³_|ϥƼxÞËØÛq,–)¦§Æ ¿¿©+ñD†x<†ªiHŠR©å4ÐU MÑN±«õ€à°Ðwý[Õ3¤^Qg-›~ðwõ‚a= ˜Ärpn>ꂇk-RÌë¼™•ùº#Ï]YÎ÷çøÝÃßö–8Ý_âò`›ã%Ì ´Ni™,Ò¿"2ë˜tiÄòw'²2í3%Z§JÌ…U òN•Ù8œx ¤þÚ¿ºÛLÔñý-dŒ½Ú¬°·ŠX* ôö÷‘Îf¶·1Áð€ôÍÊ¿õ£Í ša(1 'ŽmwßlµÄ6ªûävÀ›F6˱#]¬ì,hÝ#íØ60lÞ–^¹÷rÊŸý¿o7Ÿ9ºåxôxÛÀŠiÌÑýSIk¹"9úMÝömð¸}{Rtžø`Û6Ÿè´o3Ê8V]»·ùóÈÖq±wòÁ¶å~@·£žcaìJ{ÝpH=9áÛµ®å}µaº±ÿqÜê]8S©¿«až‘p—áåAU ã>`(8–xï?µÓT³Á}ˆ¿ß•ªÚÉß;ƒ%R­ì”è¼Ô³í=Ÿ÷Æ7_÷NÏmsúüÇwù˜‹INýrë÷÷mÿ¦)Œà°n_÷ ¤^©Qc¸±Œ¿ÝQGi/l¤¬voOgÝö]"ßV\KO¬âØ–JÚÎ?^/÷r|Ùõ^ëýîª÷{ïƒ]ÛbˆÜúå^`h '8~´ÚÍó#ú<Jܱ}¯™Z¯{Fš¶¥Dùà$ö\­{C(×ðnœ£õÞ; #GçÇG+À»×£RƒØd=Ü5ÔyÖIÇÁʛ ͪTêøy€‘¨^Þ'0¬Ž“£‚Ù®â°C’$Æ'&ˆD#{LL«T3CGÈçIÅ‚ØíKtõô31eeÙ¶ÊÌØ¯žwÐòè§Î~Ãçú#·npÿÞm®7ݦéÒN×Ä×_žáìé‹Ül¾ÊéÆS\»rï¾=IÛóX—lx½.|ápˆl6K*Áés“/·zª šªWR\Ë ¥±ñ_3¶©FÕìN!4ªg8†±-elë{ô]uµ –tUC* äRi^/±H¿ßÏÊÊ ©Tê‡MØ·ff•ººªÕªrHÜ*¥3¶5$ßxÏfÍ”®Õî¥gl¥®†Q~ kˆb‘L.G6WDETI$ˆápzñ¸ý,YmŒM0Ø7À›]4_¿JÛË7¤RYZôñøyÏúßàô™˜²rñÊN¿Kóýg<ö‚öö‚‘$ñdgÐ…Ûï'žLQ,)  y²y|&O àED!˹ÂÈÐ wrÿa'OÚžpùV×[sãÒ-®ž»Íƒ;mt>m£µågO}Í©/¿àâåFšÛñº„Ññ·ŒOO3i™%‰‘Íäð8]Xgçñ8ÜHB¹v£µÃ.ÅŒw„zŒJ~L属ÔÔ=ßgÔ6I¢åò]Ú1Ô³ÝYcÊðAÒHçz \ìÉñÅ«ÿ½-ÇÕþß÷äøìužy¿Ê½q?uåø¢'ÏåÑ_wçùº;Ï'íY:V4fÝ¿{šåO/ò¼^–XiÓÁ”F"WΊ(—êï¦Øîe貟ŠzØ´Ð:ÓE÷{ðTiÙl–7}=Ȳü“ü÷—Úd:—J‘Jåvô¾«L(…\ÙQºVãwE •Jý(ý»ö]ޱ½ÆPÉ¥Hå”?˾Rr9R©ÜØf¥¼¿s¹C‹ß#ʶª¡DR±öþVR™Ò®GÃ0 %R…ã)/ã]¾Keûº Jï=Ì>x—k=÷cLùú¯ù}÷†½Î·CÜ;AØsßü°kh¿(§’m+b©ìvuÑÚæ¦áWqr†A.«ì½&î?dYfvn§Û½'¢W B‘ñ¯ÙyÛÿŠ'mm\ii§£k”þ¾1z^¼ í~ ç®åËoOÐøÝ)î>{J×ËNzºè£÷Õ ½Ý½ô÷ôÒÕõ”‡2ÐÓÃóΗ8¼^Š%E‘‘$IËÊ•,RÅÊ:lr¿M¹ÛP879Hß1áÑ·\$öª[Ú)ÝU«l•ï×4 UÓE‘\>G&“&‹QȦy;ð·'€gÙÊ›öçô½zC?ݯ_c]ZÄëõ …ˆÇd2J¥²,£éZuåâÁ”h;jºô=j³šÍÂÚ­2ªß[„·õ®6 JEQ”)dsÄ¢Qþ>Û¢•åu'¥¢ÈÈØ–¥f–—DãÌÌ.qû^W[^pçîcN~ö'þôùWÌ­úp‡] LŽÐþü==}LOMa™žÃº¸‚ÃFÑ–­óx\nB>¿×Çꚇ%›»}™Áñ!ÞÎÌ2;=ÏÛ¡zûxóòZ[8óý)¾;õ MÍM\n½Ã­Ö'´Þ¿Íõ–GÜÚ͢݋Ë`ðu/÷¯ßæÅ“.¼n‘XŸÇ×$—Pd ¡˜'—ÍP* h›5‰úžúšNª®—µZ-Ôh½°«Å^uŸÇƒÒY‡©‰«4wLÔë‚àýàYÑ -@²о™þ¹ì´—hŸùn¸DŸM u¢Ä7½9ÚD.÷ù¤3Ç¥ñ"Ï—¾|žããgYþØžâܸ„¨ÂøŠÀ'O³|Þ™ãÖp‘;oK´Ï t[úì)õ¨L8­ÏjäK:jåù™ª’N®d ÈÆæC+ÍØÈB5ªØTÕ0ïç¦ 5ÚpT_¯úîïØ¼ô«ûÛNF£†±PÝÊ6 ë:±xŒ¾þ­Z^ÃÃÿ(Qíüiî›ØËxÆŒ¿¼0Ïç}@«¦éÌ&b(ŠÂÊÊ ‹‹û¤ŒUºÃÉ2Ë3ãܺržÛ·[yÑ7ÍäÌ:K‹ëÌMŽÓýü1M×.Ñ;Ðϊ͆×$ð¥ÉgórJù<…\†P°Ü;›N‘IgË) ûkì¬ñ*›Å›€SÞY™ð{¡±å+SÅNº¦¡(2¢,QD4Õ@WEBÑîU‹Kæ°Ù™ŸŸedtˆžW]´µµÑÕ=ÈåÓ_2>3mr˜ç­÷ypý:W/] ñÜî?¼ÇØô–ÉqFG'X]wàr»p:¸ÜÁ ‘H„D"A.›¥((Šz îøÏ»ªNÔ91ßO1Œméhº®£ªZ¹c¡@Q(”J‚D$cÑæb~ÉÍÂÜ<-MMœ¿t›;Ž7ææÞÓû|õÕ|ûÍW\hläRãen·´1:2¢)Lô¿âÖµ›¼|ÝÍÀÐëë.ò™<éx’H$B(&•L E y‰x,ŠÏëeyy•©™9&§g˜˜·0:3Å‹Înž<½ÏÝÇÝt¼g~%ÊÒâ:wïqù«S4Ÿ¿DÇã6<¼ËÍÛwi9†ÃÅëq1?=ÆÛá!¬VÁHŒl6C.›!_È" (¢ˆ¡íhœ®ïxèbl©¸»ÚmèÛ\ŒÚ`¨ÿ9À?/nÝW·~MQ6È‹‰‚Ž#¥Ë©¸b½Ë7ÆÎ´Í Lxeì•c"¿|–åû—îÍËH ŒÛEšzsÜ(Ð:\â›_õä¸7YâBo–»Â£·%® ¸=VäÑd‰Ñ5oª¼þ¸DÏ’H¿MdÒ)“(È’A"¯/êhZÕSÁ°Êy›yN`¨W<«ÿþèÆŽsOg²äº”mUÓp{ÜŒMŒÕ™õ`‚á_S(± NoÂ!˜û 3Ìø·¾¶Í©æëAKœm™EÅý †š¦áv»™œž:0ÅËÐ4.Oóöí8î@‚DªD©$“Œ™Ÿ~ËóDãiÐ44Í@S5tUcõíÕV Ú Dßc«SI§4¶¹¦j›“&½ª‘ùŽÅj’  Ê %QB–²Ù%AD*•H%x|>–m+d²EÄ\œ¾¡^:Ÿ<ãVk'÷µñäÉ#Úž>äî½Û\;w†/¿ú‚“çîÒ|ùcSÖ—æYšš`´»‹wnqãf3íOÛ°¹¬..0úv‡ÛͺÃÉâ¢ë6›••UÖÖÖñz¼ø‚Ab±™L–\¡lû/²,£ªZ¥¶³N€«7uñ]Z.ÔSƒVõƒ¡(²J±$Q( dsÖlËX, $s2Él„çÝϸÒtަ‹g¹|þçÏœ§¹ùó36QdràŸýþܼÓÊãG±ÌXð;],MÍ0:8ɒ݆ßá$ògD EU) ™\‰l¶D:Ÿ'“K³¾¼‚my늇UGˆ`´„ÛéeôÕKž·Þ£»í-W.óʼn|zâ47 °°ìc|x„¶Ö[ܺv§»fnažµõVìV¼k«Ä^²©$B±T1AÒÐdu˹±Ê¤©ºóúæ­bã²ÑõJVpmÂÓv©I(|‡uʬ7}±ÞÔÙzkäö9O5UCUÊ¡«XåúPm³6º|s04Hd  ޏŠ/¥Îé„3‡Êéž"çû ,„tt&׌è˜.1´$ñÜ"òýpžÇsßd9×›çbWÆ79þØ™å‹9nŒ‰ ºtÕ`ÆYä‹Î<Þdiê/2æÑˆ¦4V +1•œEÉ üܧ:™Ý@RtdUߪ…6ôÍtöÍÝ¢íñ ZôíÂªîµÆ¶ÿïN®§Íˆ¢(ØVìÌÎÏ"%ÞC3Ì0à 3þ‚οf0Ôuh,ÊàÐàž“»mµyºF6›Eåª^~hÔìaUi¯`l<½Öw»n²£5@umœ¾Í ¦jclz㨕ÕÑÑ EQPdEV%™R±H<c}ÙI$àceu§c…ÞÞW,®®EXµÏÓÑÞÆùïÎcYr‘ ¬sîÜ/_ãLÓZŸ½¤µõÝçå›W´ßkæò¥K<~òšÖ›7›™'’‰„È„£ÄÂ!‚!ÉdY×ÑEQд²Á‹,ÉH¢H!—%át¹™››ghà-ƒ¼éäí¤…EÛ2«k+x<Âá(™\Q’e¹ò}šªÕ®«ôv™Jd~Q/0è;ÒQ«&ªÛê&7沺D2ÇïõàX_eanŽÉÑ ¦'fˆGÂDC~ÚÜáô™óÜl¹Ãë®,Y&™èá~Ó5¾ÿ¾‰ÛZèxøGmÏxþº—u¯—B1K"fue ‡ÓK.›EEdQ@Q$ ­ì\+rÄ^üN'!·“Ѿ~n\¹ÎÕæ'ô Øp¬yyÙÞÁõóœ9u³§oÑxº‘Ë×®ÐÙÝÁ£Ö{t¶>¢÷e'ƒý},,,‹ÄȤ“Ä¢A2é †n ÊŠ(ƒF¥)»Ž®oQáÆ=c—cpUÛ£âR»­Ö`›’¾»F–ûoÖ5¹?lãtÞá÷5ÖËÐ $IF$AB%$Q@dIB‘%TEFSËõŠ›®ï|Va ˰Õ°†5D¥|Y +ô/ ­ˆÌ{Þ®K4æ9ÕWâÚ`‘3¯sôÌ)Œ;%n¿-pe¸À¹±"÷Ed&ìlÏròe–OÛsœ(Ñ»*2´.0æ”Yð)Œ;DüicóöYR  鬄d< Q©òþ2@7*uÅ›¾©Õ»ÅØzhP+¾:;b[ ²¾ý<0¨ôÕö¯­.Edff-¬­¯ñSæ$Æ 3Ì0à  ëL 3 ƒL&Ãëž7»'c•ö{Oô´ÊÄCß^«²i„¢àÙ¢Ö­lº„êªVî;¨ë’T$WÈË‹å ¾,“Чq9ÌÏ.b·³´hcrjšÎ¯9wþ:·›nóàá}=zÀý»·¹Ò|™7ã㬸],Ø&¹ß~‹O?û’ΗSd"!4ßàòÍ[tv¾¡ýÉ3º^¼dѾJ<“&Œ‡)Jˆ…âæDD×ut]/×$ªå §ÇËììäÒÅ œ½t—Ë·Û¸÷´“±ÙQz{;¹rñ´?yÊØÄ[f&&ˆFÒ†$䉆#¤’UE7ÔJºL<ž$Ëe¥"‹ó{ûèy3ÊË®ašo\ã‹Ó_Òt÷çÏ^£ñË“|õÇßñå·g¸Ôt‡O:xõì -woðfx]÷Ú2 ‹”J±X¯?J2™A%I$›-lÕtnÜG4}+݆AµZGl]BÆþ×›±ÃYõ‡ª…Ô©P³ªXó½e Ö5PIR‘¡$P*•(•Jˆ%‘bIB(–PDYUA‘0TCÓʵ U'§Q]» ÈH*È äK³.•›o%:¬EæÜ2Ók £+³%îÏ–¸½ ðÊ!¢(—ÀAö)—‹2gKœ.ry¬Àw}y~÷4ÿ´åèY“0€LÉ`Ê#Ò2œãäë"K2¡œA¼©‚†¢›ís¶¥!ï¸MW›Pm¿öªû±ê»úvî¨íõ‹û_ó’(1òv”P$l‚¡f˜a†&þ¥+†ܻ߼®Õ¾pÿ‰cµ{':†¡nMg[Ô¶– ÛêeôÚiQÛ&•ZDuH¥ŠøýAÜÎu†{¹ÓÚBó݇´wöÓ×ÝÏÝ›-Üù¯YŽªï]“ZO=껂!Þy´žØZ»ôrò‚®hÈ’€ )–J¢¸ Ž‚ !J2’\*?DQäò¿ªQ3 ZÓ +n©l¢¤“*„S+ù†+­!Ê= ÿÔ’åþD[DâÉlž“}YÎ ä¹2Rää›?’ã¾U&+ /I|ý2ïŸæùýËWÞŠ´N \.ò`ZÄêU‰eÊ׆(@Q„‚PNG¦5Ö Θ²•ÔQ«¹Ê˜kûý¶Jq4öy8°‡#i!_``h°Üîè'X_øSCEÔDíºôý×'þß~3Ì0Ãß,ªªJO_o¹á÷~°É€Úþ¯×R26A ¬íUC(K„‚!ìkk,¯;X]u07¿ÀÐÛQ¿ìÆOâpùikkçîƒ;ܾ{™óç¿åÂ÷§é|òœsgš¸øÍ9Þ<}ÊÓG¼êéåù›N®ÝºÄ勼jÂØP 3Xçñ¸ü‹šª‚¡QÝÂ0R‰ìæJ&³ÖV\¬9<¸½>|^?™dŽå÷ï´ÐòøBI`tøWÏßàËß}ůÿùWüò_óÙ—çh¹};w/ÑÚ|‡óNÑøÝ7\¹y•“gÎðý©s4]¼ÌWŸÂ[Ë·‡¼$“ûI¦3¨šZNմݦ35Ž…ªh”J%‰›ÍÆ´e†Ñ±·L[f°Ú–Xs¬ I¦Ó…Ò¾ej‡ŸéÛTÞšíªÍUØ£ix•gPµf»ŸhšA2ǹæbem9«…ÁÁ~žutÑÖþŒ .ðøy?¹DÄë£ýî}¾ýâ+~wü>;ñç¯ÝàAÛ¦§§ ƒçÙ¼À‚ß e¬ÀÏSüòq’iKñë'Y~ý4Ë‹ÌðªÌí‘·&K4y6'òÆ*Ñ9-Ò·¬àMêøj¹QÛëAÛŽ­Õèùª×÷ @Ó4‰}ý¨5ËL0¬ež`ˆðÁÏ«ó\oËìÓãï!ùàC'Í.õÇu ]sdÇ¿&ÛÖ²&îûhøÐEójíå{|ô«êÏ»9Ñ‘ýñ¶ß 3Ì0ÃÃn@3òv”H,z`ƒãÝJáö?À’¢ËåʵSÛ„AUÓ(æ‹$#Qü'Nç:.—ûÒ:£Ã# ððî.^<Ç¥MÜ~pŸÖ{xÚÞÎ÷.qíî ÖíÚž¾¦ýÕ&zéékçEû#:Úsçñ3ìV+aŸ›P(L<‘$•I‘ʧÉs›µGº¤Éëh›JV¹¦KU2™$Ë‹óL÷ös¿é.c“³ô½áÙƒ‡œ={“Ó—oqãö-:Ûž°j÷0>jáÛgùô¿e%fzf€æ;·ùþÔyš/òøñCú†'™dɶBÀ³ÈÚÚ@•åEF†ß2;;OÀïa}}AÙP&+“´Ý’H½©œ·P]/ïMÓ( ÉtšP$̺ÓÁ¢m ËüSe•qyy¯×K<'ŸÏ—{÷ýTÔ}T‡½•¦ÝE®»Kíôí“Y]M×7R7Rk5MCVTDI!ŸÏXZu,ŠäÒI–gÆxñä.5Ñxù W[osñæ5zßô°¶îäÞ½ç|sò2-7oóèÞC^>ÍÌø$žU;V«•±ÉY—VÈdtÍ@(¤ ù=„B!A@U % T çê‹Ën ‚J8gÑnãyw×›[¸pþ/úÞI%¸ûôÏqòËë<{ianq©ñQ^ttòây7½½Ì.¬R,hÄâiü/©tšx$ÂêâÖ¹9 ¥’T•­kÎ8æ …¯^°º¦U¯S¬Ñd]×ttMß#õÕ¨Ê2غgÕF¤­ëIS54YG’Ê-s¡DI(QK”J"E¡„$ h‚Š$Ȳ‚ªêèªÎFc¹ÖÙ@ÕŒÍOE-׿eg\atM¤Û&aj†Î¼GæËç~ö8Ãé¾<ßuçøí“,xžãæHÇSEþØžá›î"¿šá3üË£,ÇÛ³œéÎq¹·ÀÅþ<׆‹Ü-±àW™px¹XÄÕɉ )Ù¢FN0ªÛج¯Ë¼jÇÿeIÆð3::ú“T Š`8rÛKÇNŽ|¢Ó’ò¡éRåw—2?Žz&8ú¡“F›ò#ƒaŒ†o‹ÓÚ§¹Mmq&¢•žuJ‰6€ïlj×öxFƒ›M©Û*ÛßxÖ]yòßÅMÐ 3Ì0ÃÃ:ÀÐ27‹ÃíÜáviì.TÚî\Sžõh:š"Š˜{KW×+æ&,̼ÃáXYäõ«7<ÑŲIJu–ÎÖfn›¥X*¡* º&£ëºn  „¼‚/:Å\œî®n·÷306ÅÄè8¿›…™A.^¾Hã‰3\>uŽæóßrþÑ]ܼÁÕ˸tã-÷ðúÕÜž nG€¡×oyÖñŒL^Äë\£éêî·u°îòˆGJ"ù\ ETÑ4UQ+-d$IB–ˆ4ª" ¯TOhëljÌ†Š²Q®¬˜àÈåõÈå‹ÄâI¼^+«ë,X—˜›gn~Å¥eÖÖ’É$¥Ri{ÝÚ»Rcu?¾Fm­ù°ÂØfÌAµ!Ë^*˜Q† A’C•„ùB‘d6O$‘Àá\ebr‡ÃK$žgiÙGÛývZ®_çÚÕ\¼p•+ç/ÒÚ|•ëÍw8uú2g/2³°Š¢(„]>^ ò¤íc“ÓÄâñŠ‚¥WfU4]EÓTdI"N †ðxÂãQÒ… oLJéì|Aßà"랎ÕUÚîÞä›/¿åÂåšo_åìÅ[ôXio{ÃËž—8=næ¦&¸sõ×._¤¿¿ŸÙÙbÑ$>€L6¾±ŠZÛ´¨%±ž6õ<8Èá¶rΊ"±0ñxŒt:M6›¥XE Q”Ëבªm‚ãî^;®W¹uVÛ¹lÜ·u]3P• 4Ê’ QJˆ%Q,! ‚ "Tú¯ªJ¥ZÙPoÕrª= ê *y©üEYBϪ„-¢1ïUy0^äü@ž§‹ î¨Ê¿—âú„È£Ñ<ÇÛ²|Õ•§ñuž¯Ÿeùõà ¿ëÊÒ¿.r¹¿À/ •åDW;ã%^Ú$:æîŽx¶ à‹)X½2 ‰ŒÀVkŸý<Õ8–BI`mm™¹ÙºM®þ#ƒ¡àŠW0½ ˜&î»iøÐÅDaKYô¸ ôMfè³äp$µÍö,1¯@,+c±dY­4ØË?÷M‰%sÛ†JVdd2M÷h¶ê» „¤ˆ'©!$Kô¦é[(’RöC7Ö}šFÇ,!>ôÒxÛOÇnF²U¯g³ýÐIÃçqR;>géðÑð¡“£’9é4à 3L0üsšÏlL¸VVW±.-nÃê6YÕµ€š¦‘É&ðz}8×ÖY[]cžŠm~ŽÁžnZ®\¥§ý9×Ï\¤ëÙ3î޹÷g.s¥å9³VNûmwš¸t«™–¦ë<¾Û̳öÇܽÕÌ•ëÍ<êxΨe†YÛ"+«+Xç­ã EQ,Oü$¹2 Ô´òÄZU(•Š(²&‰D#!Y´­21>Ê‹ŽÇ õƒ®#d#œ9{ƒÏÏÞ¦å~;§þø%ŸþöZu`__e~n¦»÷¸tñ:Ó#£ŒötÒÓÿšáþaæf–Y´.377‡Ý¾Š$ʈ‚D*‘!–U¢R¿ßO,ž@ª8nÕÆý@µíßü!ªª”‰T&G8Çã °ºædqÉÎìüÓÓ¦§-ÌÎγ`]ľ²‚ÓéÆO$Éærˆ¢XÕ–áÇ=_ë²Ò¯gßUûlTÁé†W‡®ëH¢H6›EdU§P ÃÌWÖ¾þÚŸ>ãÞýG¼£»«‹o¾øœg=ä yœ+^:Úû¸|³•ÖGèzÙɲ×Ãcgbd’ ?Œ×ë`Ѿ„Çç#›Í’Ëç‘$EUQU\6K8š$“(䋸\kô¿yEgÇK†ÇèîîâÎýÜ»ÝÎ;žŸ&ð07ÒOëµKÜi¾Jç“ÇÜjºKÿëÆFÞÒÝßÍÔì<Ëv;>¯B>‡(I&â "ªX*ëmº†¦hU…k»Ÿ2ì<¯·Zë;Ò…ë…F}Ç3òUU%‘H°¼²ÌÊÊ2>Ÿ@ H0"‰ÇI¦’¤Òi²Ù…b’ T=x1Ð4£bȤïP+úâÙ›Y©›Õ4MÕQUUQQ$Q) "‚ "Š’( ’Xv.+Œ)áú¼%¹\Ã(*EQÇ—Ô±G49Iáu™µ„+$qe°È¹7F 4æ9ó*Ç^æ¸;Sâ\O‘ãíY¾é[—¸ÖŸçËΟ´çø¤=Ëç]®ö8ù¼Àã¹ ÁØqh·ÜnjsR(Y°.`_µóS?•‰„µÍKÇÞ*ø«Š‚ˆeU*£"ÑøéîtÍrj¦Jã¶4T/Öp†c5Ò;7À0¶ÛõÚÉI± d÷Ý»SC&¶ZĽÓd[?wÒði‚\¡¬Z~ÐQÚú¼-BÇN:ƒzÏJœøÐÉ‘ÛYsÒi†f˜`øgÿéxý^¦f¦¶×°íÌæ«ó9ÆÇx30HÏú^÷𢣛×/{Y´-Ðyç6–á·Ü¹ÜÄ“»Íœ?}ޝ¿»À»ÏY´y ûüL¼æå›nzº_³4?ƒÅ2…u~…¥eÖœnüáþHˆX4A6“G”%À —ËR*–HFãDCÜ/¶•U¬v;só¦Ç,,/-òúE'ׯ_ãæ­ûܺu‡ækWè|ÖN¾X@.å¸uë1Wïtóªg„æó—8¶‘®7C¸}n–—Æxøü%#cÓ$¢1¢A/^—¿/D&•#ŸÍ‘N%Éd²U@UNWÜØŸn ûªwõ¡Q?0Õ –º®£¨*‚(’/Éd2$’I¢Ñ@Ÿ/€×ëÇãõáñl…ÛíÅåñ–ïõáõùñùx}þ­÷{}x½^|~`Xë¤áà ž 0îð•Á²olׯb»ÔD3Ì0à  ÿ `O&DÝ4Ò¨†åH§¢ËÌÔ8‹v;Ãoîä壼xÒÎýÇO¹v÷ wŸµsÿa+÷n4Ó|ëw®^ä»S_Óxñ:·oßçé£G¼yÕźˉ¢ª,[í,ÚÄ£)¼.+ËvB¡(ÅB–DÂÏšÓMQÊ}å U‘·ÔÔ½f·õ´qøwCC7PU QÉçó¤Siâ‰áH €×çÃãõ⮄ÇçÅëóá÷ðùüøýM%&‘HÍf)JH’„ªj»R‘%I¢P(J¥ˆÅbC!ü?^¿¯¿üÝååxðú¼B¡Ðf‹b±ˆ¢(‡SCýGÃmŸ7¶×ÈU HÓuT­¬r)²B:Çëó’/æ)Dbñ‹¶%ÆÆÆ¡³³ƒÛ-·èîzC2`ÕmçÍp7­pûî=G!›&›Ip8ì¥ÿM7Ã=ܾ×BÓõktö³°jgɾÄàP­îñ¸£“ÇOÓýº‹ÞÁn^uuÐóæ c㬭¯ ˆÇ#8n¼þ™\}‡IÌvµpŸÚÒZN1†Q %I"ô±nŸ'â['— z°{m,­-²îZ#‘/Ȳ¸=NÖ.œN·‡pÐG"#™JO$H¥Ó(вyß‘dPk˜±:U=!ØêŹ¡˜V§wWœ‘6àXÓõÍv5J¥‡©ªªe0”d$I.£$"KÒŽ>Œ2šR†FMW+‹Õ‘dƒ¼¤SR d J²A(­1æT°†4:çJüîyžG³Cë oE.õåùº;OËD‘«=y†Ö$Šr¹ýÉn0< ¸rm$SIÆÆÇH¤’&Öa:ÓyÖ¹ NîTòÊ*_.)áð–˜°dhm qôC'Çî0 •¦_99z¿c†ÌÉŸ;9z¿P•²Y´F›²•¾z6F÷hж4­·}›àhmsÓðóÈÖ:‰Å]i¨;Áð£ëaNÞ®ÄõM£Bø9i^(á ŠŒl@ge›6ÓýÁ0b‚¡f˜a‚áOaä yÞôö ªê¾O‰ Å,SãÃÌÎ/098ÀÂÌ,±TEÕQD‰€Ë‰PÈ’O')dRdÒ)J% Y’)ds¤I …ù|ŽB>O"%K ¨e( »Öik¹Îå«—µ®ó9¸Ôx–+-­Ü¸‹+ç¯pîëó\:{–+·Z¸ñè%½Ý<éxJß«—ººž18<ÆÔä ––¬s¬9בU•b6K!/¡¨åÙ«,Ë› âµ½R>k¹9‡„¾:ë©êJ]×Q•ò$SDŠ¥"…B\.O:!O‰Dðü¸Ýn.'öÕ–ì6––m,Ûí8¼>/‘h”t& ›ÊçQó6VWVU²ù±DŸßÇÚú:6»%› »ÝÎúú:^¯—`0H,#“ÉÏå) eUG*×Àišv8•t¿tÓƒê§ö2KÙÙ+pÏž}:’\BV7ÒU ù‰x’T<Ūm™ññI¾º"KEYuÛèàþƒGÜm½ÃÕë·¹s÷%÷<§õéc®]üž›÷á D‰†BL200Àüü,‹Ë Äci¼ëËxÖ×KEdI*§[+*ª¢ ”DÒé —‡k•¥ÕeÆÆF±;„“IÖ«ôô½äöý»Ü¼{‡¦ËMܽ‡‡/îÓÜÒÄMܺuƒÇòêU7SSÓô½~CÏ›^,ÖR™šªoƒÁšn´œëÛµïØÿ¥R ŸÏÅÊâ ñ ) öâ ÙYõ-ãö¯‹‡ÈåÓd ,óóŒMN3e±0o]ÀáX# “ˆÇ‰†ÃÄ"Q$Q@’Y‘Õ€@¦¤m™.W׺ncA}Ë I¯âÄMhÔT´u­\ã«T®_I’*!"Šâæ¿J£"˨rY‘Ô5}S©Üüû¢A¶²n0éè°J¸’YbY¡™û3=k"CËKÁ- Ö;û`C MÓˆEc ŒP(’µ…?ÍTÒ²R·M1ŒJ½éMÃ%šÝ2pùÐÉÑÏË€µ › ÷чN޵¶¹’nÀ]ÎÛt>-«|.Ž~êãƒÏý´¹Ô VÁê>Æ5û×JœøymÇÒ†Ï˦2û§’ÊåÏר¿4à 3Ì0ÁðÏ0dU¥ûõkYÝŠv¤²L1›¦X,¢ê:[u3²,#(J¹gXI ›Î †˜š˜¦ïU/ScŒ¼ald”Çm-gvm…ûÍ—9}¹‰e§‹Ë ç¿?ͧŸ}ÎÕÖVžtÞåéÓ—ÿö{î´¶Ñzû§O~Ι ç›™£X”wï†zÕÝ ìwþ^S5òù<^ ÏÚ"…T9&—ñ‹¹ˆÄ=$’rù¹BO ȧ\½sŸ»;èxÝÇÀÛ , ˬ:Ü‚!’É$Ф¢jCnN¶;°º ä :’¢!«²j kjEÞÝö£ª(usÔw¸TîBº†ª*åã#©ˆ²„ ‰ˆ¢LI,–û/n¤¦J%dI@Ýx¨ehèšJº` ª[u”†ER%¼¬"©e•q{Fˆ¾ûþ·Ï5!I2@¡Ña䇉ÆO*‰TŒŽÕª£Kn©|åº?/}AuSMkÜTw€¡¡”k¯W}g0µ©*ÞdY‰¬j'aJ´½LbMê¿ 5ñ¤EBQ*ý ­’¶ê¢;ZÞÆ£:iø6QYžFó§NŽÝNÒÝ(›ÏXdsÒi†f˜`øS=}½äó…ªu5¶LTÕÿèGKMÓÐ5 M’(e²|A^?–,V ÚŸðìÉS®\»É¥+7¹|á&¾»Äùóg¸pëM§¿çÎÃ;<êave™bI bígf|˜T6M2àg¤˜Ñ¡7<{õ‚Û“ãã,Î/ÊdÑ PQ+uˆ»ò_wN:uvøW{;'îWoSOj§q0üm ®ëhº†¦jÈ’L6›%ãXw:X^±3o]`zÖÂäÔ$3³—qº]ƒAÒé²â§(êOã|;Œ ºcÒ™Ïç‰Åb¸Ýn–—Ëf?SSSÌÎÎb³Ùðx<„Ãá2ìK›ªâÆ~4 ãÝ&¨9o²=ÎØQ“¶K%Ûñ>ƒ=ÌW®-U)ƒ¿aèd³)²¥’ áq¬31g%³4·ÀÕ WùîÌ%^¼crnˆsM\¹tާíÏX¶Z8wþ¾üæ š®=àÁý7ô¾êãyç n<|ÁÔô<““ äó%¢na¯B¾€®©hªF©T$“ÉV&üáx„©é)^tuó¨­ƒ§OžÓñ¤ƒ®Wm4]>Ïo~ó;´wKçÊí_öèCx ùÌ>iÔªª’Ëeñy„¼«s1„\˜RÆš‹c)´R UÈP̧˜Y²ó›oÏñ¿þŒúõùí~ÏWßœåÒ´uö1¿¸J<žDסPT¸ûÚÁn´r«×ƒe5…Í™fё²–fÁ'šðDòäJ’¤£Už#©†Žflµ¦0Œ ªœNëØn}Ÿó¯ÒCQ×Ê’\¢$‰”D¡$”ÝQK"%¡œšŠ* « ’ª¢hº®U ±ú¼ÓjÈüÆîË=î‹ù|‡ËÍÄÄÄOZ-ü)a¹Îнծb2‡Å–¥õ~pË`Æ¥n¦\vºdrY‘¶ÊgŽÝÏm‚ᑪÔщûåv'GKÄ¢NüªÚ|¦œjÚð¡ÎU±êõ2àý8`¨Wê 8v¨‰JRUÖ×ÑSÀ†OCô­i»T­.†Ì4R3Ì0ÃßÒä}hd˜X,VåLºõ$ÜØ1©qÚfβÈê‚•‰¡^=¾Ï…3MœÿæQ­‹øê©Êr¹ßc<Ç,˜,ÙmÌÎÏ1>9ÁèØ[¦f¦Y´-ár¹…B¤R©­TÏzT™z~oæêÙfãÀbûmCe\[[cvnŽÉéI&¦&˜žaiÙ†Ëã&‹’/j7Þ6~ Ìn<(©†À]Û¿‘§§UZiTRö ½ª–®JÓŒÝR¤QUä¦mÕì)’D.%•ÊÎeɳX,st¿|ÍœÇò¿ÿ’Ïþô9_}w‹ï¾»Ëå³ç9sê¾»ÐÌw§¯qùÆ \ÁOŸðèF3CƒÃ8묬ØÉ å,†n 2e>T|>O&Äïñ ú±.ÚxÑÝüm•‚ –3,:ë8ëHáÝzX ‘N% ܤ"N2 /Ù¤—lÄEÜ·N,¸N<ꢋ’Ë&™±­ñ͵6~ýý þÛ/Çïÿüì¿ÿ Ÿ}+÷_0³`#›M£k‘džKÏ×ùï7í|ýdë/Ü4¶­súá§ÛÖiìpr³×Ë­>Ï' Ì™seq… ¬‡ó¬ò8ƒy|Ñ"„@6¯ìŸFkÔ©®m«“­õ@aë˜^1¿’e AK‚ Q* ”„%¹HI.§¨J’€!騚‚¡ê•cV¥PghÉd ûÊ*s ó?ùž?µ÷=‘].¢Ç¾ 3RQ•d–ªÓ2?qò[W¥þ® †ÇÚŠUß©ÐVé…¸aSm^£$ œøt»“i«MÞJoýÕv0<¶¯ùLA±È:9z;·wí`• c2αŸoopÿÁçÀ#¨˜“N3Ì0ÃßʶÌàv»·×lðÔóGwùä×Ç9õE#M§Ïqåòišn]äfË-¿¼Àí[79}á+Ú?exd€ÙÙIçp8׈E2)Òñ$©t~ûd’íW­³TO–íÅLUëfì?ñªšøèP–"jè¢,‘Ëç‰ÇãƒA6›™™ÆÆÆÇb±`[^ÆárŠDHgÒ”DM×<9¬ÊùSTë8š®S’DRé4¾€ûê 3³ÞŽ111Á«««âñ8ÅbñÝj)½f£ÊœÄØH5¶YsÖH™Ô÷XŒ¾÷$}«Dµ¬D._,RÒˆ…¢x<>&ƦyØò€S_}ÍûϘµ{¸{ï9àv{yþ”;çÏÒØø=Wn]§íẺºðÆ}L¾æU×K{ð¸Ü‹…p¢¡)2²¢ïšý±­×¥Aí÷Ð'Q"á k+óDýv„| %¥˜ôõ;q»l„Â.¡@6¡o ‡o¿¿Äg_6ñÏ¿üÿŸþüÃÿüŸùå§9ßÚÁ‚}R1WIkwDf|%ÇÛµ G£\~éáÔ“U~s{žŸß˜å··—øUËÿíê2ÿï ³üê¶•O[–9q“OÖø¾}•“WøºÕÆ/[ì¬Eòˆ¢‚$kûƒ¯Á¶;\¹§¾yçÛ–Z«ëe¡¯ºµJÍ\çòCˆ¶šª É2’¨¡bI¦T’( J¥%A*«¢‚"—s£Þz/€‡£Ì[qºœ;¶ÃúûTr•œX[]Ìer­îïS *©¬ºwƒú¬B*«þdjør•õ* [Mqâ~z›k«f˜a† †ÆùøòŠÅÅŲ;äî©÷¶'Õ6Û ­-whÚÅ›î^zz»yÒñ„³ç/qëöcžµ?¢»¯T:XËn–Š‚Qé!fPžxÆÁµ{F5‘î;1v¯s•µêƒö¢¦}ÀR×u$I"ŸÏ“L&Ë5rN7‹KËXf癜œfjf†¹ù9ì+vœnPT&M¡TBÕ´J/³J#n}«ÿ`+ÿù üdSÀÞm“Œmµ™š¦!H™l–p4ŠÃåbye™¹ùy&§§°ÌͲh[Âív‡Éf³åŒ‡ó=Þ´xÎÊšoû‰£ï“:mÔñÐe/0Ü¡Š@±T$ñã÷,SJ‹)ŠÙJ6‚ ‘ »)¥ÃªH4âÚÕÓ|ôßþžÿïù'þéçÿÊñùGþ—þoüâÓ_ráî}–]A$¹|*‰¢XDÓ@Ó U%š,2¸ãêk—_{¸øÂÍŸ¬sþu€ë=>nõºùæá*Ÿ¶,óå£e¾k_å›¶U¾~¼Ê¯ïØ8ùd7ÖÉ’²GMêŽßí·ö’7,l«‰Þ«¿§±•>ºqŠiåúJU–P$I(•ŠeX,Uj²÷€Y¯×ÏÔÌ,áhdoè7ÁpûDâC§u†9ñ4à 3L0ü oÀÇôÌ ²,h>P(ä‰D"¤R)²™ÙL–T*I8¡P(!”Jˆ‚X{RôSU¦ØÊ %•\¾H<žÄât¹±-Û™[°23;‡¥ÒÜ}Ù¾ŠÛ[®wK¥Ê­8Ê®‚[}Ê6!P×ÿšì/jè†^1öPQÔ-ŸB¡H2™Ä±¾îdqi™ùy+ss ,X—X][Çç—tUEý·ƒòƒêÐö{ßµy†a *å^ziµi‡†f”1%‰T2‰×ë-§çÎÌÑÕÕÅÈð óZZšiiyÊää‚ SÓÁ²ž ìý Ç¨N™d—#i!Ÿ'𺈆}„‚~©°!¦˜ñSÌŠ9‰}=Ün¾Â™3gùê» <¸‡û-ܺ}ž¯»ð£ÈrÙèÅíqáñúȤ󈢄n”Ð%XNÆ+a÷æ˜YMËjEP¦Ä²¿Äôz–ñ•obtÍFé›OÐüÊÅ/o-óÄ’¢$ÕoVµÍE—:Sã:_ñ»†flª†µÖA×t“SÓds93•Ô 3Ì0à  ÿÁ0–ˆ1<:‚(‰*VºnT ?tôJCw½ªÉûjßpØ>ãðsrYQÈ $Ó)B‘0^ŸGÅàŶlÃf[Æn_aÝáÀãñ EˆÇ¤S2ÙÙ|ž|¡H±XBÅr» Mû‹8ÎÿáÆ>“ã28©H²Œ ŠŠEò¹<™t–d2E$Åçóãt¹X¶/³h[bپ̺Ó×ï%‹’ʤ) ¥­–ƸŽÁTõÄ^ßÑgQ§®FååëYG‘DQ¤/‹ÆÈg3” \.ËËNüþ(¢$mWÛêyPZ·±; »–BŸÉdðz=¬¬”[œ¸] Aˆ?D4è%õ“ËeÈç‹D"1¢á^¯Ÿ•uNŸwû+ö%âñšZÞf›mÛò2++kx<> Åù|Žt*A4&ÇÉe³ˆR EQõr?Á’¤Q42E•tQ!‘)ñfÚÏ­K!ý0©ÑÆ)¶Ô¹ët}ׇgŠ¢°ººÆÔŒI–M04à 3Ì0ÃÿF0Ì ô Šâ®Â½óûßu½Ò.£b–‘N§‰ÇãD"‚Á Ÿ¯ÜlÝíõ”ÿï÷á øñøü~áp¸ÜÜ=“¥T,!ËòîCsüu²¤a ª¢(’ÍfI&’„Âaü^¿¯ß‡×¿u¹½^¼>@€h4J*•"—Ë!ªZ§Kl=u Fm¥§f §^'„ìP1@Ó*6T$I (%TUÛt®4öD£¨Ý htv¥T«ªJ2™Äãñâv{…CƒQâ‰$ÙLžl>Ÿ¿<ˆD#$’I2Ù,%a üv+S4Gusïʃ‡b©X>÷âqBá0>¿¿rŽù6Ï9ǃ¯Œ¡Ph³'c¡P(·¥Ð ë™ä׆µªWÒ õ­ÚÂ04v·üe¹ÒºÄƒËåÁëóŽÄÈå²H…ª(Uš¿Ëä‹9‚áK¶%–WVp8ø}n<^/>¯/ˆ/$›ËUZ›hd²‰^·—Û‡(*¤“qÜ.'‹‹6lKËØWVq»œÌYf˜ž›Çå âõzq¹œ¸=n’©²¤€Š^î}ˆÁ»ƒáA¡ï£Êþƒa6›eqÉÆâ¢í/æ!f˜a†f˜`ø£p€l.÷ÃÖ×øŸ«Lt7êÁ$IBEJ¥ùBž\.G2“&šˆІñü¸=ÖNVÖV±Ùl,--a·Ûq¹\› N&“¡T*¡üX5bæ0G¡©…BD"A Àår±²²‚Ífcyy™µµ5<Á`h4J:&›ÍR(”"%QÚìÉxèkðÀú=® ÜJÛMàjÇÔZ ·Nw€¡$I„Ãa–—íŒO248̪ÃA(èÇ>?E,èAD4M'Ÿ/â„Y²/³²¶ŠËå& à÷ðx½8].üþÅBq+Ã@Ó‘e‘l:C&“CÓ D¡H:$ F"D"1æ­Xæ­,­¯³´le~až%›`(B¡(ì½Oë©4ê<Ž;÷ѻ֦Ö{>íXŸD2ui‰ÕUÇîm4ÁÐ 3Ì0à  ÿzÀpäí(Ñx¬fËŠC§Àíóä¹Ú9RUU¥Ê¤T"•I‹Ç „‚¸„ÕJ¡qxÀáà÷V/³P(  ‡$“ñŠ Í2Zò_ÿ§ÿJû“ç„BqdQA®8ͦÒiB± ‰Dœp*E²P “͉D‰Å∢¸µúÛ:×èuA®®é 9R‰ÙLEÑ*ߧׯÜÖk,Dûð]Á°EyÛz}>–lË$©¿ˆû¦9‰1à 3Ì0ÃÃwöÕlöeJ¥Ò;+†²¬‘¯4w/[à;°.Ú˜¶Ì16>ÉØø$SÓ¬K8œnBáh¥œtð~2ê€BÍñc÷ëÜ2®ÉªJ6Ÿ# ³æXgaÑÊÔÌ ““LOOcµZq:„B!²Ùì–+ð9§kBu?¼ê–Õ UË%õ°€T³™,‡ƒÕÕU‚Á ñx’PÐÏÊÒ" ‹D“I$E-w<¬<ˆ*ó¼Y}ÍË…No-¤œ!J…"‰dœT*…,É›ÊàæúiÆÖfè›™³ÀÎ~«;6xÛýo{a¡¡n5ŽK-ån߇©u*†û÷ªóqÝéľ²J±(üäÕB Í0à 3Ì0ÁðLX½>3sò¹üžï•$™l6K4Åã󲺾ƼÕÊôô,cã¼›`Æ2‡Í¾ŒÛã!Ë嶇ÿ“ys˜ã¯EY¬1tdY%É EX[w27oel|Šñ‰)fgX¶¯àõz‰F£är¹½{0Ö¥°»o?õªEò ³¢¦f2Ün‡Ÿ'„ÇÀí/údÒY–Ö×™Z´â‡7]ƒ j‘çŽNîMÜ!Þ2@qdIÉf3äòE¯J‘Ýú¿Q•JºÐ醆Q-3U4öPZ¡¾Àz¯ ëÝׇQo÷`à’ °¼bg}݉¦÷csc†f˜a† †ï8ѧŒŽ½ÅK$ðúƒ¬;],.Ù™›gjÚÂäÔ só ¬¬–{ü…ÃáMs— ãŒÍ47C7{û™ÃÿÆ_]×ÑÔrº¶,Éäóyb‰$¯ŸÕµuæ¬LM[˜š¶`]\Âåö EH¥Ò”JU=è}䰦ЏŸz¦È’L&Sn;‹Åˆ„#„ÂaB¡¡`ˆÅÅE,ssø|>$IBS4 UGÖUDIÄHä!#!‹ ÉLš\¾°;%ý ~;·¡à3êû¾C¥žî5׫^¬3¥4•I³´lÃíñüE]f˜a†f˜a‚á;Œ\!Ïàðó ¬;Öñù|„ÃaR©ù|I”‘$Y–QUUU7kœL4‡9~"“aÝ@×ʽUUE–$I¦TH§3„B!\.Ëv; Ö,³³ÌÍϱ¼bÇãõ‰•UFYV~¼OõÔÈÕ€³ ðÕ5M-ƒo©T"—Ë‘ÍfI¥RD""‘‰D‚d2I6¡˜/ Š"’(!UŒb±…\tã`µl/Uõ]Ócã{ØÁá²–Ú{˜‰@0fѶD 0ÁÐ 3Ì0à  ÿÚÁPÓ4²Ù,ùBA$ ¥btaìtØ3‡9ÌñFŒåk\–eDQ¤X,’Ïç·+Åôãt»XY]eѶ„Ífc}}ÇC$!•JQ,÷®gܯÎú”+£¸Uý¬kÆff‚¦•CeQ¦X(’ÍfÉd2¤R)’É$ÉLšx2I4%™H –ñÌ»¨i{©í‹w1èÙK4~ÀºÖ›rZc=œn7‹KKÄb1 Í0à 3Ì0Áð¯ :R«Ìasü5ò"š®#J¹|žd*E$Áàóùðù|x½Þ]á÷û‰D"$“Ir¹‚ Ëòf­ß¡${üËÁ ceX”e³÷i±X¤X,‘ËfI§Ó E©_Ŭg½8`]ë¸zLcG;±ÌzïñûÔ4ÚWWX´ÙH¥Ó&ša†f˜a‚¡ †æ0‡9þ# ]×Q…R©D&“!™L‰Dðûý›Ð¸ý~?Á`p«'c.(ЍªVÿ=è`¸_›]ÕöÎ|x0ÔÿŒ`hüyÀPÓ4æ°Ù—)–Š&ša†f˜a‚á_{*類î›Ãæø+1RîçW*•H§ÓƒA\.«««,//c³ÙX]]ÅãñàóùˆD#$’I²Ù,…Bb±X®”eTME?L«šZé§;]:ë} õi™{ªvõµˆ‡¯Ò2w)t5–³+%µåîa½i°;ö“¸½,ó³CA Í0à 3Ì0Áð?L¡9ÌasüÄ&÷©©‘h‡ÓÍ‚u‰É©ÞŽO2=3Ë⢠—ËC(!›Í"I?b\=&5ûôAÜ7ô ¨«·ýD=px:ºÏ6/-Û°-/“H&L04à 3Ì0ÃC Ías˜ãÏ9˯jx¯ëhš†"+‹ER©@‡ÃÁB%5ubj’y뫎rjj2™¤P(n¹£Ôv¢`dq¯¾ƒçΚÀƒÍzê ßÅuCe,s³¬;ds9 Í0à 3Ì0ÁÐCs˜ÃæøéNþ5MCUUEA’eDA$›Í‰Fq{=ØWì,,Z™›e~~žååe\.¡PˆL&ƒ(ŠõC`= ãŽ65tc(óC °^`¬±Íª¦ñv| À¿ÿ>2ÁÐ 3Ì0à  M04‡9ÌaŽKü1ÇFFI’(‹ rÙétšxŸ/·h0þ¶÷gÔm®ªÕG‡{(›§j¬CQ!¡jš †f˜a†f˜`h‚¡9Ìasüeâ.Ò dY¦/N§‰F¢ü>?>Ÿ¯×‹×ëÅãñàñ”ÿï÷û …B$ 2™ ¥R I’ЪaÉ8ÄvÕë8ªR]ÜG¹Üs÷QÓÙ4ã#$R©¿¸¿eæ$Æ 3Ì0à  Ías˜ÃýhµMQA —Ë‘J¥ˆD"ehô—¡qËÐèÁçó ‰D"$Ir¹‚  ªê†‡M;ý‘Á0 0>9N6—ýË;ÌIŒf˜a†&šÃæ0Ç@ 4þ —e€$Id³YÂá0n·›µµ5–——±Ùl¬¬¬àr¹ðù|„Ãa‰Ùl–B¡@±XDE$IBUUôZm#êu'­³5EÍm=d}¤¬»œXfgÉçó&ša†f˜a‚¡ †æ0‡9ÌñHãÏ¿<]Ód2‰ßïgee………fggYX°²¼lÇårˆÇãäóy$QB–eEAÓ´M·ÕCÿ½¨å‚z˜<àwÖE+Ëv;%¡d‚¡f˜a†&š`hs˜Ã%@iü;|f›Ê¨Ë…"¸\n–––±X昜œf~ÞÊÊÊ*‡h4F&“AËu‹›°xÐߣ~°æïvº¦îP Ç''p{=H²d‚¡f˜a†&š`hs˜ÃæøQ¡E7D2×çǶ¼ÂìܓӌOL1c™Ç¾ºŽÇ[îÁX*•¶J ‰;]Nw¨Œ†¾ +CVU†GGˆÅbµk&M04à 3Ì0ÃC Ías˜Ã?‚‚YãwåÔT‘x<ŽÇãaii‰™™ÆÇÇ™žžÆjµâp8ðû· ñPލ{ýΨ‚G P*Ò7ÐO!_ø‹ü;fNbÌ0à 3Ì0ÁÐæ0‡9Ìñ—„{€ÍFí¡¦ihª†PH§Ó„B!\.6›ÙÙY¦¦¦˜ŸŸÇn·ãõz‰Åbär9E©ßtfÇïb‰8ƒÃCåÆöÆÌIŒf˜a†&šÃæ0‡9þ:™²ò7E×uTUEQdYæÿßÞݬ¶ P}ÿ× …Ð… ‰7±1¦B&‘0VUÇòí".ŠK¡”6Í9ð­/£a²Ûí²\.SJÉl6Ëd2IUU©ªêõ”±iš¬V«ô}Ÿñ4^þÎxΧú!ׯ3 ÃåiJ’ CÀÇ8Žy>>g†‡ì÷ûìv»l6›t]—Åb‘º®øÍÆ|>OÓ4yêºl·Û×Âûé47w·/§ŽoxDK’dðþÞ{çó9Çã1}ßg»Ý¦ëº´m›æs“RJêºN]×y¨R——çRJ®>\å~6ý~ñŒCI’ahð6‡áÏÞ?N†!ûý>ëõ:OiÛ6¥”ÜÜݦ[-3Ž£a(I2 Cþúèû“ߺ0øú/}¾þÊå5†¡$É04 xÃÕ­¤’$ÃÐ0ÃP’d†`J’ Cà CI’ah€a(I2 C0 %I†¡a†¡$É04 À0”$½Ÿ¾0]n“Ä«ÐíIEND®B`‚flickcurl-1.25/docs/appgarden-commercial-picker.png0000644000175000017500000014652611600753627017350 00000000000000‰PNG  IHDRàhÍIDATxÚìýoŒ×çöì,0@0»˜Y`_ÌìË 0@ˆ« °/ö 1Ï*X@¼xF`é  œÐ×/ÄdžŒï(Ýû€–ïš¶/è±Cï(ô‹úØ@hM8rèÈLD;¢“’“’‡SRY¢Ý%uÛmÙ’ÒRü»ç_UúË"›­þ ø@ÝÍbÕ©sNÕ9ßóûsV>ÿüsðÅ`• @€"D ˆ@»$Ï¿ePùÙŸÑ/¼9'?£Ã/˜tqûsÚþÀ¢'žRçàçzÅ¢í»¸b¶Î¾K‡Ÿòî™ÿ¼ºvý¾ìëç,:öâÏèÁoÿþèûUúúw_§ç_=O¯ßý÷±}9ØÇÎÓ5<äÌ/O¿x< æá‡tê*Ug~îÿûC?§»¶b¶éØw#îåyW ×¹Eæåo§oËòê].Üï©>À],—{;Ç¥<û¶ÿï¼M[wkÅ\žÐWcí‰Ë÷‰|ÿ]úÚíùµÎßÅÖÛ{¨pÿZÓéë÷ÖÝx%^ô>øÊ÷~Ã_ÿ€¾Û^«ôµo§¯=ߦϼýD ÷³ü|{›¶®^×`¿0 Y’ÿt“¶¯_7A¿;]õ6ép¢¨}ƒÎßÓ~‹Ž?¾iåüþOm_ Ý‹<å.úmã®W,KFZ“.уA Ñ™ëé'èLHpÁ±~vBϳ2å§Þ`üŒž_]#óòö Qú~ý–¬å *q% 1èäÚÕ%Ä•½í³ŠEZÂÎÄ[¶¯nÒ©·ÎÓ©·-ñÿÚG2ÆÐ|ë]zæYï>¿ÿú¥H¼ÓïÏ䃵°«ëC¯“q5î;[ôÄ#akᩈã·>ø€VWßfíòºh—2k—ò³oÒ÷_ùÁõÈØËµ3–¼×·Ù=ŸÝb»N'WîÝç?Y´HJsñìyÑgJ¿!Ž{âåwi•gûœ‘Jnœ»ÄἩ¾ÏËʯs>t—«[¾6qúçÅ3k¬MÞPçù=óÊ»1÷ À}+?K/zepŒw»<üú•Èólœ5éë –º¯2èüöâV²Õ€•ì«,;æ7IŸ &”œäÐÏ’¯ôèÄûÛKýþ,ÌW^ çûg“ϱñöÏé«ý‰¥7éØ?­ÑéµMÖÍí-zþÐgÇ>»æÿÞU+`MîQùPXx?¸j«ï\¥cÿ06Ñ7¿»:C~F«Ï&¹6¯ÒóomÍlÓ¯=kR;á<¥W?ÀË@úDàCib Wiõƒ[1òvº8ćޠµE¶4`¢$(0Ÿ`ñoç_}-u‚ý>¿šê~HǵûÜé÷“¹Nß ÊGvžAó䳫©cD¿ùê•è>ôPüýüH ¸ç¿=g<ªO^Mýýò?]™Ý¦3hŸÛÆ @ú…š{>!|Y³¨l_¡RT¢æ†WްB}íEkî{Z{õõ¥Íàbòr8þ1.ALè>5QûÍÇ_‹ÎÈ©YwúýyEà×_¼´³N•I•µéáÙ.ôÝwOîóó·¬Oιvúýä6û ÔfQ"0Þò½kW¯Òùs›´±íÅWn]Þ¤ã/¿ï¢ч<áÜ×|n¥ŠPÖSu­kçÌPž ,l‡2‹zn²áú`–ÂY}÷lT gN’C`¸Žçzä5–ôgÌOòû9(Œž?“>Sã‰gÞßð£m&nä6×>ˆp{Œpà gAÊP¾Ÿ¯+××~nwЗ—#…P~_f-?Þ‹ßgp†Œl³«—.—˜nj“ê¨kù3¾*ÉÜHŸxÖé?oÒá`­ÞÓ´Iü±“äkgXøýoÏ¿Qýƒ/§ÌÒa!KG8ALº½ê˜e3`µr,r;ýþ,Óáý·‚í0CòŒ­.’¬%mŠp·<~9ÍBƒgß^ m{túzú6Å…"pIrü1‹‰À¯½.9L8Þp¡H“Ö’÷ýïÙ\ZÊ÷g²XñxÂ÷gdÈšê´5ŒË˜ùµï²=ôZ‚ Y™@‹Ø§0na1øC79 D €¼"0hÁââëÚ6wÕt`.›×Ùÿ×·i{ûƒÿžfë„¶HH¯ÓZTšÀÞƒ‡ºµ”ïÏŒ}<÷NDη“ã×®_Ч^øahÿÇÕ3Whˉ ^/Q®F'¸¹uý°ÛèÚêk)ÝA_Ó\}×ùï Ñwn±¾³Ÿ±"@î¶¼EÇŸZa!»B‡¿½J_û6ÛpüÙŸÓ±W×hí£Ù"pûýwÃ,¶Aû3/¾Éâ °mGlGðÌÛŸ%ÆÓ•IL¢bÔQ³Óï/,z¿ý&™õµ~î<Û¬~5Æô:sKõ×Ç7W¯$[YE ç‚ég+”½ó¾køÛÛo!¢®µýÁZÈZŒ=<ϲË~õ¡Òƒ¿Aϼüû D €¼s"0Z}í)“.^eÂeû*­>{<ôù±Û&œzñx8çÕ$×ÈpfNž æÚŒ¤*¥WÎÓÅ>#ó§oG¸O¾Næör¾Ÿ†(áë%LáúzþE¶wã# 1ocȬŠçUYÖY¬`h½o'‰Àã‘nžqn¬_}Ü µË×¥P}$)þ0Êø‡tìÌ–z‘åü®  郎GæpÓ||möêÌzôÍAMx» =AÌ"ñg®&ïI7Ï÷Ó²öOoìÀö8ø@Z O¿xÒ£'^y—ÌËÑí{í‹Å F|—'‰9»E§®œîÖ׃q|½xK S?ç&Tz$Jœ¾Cç/ào—ˆ>vþm“¾ùÈjô}~û QÞÙ}÷Åú.÷´¼Ó°ìŸëlÒÚšM&cíý-–ÙñΗ+Ê"tM¹‘^|ÿŠ(«yn“6®ïÎ÷wµ®Òùs¼>¯¸uºqu;õ÷7X{ˆò±ï_¼|}WëÙ½«‹õ«·¼×+^y?ÚÆ @‚åˆÀ­Ûø}€„ˆÀÛ"¿½Cømˆ@DàÝ+ƒ[<ôóùDà¿·“ëŸÑù÷7]æN8²ÓïD ˆÀ{„ñxŒz÷e_@߀p·‰Àk×® ¶Q°–ôÜϘßѵë·¿»û˺}K”ã0§¼xªMö®ÐÊŠÃ~zú¸¹«¼vî$½t|í®©°ís«´WÝÿ‘“ëwmÞz±Ç²‹®Ò÷Ï^÷výú¦ž}T°J_ÿît|í3uÜ ú~éhëRĹ¯Ó±C«,kéjàû¯Sûí­ûæÁØþè:¶zž®Íyìµ5ƒþèãtúê-ÿÖ»6íùÆoh%‚ç~us¹×»þ)`ç=úÞÍ]»£s•ý}2·µ{üÕº¸ŸýÍ}¢äø³ïÑÊcë´þÞeöù……Ûââ/7èÄù¨{ºIG¿ûú_;Wç<çM:Ù½Bk×Õ9û è|ºÄzºN‡¾ÃÚø;—èÜö.÷±«×è¥æûþ>ö ôÒéëK»†ÙµD;î<;ò6­6-íxž~ã3L@¦amµ¬‰??¿´;Bp{í%qþ½OŸ¾{ÄÕ‘½Þ½x)•H¸íÖ’mÛz¿ë_ù¾~‰¾Îþþõg΄‹Aß…ñâÏèkâø҉˷„|®øôÕ£Eàóß–Ç>óÊ;âûϳï]]¯üúæ}ñ`/r‘›n{ýØkï¯Ñƒ¥7ȼ~gûÂÖ»R •Û6½Ô±é¨â9öû©o-Y^¥½ìZOÿj{÷îçWˆûyé¼WöS­‰šÔ3Ñ£õÏ2ûÛÞæ–ªƒÉb"Ý8G~-;õótèÇ׿[Ðz÷!@N+øl{ZW—'ü•(æ9ýÛ]´¨]u̯s°u™Nþê*^¡ƒß‘[¤D>WmÖ¾î\®u/Ȳv>¦s~FGŸ•ýæè»71 ˜ÈÖi: „Ïþ#'Ô ¼EÇ9‚èa±Bmý™æ­o­“qò<½&EÒö†øýøñãtʼ:ÿÆ9ƒN°ÏŽŸ8A§ÙçÛj¢a¬’"°Ü¦µ‹®˜¹hžÇŸ8iÐFbÙ·híôIvì vì)Z[÷&mÛEY7X¹7ÖN³² SƹdW¡m“ö à=tü¢6áÙf×3M:·¾E×6Öèä VÆS¦7‰™õù’XëgL”§g^xMˆµ“ùE |ÏŸÝX\ß"?sEàÞø}.¿møðö&=ñ‚¯Óšf…¸¸v‰N¼¾F'Þú@Ե߂¶I§~:¡ã?=OkÎVÛŸÑÚÚ¦¯NÖß¿Bç/óÏoÑú¹+´~}›ÎŸµØy'd¼/-ÙïÇÙuNŸ»ºÆÉŸ®±ÏØ5.ëmÅ®s޵›ìŸæŸÿÔû|ûê­>ûCq/§Þÿ̵&œç÷ÂÊ{â-+áØmºøþ–¯n¢ë@ÞË»—‹gϳò1±²¶òvH¼^;û¶8ÇóÂõ:µ_ ¸öèärB}ñ­Ÿ>cß{û*mySü|êªw½gøç/Xòç‡þ!ô½¿ûCßïO¼%…àúÛo‡Ž}â§ÒR¹u&|}NûÜ6³ì÷þöÐÏÙÄu‹žùvøXîj<Öz‡÷§üIus//_Z¢%p¢¬NQ¢êS*?êwÝóÔ·M×¹r#=2T®~W>“èàçB~¼úl¯Ï]sѾ-Ý'WžR‹AnŠs¯¾÷)bÿèJ±~ñ‹Bø×=kh£ïn+S+ô™,ëMzZ«›½!kûœ&DÄ6½ôxð} !Ò è/ËsLĈû \k+Uû„`õέ±߸Aë§/ɺùЋÓ;íZM5Ûbͱ²úa‹þ.òý"êæ©Íȳ-&2Í¥…íÚù—dY7¡k>¾AkB$ŽwÜAëÃß^ڲݶ¯ß¤--fñšpæuu“‰±1Ç)±ò\¢ÕÊxî€k!+9ÄøýÃAGø½D†y’íWbì‹§»f( ã^K²FæÉçh²,¾=5éè!y¾=±¸ÀÓtá¤SŽƒtÂ0hõˆºÞÁã¡ ‰+\÷!ãÜ9÷XǵT/ës'NÓ‰çvãOoEÝ‹9 Ë~põ¢&èº>O,3qxè%:uò%ׂúðKk3?_J£^žÐW…[¦œLœ‹‹7è|À´ô ³¹D§'_‡¾ùˆŒí;þÁ­ÅEà9Ó’_Cü|øŸ¤Ý¾lIÕï¾Cט»êƒüçC­+‹í3üú½M—„ü¡æÂÇÜOÙg_eQ×fV7ƒ~ݦ²R¯Ñé¤5²ÌÎûU.·¯ˆë}õ©wU9oÑI!ØzR (Áúµg×äç¬|¼L_S÷|úåJ(ã›®è“ W¼ëŽý„Ÿ÷YþÄ:ÐîåôG·”`ü÷<˱²‰òw&´×áÑ÷èaƒö;:Áãæ¾aÑ©•eëW¶tÞVø‡ùwŸÝPu÷;:Ù:/âë fmisKûîéå|U¹×qhpë Žˆ?-bù¬¥¸Çšâ\é"'ýø}#È>ñ ¶xʳ‚9u°÷u_•÷ÅÅ‹cÜû i‰s-\/°:yôYÿW·\\¥ué?ûDœ‡‹Þ=Ù7¶Ïo(‘w3Æ¥u¢êœƒ‹ÀGßgõø;Ñ?WŸý¸þÖ¬ö‰ryìYBüŠzß–1šº¥ËhK—ȧÕ÷‘Ï…[O¬½¯)ÁuPˆÄËawwÿ¹·­ cfÍ>wñ:]¼xƒ.~ø[ºÈ,ŽÛìd?¹è.pm¨k>Í\lõ¶¹È­”ëWÅyÝ>ÇÚê࣎UqV}¨‚o8uy“ÚOýÆkK½ ˜Âô;SÑw0 ˜4ùzI ¤ýéDàžC'\÷ɃJäjŸ$Ã8M/)Kžç·Eæ)îÞÙ¦#å®;ńضyT ¦ç e½SVÃýO3×MƒN?âZÒÖ£b 7Î1¡u’Ž·Ÿ£ƒöú,wNY÷9¥ÊêRyíÐý­WuµÍ-Ú^?Iû b<‘wе˜^tb)Yü =ãókK°¯ô¤`yÛ¦óï3·¯—åïϼý™+Œ°€ýÑCÇ阛Øe1¸ý¾gM4¸0úßÞôMÂÖV_nª§'kB¨>¯%­¹öÑsù¼®ÄY¼”?à•…‹ÇgÏ».w«‡d,£HÐÂ…Úão3WËw©ýOktì…ž[>G¶ß¿åZ8ø¹œ8HQþ‡¼{ܺÌ\yϱxº·&tìeCùõˆcu˜XWƒ÷Â?î»æ2b~aJGšŠ.Ñso\ó\䨤¹ýƵ{tüÇëR1ápí=[YZÖ™kûüÇ›, ˆÌÝ‘»aú¬c$&Ö\0­ŸžºIBŽt6èôù‰.Öóôm§\'?¾É7¤5JšáE)P™;£ntêÀ‹#¼EG¿ã•}ûª/Ư˜k{Ϧ‡Õ\¯_õ»¸ÎÜÍóà ¬¾~ÉÜA¯Ï°Î^õα·å%†9'„-ÚÉí>·tå‚ë4»ŸsÌ'·ÜD:2¾îŸk%·žíqc'ߣW´w¾ó—ÂBIÕ‹Þþ[¿š†¬ˆRŒ2—çoÐs•=ùÆzúÙ W]¯m¢Ê bùD™gÕG¸.+©t)> àÚ6s¹ƒú&ÌÕsÿÃôÜê)1Ñu„Õþç”ÀÛ:å %=Žn{Ì:=w *ÙŒ´Æ9×ݲÞi®£Â3,Ü®­yY<åq+‘çrÝ9¯vE`”%0êÚÁ1n=1‹©3ñ¿¦„ìÊÞ§éÂŒÏwnÚ¢Ã.†‚ïšRd*Kào1!ËVð·˜áø'ꋉÀ·¥Åìù3×É|åx(nÐx¯ WPÇêèk©DैϜ$-?dºKÌz÷¶›¹ôküÁþÿv¹Ž¾Fí5Gl×Ü%ýçÒ…Ýöç}U¿ö])&g‰À¤:8u5¢ìá¹k1<±‡rŸs­„ß9O_ C½Ï´#ï©ÏØÿ]`Ÿ[Ô>»%¬iû}– O}‚imÈÕwt—¾–cuaqœ|„ńԭb,Eèm! œø@7&ðº_¼IìEÏj.’ìþ÷|Ã/SYù3üáyü¼Oµ#2¥F‹À«—Qn)LnŸ8>9ÒíUXÊÞ¸á‰"&×u÷Zu}§ž M¼JAz^sËÎg?ÒÚå&³2Kà•Ê*|^Üã¹7¦¾Œœ¿Ž×¼îÔͶré0¸=«>Âu•Tƫǯ`àÒ%†Ù8é ª‡Ÿ;¥ƒŸ'-[!aõù9*«ï=gÈìµ/ÑÑ—VYŒ O4í9$Wf™ÛŸ Kà^eiÜ^g–Å£/±ä*k!kƒk5d®¢b b «â|"л={÷Ó$û÷úÄxby/XWåЬ£³>ß±õGY·„Àc‰®1‘Çÿ—n\ti1g’âaH óùU7'Ü~Q&KYÓ3«¾Àãã~F•Ëêá·¼ íÅ×Y2›‡~F¿üÅÏ•Hr¾÷=ñPzxZ‰Àmåšú„~ŸWmj¯šd° ¨ÉbÓd×>wî…%ñyÿº§øPô±ºL¬ƒÏsÇ^ý§»ÑŠ8F!äfÕG:xíÃééæåÝß>¸oD T>ìY¾öìõYÙÊÇÏE +‘øÅIÀr€Ž<}ÈýÞÁã, èZÛEGŽ¥òþŸ;¨žHeï#ôî;G½m)¡ƒÎž…Ú!h<·ßD`úÄ ÇŸö‰?!ÞØ^sîJúQ)j5|Biõß•òàs'ÕwX|GYËÊ\KÍèŸ;½%ÝM.¢çN<­bó”eމC3Â}s{ýÔ²ƒ8xP•ýa2®±{Q¢ö€ãºê&©9²/ïñY }“R'¦oO™~劼=ÌJèe=xTZO·f|¾#ëÛ^$6QÉJ"­wÌžËýß÷nÞ¶˸L'»çãïiÛM$ÕÇÍP] t}÷_Ò""p.Ø^SŒ­ä=õ‚“·­ ñ½­ˆÉѵ-y¾¸ëmñï]Ócƒ¶ä¹¶®Í,«üîöm©L/#éQ#¸ö¬ÏïK˜;곂m]Þ |ë#n1 ×Áöõëâ{ÛËh~®ïð\·Äy¶®n/½î$<}þ³`mŸÈm±Ï6˜%'ªî¶¯ÞŸ}ûsI¾Ë]ï®]¿?Y?̵2Í=°$(¢¯Ï²xþ޹kþnií“Ú“C¸ºÚBmÚE äÉr6®Îaµe÷-úÈÕ˜:Tõ2O?çûݮֈJXžtÜF÷D'y™õù²¬%àþå~ë èÛ·‡Ó­÷D’•È÷’°&¾ ²ª°D5Ï9BO=¹ÝìÏ`7¸xÚfÛô|ý^ºÂ²›"V€"D ˆ@ @€" @€"D ˆ@ @€ˆ@ @€"D ˆ@ "D ˆ@ @€"D ˆ@€D%D ˆ@î#Ø~™hå ¢½OųçÿEԾĎÿŒè û}…a~¶Ü_œÐçæGh¸e³öSÖ^¬ýþÉj‡]ì3÷æOd[üéîœ?Øv»}½/7èó“géómÔÅíïŒû²]Ü÷Ñ›¨K¸+DàsuùbžÅ‘³rØ«~?õÉò {¢£] ·TNÿHÖíÞÝ¡v`}f¿ê3§?ùb·…1G[,ãÚÍë}ØþPõÝ'èó-ÔÇm»1΀;Û.xÀÝ&¿§„ÞQ6Ig–„ÓkaN1ÖoÈUñç^a+y¯0«Ãåöi%DŸ^CÃÝIá±+íx[&AQm‡I×ÎØZSïÆ:Dàí¶¾îÆ8îl»à}w©ÜÿÚr‰u掶uÓÿ÷kŸÉ¿o|íVõÜ]"7>Råülçu°ÎîõÚ¯—úØ›êX%¸Ì×Ò¼³Úa[µ#çÚn‹Àyêñ“%´Ûmγ¶õÉòÚÿ¹8ïõæjç˜g~Yí%ʼKýfÖ}^Ûe¸Ðó”VÀÎYonßø$…ë«VÇŸ/óØ4ÜôúÏÖÔMŠþ7×{%ðÞÕÿž¶·bîëv?·[ ¾O·ox難¶€»T¦z1³ ýÃOÈB'&ÀP"ãȼÉ>ç¥ l0`“¨OE¸–¾8Ÿþ9ûݘcð¹6Qßc×¹¨ hÛ—d,#ÿìø‡¾ÁOÆ5°¿ŸTñSk¿ô—³‡YFRÖ ?þ̛á{=ÿ0Ïõæ9vµ8î{Þ½îÿQŠvi‡íX›¸·Ÿ¦˜0ƈÀZYŸ[[¬7=÷$ýžO_öŽ9ªÊ}è—ºzYõûWü?§b(÷v£ïg'çs&AÜê~äïÃå6>Y ýÚnîë±ï<÷rÂóúùìg>Q§h/~?Ô=>­—åïc&¶ ô›4ýÙ‰_Ò9ðZr¬«ç°XÔÚÇy¥}žœz~ø§¡ <Tçtß•óÖ›(íŽ÷žô•å'ZYœ{`mÕþQàXö~YDÜošcçgDY_ —sïÑèç&Ò5ž=‹{ŸˆøþG‹õÓ‡U}-üüdÇ®Ÿ ×m[»gîiV®Cßó÷0{_o³{>xn÷³÷ËÆç»óÜάŸ¨vù\ŽóGŒó¢Î>‚€ûÃ1¡7~C¸ún`ðúž@“h5q ~wøùGÞ€-’×8“gm§¢»¢‘qŽ­Vž àû1’'.§¯wð ¤ÏiÖ™y®7ϱ«/'Çtαíð¡¿Ýö<˜ ½ñŸg»Ö~­þ÷v“¹Ð3ÿa|?HÛ^QýÀégËxþÒög㵈gèµ QÁ'>Aþe _Ìñ<ÅNš£Væ­7=@•/Xo‡~îGý÷‘Ô~±ÇÎñÎ8þ²¿Î|‹‹,fs=elt\ÿsžÙôÓ`ýÅýݼ‘üÍ„äkIÏmªú‰h×eÚ¹Þïˆ@¸ËcùDõh.ÞÌÏÒ‰Àƒl’t‘ (m6áýÅkÞ °¡­<;“bîbu-Ï´`Bw¢­­˜¿tÔ¿îL¬N+²‡Ž—½k?û}CM¶/kÖ•¿ŸáZ£OØÄäÔ‡Þ9<°*Ís½9ŽÕ'¡¿æÝë)m";WLàÙpÝŠÉÂ…hK^¢¯V?|ò£O6|Kç¨G}â¡×ÍÖ%mB¤\ø®iÇ®ÝOÚ}âå¯ 'b¬À;9_ðY¹ÑNî¤~ξÕvó\ï„6ùÕ­5ú±ŽÅ 6+¶.E{ûÁIvMƒ ©—–ðüÍÙŸ·ÎzeÛ˜ñìz*Z(:ï!gfžë/,SÔ›ÞgŸþ•f%e}öP=Poú¹YžúÈëߎ§³ü…ÛoÖ±iE ¶ÐqT{׬Ÿõîáh’…ñ’ö|Åëï+ŸÞY?u¬eçNjTÜXó®l_q}Ç Ì”ŽhìÀÔõXY^úû°{òRžÛ”õÕïÜþü=œ ©YåO}w½ŒãÔ')DàQÿ$Ðý; O°AèÚM×r'žSÂeX4&ÐÙÁ-CÐ:¢YgŽ<å]K+cxRr)bb>cÂt‡sc²~ª“™×[èØˆÉÕÑ9Ü}Cí eƒ‹Êê¿ç•tõSÖ\›BÛ,R“s]¤ K™f¥;zÁïåŠQeõÛøUаœÏ-÷߬§Ú½;.Êóöͨg(õõ´ßý*|ÏŽÙû£äg~V,dªöÒÊr4¥ë`Ú~3ož'&Ð|-lùà^ {ô…9¯¿¨LSo<ó)÷GXòOGÔ›sîççÞÖÄäéÏæêÜç¡W¼I˜~Ü{*.z¾¸g%*»ç¼}3Iμ^ÀzS\/èZ–tÞ(æj¯„~°ÓçoÞþãòì{L»MÎRúi¢Dœ >Gqâ0Ô—ôܦÞF(!É×9v¯ÇYÿ}Ž‰Æƒ¶‚€û<&0êžv:`ï­ÿr‰"P³ðq댩ÊTf×8©b¸2w–õÓþ8™öß§‹Á8tv±1N¼¤¹Þ<Ç:ú(¡ç¸}-"·ø¥'üIwbW¦SÆlE–gŽztÜ¢ü4Ù=ع×"Ç,¥×>Ñ&©Zò n]p&y‰Ôœ/éY Öý¼}3Iκ^Ð5–'fˆ“æj¯y³ÉÎÑoæíÏófu,/{:þw÷,rýEE`Ú,¼«¯¤Œ#þ,a¿D.Ž{ɦ>vž6e{úhLYë2¾{–%pÖ;p)ý4AŒÇ‰À`ûƉµ`\Ös›z¡0âžùÂÆþׇ€û$;è".™0[}ÍoÁÐW×!ÕÌl%Ò9ßqžªZ%fØÃV¹Ÿû{¿ëÌimÅõ"[Q>÷¡ÏîvYþ}ãÆr&¡ó\ožc“,NbŠ…,“åZ¹ð?õ£˜l’sÔ£3ÛŸÒ¨Çæ­þÔ¿àÄr=÷5Ajv’‰EÏ7œ·oîDê÷óÒšŒÒ¯wQ]ëâG‹Mææj¯]óöçyEà†–fí‚· àN˜'‹Y÷ï‚t¯¥’‰ðþzò¬t«tâ¦C–À¨gC»®ÏM2ͱ ´)ßá4«ç§_ñ' Iꋉ–.öü˜dß^J?M(û¼"0ø÷P\Òs›¶~B÷vSKˆÅ;:›èsƒ¹†^ûî ð…'$é`\ĵˆÉ‘S†ç&‹ßphUÔ‰oø(œ¦Û¹®3Ù‰œ°ð<Ó[}^ûlI"pŽëÍs¬Ëœ¬®þýü1n;h÷%Ðݤ/§tד‚…ÊODlë1G=&ݯÞt‹ÞK+BYYgN¬!©­[ œo.8gߌz†R_O‹U >¯Î³¼÷)o»…y'ssµ×.ŠÀyû³;éþ^Ê}ü´xѽOE<s^?¶ž? ¿Cç­77›ðÑpL “!sDæÞ`ì—+Œ œylÚ6½¬ëág¡ýò쾨Ç׿ï>g¬ßZF?½"pIÏmÚú¹¸·íK _µÐ Ç" _èf-cƒ© †ç~ŸÔ‚g‹tÈ0ÁÐfÖçäÿ~,ÚJm0YÉ=¸¯Ç-êYÑø¾Kz†¶s7—äŽ6Çõæ9VŸ ðlrΤníÍùÄMT;èÙ O|}îȯæt!ZKˆ;šÓ¢Ã,¿^{ê™3Ÿò'w8ØCîøå€kg ÙËLKÊç›GÎÛ7£ÚnQ÷S}/3ýy=¸ œ«½vSÎÙŸÝl‘OöˆKÀq?Ëœ;ÏõõLºN–Mž½³üTDÒªEEà÷üωñÓˆ=u—-šïwè¶ßÑŽCºY*ßô[©žþ^ò¾žÁ˜q½ÿñ¬ŸûµEœ¥ôÓÛ)—õܦ¬Ÿà½m½ ok½³“ê×ç{ >Í„æÑÓ˜´À}#õUBgŸ@ßÞNZzû£ß‹H±?#“^zºì²¶2zª½g`Ô¤íÀ÷¢-<Ëš„Îs½yŽ=ÑñoÊ|à©9ö Lh‡¨vÔ“G̳…†o³øW“„9ëÑ·/"+Ïò‡6.×&’üx=ƒãÞ˜=þYà|óˆ²yÛ?ªíæºÞeüîÞzh/6×j»ÈŠ~êöÚe8OyÌÚ3˜+¢?íäú{ŸŠ·š·Þ.¾é/g9Æ—%3jï¿ïÅìY:ϱs´iûh ÿ,ñí sˆóˆþçl÷²ã~z›EಞÛTõázPïË<[Dܦ3~G]_÷xØÂ¤ n¯ò‚Ô·,-[ŸI¶Y·hX"ëZ ýö]v½ÔÇÞÇòÄ[7l¯@;¸ÿÄ+õ›wIG¿éõ­õOîß:mûǵÝ\ñµŸxuš˜éo¯´ýyû†¬ÓT}>í6ó­Q›ò‘mÁÊZ¨‘—¸60ö(ëÔM¥—¾ŽÝ6^¡Jo{îŒ8¦BÕÿëy½= 4B[ˆ@ˆ@ç½2lž»WòUMï­LU½[îñEUŒYË{0fx{.ý%‘§z§OæxL³øU]a˜§ÁT›“Âð^ƒZÞ7P5FSïe;¨¹¸›ïÓ6Zê%® ¢™ÀÀZh‘R2íSNÕK¶ÒO? ºm¼BÕ~Ì€j¨ZÌS±Ú¡©~­L‘z†I¦9Aýˆ@ˆ@ɸë.He UêF4›Ì2ÓðRQ½»Ù»Dü-W»ç½j0fÍ)ÕÙcÆ, oÇÀ5î”Õ‹¥±B4¥†ˆ¹Ú@RZƈƒ!Œ¸’EÆhÈŽÐÈ\üÛ‹c†Ã™“iô1“†ì¼/ §òüòï–9’c©>Lù½ D[„æ5bÎÃǬˆ±Ì4dY‡á9Æ, —?p©x¥í»?enårºÃ‰&¹hÊøET®J¦ö=£Só buPw‡IuÌ”ºÕ|Ƚ$[jj.4ì˜Z1tL©ÑO\y ‰@F±9J£v5T^.ˆ›ƒ±æfšs¿[*æn1õdן‰·’ÌEiðØa£H™\‘ªõ ÝÉ„Zå|„ N•†–gí­ev*R1§›¡j«E•\ .5€ö=wË|ÁÿÙµÚõ@ä¨mhblÒ§R6Pg™uF–g‰ÎE¹IW\áf\Uæeîj°¸«ìÙjß=gTðïÕzãôª3QËÖèl¿:_™¹äXƒ'ç¶BxŸ‰@憗Sîvƒiô1Ãf•*ìÝ=âïnÇA±®¿K¢ßïÅzOßRc ©œ _«â¼GÕ1•|&4¾µ†Öí³v2îìpÌ2»µe3[¬{±tš÷ÉJV £ÉÖ„ 4Ëáve×ííø±'jœTßëOlŒY@îcªfuwÏ®£Ú„½TkQ·Ýp'éùúP ÇaÝ;¦Þ¦~¿Cå¼÷¢œ¤=Æyé娋»×§~·Iu­²­ÃzÞ¬õ; ÷]j©E`F =Vv„÷ª11“’º(£Ä¥Oœ¶ÍŸï%Ÿ«¦yAÛÔ.e®W"#Qh%Áî}º™8Y‰%ë¸8Tò‰¿Àù-%P£ÊÆV.Çú#BеMÿdÊ©3³SŽwMÊÈX‰´ªã²5žŒ¨]/»e¯7Û4`–Gk ûñ¾*TøEn¼V®žÎ½S¯fØØÕîR«^ Å¢÷*Ym|ëS¯]sÇ·Bc”úgq2_fÉZ˜¥©Ó(ûßóî\@бn¿Omwq•‹“ÛèÞkyªh«’™R—&£F@¨Œ©¢ ‰jg$³aKjð×E`±!_²ã®' ³ /^ý%Ÿo gÇbŒšÚÀÁ|þM¶ši›Ô(z«“aÝÔE`†êý±ø[£à 6µúÜ­ä܉HPd­dJ4œVÙq½‰ ¾rÆ?Ø™m¯~JMµ@0ò\„ âý5ÏbŒQe¦54ï}ßìVü–ÛÈ-¶¹\–²¹Š› SÎzkþUL.leudm­»IÙšû _<8Uc† ›˜Gæ}Þ&=õþï$×Ë!ï‹Á÷bð Ìr–âÛ‰ûϨwµc¥+S¡Xž7΢l†Å,êåtÞáÎïm³v0î,þ]Ï3JXMië× îØ)\Z}"§=æÚa Ùã·µEOǺȼRŠ÷ºÝIÄØÃó ”cÞUÅZϵfÇ5ŒY@.“*Ùy x1ýiXtÉ—•cÙáƒO þPMà+Ý_¤8fì0Ø ´Pª2‹àPóë÷^”¥ªLÇ-RrWK¾ ÿ,8`1žÈËP¹Rò‹@ËsÿÈ”:¾UMï/õΛóêHsYu4R1#Wü2R§³ú€šb21éÅd Ó2ffEæSMhi‰õpY§ÁFYn™4ëkõÓ]…åß<×XV§õ&5›Mj1—¨ÌŠ;£‹@­Îô¿gÊš«1‹gd±'ž!B:ßö:Ô¨U¨Ë†, ¨÷Q2€ "p™–Àš+¢ìyD`ÀrèŒüä¹l(ë±— íø©ÙÇð1P_PËdóT®6¨¯Åò]¡S`[;¨-ؘZQâ,2Î1(—9fí`ÜYü»ú˜S F‹Y-ª—s±cbVÏ,néIÊzþø@c¬âñãÇ{¶€è4©Z.RN[tÞ‘ĘD`’¨“/F¹BýR1¨Y«Sg`øŸhT~èYe ® •'ÝM4_ûqŠcäËÛì5¨ »6ضܪ”™áÒ8[Já¡‹ŸË¢öÒ/V;‡šêE µ-T´ÁBwygà¹ÈfËáAwÜ«Q¾Pû7òý ‡‚ßj端prkhÄ@¹]V+Ij1wîù™ˆkÌr•i¬ýß›ø-df»XE”Ï&õ ˆ@€ "p—¼j²ñïkØa{¶hÀļKtè¸í…·¾qsôjoö1ŽÛ}§V ¿³ea)›ù®Žñª±vkÌÚÁ¸³ð˜åzÅ#„«Odö£Ç¢A{lêÕ ±×„"p×è*79ŸË¥ÏDYŲum¥,INT’pœ¡s®ZÿÇðÒ¢±9+«Ó±Áâýš,n0ë½´Ý h9@ áæ`‹,[<»–½9[J¡«¶®øVzõÌhÒ:šJ2÷j>Gù|^Á~.µƒPŽº>݉ë*ëºËjƒB©£%ö™t¼UU19Ø=¨¯´Æ[¹ í@ecëS·Ó¡.‹ñ°lmvŒ•R¸«æ½½Ñ=†ŠmÍU˜å2È—Xrœ&‹É³Ãc¾×m¾Ì¶1ظ8vËâMŒY@.³í®V»þD*–Ñq_v•Þ8µ%°Upb↾ýkJ/&pö1–»¡»o°°5áç@Yjé)M="…%Ð ¿ÄýŸ±Á,£gÎìÑ„ ª}õN탔J&´‡.œø9jí YÒ_Ö6ž4EÄ}4}Ƕ&K>ðeú”ÉqvQF­´ªkŒµø½¼Ú·hÒ¯kqˆƒØ²‰Ø¾FÁ—Ö´&Ô«{™`Å`%µÜPYïJ™Ý²²A}2Aºmøß'pÔ,¸±ný±ÿ}0h–ü{î¦›Úø¦[Í<ës“Os i¹Û³wq·ìŠ 7QO(âËîYP–Æþí³v0î,þ]Û¿Wï™âýÞ©xa ¡•0ž›¾Ü•ö #ªi[hðXÄàØ£[Sóµq2Sj‹¹Æ, w…¡6ÙÎ䘕¥R¡²¾½A¾îúÐ×¢6‹÷‰@”îNþËUj4jnVÏ•BCœ+Í1^¦® ‹ùkP»Õ bÖïs?jµcêÔ¨WÜUµ|}";¨ÿ^üÙ½s¸éf‹^=L=w$·,¡=—rT©zõÉÝŸô-J¸Õ9z@Èsçjrø]«¯}O"Ý6€üb‹@î©2f[+DÅÞ¨Ù7à \Ú»D_õÞIÌ•í;— ,dUZC_üßÌcxÎR>´ VmÇäÞÕ·qÌÚɸ³Ã1˶B{ÓfÙ¶ƒIºñÜ`s©`Ì®T'cºÚBËiçàÞ„|^Q)å|‹´³€Üu¦ÌM`<3&¡¤-óÃÝÆâ|Öt'ÇL™ËÈŒcì©Wn{—ëÈ’u4™LwyBáÜ»–5Yד™õxç˜NxL +ßÄZ(5µÓGø÷Sgiýˆ@ˆÀyðƬyÞYñc¥Îçžæ{šâ5¾-ô®¾oÆ,V¶±™ò>’Û’ÖíRµßdýÀX ".ˆ@"D D ""ÆRˆ@0–B€„ˆ D D ˆ@ \ !@bà"€ÄX "€ÄX "€øÃX ".ˆ@"D D ""ÆRˆ@0–B€„ˆ D D ˆ@ \ !@bà"•"c)KÅžÒtj£€œ÷åaP9³B+ÙìÀgVŸ +ì³Bƒ¦÷YG6 ´’«‘uG®oQ}ß í{²/~·'j4º»ZÇÓaƒVVòÔ·ð""pwÞ±+”«tCŸ»ñY©e ?ƒ¥ŽÉƒFQô-Nm`Ýsõ0¨çÙü³¾„¹›WåV(_Ü™9»v®6@߆¼÷V/*뼦Ô*òK†ZÆý·Â4¨ei%sçDà“ÙúJUŠÀA5Ã깺«e±5v,D »‚ÍÆÌŒKëúdœ-¦æù$=[¥1ú2Xê˜<¥›K¬ä«Ôëhbß{õ0j•(Wj.EòºÈ¨yÕížÓݹkˆ@ Ó4騱c4æ¼Ú%ÿàåÃBSǶhÐëR»Ý¡ÞÀÔ,‰ ß<6FdŒ§â¼cVŽñdLýn‡º#ÚÚ5‹sw:옞ö"ãç™dY&õØgnŸLË+³8·e‘Ñ—å“ä—®9¤N»M=VÞ^-æ°/>ïtÃ/S{bP·Óf×éÒHÜ›ÿ¼²|=2&S_ù&Ó)™Y¾þÐô‹ÀJlvo­2¤+EêE”:6X]Z²ììúÝþˆl^ž±¼—NoèyÆÔehÀ±Æ4Y}Ún™†¢}Ûþö YŽe›L§²M;™Sù}þ{»Óeuà_4ˆ®×¤úÙL,¯“!/ƒÞ>¬ùßl¼äD Dàè÷ûôƒü€.\¸þ{ÓôžY)‘á C¹˜Ú6±d9–ˆ÷š1ö½ÿŒá(~bŸ4&³wáDŒwl\4'¡1eÖû3émjïw{¿7ßsÆ*ñ>gcõx-Z ~n5^F¥]g\³ä}Ø3ÆߘÄëµ£y] ûÎ83V÷2dÇù-gƒýÍôÿÍc¥6wa×±±Ó»¿©h'ç÷¸yD°~~ñZò˜=¯ðÏÛÆƒ&eù<­Þcó¬éŽúEh>Ó‘c²3gó/6~ƒž<Ÿ!ëÍd¿ó6êÆ©Îk³ù¡¡—eáòK!–­²9Ȱ'ú>'ŒîŸñýQÏÜlݹVp^h³¹gO”sdTËñkCBÞÁ‹X_úÒ—„xûýßÿ}zê©§æ¼2öÊŸsÊD?î©Mƒ¹ˆNøƒÝ—b±gyb•ÎŽø9£/GƒÀÀ0µ(<÷ŠtMµúÕÀßWÄK³cÚç–›ÃØÕ¦Ð¹\wP‹šj×#O]S¾ŒÇ½Z軕Ž{Þz[¾|MYÿêߢrû ³æ¼Ï3UQ§¾‰H5:G&Ÿ÷×Y©3».Èë¢Ü|Y{ôø€n ¨(k¦½2Ý&9Êù¾_ 5«^“ë'©Lf[º¿45 u[L´*Xi;æßø†ûÞù“?ùzë­·RwÒ“ïHî–6VïËbK.¦íJèWVŸõ+òæŽVO¼Ï+½ˆÉzâ˜xGZþE¹Ä÷çŒw¶;¶;ãSÆ-³üY#û×DÛ¤j.üÎwž#Çh6f‰¹EÂx=&±ûMýa-ÙòÿIÏ‹²”½1ÃRŽpé›äøßPçsê¯Ô6•[gMÕç$q¬Ÿïþ]5vLŽŸWøçl9ý6°vÐ/伤ºn6½9vüÎûç+•îxæy}ý~Gå—.™qsÂPÿ<ñóÄþ5÷ZÉ:sŒ ÕóáïæjwpàúÓ?ýS_‡üƒ?øƒ¹V1ÁË™Øw'j%³à¼ÌäKÐèTÔÀfD¸48«1}í¡,Rßd«=•!~îf^­šÚNä µÊK½|³¥–\…cA‘—-Ïcs¨?‘+:maQËÉ—jàeÉÝq2ìê{ýºä:fŒ {Ù•Û¢MÆ]Ùgœú™›òË&.‰õšX?3ÊÄkޞ ]«5 òÿøáÉ].·gÍŠû¾“b$§&µÎD²)Žc ›ãˆ…©<¾œü§“¹Ði‘É­ÏŒ¤÷ç¬w¶7¶‡Ã*œ±ªÚ o  ÓY0v]eÙØZâc•ªnr•Ž;ÖKÑÇÆs+y<ðî·í.Z{÷g+›£Ž1U1t²œÍü>q'½Ÿ2¢-üõ=cf®>Ô3ó:žX`‹ç§ë.\?ïü$nLNšWó6ô„%Pö‘ö Ö²¢Þ<‘ß-gbæ&Þø-Ê<ªöRó1–kÂmÛçõúÐËÏû'/S¦¤æ„µD¿É‰ùi¨þO$ôG_{¾²ð¸Kç9©¨9’©æA9X!ïÔÀuùòeú½ßû½Ðàõ‹_übÎÁKŠŒ²+äÃìÉU L¥?SÊŸ‰Y­ÆÌ…uÄLòÝv“ª%õà±—š<·ÿ¥<änœlõÎTçÎ54Ëߤ+VNƒƒfÔyF| ÈTÕà•õ¯ÀŠÏ âåñ£×Õªc™ý[Ôlµ©QqÊx–šµªU(Q£ÕÕÜKÂ÷>ˆpAŸüLœCˆ¾MmR­–άK§_0פ±¿½øË¼Éï¯Ù¢v«&_ÚÚŠoPÖ‡Sߢê¼HßÙ5“êµo%ÕÏì2‰A„ ^“Þ’WxɈ@ˆÀðw÷w¡qôÏÿüÏç;ëšwßKŽ%£­‹ 5fñE³ô"0͘쉛(âÞŸéÞÙq"0뎩±!c6>17Ì hÔÊâÎ'ÎV_–YÏ?0î–ÕÜ"yY®äÈ\EißéU2bpxG}×ßÀb&›& Æcê4êÌÍDr³ÁJø‰kå›GNw$ÓÔe†zì³Q]¹˜ªØE±ÊZìø,½VƒÚƒñŽD`R½š‰õ“¦L²_f˜›""p^ýuú‹¿ø ú³?û3zì±Ç„§Íb"0<é¯¦ÚØÔp]öƒïv'-l œ1&§Ê:ýþLõÎÖ,-ú8:KÊss·LËgåɺ"IÚ-¼^< dÜxf!Ús­”.”y66Ø"®m´¤À*ä„+ãÐŽ·ìæÝ\\èÉú–"®,,ªÉu7vGÉ“„yE‚Üa¿púg¡ÞwTE™}%g׫—ökÇê«Í uå¹~¾’úã,nkVöˆ@ˆÀû`ƒÛ¨­¯’—”[,£Ë’ÙtâÒz,+˜ÙR~ÚM–ái¤2]:²³Òæ*á’¯Ñhb±lS]«§w¥ŒíaÈc ‡éN#}ËŸô Õ„wW¹iD%Q/ö’ﲸD£W—+Q*1Œ³*š)6X9ØŠQ[ÅFÛì¥å|7O-–Ýtlö©œ]Qu$|îƒÎÏ;1TÉ©íˆ{$û*ưÙ3v.ëÒiWSÝSQ z5•<ØIj~FL`:˜\¯Éõ“¦L£¦³?RQíqÉâB+ªCl €„¼“¨ø$6ÑÇ;6µYvDï-ß_C«VmÈdŸ9Ö¯°L“Ón=~n¦zg¯dŠl¼c®}g|N'JÔµXvNK+sNŒçÌ­2+c÷,sc·Qrs+ZÂx,7•Õ†×Ëî8f‚ª˜Ñ¬ŽÙNüžËÝÄ­Mg/8'îÓ QH®»d/ÿ˜œ4¯ÆúÇßô‹©Zà™F-–ïÀ™o q<µ%B¼œu^½^vÖ¯½9aÍ¥øœPZúäœ0:´&®?&‹À©2dÙÖ†Ö+âÖö|ëI:cc삼'E`.ð M˜¸Ëû\ àg™(¥2õë"0iÍQ [Z¡\–âì;n pÖ ²çÝ$.œL;ÞEËf•/d|+\#öbÒ3kæJ WLÚc&ürþl˜¾´HYÖ·B¨b@Ú#+òÞÅ`1HšŠ?ZpàÔÊ<‡Þ^Iué¸Û8íê¼ÄœvjWòþŒZµèÍëƒçqbj1Éõ:«~R”iÜö½´ƒû/x§D`#¯eØvÇ¡•²ú˜Up–l²µŠ6Î䊅„ ÀãÇäÐ;:ŽÐûsöX844Å,•J9Mæb¬FÎ8êƒWòeªˆqXY¸X2‘ZA¹ frò:<[ùŒñ |¿rn [©üßÍ2‘`jÙRKþ8÷¸í·:e_"‘àï³ê.X?Icrü¼"ÚBé-ì¤_Lün›ìØr¹ ÎÑ ÅáÇï`ëî Éçõ‹­”_.¼dòyßœ°7¶#ëV õçÀ\g¿ÑOîc¿ïþÌ÷žLÂfnfeŠö”6Y,.‹%4áßÚÑ‚”¯ØñÀâ‰eÇOE¹R‰ÜIð<árXS;þ»ì:vDBy^ëηSL]¦j_Õ†–½;eŠ«×EËä¸é©Î€„¼ë[Åx-:¦VügóŒÉ³ãÿÞŸ‰ïìéÆ 9VZÁûã¸PTÛ?i®”ë×NÆ(YW“P]IëSyyÛ í`¼[Ö¼bGýŠ›ç쌸óŠXÊ€«ëNÊïõ“4÷ÓçoaŒ‚ü" \·} ñ†™˜¬2x%"ƒ%¸Ïa‰c*ùœŸa¡N.ˆ@pï¾?í‘Ú&!GÕzƒe¶ÎEZ)—*JؾºyåeÄ· @߸ÝLDò±ÇpLVV ¿Àð}v*%ã6öÑï°”¾õ®‰ºúNbª,?_¨¨=Q'D ¸—ߟöd@õr‘r,ûg._¤:‹ÜÍŒÏS£ÍD`ŽŠÕïH?4¨Ê#²ù’»/ D ÆR0pA¢?€€ "€@€„€±"D D Œ¥ !@bà"ˆ@ˆ@¸@b,@b,@b,ÀX ".ˆ@"D D ""ÆRˆ@ÀÞÒtjßöëN§S²mÔ?"pŸ‚É€¼{ÇÒ^5O++ª,ßß­Aý}…ªÝ±ÿ;ÓåÙßkâx‹… ­d2âXI†rù"5{æ]ß×¢[îZàþíÉ€.Mù;lØ`Çä©o-ãº&ÕòN]Ui’T¾ú´²¯NVàç¥Ü;?_öÉ¥xw‹@Û r†½x³%'¥VŸ ü¥\hˆ—>:в¾û‹aMœr‹ÈuMMoSyÙ¤íÖ·Ÿ LrvŸô“E'/˞ݫìæd"ð>öPŽ{œb‹lŸ¬©g70Lû”åâ°?ï²ZŽ“¥j½AõzjÕ2åÔ9Kmã.îkSªeY9óUêõ4 Ì ÕŒxoYn]d—2NU½–ê÷G¾:=×Ofiå+² úÏ˸ÿѱ2í;x "ˆÀ/Ž%pÜ­ˆp¶Òõ ­¢\Ál6:o…Œœkl@Î,6 OUÑ×ú·Mê“¶Û¸ˆ0ÇdgÑÉ˲'F÷lÜÅÉ"Dàý+ÇÝ2{FsT­Ä»¾; [9] D`‹@¶ 6 ,¸V¸ÀZ)†\Ýc,ôºÔnw¨7Ь†ö„F#“yŒ©ßiS»Ó¥ÑxZHŠï¶ýßM}›Æƒ¦¸B½Gã‰ÿü¶eR«œåï5æ¨?žÐ°ÛY¼L¬,ýfIÔu‹cÙŽÕqD]~¯mÿyå³ü¤ö\k–»Èûš’1ÒØ²Ýû4GC2´sNŒ!L‹Ýã˜Î˜rL˜Ž qÌt<¤+§Å6ƒž¸·þhBÓ‰!Î!¿{††¼½0/"ðvŠÀ‹/²ÉeŸÎŸ??Ç÷lj—¤ëŠãþâÃBs4{p¾ÉÕØ©,TF#6˜°‹ ÝýRd?w§ÃŽÑ_´jà³ØàÓcŸuº}2-¯ÌâÜ–EF_–k`LbïOË\ðøK»#Ž•÷iº/ñqª2…D 4†l€1Ý&aÐsÏÙ¥Aðz;(kÜ`™fâ`³+ô]ÖÖ#>hNý+Äb Mˆ"0[#Ôƒf—‰œiª~2¥A«$D`ƒ}DzƒõÁè±ßbç Ú ÷MK›´©zšˆr³úV“€Èº‰[`ß}”ÑšÑâ.f²÷]9 ±Ä玬Oþ™íNJ†î½é“wb4g;:×3¬.Ù³Æá}ÑœØZ1Ùäf,Ê1{’”üÎ1†}ù|õ‡¡g^ôÙ.¯“™Sù\õÕDÓ˜Øû‘çét{é'‹30ù9ù=uõ{Jù>ƒ¼‡Eà”ÜRŸk°qG¾#òõah°R.ÈÅœŽ/ٻЊYªEy Œ{žÒyápo«_õÿ]Ñ©þn ¨”ñ–)6£û{Üu˜wDNÿ[`AoPÍù>{ǵŠú©&s•)xo•Þ„Œv%tÞrk”ü\ÇÝ—=ÏTzª\]ÊðÏòއ“AE¾^P¿Â¿WuÞ¯fÃ÷—­ÐX|gBõ|øÞkôÊò÷.‹€¼]"ðG?úýÛûoÅËçÿð饗^šË=N¼@3&h”;ŒãÚ—88É—uÏòVþªüsñ2d?û –žé¨%_È>¤kjôÀ—¥ŽiGœ[Rl#] £ŽÍçý/ùŠŠóH,“#ù}L”»,»¯Ÿ˜& z“ž€ Y^+kÒ`9kâ0î…ñJ‡¹*Y=qÿ|PtEWO^§i$‰À|øzùúÌ~2 L&ü$6)®Ue5øJw­œS¾Eû¦}†*û¾%Ä|¨ž ­øº‰t;,„ŽjÛ¨ÉNÒw£&!™|Þß7Ky¬6yq'Fs¶c¿šñ—¯V{–õcÒL’’˜°˜©yžùå|ÏD¼Mm“ª¹¨I¨µhQ³˜ œ3OÝÈwNø}x‹ÀqG<3¥¶wí¢ì›†OòvK·IÇ-4­5eLaÈÁ¦VÁékòýltä³Zl®j¶ÜvÇdƒ˜­öÅw;b·ÀÆ!õœ÷¥Å²Ô1çº÷'yHô•·ÇDsÍ–[jŒëkbkž29Ï}VËÄwN½ÇÁÕçbcÿ8î¹N¾¯n%#æ6íÈ-šC¾°5jˆß[ì÷[gÕ®á;ŸŒvIþ¬b<Ç=yo9Ñìgúb n¥@Þ6øå/Ù7yù×ÿú_Ó¥K—RÒ«ú&8Ò &ÍऻGZbp”ƒ“ Ù˶oŽÉY¿ljæÕ k;e¨©AÒò™RK®Ø1‘UtWðœs¨?‘b¡-\Ur.…^9Ääq:TbM}—¹é”´Ákv™ò̦/ËâœsÆ 7¨åä §ê©ÏãçØ±Ã”uÆ`™8qpVGKjgåÞ<›àp˰^¦>qÈ&ÇT9ƒf­+F³[uWË“ûI`Ó/ŽxVê »ÇôÍpœŸÌ˜ÂºõVBÝ„O²¢N=¡Ô-g܉RâdgÆwÝú Ö¿ÊRtU••R–)nb4O;z“ž‘°˜Nìp}I—ßÚÌIÒ¬'ÞoóMù=›-º8ßsÚ"ÇúìT´µl{§-¦Ã¦+ ‘ï&ï`}º¤­Æ/"M5¹+·äb’í,2øÞ9qï3ˆÀ{]ê²O×™•Ý0˜xpúxoâ÷áï³¥âÛ,É“\˜š%m£#å{Ýÿn’‹™Jß}.¼Å›)ÕÙ³™QãlM¹™6Û-j6[ÔnÕä»E[ÀIs.fs "Pþ29ïe§LÙ¹Ëä÷°q‚Úc혉´Þ‰…³ÈçzFýõe¸{•¬øÙ©ÏQ#'¶ÆÁwF0¼A½·xÝ 41¬ÇRÇDàm—/_Ž´úŒF£9ÝB³~7—TƒS¼”?SQM“¹­õ©ÛnRµ”wIyîŒ4nò!¦ø¤Vž;׆Šð,‡%«•r×·:šqîqf™¼ŒoÞ@•<è9îµ+Ù“¾«O¸dýú…ètXsâO\;JbæÒØ•.ÏÜå8Ü~³D`ü$)äÏO±Ìê˜M¸'S[Ô‡Sÿ9¡¸†5fÏ)sî1÷ÌF­,îÏY_DŠ{R–N7Þ²Q‹KVŠ÷Dà=,M™$-b]É7Å¢Dðùu,ù•fS,°ÍŽªÖ,”L¥÷M±5ò/ªçÏ¿›F<›|ñC•;›Í*rÌ{$Oå gÌŒëÌŠ•‹À%”)P¯òý›õ/æê,깞u_L¤çż¦G•Œü¿Ê>+°ØlžÄ'õμõºÖs÷„t#Î@x§,ÿé?ý'ßÀõïÿý¿§+W®Ì™ý²æ§œf‰Àø£ß1CùBPˆø]®ŒVQº_Zr²_Õ­j ¨ÄŠÀ~üä–¹¶‰•ÐTeZqÓg+Ï 1cÐuØ$?«M,rUe¡Y¬¬³ˤAÚê×Üû“eeÿçò¬¼j-1!r–Ñ-ÅXXƒ„œßmSõ“Lµ¿3躖™•Nº+•¹;ìŽúfpâÝßìº ¸–4·HÖæÂ]3•LþnXú×Ï/x¢Ûѱ¢¹0šô¤Ñ“¤™ï“MÆ 9Ÿ›7¯ÛP›Ï©ýn›]Ÿ+p6Ÿ÷¹d-"Åä.ÐÃ)SϲîØj?Äßî¥Î»½Â<l±OÞTü/½Ø‚Ÿõž 1Ẳ'%†áÇæâÃŒ…8qÜ»7µgwö"šZ€,v| º½VƒÚƒñ\×I+§‘ïìE˰: A/¾×qÙäÞ8ÑÏõŒûâ‹§®›wVÄêõµdžZtJ+åX§·#[@X%ˆÀ;(ýë_ÓþÏÿ™¾ô¥/ÑüÿQ$,Ùyö˃“ãÞfyÖ~|:(_œ+…ºJþÀ0š!ÁÕÙîròÜúÊ›cÁñÜSÒ «¾+Ó”‰¹•°ÏFÊuÈø“½q¿Eµ¦´ ØÓ õÔ^LÕ¾µpYg –Iƒ´­bS*úõY,h“mÓ0Ûšk²Yéò4vPeÁs­–qýD‹µ‰I,â¸Qå…p`n´öNûf‚u.EÝ'Ž…zßµì: rf‰ÀYß]ŽŒiG6¹µ˜¨q˜Ú›ñ"P‹)b|‡"Ð÷©^mªÅ–leØ«ô‘“Ý(rÔ1,Ÿ8»(ÏÉ&wÚßz<žHó>€¼E ­âÿÂÍy÷ä´…¥žåÿ܉Óõo‘£z«E-F³^•Vþ„-"QRn±¤L,)UÓqÿîg.h9n¬¥ÏêiR§š¿KºŽ/aVlól¿Cc©eòŸKÁì=ßf‰²Æ£.3^ÛÄ=׉÷Å]Ë;eµ€+]?-7üÅ‹ùL+m³­,Äl+ –°­VÈø Î´«ôÀ·ž¤3Ø ˆÀ{i³ø(‹LÒËÕVqÙr“e…©ÒìeXóD`f–Ì×h4±´—½t—q­nlCƒ3ìÈ—¶Œ¡râs2,Ç0ueŒ^&*1E°)D`b™¼Áª¢'.J’=é>ÂÎÑa®o,“c·&݈ڦ½ó²Æ –Ƀ´Pl@o±,‡c³OåìŠÿx•$Aó±Á­3¸91b¹J[öeåâ‰h’û‰·N0,;2™HM%É”»Kè›)>’êÆMôÐPBŽ &î>ïp{šñÝe‰À¨vœåêåsqΩ;b.«çyL#YŒnå[T96ŠôMÕOZ,Ó's‡íË´ô¹ú`.(WãsÔ²I²Öö¹jrL`R–û€rWà{þÙ5ÚU/îkæû "ðžj³÷¨x5o¬)Ñ©w…² 7 š›§%3Œ“:å Ôè‰ “Zå¼Ï ʼnM• œ9ß»¼žó/¶+þÄ\ÅZ7&{müuœzˆf§âZÓ~øãå•ÉõÆp☧@I÷šÉØbc­Ûç퉪ýœx_b!O&gsÛØý½«eÖÎÍß/Yÿû-§½C­aKÔ•c Ey.wŠge¶’"ð^¹ÀË+éåÊ“fB.mºÌÕâchFì–…²ÜT—ÇMØ‘õ²õeKMå‡ï Ìú@QTYü¢E WŽà`åwM*Sp0v²½9÷;豄.µ‚?›b©9ØqY“ËYn‘)çüÙý±ò“X)]ùŠo%<˜TAÏ^YíŒRô™=µ eÍLJÚáÆ‹í¨on,Èþ>?»n¼ëû\:Ùqe‘>>ã¥o}¾’¿œ„ yý†D`N‰À¸‰Qt;ƺó,˜“ACˆ.gâW*å4˜4I²èɯp7Ó~¤Õ¥ß(ù'ÈÜònG´E`⥻;Ûã®k]‘«òeæbÊÞY•X'¦N’ú°tÛ®úúp®ä$^šý>ƒ¼6‹¿ÃØÌ2?a ‹l?bOùw'mv–Ý*Sè}ɾ7±¦·­þR‡Í°q¿à¾¼Ü ™ÈEDà}>89/ú…6¿f®iü»S;zÂÌcy‰ÏB¤»ªME¹–z¿1eÚé 'ëp±ó.{°ô}—Õ_¸íTâmÒkŸiâþ¢÷ÚŠ»Çä~b³8;ÁU/{íÝê›ñu˜XéŽ[öwÓnÇy÷N[d7¨3áUîÍ|Ƭ„6OãÆÇÛÈš£ï§êÃK)D D ¸q¼8øÂS½Qscý£þ¨üE&àZZçH‹YÆ¿‡X^|L·Z¤lFÑOôÄߢƒÇF·yÀen7Ê,ö²Bí¸wŸ3Ì…–Y¥Í»oRt'ú0D ÆRpa²8ÿKÇÀJUæ2?A½ˆki–G– ²Rb±yÓhëD‡¥„¯wMÔÕ.0j±tûl;‹»¡~§KÂÚbµƒÍwïávK@K@K@ÀÀˆþ"®årmkƒÖ××t-Õw¶iƒ¿±u "Dà½2pɽ¹ÛØTl’›«ÝU ;–W&‹ºfdb¹©t~É›Á²ýÜö­Ð¾ú+à¶‹Àµ“/ÑÃ{÷6:ßK‡^:åƒ×Ì£â³=Œ‡ž¦ò~ïø=WS Gˆ@wVžiÓûÒp:ÿwµ¬oë»e•i:[Tô#êEîa˜]º¦ñs¦ÔRb£OE.D²\pÙÔ)q¡S ÞDYµúuq®RÇôÎ˾;U"¦È'ùMíôó²su«9s7˜Þ†2E׉Y÷»Q"0Wi»×å÷°Rh1kŸEµ¬w¿‹êDŠ»R[}fR%ãkÑ“YïçzŽO°ŠÔŸHaÙ,²ß3U&$“ïkÀ-¡¼ÜÊÒÚ¯çűÃiÒµñrà‹)·è¨ÓW>~Îÿùú Úë ¾ýtj+ ÷>MÈ "ðþMÃvÝ"ëL˜d˜PŸe¨3ö¾;jä…0±”ðᢥÙnQ³Ù¢v«FYa…êE~w(ÄJ™~1¬+KV¹6²ï¶ÚÔ¨äÅߪÌJµ»eŠ>טּ?ç»-SE”÷c&ŠÀ)5 Ê:W(Q£Å]P-×½SòÿùÅ9’ïkÜ­ÈÉY6O•z‹úÌåÕV÷mÀS^£öÃ^2˜C§6üŸ_3è€&OEàþçh "Dàý sZ2OÐX"QJΗ(E&Oa‚‹Yó÷Äl6«ÈQ>Ÿ§rsèžw }×hÅßV_u\+3ê{ìÿ\ž}·@Í¡µëeŠ:o:èYÛ„ÅMˆ@v>+IòßÇÔª–„hóÜ<{1"0â3îKáN YÝ=¶ÊÄiÒµñrà‹)7è9-öïÐñ‹þÏ7fY!@Þ'"P>ž±GÍP|\¿šõ[§ŠíÜ6õZ jÆžÕmä%Ké–3Âb7Vç­ô5«”5¤&Ûža0¶w¹LÑçÕ“¿ ìK ¾çºÙÚ ¢Lê4êÔQß³&#ªç7Ï”"pÆ}û-ª5åµmæÚk•Uõ„kãåÀSnÓ‰²¾-ÄA÷çX š"ðþÜŠT¨uYÆI£W§Œ–„eP—.œ¥sIdÙ0;Õ|(þn%[¢>˨9ìȤ,ÙjO;ožZƒÆfŸÊÙ•ÛT¦¨Ç”2,;:1L†ßÏ„†mé‚™«yn%Sde2hÐqî—‰•W}—wb¨’[qÅ#_ÑD`&Æš˜t_ÃzN ãÎ&Ö˜ºµ‚ø½mš ×Þ¤3í*=ð­'éŒ_¤Ä0á-öӑ瞣ò=³³ƒB€¼÷7‹—?ç|ˆ'(q„‘mv© e¥Ì2JÜÈcÛ*–Ï¡XëŠD0n–lÆËXYjº({Ì„_Οi³Ñkå[~™f—gÙ,8™J{“ˆ:cÇæ¼ûÉ•½û™ šËe–J¥œ[&kØ h¼2å©=²\wÐ}O\˜Ó¬‰C.ü2³ïkÓ6¨VÈú>+)Ë`üµ™°|rŸÛð²à‹#9§žÞŸ¼Oàþ˜}™Db_ËšL˜•ÉŽüÌžZ4aŸë{ëé1¶ÿ]qÞ‰åî§·›eJ‡Íö´S\7j¿½iÂ5mõ½%fIº/Û’ŸMíݹ6àþÜ-Ô8þØ€{¨|ô¤ÏÚ·eÕ6‘ –@¸b„’p­Ìø©¸[D &ò6ÖéâÅ‹ŒuÚÚþü¶_c)øÂ`Og.4 ïil¶_¥T£Ñîfx7s÷†U4ÔÞ±ÝÐgζ=¥–qïŒÙ“5*Ä „E]–¸íNŽç²¾ó÷tøÂ@%mãüïßý+2ò¤îq§ëˆ@ˆ@)BZE#^è™®û2;Ë2aßK¥š‘[-E °ôìéßA‘’´…Ó½ÁT&ËW©×Pÿÿ[¦}‰ú¾êˆ@ˆ@i˜T2±®0”{à¶MÇÂ6¢n§Mív—Fc/–|:6hhŒ}Ö6c8¢‰ŒõfÙµ‡†g¡›Ži4Òxê‰ þ=çwËR¯Ó¡£?4Ýx{~=ƒ]:R§Ý¦Noà^˶Lj•yr±"õŒIH¼ Z%qOþÈG»¯ PxÙX=vÝ )˜Mö{›•£?ûÅ^LùC"PÔËL7/€EÃ^Wœ³70g´Û˜ìX~®V!ñ+êŒÅÓQg]vÿÓà½MÆÔï²ó TÙ–8w›Ý«Wvì )’Çê<Ã÷T´ës[¿ˆ@¸ w‘ z饗èüÿAï¼óÎ\ßôäÖBùú€íÙ*.¶Fâ3Cm%¤SVŸõ+ü÷Š·g«ÕÛ…2S«LÛ‘Zf[º–Ú¦r“T{ò²ý`õBèzYå®*ö® f€ÍV„µrPÍy ì#ë\ßïÑ›t_A7Òj&œy6Ÿ÷—¥Ò•B0©ü®äbwÒWâ;G½ Ö€JëdŠÍh«æ¨%·•òQ¢Q„øŠ¬³|]ÕOðÞX"¼w¼ ã.…MØbANÿ«ãWUûŸ¨_¼€€ "p—Éå<ô‡ø‡ôÚk¯ÍåÚ.e4‘Ð!æšS"@º…N¨)ŽËRgìßVZ§äñÕ~Ð7¢"=¬Åïí¢9¥Ž'T2!4²î^¼ò»ÝrÆuƒšÜb¨Ú•qŠF§â}Q¿ô'zË2Á5û¾‚"°.¶‚*Ò€[ð¦C%Ö ÔççbÛ•ø½TzªšT~)óÌRÙõáž“ÕG\¿ ËÇ…y¿îî£l«f^YnmGÄKVí‡Å—[gê‹YF»¾¼cÍv‹šÍµ[5)(+½p[±ìœcÓd.µ}ê¶›T-)¡Qï¡:SÖ?!ZC÷&­»ï°ïø~¨}}"ðžw""Dà=4–¾øâ‹!øþØó<Ê*”­»‚a:¬{î‹Â+$º˜…-#F&½Š´0õe†Ì.‹/ãB¨Õ“®ÒUÔb9Í}1›“n>èÙDà¬ûŠý˜ß¹+jVФåwE`&£ÜD;JÔ\WÐl6«È1—Ó<•›Ãнø]Y3”/$‰Àœ°Žõvv˸få,h®À¡ãƒõ D xgÆÒ .пûwÿΗU«-(=刖úÀKšb®ëaPt9±wQb„‹¬¼S¾\YMau’¢¨L¦v½B½ï&SטSNcE ‹y³gß×¼"°¯Dà¬òËÏÙÞÃL|ŽêR¸ÕDÙ•%°Øñ¹}öZ jÆò˜T®¬u2k4gˆÀ²&uk_ð^ÆTáb´Ôñ]Ïsw%eýâýD \·¡¾¹ âý¯ÿU¸þíßþíç`‚@‰ÀIPp°Xµ6Ër9u©˜‘n‹< ɰ¡,Pí™ì3Çš)YÉfA~žS®ŸN¢ãò8UBŒgŸ´¦vªJÔh8-û"9Lžš=#&&%itȰÎ$ÞW”̤³Êï·–™Rp±kmžPFÖe©Á3ošÔ©æcbU›äÙÆK+;”ñ1¹J›Ì‰AͲ´T6•åÕoNò$9}Vïøjo²ô†cúµéL»J|ëI:QD \w+5òÒJ§»SÚfJY=+d:†² MGTÉyŸåŠ…Äìf§ìÛ“0ø»LÐ’õe«,— ÂzÆE‹°jeÃ1ˆ5÷|Ž›dÖkôbþ¼¬—<î/ñ¾"D #\‹i´;hrù¥jÎu™œŽšJK«\»’÷Ys‹µèïG̦…rYÔƒWưôe2mbîM¶A«œ÷¹›–[CŸ5×û¼Íâõ+>[Ù÷P `à‚¼W±&l¯9+z/½©ÿÙ"ˆó1+—½ôû°i:µSß×(¿=µØw'³÷ÚcÉaøqÓÇIwT)ì­Ç»å°,qÓÖ/".ˆ@n#ý*w¹Þ6ˆ D D ¸Ï0»u*×:sZô¨|K@K@K@ÀÀ@ÀÀ@€„€±"D D Œ¥_XhTάÐJ¶D#;ð™Õ§Â û¬ÐXl_œé€`ßr`-½ÜÃFVr5²v­n,ªï[¡Ãg:¬³Íe÷Qߺ_*VO¹ÊÕ;:=P£ÑÝÁþK²ùzt9õXrFI>GTÿØWÜÖºî6š4šÞ[ýÃ+órž) \Dàw+L¨¬P¶ÒÕþ>¥V‘ À• µ {±sOû”eç­ö'K/ó –¥•ÌîŠÀ'³+ô•jg"ðL›Øw†ÓûWÖX=evXOƒj†õµêÚ3¹£ceÚwðØL˜þ^,:vð*ݶºžªâyìßC}É_æåËëL\7Ôþcцã ë£]v/¯î£ŸÙæ“)ëç§>͘2{Ï”|MŸå—÷ƒaRÇÀ @†ùÁ~@_úÒ—„xûýßÿ}zê©§ærÝ®Ÿ™ ™ÖPþœ«K‘5îÉßu˜‹è„‹–¾‹=Ë›`Vùç•›`ž¡Ê¾o WH«_ |¿Eã^Íÿ7F¥cD[rÄd2P×tJJ.ðyzcö½fAüÞ{¢¡‘_Q2þ{Ah´+¡ë—[R ÷«ÙpÙòuU?U·~Bu hަñ÷¸’ÕêV£eBÇF¸ô¦,ŸÞ.I÷º¹9¡z>|¹ZßßöîµùâBE\Ëu/ÖÈ–;ô“ªÖ™ª<Öµ$É>ÒPud¶‹â÷RÛTî¶òó&Ü•3T®ª,K¿²2³¶r;GÐèÝë„…´E¶Bcõy\Ý;õàP ¹X3˽ZÈñ( ´ïÞÅý÷Dß©ô&픪ý9L“Ÿÿñ’<ëá2ŸuŸ)§›š—A»(Ë9Æ@"0=ú§ê›týÁü]¸p!õ÷'½ªoò×È•þ–˜àæ©kʉ¸Ñ‘Õb‹YÅD/«Å¼9Ö¿Ë—¥&„Ùr‹La yKLÄ3¥–r6u…ȳIgX æõc'}*Š8F)r»r:¤RF ›¹¤æø¤Ô‰Cšt…u’‹ˆÄïé"Ð’çàÂw¬„PSL¸³B\jyqžjG GÜÛ¼~žtëÇ«ƒ¶+®ù}é×ÈU:Ò:b dYX;„ã mjæ¥Ð0l§í乫}+Âu6©|vyçD⽚풪3y.³[UB©ÙöžÛ®­&ù9ê² ²\mÓ¦¾8Î/%#*òóׇšPà}¡ã‰ª 8–°H®dŠÔ–H.Ф¨äu=x’÷•'g”c’xŽ(waq¯¬Š>Ö”ýÈf=Z¨imÑ5|Ï’8vF?“‚- L"¬äªKMYOSC–!Çú}ÈuZ=ÜBjÿ‰#¦Y0« Á¬¸³ž÷xQg5‹ž˜÷—Y«3{èõ}õŒçtÏ"p6—/_¦ßû½ß ­Èÿ⿘Ó-TZ*ÊǥˠÒJPÔÉÕÿL¥?·t,:2a ;G±Æ\ÈZÔlµ©QQä@ ¡ünF³æ1«Ÿ¸«Éy_ˆÇ Uš-j5›Ôbç“ÔŒ´*tJÞ¤Ô–A)4“¿çMXkI[»>“Ž5e ŒªŸ^¤ô¬Sª«4«/?Óã/ÇÝr nõ„>S3×ßsAì¶›T-E×'ÄâÊço—Y÷*E—.ÖX{gœöN*ÞN³r—LÃ0…ÛbRŒ§h¿,ONdA¸"Äq™µÑDXã²")sm/Q‹Ñ*ºmí‰À¤r$Ÿc–ä}©Xfý™¹òN¦I±¬Z[¨ï A6£îÃÏZ༢NtwUC¸«¦NûGÕã¬ç$xü@sÕö—Ùo]ï–3b!Ãä}½Sеzˆ@ˆ@ üå_þ¥O~õ«_¥9³YªI›3‰J×Ðbkäό褹D`Î=¯#zøä2›Í2Øÿ¹<åój­Àw«¾ïz '”•GYWäy™,åØyòù 4ñÕf¢‰—{EY‘’¿§Å/ Ášõ'äÐ&ïbÒË&³ãÈú Š@ý>¼º’×ÈùĆÛc¿Û`†ò…$˜T>™fÝë°ž÷»jçJ#³1IA’Dà¤W‘–è~Cþ?hÊ„E=é+LøüSÕ7¹°ŠÀèr$Ÿ#VòãÌU 9Ÿo°GÞ§–š-SÔ$ƒeâl©Ïd¢â’M.[,áØìS9»3ávŽ-P—Å(½ºLŠ¢ÃØJe 5²¸®‘óy¾éZ¤KºšÎ;ñ{z:{%ºØõÛ,óáxÔ•1‰\ Ùž¥$Wi³Ì˜^ýð„/iE ÏÕ¬ŒUkt™‹g£äÆföâD`¾F£‰¥•Ç/"ƒ–œèòË”|¯S%ȳ%ÖÞ,óg§šÅò˜ºîÈ AGY{•…Êiƒr‹e—¨^̸ÖϾŠmö¢M©YpÐHéd³ÍºB+¼½ƒi L*Gò9¢D ïN?ÊUZ"¦Îè7…°ËEì!˜$gÕ½ã.ZntȰ %ê9̬ ,³g³,í²ìª*æ±ÊD›ÉÎYR}%Iêu0ë9 ï¾2Ÿ m1jÝ$6#D D ˆÀ;(ƒÖ§ wyŸûa¹5tã»Õ‚–é0'&ˆAè¸;êçå”rΟ‰°ÑG–Ë6»Tвæ Ÿû›Ñ­‰É´óy&_¡¡~ãŽø¼ب:þ{r’¿ïɺ~JY­¬™‚—X¤–g9m´û–›Å‡ë@&Õp-#6Ûn¡ ²Gfr²\<[kT¶Ô@ÉB¹,ËÔ±"0¾|vI¸×ðµ3>q64´úÌR©”ÓÚÉ¢v%ïs™¬÷T‚™N%1ªÙ)û¬¸Áßñ¢ß¿ìËNLà>m³ø¸r$Ÿ#JÊþÁÛ4ü™]3ÜJg±Ë†ãó+wbÝO¼,½QV3Þ—õŒ±…jG^g:¢ŠöœåŠײÕ'ƒu0ë9 /D¶#t}e~Ç÷LÉç²@B€¼ãØ,þgÂ,OQ.{ö”6Y(¦ÇbßãçµÓkÅm^?e˜XÓ9Ëþ{VÄq2Kn§Á?Ÿ.bÑàõB‘:¦wo½J&&3¥—f’âz‹–ÏJªçÚ õ·—ìGqß½Ýýy‰åPubMí/ÆÄÖ½Íö™´*ÃÔZäÙXÆó_fÇ Zß*@B€w=r/¼¨í ær+n•©Ö,Ûgni’¥”€eÂú{%Ÿsã<-Ô D ÆRZ<šîB²¨Ý:/"׳[§r­³c‹’=P½\¤\–g_,RÝMlsw”€eŠÀ*˦š/TÔþ‚¨ˆÀ{{,u²Ýæ*ÝÐgã®tw/µŒ].‡ 1ÈGÄ#ßKLGmµíNt‚­»í¼÷ * [="³õ\s–¹»3²î;§…ð O@B€„œiaj3XåM±%‹Ènœ­úöñÜ-LÔt/âd;nõz40&wýyï¨'*[ü™`æ÷{IžiÓûÒpŠþ"ð 'ûý>ýà?  .ÌeI‘‰Jd¸ÂP&Ðj›ŽÇLjº6µÛ]½øÚ騠¡1ö :c8¢I\ ·mѰßeçéP8ö‰À, #0G}ñYeöy”LÇ4èu©ÓéP·7ÐÎ϶·Xp–]¸Ë>cY»§êxþ{»Óe™‡-yŒ6A³ëtÚmêtñeU1ÅÆ°/®Ûéö|÷³¬ÓíJVÔáÀôò $]ÇfY¯£ê4Íy“ÚÃ[dX³ŒÝú=óº ‡þ¿‰ûã³wÐÎ1m°h#Ïn¨¶×Ål\™ÍaB©öít4÷Ü}i7m– zhø\õÇÆˆê«÷^GöÑdª’Ã5…,5y6ùiŒ×St݈k²}c'æ•·#Ú)üŒ9ý·KƒÑ8´2ìñziSo`Æž·÷zŸ†ì»ús!ÚEümJæÓWïnßcÏ‹?×AÌõf–@wÝXúo|ÃÍ„û'ò'ôÖ[o¥þî¤'·Eá.™cµEJ±%³1¬Îr«ùY¿Â¯x±ÛlÿÒØý3™u±8O¶Ü[¶Ôs+¡k8±åÓQË—AxE Ö‘Údzšñgë¼ÓqÝ'}Ù¥…¥hJJ.ðYzã(ÁjR5¢\>‹©ÞõenîYÉ×÷jáòuŒçÑÕLàžuë®l}OÜI¯â&¹Z¼#Ú`êþÏ%Åæ0¦Ìg©YÌŽÏS×I@7Žn_±}P_ÞCOË]åŸ+7Z³[ }¯Öû…¯|Ù‹tRÝ8[ ¹ZþïOz¡òf÷kkànäf±.6}[¹ìý¿Šÿ;cOÀ7ò+"«õYu¬¼ï)µJÁú+J+aÂõË w‰ëO€ýéD D âÿñÃ"*—›Ë-´­Oó iU°äv0+…†r PS—“Ѩ=Ds‘®yìüE)ÜmŠÔ^ mf9©åä^­2Ö–ObWT–i›šye¥´áRS“~Ë'ä“ܾÉöã½#ϔع6}¢—É»®àš夘M܃±ìŽ pE‹ .%ÄåõE]Èdf‰×açáb8Sj©zã[Våb¶õñŸwv{¨ýU»#aó[Ðxëû3‹/ßË–gáÞQ;Û`óÉE°Ó&m±ï/Ûæg.󩔔Ȓ"Ñ«-{DŸœªþàœËb}%;sY!ìì¡tqf[!É{4å>Çü¾˜¨u)Q7òš|A£E&·jâÅ¥;¯·T_ìù[`¢Ì¦Ž8[˜¨¾Ý—™§K3|Þ³'D9òΖa“®(s©mFìíÌ­šò¸©!÷ãÍ5~šx½ørb,ƒ·7¶ þ€¶?ܬ þRï,ð~YÓóÝW>ö¾x2šF£™4Fì÷¶”̬Îö±ýá¨3½|³îe>LªåIެ̩uMá ï{øw÷w!øçþçs'Ø((«‹3t¬mÝRÆ&ŸŽ(½Tqº€bÁ&°¶3Q÷ÞµF«è‰"¶…ÌØ4™›_Ÿºí&ËBw'ýÞ$_}—í[[ X»6µ ~_ˆ­ Uš-j5›Ôj·¤8c{ÛFÅ>ZcvÝÑzÌõ°Q+‹óäbbõºHºÎ;j‹™L±Æ\òZÔlµ©QÑï)þ¼éÚ#~‹&G Ô‡¶K'DÄŽÚ9Ü~QmŸÓ÷;Vçæß–Yü®[£FAí ;¦J&`­›tÜs%Š@³-Ž«i–\înË]Qãûíì:wê´1Šv#u,­dóT©·¨?r\eÙ¸xnò~ÀúJ»%÷¶Í²ç$ê¼µ8ÂëÆhÜgD²þʾþ<1 æŽ;I¼^|9D ¸­ŒŽ•ißÁc3…ŒþàïZàý¦ÓßW-ñ¾jû+v ®.E;ø•æ»ZùfÝË\@5(”,ž¦?J|AOU1 éCˆÀû^®­­ÑÿñûDàßüÍß,”¥ÓÙŸÕË:˜õ¿G˜XÌù&ðš8°â’th“ñ˜ñIÿlªÞ›a÷Ç ËÎ%û>ÁWj1å•ßͲlÖ‚ Ïj] |žÅÜÞѶÙõ¹¯fóyå¦:[&]§÷jͽù9û?—gŸ¨‘áR?ïÜí±XR.F·äZãvÖÎIm빃Vu7ZuîJŇõœXÈFÌ zkr¡"WëG–3IJ1Çã\í¹’Ë̪yÍ\âX;êÔ©ÕirU2¹eY¹fºý$˲O³~VfV¼¨ó:°ÍEêü|¥Nh.(÷XŽè3®[NŒew3±Á¯luqГAÈQÁ¶S7°˜£OåË $·ç?vF x\ðsTùm¶ÚuF.Ž ŠŸWf«¬¼Ãž(w00;.è{VÀ´s_^fAÓ]%NìñPÝ×Ð}EÝWTð¾ûòOh¨>w±mˤ–p%)RψY5e/@Ô×çå™nÎ/WÏΰÕ3Û lŸ07LÑ~"©m ”/é^æ*ëÏýfI´wkÀWÏe™L­ÿÙlUÓ ´JbÀk°ûO>6¾o¦­' ïüXúúë¯Ó_üÅ_ПýÙŸÑc=F—/_^PzH×r4ÐkŒ®;fpï,TʼnÀ•RÛg¡ËówÔðlHDx“y“ÊÊ…Ït&ÃF3^nJK‘39–åõŽïפÛåP³û-jDlm$ãñ¸ûªå3Ù4–À„ëLUyüñzCj2ÏÁØN¶ÎÙÑ9yq_yÞÅöÚy¶ .BO•5”[¹‚ç–õ^¤‘vŽ^%£ÜX'2~¯¬Åª)wGXõ¹4r×M×r8–Ãr×ë›f»Ì®]¦‘µµÁ4ÞzS7³zy»×šÒJjO'ÔkÕwe¿_)v|.»½VƒÚƒqÌyåóÉå|®Ê~(³Ém¯þù ê½ÄëÅ—ÓÂxx7’üêøû‚u„ ¶U̹Œ?€›¯ Îs쬀ópðóZlùõ 줠øyD`TམôýÎÌ€iຠ4f+K¾2«Ùwq|ð¾óÒ ä³UêVÇ™°K¤³ë#_wKï(lÏ×úV@ùÞI¸—yÊì‹¢m´€w¯UèlàšµÁÙØc'1ÉÒ×÷‡W%có˜œ&|,k³…¯ñ¨KÅŒ«ø4Tq}U&nLö™ciˆ²¨W}ëÅ2Ç#ª‹ä<‰HX$¸–Gæk,“£¥]Ÿ½×TL`ð»N™Šõ6[×È´ó,O#gþ‘¡šˆûcç^ñ\pCSí]™)6X›³1¿­Æ>&XyõÔ[iµºSík¶T]“-Ô‚¬c9«q¼ÀÂ[˜è¶UŒ ‹ÓT"0W®³ìžÓõ4©nf‰@aÙäuÝÒ„-„wkeͳ• g‹ì æŽÉf;Õ| &0|^ç9òb;ýsA§xýЕqPÞ¢e…†c¨=fî úâ_¾L•BFì=öä|VÔ¤ëØc&^rþÅåF3ÆúÏ›ÔÁccEY^ßd§í݉‹Ð, “í3ªÌ£NÕ·œ+5´7ž˜Å[lÍd³šUŒUï:ÌÝ1£¹òz÷Ýc®LgNTÌFg÷œQ7Òª™‹Ÿ‡±8ÕZÁ¿X^jbž Ö_kN>˜ó2ÏûUA‹± nÏûž^…jGÕoüõ’Êi 걋;"ðÎ$O‰ ~}Ûõyú¤g*}-0zê÷ív­¯wºcgœG?G•ßÖÄRrPüÜî úKzÜ fLjÀ„€é͈U¼AÍ/¦C/¶Ã½¯Áûá€è©ðwÚ4iµ38Qmßs]PÒäûE`0ð]Ügbüî;Q÷23A€ep†œãØ`Í[. ïÿøz‹Ye&VÌ~vVüga—y‹&ì\Óy®ÏÆAñ{öX×dcd¥íÅrÛê}Ö2lŸ'Ñd’¦Ì¶¸oËZÔ’|Q§ÌÂi/¹=’‰w¡£çSq¿ó´¹5µúQô¹ì©ìcöœugÏȼ½xkýÞŽ/¯µÌ¬ß õ—t½¤rˆÀ»KF­x1 \AÛãÈ]‰r‚ƒƒ&ö`@°öû<ÇÎ 8‹¥lìŠ.“‚âçiòŸ;è;!`:Zú×ëн¯Áûá€h¿ˆI¹€¸–mŸáóäG‰À~ì}'‹Àè{™¯<»-µ6›³\@"ÉÚÝB·"ÝÛ •ÕkÒ È¹Æ_øºáV²"››H+lwrÝŒ3þpDàE`\ðëCáNF¬Œ›vwù"pVÀy´Å,ªüM&ÅÏ´¢g_«++猠ïi|ÀôÂ"pFð~bšgíÓT–À‘ˆ?àßµç Èß¹œFfõÎeÏ™ RØi«¹">3 >öìcƒ÷2o¹€„¼›ÜZ»*Xò ¾xU®µÈ€»t³l±m.Øõ®y[ó7tØö·÷š@Þ×WRðk_—[<£¥Ð]íwMÎ 8M´“‚wƒ"0&(Þ/Ù¬•oQ%rK/0»Þ3D`¶Lœ#]Uƒ¾¦ÉÁû³D`_ŧ5{FlL`®Ò–m¯6’m wÌyò¥üŠ&3)E ^¾ä{™/A@”±#ƒe½Ëú÷“âÛIÎþ@1džï%¹\ ïñÁ¯–*ïs£,·†ÑA¼*æ­ç7ϱ³Á£‚ŸãÊ?xrŸ»©zRP¼?˜‰–¯p—‹~lb˜L>ï Ìî9VAßIÓÁû™«B"P% Ñî+)x?-E¬#ÍNÅM,г¢Ò_¯øêµÚÑâCRäK¸ïÉèäÁûÔÑË÷Ã'ßË< ôº1¤ƒ†Öß²T*im1ñ2äŠÄE ÇFõͤr!H@B€¼³$¿ªÀáém-SÚ€ótÁÏóÅêLd•“ýîe@pt zRÐ÷¬€éyÝuÒïï¼âêl'ù»–ta¡òLÊm¶Ç¥òØ{£žD D Œ¥Àå sÙci‹Í{ÃEÁû`à‚ ‚÷Q/@B !`,…c)D ˆ@ˆ@¸@B€ÄÀ""D .K@K@K@ÀÀ0–€€ "€@€„€±"D D Œ¥ !S26hee…r•nè³q·">+µŒÛX&‹êûVh_}àþü@cø9êòÔ·Ò]cP€V²O’µä²êQ_aò4˜†ïEÞ㬶I_·³×¢ÎÈZJ;wMM£î»Îî{_ªû¶'j4º4ÅûVö«{–kƒç¶Õét@yö|Ô‡ÖŽžÑ]+oBù ˆÀ{|,µ©U̱Rh“«/&@+Ù*oóDöØÁ¨|l$~~2»B_©ö?û¿c j¬üÙÔbit¬Lû[¾¬åX9rT­7¨^¯»ÔêmÛþ{ñî1þ|óÞ×®3íS†õ‰Jç“âé Êî-Cý(x¦Mì;HÃiŠ:¯ò¾[]z[Þ«"°ÆúX&♫߮:eý)ËúSµ?ÙÑ3ºkåM(D xW¥¦iÒÉ“'éòåËs­x„ŪD†+ WÄ$½m:«í#êvÚÔnwi4žzö±ACc웈ÃMìÀj½5¦áÐðVë§c ‡4v'úSñ=þûÄ+c§Û'sê‰ÜñˆwÂ>ëv¨;0Èbe9cNÜòì~¦ã!uÚ컽A ì6ƒ»ï6õGšN ™VŒÌÒJ¦c‘ð—ß»G§~ êu:Ôî°úL£E ¨Ã!™ì{²Ü™ƒ.µÙýŽ£žÃ>û¼Ý¡þp°žÄ·g\}LM!KMv½ÉÔ½¯a¯+ê§70}õÆë}2Ê2Š2˜n[Z%Ñ¿ýYv°ìì;gLYö„F#öóT¶­¨U^Û2©Ufu¾R¤žáMÔÍa_–½;õC_¿™¾¶âçã³Ï#ïËœèmÇ¿7ß›Õ.òó MŒ8w—Ýÿt3¾¯NU;z²ýu¬úg¿'>™ÕrNK.§kíõÝvæíW§Áö1xݰþÚéö´þ“ÔæÞsÏï­ÓÐxÜ£\ŒÈ²S>£qåuï+¢í–Q>ˆ@"ð®Kÿûÿïô/þÅ¿V½¯|å+ôë_ÿ:õw'½ªø^ž¹(ŽûòçbKZªŒv%äâXVŸõ+ü÷ M\ bOZ‹z“€å§&¾×É £Ù.JWÓ¶©\åçMãUù5*½9E`Ð3GS ÉjÆÿ÷¿ûxeîW³áïf+Êú9¡z>ìÞ™eÛ‰´´{duÑ­†®Që=ȅĤ¯„:»lb߯f|LJ¬s–s¼G¶Ü ±=cëÃ_â>¬•2º)6•E&Xï’|­ïö÷^þ²[ªÿõ,ïç MÖÕœ÷·L•µ§EÍb&äŠÛ5íðb‰êMÃû¬]”ýbœxÛÉ:Ëhý)¹]"ë7_WÏO¸¯Þé…Úq¥ÐPÇG÷Ï\­?³œ\ȵJÁ{,Ò±ÿg°Nƒ &UsákJ/‚ø6ßw„¨ ~%²ô÷JÒ3îSêTrã Ôo.µ|Dà]1–rë_pòò_þË™Ë-´­O ó )f˜˜È©‰§#Œšâ¸,uÆžð±4ªèÕóùµ>Ô&ÜL4”:Þä8Sùhá7[æ*mYG0ZLôÈ8)>Áí3K¡Á,!ƒ'Ùµ¾"ãµ¼œèueܣѩ¸ÂÄh—” “BuÜ«ËëĸÛ9çÊf³.VO¡/öPºÝêª~Ù$;»"êô¬¸¯<³pôEÝñ{XþkU»ÌrdŒBÖKY¿LRtòøöÏOÌhÏøúàßs³©#¾Ç&صЗõSê˜n|š¨÷‰OÍ¢',¤¸Ëºßõ·ç“®ÔiÛlYµ-³ÎäW¼~ÐýOžÓTíUnÉ>f•€rú²OÌ }çáÖp^/…æhÆy¤Ë¥Þõg ¹]´Ï;NŸ’÷Wlþ:}•Y¹ ŽúÚ£ÈâtrVÔ¹œÅ„œêcIåtêµÔ”÷85Zò»,fU¯ÓPÛô+~×q{D%wa$©Í§ÔÌKAÖŸHAÖ*ecEVÚg4؜ŬJGÅ1O‡r¡"ø.Øaù ï4¶AeÞ°Ù‚æ~g¬ÐX,P”½ `ßr°S¿wÙáòõÁbß ŽOÞ­€÷/T`ul]/+ ÃüþÁ@ùåç/¯?‹¾·¯~GúްΉ\ý"ð +ÿçÿüŸ!¸gÏž¹Ç¾‚²zô,¿U¦=ÖŽ›t]k_z¸ÉD³ù¸lHQ#VåËLŒL„Õ"[$¿Ù"°eãóÊdº“áAÌSN -­œòB“áihbŽ ÌR©R¡Š¢\®(!s/f[Ô¥n ›2·=îRè·pf|m*wTl˜n±d.…†aÒÙiÚ3º>üm+¯Á'ÔÍv‹šÍµ[5!³J„ê×O„DÇ;F‰@Ïb7¥º÷æ`Y¿UšÇ–5 B G]§[Îh“‹±NIŠRkÖyf‰À¤v‰ú\Z§2‘ufåïoÎñ}µp¢÷OöýŒ×Çf–S<{š7s'å.Ê¡g:Ø>c“¹è©ÇÜ&µ²hs¿ðŒjó1U2{™tD¿›-údà¾úÂ2˜¡ ë­f“Z¬o ˜‘Þe•"ð.ÀÉ\–õe5›º± -þÃÁ ; Ò ŽO¾Æn¼‘D`|]ïœEý}òK Î_f–/í; ?kà÷»|çwèK_ú’OˆÀ»$«™ã¾â˜¦aÈMú›Iµ<ؘ©ëœ›îyð©oSAÉ“¤vh UywTPuô‹¸Ë‚h{" y Ú&•a3.8>)8}0í¼ïñÀA ­¬/‹ëöı,@ß ×Kd yd]Ûîu»ýaȵ")p;1ø7ö~â&üø¡Èo“ÉV ­&ÆP«¿è{LN`°™p¿^ ü|ÁùÑÉbŸ‰ˆ¾ž¶?ë/íÍ4Áì3û^ú:w4“?—1 ¢ÅãùãŽ÷'>`×ûËí닼âX»ˆgª#û³½ãòCÞo1¯¼ò }ùË_¦õ¯þ=ôÐC,™ÆtAèM¸!Rxç²G å&e…&hN¼WäÄI¥\H1É6…¥C ²°ÈìȨ-ü +XZ\Ê {Qó62©¼’d Lf‘÷2–Ö†rWKlÒ.‹úxã'5!{ì™Õåä¶1ñ›{¬”Úš‡w£ÌÐÿçXu®öŒµÁÔ»F±ã{'öZ jÆ)E ‹y³Óˆ@],F‹À©;ÆÚK;W¯’Qá¨z’ÖŸ  zkòyÔõµm¤En¨[àtk_°ÎdùVJz›®ûe¸œìøà¹bË™®CÛ«×F>Cæé“´˜!¯ÉÝŒ-Ÿer¶ðœÈx¼²f´Q.¨ËSwñ'OC}lí·¨ÑwÐe•"pɼñÆôÄOЫ¯¾º˜û 3õš–\5qÝÂÆñµŽ_sO{±¸A´öªìû–|ƒ’ÙJ‘ãÃí þíñjàØ¢òÁN,CàgoðH NL;WÀ{b ðfd@·Ÿ¬ ÐßL $×õ Ô(Ïå¸ÿÎÜN þØ9Ñ`«ž½~,é>ãÅH÷&ñÂMºÇÄ“Øûõåç ÎøL„ûú<ýÙ'Çó³‡úÞuî¬þùàï%&ãÅ£ù××Ej#·âÐYœIÎ鋾6Óí?æx@,^~ˆ@l!”œlú…ïCm¶ø0u©˜YqÅÑPÅšUÙ$ËdŸ9ï¢è‰‹»)8c–œœ: ¹Y·ïÇm 1k‹þÌ—X,³à©Ä'N‚Œ CÚ ¦Í\5e|d•-âô¨VÈ̈ œ-Ã÷2VïôsñÓxØV1‚-¶à§ S Vï|â>Kl •h,·Ø"ÐxDu1^2Ñ5MnÏÄ ·Z Ï•ël‘%fQ×(5zlAÒ¤N5ï‹ Õ».ÕxSntȰì…E tÿËS³g¸–½L±Á2¬2ßVcZ±íˈéÛŠ Yt“¢8b?ù;¥&ZýëV¹¸rÚf˽Gƒg#m–åuºc_ÆmƒÒbÙf-­<¹jof›÷Ô½TÚlq×ìS9»²¨—×6dd 5²wÁˆÅñÊyCÓm»e”"p‰üíßþ­›ÑLtÂry®ï; Î„º;Q)®jg½X‚ƒK¶Ü"S¬¸¿%'¦¥–ê6uULcT>0¹¦×?=¹ Ñ«†ÉÀ›»ðž=gYýL•è+º÷ä@òP]Ÿý‰˜P盆Z­l¹åŸ¸žØ·ÚÜå+™Š >®¸ÇP[Im±¾–æ#(׃¨ûÕÅù‚óûÍ|&´úŸØsõg¯ï%_gž¾—®ÎíP_7µ¾ž(äÿÅñäã£Þ=NÆCé‰a –óþqºDœMµ²rLvX~ˆ@ˆÀà3Î݃ñµ¶Ù£RV_`)¸ G6§#ªh‹C¹b!2ã£kåê”}ïßàïÎ;xß“ƒ„Ÿ£\Ù3’óDr妛q‘?[úÚƒ'÷¹±óbR› Ç4:å·†-×z™-å"ORL`6YFÝ‹=îûë7W¦ÁĹ//žÍ™ôsq›|-y½v%ï[Œ­«wnR{&×{ç³Ú"aðìýVs6í×»¦Îd~â-’…2Éj1ðÁ:p#6pÞõŽËç¨S•“~§”Éû\ŽÛšˆÑÄaÂy&ƒ†x';×-•ršLn—¨ËJ{äü›½OØy_l¨3ïåôezÍøX’Ê)ƤnÍw…jG|¬SŸ;蘹ƒê‹Îù2UøâHVfgMls‘„È[ Ìd³±…yžÑ`yù}eõæ|…†VŠ>9Gù —È¿ù7ÿÆ÷@pA8™Læt •Uv'¾ÉµóŠ@g’ç 6™b¹x±`èV›ê%^-›ã×~ì""09x÷Þã£D`Fds²@€~\ y°®òòóˬ¾{Ì=rª­ÞÌ ÜŽHŸØër¤b7øK¦Wɺ/\°>jäÜÔÒiî12AÂýúDà\Áùú=¤y&´úsoŽéÏ^ßK¾Î<}/]'¯&ЇŸ“YÇ­•E·®mW’—‰/–ñþñöLš°¤l5—»7ërÎF'"˜«üóÄ4³qybE¿¦VügwKçNäÅDWÁ'"ŒØл­ìÞ»Ãó©é¯g37cÛÖ—×°æv;gûNíå×¥=•åIqngN׌Ê!‘xžéB÷,Cä" ¯ÿ©=O;ZÑñ¦ªœÓ˜PžÄrÎQWz»ñ²[ öUç^v÷] ïk¡þ}[Ê(¸rå ýËù/C+#gΜ™3{bÍì<# v>è%[ýš»â"OÙÿ¹< :-Psh…'Í™€EFb‹ˆÀä@àÝ xOŽÞ´W·Š­¢ÚÛ(9<ÎÚ•­XV 9ßj&¯çnÏ lŽNJér§'Ürøÿ<•w¹³¸q™vš{ŒK`¿A˜>8_·(¥y&üõ?OvûÞÌ`ö9’-¤©ó™q=IâáïÎ:>:F¢Ì¼¤…–»Ó,ëýã|Ö,i®Ý¬}3 îGó–""ĉÀ†kí¨7jTÈ®h®{¨Ÿ{6vVò97>õv%“îûÑÛ/ð…´þ·ÿöß|ðù_þ—%d]L¨u÷¨±<“{(=lÄymåŽáËÌÈb›& ÆvLšæ¾¶a®\uªó‰}b,±À»ðžíÚÙ®kÉ䡺f.2õjS­ÂÚn¬Dt@tDàvŒœØ+¹›£‡˜¥®åùë Úpv°|RƒIÂýF‰ÀtÁùá øØgbfæÒäþìõ½äëÌ—l!Mϰ&Ї¿;ëøÐ"‰ Ïô@ûå¼ôgªPï»××3»í´ü “=;¥B^,®JU_5A½Ü'"°ÊÞÙùBE…ܦþÔ­S¹ÖYlû2x?ŠÀ?ü{ì1!þ}ôQºpáÂRRï'Ô:A±Y7`˜#æsõ%X™).Ù$«50´àѨɳ›–a¾øìXñ@I·¬ä2D‘'ïNÀ{r pL€~¶$6;vª*IO%¸ˆ$‰@à›«´Ø½2w¸~Sºm²ìUi·3±©‘“›“¶ˆ«øǵÎrãQKd¸IruW%»©§K}ÿlºÁêYßû¦\.ˆóq·´e”""Dà}7p%Ô:Í‹¬‹ jvÞ4ߕ׉>v¡2$ïFÀ{º@`=&Љì„úHT¸¼PPóΛ7S·yü=Æå§¼§ç'™ï°?ϺÎíN¶°x xúã¥Õ¯™xeYï‘x#åûf§ñ ÞÓ c-›#êÜïɦl¼²zó­оK@‚/\À;߯¯RªÑhŠú÷²…©Á’÷°{(ªý•ж÷æXjQ—%7»}ïm_¼o…h ?G¼+z-¶‰ºå¹õ߯LŽwª-x}ì«ð@€„ܥŌôàèßF•ø,t‹íÍhÙ¸C{ßÞ§"ðØÁ¨|l„w"D DàîÄÊZ%!ý‘Sl³}]»6µÛ]§‰ñÕÆ°ON‡ºý!M1Éãû¬Ý¦Nw }½RðÜ“ASˆÀR“gغ[£˜,Ûn7tNe9F]O…+˜Cê±rvº=–ÙO6?ç®Ý/Ûòg4b÷0¦~—}ï'oÐφ#šè¢Û¶h¤þ61ÏÐX‹§çeãånwXÙ厾Þìr !@~AEàÔÙ¶FÁ3ê¾ Ô+j«“(ËÔ„…•À±%µè”:•\à³Ë&œVÊý[Ý,ÓìóA-*ß:ÆTÇ7‹™ÀçyêšRLZ¥Ðwë}é†>îÕBŸU:ÆRïW¿—••ÿ(÷mzuêdn›ç¨ÊQ‰²Ìn5T¶Zo<ãzIå@B€ü»ƒÊ„^YêM6Å>¤9±ýŒ“Á—oQ’ŸwÆAwÍ86ß”‚ɵ\!9Qûyºbj:¤RFnkc§´òí`œý>¥;¨Õ®<§Ù©¸×sD”³ Oû˜æ,3ïDаR[ÛûýŠk²MÃùq™RK¹™òí[rB@¦Ë»_¹ÇjQìŸkŒLjq‘Ƭš'0ç”U«{(·Òa[U¹«<‘Ûîè¤ë%”ï% !@Bª­}²bP)™EJ|“®ŒÍëM"Ew%-–kÔî ]G¹mJ†*͵šMjµ[R¤0ËÝ8­Tû}z"0ëî÷ê|îˆDñÙJÅ·wí¨QP{ŸN©Ypö%-Q£Å]>¥ rönÍYùY›­65Ô¾«Îu—q¿5q^²—‰ªç–Éë·#ê·ÜûëÃl‹¿ëâm:1É`eO¼^B9_x8¨?@+ûnO–1ÿFß™ÒÀÀxwŠ@9^eýIb”¨‰">¾™,#tAwKÌRsh¹V»l6+Éd)—/P>_¢•^fSŠÀa='2‡N#îKnY4¦Vµ$ŽwÊš¯õ˜èu\A3ª¬ìÿ\ž•³ îcY÷[ Ý㈊¼ ,+ê¨U®œCÛï*ël¹Ô6Ã{Æ&_/¾œx/ø$L¾r{²ŒMÏ´é}iˆ•8dJDà])s4°ŸY¼ÜÀK@b«½=«}¿ˆ°Ç}ªW›ÊU‘%?¶…ûb†Å³õkÒ¥r¨'1a[Ã4Úƒôî JäÕTY’D`¿šî–#íû½ wc-³˜Á uuêRLY,éM=¿"2ŽGMéV©ß›5¤&Û2c0¶—v¿µˆ{”Ö¼¬ØÙJ7œ4gìX'Zì`™•»LÇþßñ×›&”ï% ï+ LfãšL§dºÌÍ£Cý¡O²Lh<#×¹Oø³¥âoÕ7{ÂŽ5|ÂqlŒ˜kÆtF6.V†3¦\¡äç`ñÓ)ËÆ3‘u™Èx3‘ùŒ¹pX–<ÞÞwŠrÇew›Ž cŸÐ2xV2Û+ß„•¡Ãêl`NR×¹miÈêÇ]‰e÷è/ãT\glÍ®_†87SšÊ°ÆÚÔôdù 9p›ì÷6+O4ŽÎבíï«Ç©ÌÔÆ¯oL,uî4Y×’³Ì x@&62¬3TVIFÚì9u©˜‘ñlÁÄ"¶!T®ÒbïÁ ý¦e9æ¹á|–)ÔhÈÆ‘Q¯.ÍJ¾éŠÀ™[DXRäåÊu6MEàtØPn –A“¹‡¶UB•b›]oL‘D¦Äö$³1e@•ÜŠÚnb,â¹ j ›}*gW\Ëè²î—‹ÀLàm£åZꚣ©OÊú«„2¶WâØs<îošp½iB9ù8Ü®¨‚…U ïõ nã³³q9î}¿dçüÅ™­i¾ú=lÞ4ìÀ@)ÿÞ³´ìen¯øl\ÎÛÓâ-‚8@T3ÏÅ0ŸTî¤ìnýÊŠ?vB‹Ç{„ÊÇ›´uîd™k¨{1ÛEñ{©m*·Xùùó?ø?ë ”!έã˜6ÍgýYݺcåò[ë®¶²Ö\D*Âí()ëZr–9Dà=7–NT5ØÌ•°”Õ3p2bD½Ÿmê7üïà Kbb*±htk>÷ËL¾BCË:ûž~¿ÿ[Ŭ; ¸µ-ë9-fnÔ©J!¤È•œä6l춤€ÒÆ­¶Ú„ž[øÊ9ý³Û.c¼Ôûå"0W„²Š„0Ùª[Î`}ð²ùÚ"W¦ÁdÖõ’Ê™ º÷ÊÀ•œ LËÆ5±•x‘+]²—e»´¢\FäËSfí Ç êqÎËÚuñHÈÆe žô‚î•PÊ–Ûòü¬Ìy•þÚÉÊ–«t¤5ÍÈ@oØŒbË=#»[ÔjªïᕯE&³{Ž:—1¹ºü¬]TƒO©£\_²"hý¤:ˆ˜ènCN›ò˜7h}>(Ú•—ÖYqNÏý¥[ΨögIòrUX|O}¼’³¼%d™Ã‹ ˆÀ{Ö«†-ä¼_,fEšX)<ì)MرÖÔŽø\~–ê<1ØÌûÃN»½AbYluOѱqâ3æbßáû-[ä9®—XNDà=x^Ï›¸®€IYÃÂ"0ZH:ûÕ´,e2ãX.v{‰¨rÏÊîN,Ÿ'³±×K®s)¦Ü¸ !¥P•q%ò˜Ybz'"°¯D S…zßuí÷-âIT"å¦*ë§éÖAr–·ø,s¼¨€„¸»$g gãJN*æ•ÀƬ¾¸³¥bÙšd˜#j•¥¥)Ç’Í$e K+¹¨¬fUPz·O]7°;N “Xn31»Û°¡6Âe¢ÆdŸ•T²•4"0¹Î¥k§ã.éÁ·K•”¥—Ê¢%¿¢‰ÀL 8U¢·Pg"|ÊöêTÝ/|«§Šõ6 zMW¸ò:HÎò–”eY×€„¸ëÄg gãr«™+÷1«&y|Y^fô4ç»ÕBÈÅ0'2ŽÆgãÒ7‹w\>uÄ“¸B†Å«Õ Ê1““.‡,ÍLÈUîÄìnÓ‘.N ®ˆ —ož:WÉc:ee‰´"ŸY"ÐÉ"çoÓð÷¹ÜIÙݦÖ2˜Ý#YÇÄ=†²½ñxÁÿ뛲yýÿúضT°cl#ᘿ£ÍõÏèûO½çë?ÇŒ¾{¹ùé :öìy÷óáV°ÝfõI&¢_Ü¢ë욟\úˆöÎìߪ¼ìßH»ÆÃ«WE¹8×/mÒž˜¾àÖñ¡Åú*D D Ààˆ±ô./Òym’~¾Ñ7}J±ÿä±ós¦í÷*~«ŽüœŽ?+ÄÞ¶ÜïG‰«g~}+özòüeúÜwÌ'Î$þ¯×铸¢Óõ —ëîûïýÎ;xk+Q܈½Ž=r„àbåvꔋÒp]øÛçæ¥+®Ø<{K?÷ú̶Ls Ñoéð£ò^†[ºýÜw_«B,Æõ‹¤>ùÚߺªD×Õ™B=êû[ZÁ>½JÏì ·èû-ÖW1BbÐ ~Kïºñx;0£¿ñ©6±f–g-,HÌ­ïð”F[Ÿk"iÎcÚÁðMø|ú s‘œx¿o|é2ù̯oº¢ˆ¾çÑ÷\¤°ô×ÙþTã<µÿù¦_„°‰ÿ¦šä;Â~ç8Oß7¶#ê"³bÚDÂ&âØÇœë°2¿w…ö«ò¬^pDä6yt‘rûÅ¡'Rü"p¨7ñ­kÒZuøŠkÅÔž¿-ÃuÕÞü³‡[+‹ŸH¾ú™[æáêûò\‡×]kÚÍ÷ìØ~‘Ü'ý"p è\cô"»‡§6½ûfçu-wz_8ìô…à½ÏßW1BbÐ ~Kï²ñø=:¾.ÅÚæ¥k®%ää “ðºåŦ=ÿÏÊ„´Á­_óÒ‚åÈœO>ýg}9]îx(]OOnÅYò.HwIþ]îþ¨MüŸ×\Ëýk3-M;"çÓßÒo”»¡RBÛ-tƒÊúg=¥ÕÁe:Ìb¥÷,TnOÌp1t|ãóÙ" É#¬L¯^‹´ò9Çþ†‰Ðý‡-zøˆÃeéÔÛÛs¯Ü㊫ßQûȄڗdYnîåÁÖZ}õCzø±÷bDà¬>¹¸<;üØîŸ~JåGõ¶pêôwtü‹<¢ÝûáÉÂ}ã D Ààˆ±ôî_v'îÇÓ'îWBèO.}FCã*½äEx}¢âÈæ9&JêÂÎùwip1¶ÜÁc]÷Í€»â™öù¹îS<¦í:ã¦î"ùëõ˜2x‚íÒà}Írå¸Bb5Q¹?•ÛbÊr3zéS%Bžú@ºP²¸ËOnD‰@£ùž´pþ†ÅJWÖÏé7ÿ,cö‚"0üïsáé;æ–¬³ë7tñÉ-šðJt‘Œè3ûäâ"Pÿw“Ç~#JFýó["çé«!1è|Ù“*ûׯÜÎù÷>zÖßâ™à 1pA‚Û;v“o|&¬"å¾ãŽxS%ãH, Æáމ<ì7·]²ܸʒÈÈ¿_ºpC%9¹Jg”EÐ/·©½º%“¡lÜ K7¤hm¿z5Òx“%ö±7¶7é“­k³ûÄúÇôð£ëÛœ"pvŸ\Ž •Më ×·¶½{ߺI›‚ hÒ÷UŒƒtæÌª•ùëú[d¿÷1|4ý1q¤ÚŽþk>׌ýí«î‹]w=HŸŒ½ÀzŸ°ì_þèK,ËØÃ‰ÙÖâ2kEaÑõB»\ɊɈeë«™,Ö¥[r@Ð3n¥.wÊó…Wœ?d“?˜ó‚×V‹ÔßìLgz»ùë‹÷ 1ò"m}"’¸6æÇÜL<†­¼²Ac˜4ÌÊwä´ŒßpÊš*ã«ïó7x¹‘\ßœšÜd.Yî`ù˜:Ç-9 8ò׳3Â-òÌ`ðƒÄXz7ÇþÄ ÁÒºáM /›ô|Û¦ï·×éÈ ïkcÏ|ÇÄ‹@öN4njÖÃÙ"0ÚýÒ»Öõ÷Ân•gnhV>Í”[¹xÆHw|úçËs["ãÄè쑇m²?ݦÑÀfBbr³kn_õ'⬳÷y´%ð™#^†KYV6¿¸)u×ÞDáÆãüœ~ÄÆ‡ÃÊ%×qé º¶ì*æ:«í‹ý"MŸÔêóÓ9Eà-^¾ ­®îÆbºã¨Öžy4EFÝ”}ã D 9³j%eþâ/­½)‰Í uÄ ˆÞ4œø}weçæzX\ÍÎFÆÌД­»•ð—OùÑÙÙÖâÜI¼ÔÈzþ*æ.qxöª¢žÉЍ¢ z‹•;ù|áUÓ˾¬[¾ókm³Hý%g: ¶ÛoEð½þ×Wû”*gâ1ìßðÅó©3Á=­&W™ÄŒs¢¾“²¨=:õV0YÿY}v’.#ÜÏ ?ˆ@Œ¥wïxì%l¡”[;Ž+¡LÆ1Ÿ(H-wéÓ¤œyõ¢ëÂùý_o»¿ûô˜ÀÇœ±Á;æìê…Älª7Ù³So›n|XD‚×Å‘/¢Ún—ã—~çŽMåEÊͬPûÓ³Zòk[®«ª_rq3¡×´Ä˜›Æ”e·ü$&1Ì…ôm©ÅÉ9n–] ÞïèµÖ71Œ“w3"aPº>©kŸ¦Ê: ZXµöàå ŠÀ4ñ}iû*ÆAˆ@ :sfÕ }ïýkž­ë·¾•›4Ç$¹ n{BЧþuÈMmÏôÙÈxP´ó¼~Éq‰`/Âö–û÷MãÃÔ™µâê®}éw1©¥g¸@|*-YÁAo‘r'/)ñ_%|æ°¼·ƒ¯z';Ã,© —#1ÓYxÅö䋵7ùRDï´q0+ÚžGcúæ£<Þô›ÚuSf‚‹³2ÎͬïÈÚk¯/ý8scŠHþŸnþgƒD ÆÒ»w‹[Ó¯ÈâËö'þiÞ67âetãÿn,Fšµ.¢\ÏhâRÄÒEn0g¹Ù܆'ÝñÊË-“€HóDàójî–*[枯¦ß"â×ë±í}D?¯²êÑÖB¹·“¾€-…–_¦ë“Ͳþ·²ÌE—÷m!Xü=1&ßÓyˆ@ˆ@ \˳²j¹—ö0ïq÷b‘/ë4Ç$û{/(¾šwÝ}¿¿@62=¥q û—¾²ZYˬ#µìU¿¹°íA)üàÏ÷ØÿÑ]Kx)wÒù¢Êü‰k%›øÄáó}æ:ôâû">pñr$e: ‹ÀÍÑT”Ù÷²ˆÀëL¸=øØ-+šEûÿ:¾oò¾4Úò„jºLpÑ"pfƹEEàßÒÙõßy+³/žì+ñáæf0øAb,½KÇcµ1v´póÉ>a.‘ÎÏ£ˆ8µàñiŽI#7g¸Ø9‚#>q _Pc›®¿·¸ÖïX†ÈuÏkÁ}Ÿú²öhÛlþ…ÖÕKŽ›ã• ¤zAÞ c¢ÜÌòz°<ƒý^ó”ûÓ«âýìdb½)ÄÓ{®%p¤6‹—u/3 zó$)b÷ª1Âxñí>ÆßÞÚ"#«V÷òÚÿ|“mí·­Èÿ?;eŸ\Ÿ[zå ìExKó4ZPnÂ"ƒÎ<vV-çáºùé Ÿ°ŒV7¼' ~8å1³‚‡÷¼ðq Ô'±þåÉÙÈ´U¥ˆx€½*.KŠ4™µ¢ËàºWp«sës^˜º˜L†fîGœÁ_Šˆ…Êp¾¨ÉÆf ÷ÅùË‘&Ó™&ì˜K‰øiƒÅ@¨ó]ßø­¨9MyÏ%$¸®²Ééÿ¸u-]&¸(˜"ãÜ¢"Ð÷/¿™&#ÜüÏ ?ˆ@Œ¥HÔvÇaûþ=xø‚`ï]Q¦÷TyÎ'»ÐßuåÞIB8u/MÐ1B~¡Yµâ'ã,ù„ò-OsLš Rßw7ae¸„¤,ÉÙÈ´ÏSÁÌZQx«lŸˆ˜‚ nð7­GmRê]gØþеà\gÙ®®ë"pr'ïðà3Úd»´¾ÍþÿŒŽþ0•h™¿i2i«uÿ¼%]6oݤߨ(ö³µgPPÞº¥eEc÷±uKlÜ›Üïn²¤>“92ÁEˆÀ4ç–"ƒ}&MF¸ùŸ ~K!!1è¤ÎªåZoÖ?aYÆX¦±U›žyqJþuø{™Îúy`³ø-:ø×‹Ö_šLg^?‘ím¹ûÚ‰ýŸõ‹@}¨8×ïä&ò^r˜4™àžVþ*;WêŒs‹ŠÀ­-ßgßÿç[Ú¶Rd„ o@Ÿn£^ ~Ko'ø&ØÜÍðgï*ˆ@¬<Þ·¼ÇÒìˬ^ûÿÿíݱ­„0EÑhŒ€BHÝ}у:±‡ˆœ FÖ NºZ­€§ûÿÊÛº÷ýÁùÓ Çûú+~~?N‚óPÃ%I°_ç ÷¨g•€4\"Ðõæž¿í·Ý³ Š{3îQÏ*(h¸D ë!=ã¿ ¾ u¾÷¤"† [ €€4\"D Óȧ¢‰@"Ðid€SÑD À–Š@§‘NE"[*F8MŠ@D á@Š@D á@Š@D á@Š@D ˆ@[ €hK m)"Ã%@`¸D ˆ@D À–Š@D À–Š@D @.D @.D @.D @úð¶"Ж @ÚRD †K€Àp‰@ˆ@"(°¥"(† († († († hK m)"D -@`¸D ë€á "D "P`KE "P`KE "P  "P  "P  "Ж @ÚRD ˆ@[ €ÀpaK."(@ E ¶T E ¶T E "Ðp E "Ðp E "Ðp E "D -@€´¥ˆ@ —ø³¥ˆ@ —€â@m"@ ˆ@D "€@ "€e Ôpß”uIEND®B`‚flickcurl-1.25/docs/search-photos.c0000644000175000017500000000702712210726277014227 00000000000000#include #include #include #include #include static const char* program; static const char* my_basename(const char *name) { char *p; if((p = strrchr(name, '/'))) name = p+1; else if((p = strrchr(name, '\\'))) name = p+1; return name; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } static const char* config_filename = ".flickcurl.conf"; static const char* config_section = "flickr"; int main(int argc, char *argv[]) { flickcurl *fc = NULL; int rc = 0; const char* home; char config_path[1024]; char* tag = NULL; flickcurl_photos_list_params list_params; flickcurl_search_params params; flickcurl_photos_list* photos_list = NULL; int i; program = my_basename(argv[0]); flickcurl_init(); home = getenv("HOME"); if(home) sprintf(config_path, "%s/%s", home, config_filename); else strcpy(config_path, config_filename); if(argc != 2) { fprintf(stderr, "%s: No tag given\n" "Try `%s -h for more information.\n", program, program); rc = 1; goto tidy; } if(!strcmp(argv[1], "-h")) { printf("%s - search for my interesting photos about a tag\n" "Usage: %s TAG\n\n", program, program); fputs("Flickcurl home page: ", stdout); puts(flickcurl_home_url_string); puts(flickcurl_copyright_string); fputs("License: ", stdout); puts(flickcurl_license_string); rc = 1; goto tidy; } tag = argv[1]; /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { rc = 1; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(!access((const char*)config_path, R_OK)) { if(flickcurl_config_read_ini(fc, config_path, config_section, fc, flickcurl_config_var_handler)) { fprintf(stderr, "%s: Failed to read config filename %s: %s\n", program, config_path, strerror(errno)); rc = 1; goto tidy; } } /* Initialise the search parameters themselves * user_id: "me" - Search only photos of the calling user. * sort: "interestingness-desc" - return results with most interesting first * tag: TAG - search for photos about the TAG given on the command line */ flickcurl_search_params_init(¶ms); /* these strings are shared and not strdup()ed since they are stored * in 'params" on the stack */ params.user_id = (char*)"me"; params.sort = (char*)"interestingness-desc"; params.tags = tag; /* Initialise the search result (list) parameters: * per_page: 10 - ten results per-page * page: 1 - return 1 page * extras: "original_format" - want the returned photos to have the * original secret and format fields. */ flickcurl_photos_list_params_init(&list_params); list_params.per_page = 10; list_params.page = 1; /* this string is shared and not strdup()ed since it is stored * in 'list_params" on the stack */ list_params.extras = "original_format"; photos_list = flickcurl_photos_search_params(fc, ¶ms, &list_params); if(!photos_list) goto tidy; fprintf(stderr, "%s: Search returned %d photos\n", program, photos_list->photos_count); for(i = 0; i < photos_list->photos_count; ++i) printf(" Result #%d has ID %s\n", i, photos_list->photos[i]->id); tidy: if(photos_list) flickcurl_free_photos_list(photos_list); if(fc) flickcurl_free(fc); flickcurl_finish(); return(rc); } flickcurl-1.25/docs/appgarden-new-api-key-secret.png0000644000175000017500000006453611600753627017373 00000000000000‰PNG  IHDR€S©½?i%IDATxÚí½ÝS[YzÿËŸ0—çâü çGùOøáû¾Ê\ÐÇ5UtŸ®S¸]I;/™$@&NšÁ&ØNc;œŽ5e·b÷xpÛò‹†X¶GvF‘ma @–‘ðóœõ¬½×ÖÚ¯Úacúëò§ik¿iiïžg=k5mmmøþЄ“@@@@@@€ €†`,ÓéÁ[Ô=|‡úê¤[¼îÜTI¬g“1þÛz¼ÿMÎmîá¸F±³ú1‹ßÏf¨¸K¥D‰ë©»kœŽÑ~ø¥Í#q::8E“™âp,~mÌÀÅp[”fé&õrpø¹XO…Nq>Þ7µ¶gO^9óÐ÷XÆfö“Paºx#ú{ùé Jìii÷icÖp1Ü^„h–>Ú:;+oΧ?u>~rßœ'/ûËì`vŸ4ƒâý—·ñ~Æirqï à‡ÔÆ€=/€;‰º0÷aÝœ+s!Â;N©Ê‡ß8Ò±kï×#—éБ9±¯â=->_,ÄqMÞåc}.æÄûWœÉÒÉA«=ðqΔ\Ú"Mjm¦S}Äî.É´ö¹ãÐX£$½Xûw´çºhw)QèR þR`¿'üÓjŸb?â1ñžˆ×Ë}¼'öca € à‘úðcQ©˜j=r‹2•€êÜÁxHÊ9F§în?BÇÑ1÷úŽö_«£¤B';_ß=\hñÑÙ§.ÙÝéëk§·?öw¤j¬cNÑÁãשïÂCŠß¥ìŠóøsw§|£Šîþƒ1×yKžuF‘?"uÀ'íž¶ä1ÿà! J]¿æyÎ-€…ÇéÐî ºR”5j½§—éœÈÀõ¾A©.@ €¾X“žŒŒ~U×QòÎùÐùõÒ¶Ž)qÖ%—‡ïQÞXòHSp1ˆvœÚ*artpð©vœ;}}8ÅÇSž×ï¸{ñiùS\§ŒÒ†B o ¦êîª `a*âë…À9¿|èm7m]éÈï ð½@% ‡ºDú¬'^³à"ó•OáÂáq‘z»áŠS¢Þ(Œ½£îÛE35:é© * ÝŸ^£ûWœ³#c;}}¾œ§ä£U~Ó‡znÑI¹ô‹’ÖúFÀÓÜU@Èßa¿Hñ¸Œ¬%€>ï­q¼E]Þý?xöy¤÷”Ûn§oÛïø¼û4£±LUòwï…H\‘ºÝBÔ“®öÅ«,P÷a·¼-Ôu<ù»w<û·Æ½+gRÞ(£o1ˆ¿,ôݬF$³žãähç+b´Óׇ“½î-ê˜,y‡ˆ‰ ŽÓ¡ããô‘/q!NOìâžs]ΨXŸ#/ÄíHpTÎW?½C©¹5ÊežŠ~z)ÊœÿƒƒÚÀÜb°ò“Ÿ  §°G¼·çW÷#óµû¼\Óß¿í:_ï^ÿeš\ÁEÐt§Q}†_9õÀÄòLÚsƒM¸"p†;ºU×p%ÞîWÔEÆò-ñçÁaoº818w;}}½Ã¿øEJ+µSíîc7 ÊÏ-SfNK'W*¢ %C®GYº#´5N%»oîI€4Öå>§³ž÷?¸‚Øûž:û¼fÛE2 ß00î¾gÆ‚'M§n¢EŸþ_‹ô]OQ'Sõ\®£*¹v?¶Cfåp7æ°7†HÇ"ƒøT;?¨Dè‹§R±;}}½)`¿Te4ôœ[1¥\JVß >½©_^ÔJr÷r~RÌÅ*'}£>ÇsäšH«¶sKNõwð‡AçÝç=qƒã3X:0Ò8€ÁËø/ÔFHQÄaaRÇ·5ȵ'Šés }>çhªHÜN__ˆïûp¼\£±ÁñmfDmCžåúŸÖÑÆ¶Q€Ä].ÌÕÕv1!àžÀË A–©sÛ3¸‹A"D‹d$.Yë{} üæuîªÝ0y6(å,ú öTƾLG¯Õ-€…m£³»-€í±wÖvàvГ¾FI1c†’ ÿ-06É”ÅßQ #Ц¶=ÍY ²z G¿^öl³à.89|‹r y}í¾Žc>ѽS5d%u!@KÏ=©ÓÏ>¡Ì¢’ÖMÏöÂð@@1‹G@ýRÅ¢ ÁÇ?Œ–æên•Þ7í¦b¶!C¶þ{ø>ИËxúè¹ûÆeE%çuúHÌBq’,žZŠ €›ë‰y"‡ÝÃ÷D¿°;Núôs›øE›n8ƾóï“\Rßë·/¼}×¼çKô뛼x#0ìÌ^¦´;ºZGÈ¡ þ3’änÞ NÆ,p¹mô™ýÄ#KÔý©ìúÓq1³È=:÷U†2+@À÷*€þb$fdxP”Ò’÷›ááx„ÁxWž{^wÐoš3GîåúÇñ;rƒ&2E*ÌÍÑ©.oÊô㯖ôú(øIoµ8âäŇt.6%ŠjBúõYÒë•ɼ»lËã˜Ï¬-§BÆp$¸ øãØRýè—®«àDLgwd»³Ð@@ëîÀ½J²ö2©‹×"ÝÀ?ŽEºèÛïð9ðpøë¼Ãøã‹$ªú`Ø;}”¨¯nÙŒ‹¨›³Ob¢^1ÓÆWt÷- @9àñíOÇQÄ#NW—®4¾íûB=ƒ O…FÝ-ŸöT·z‡9í#7Ù©4}|$0]Ú Š=.Fûïà¶Ä‘ûÞHmúD‚n>§sý>±OoQÂ¥Üéëë'/fÜè K÷ Éü¨çŦÞ_ƒ)؇ŸPn.ë#¯:f¡»ßÞGfkìo…&.\÷Ó©eJ»Þïx}Ë46|-`î⽡œ±{møàð}S^)Qvf‰Ò™ÁåVŒ=°_~©@ÃÚß"eä¾.Pvnm—^¿¬Ùr‹²†³Êø\—˜Fï°s*½GÆ©ï«Yû".§ùûãë”ò™Í£ø8å™J_ß}12à‡WÍ=KS&âl&¹©'41cVk§.ŠiõþŸ)zõ>÷¿òš:>ùŽšM?rÒz¾ÔàímÐÈ ±Þ±×»xLæ6Z†WOžy&ièцãØÛÅcãeJ_ÏŸXØV»4V_Óè•Uß"¬Ô¥,5›¯û=ÎÝ/ÐDÖÜ×ì[åéEjæ÷øÌê.·±MJ~3GmŽö5Mc+ <žÆµ«Ìí<µhŸ¶á¥s¾´(ÐH[Uüšš›«¿75S<· Ñ@#Crý-”Ü3¢5CšwÆgöd„¤ø`Ê–³¾»%‡Øœ’ã ^¦“Òé‹)Á=:j=Øy}Ù¼Á ŒS¢ä'€æº;Ϧè¿þ‚xýqK(»åòã{rnàd¬ÌJ!ëÉ|}‹ZþdW0r[¨”¨•ovÇ^ÐÈ•E¹´`2–§±û•†ËÙÐ1!›ÛËhÇô–&ùæ=K9­-wÚR[Ô$hA>62½I©±§ÔôÉܶ¤$u~Z¬Çÿµ™ofé>+Ô÷‹÷„å¬×’Õì[ÃÓ–ä<óýòÖ(&Ïdåvš»g)–,Ròþ Z ®4(¸³ve³´lž“ž9Jå*”iîçðʵ``a²×–½‘DÎü†\HZ‚&"½ !lʤӔ+)—NP|"A3kÛ|†&'ââ±IÊä²hg(19!ž› ÉDŠ VĪ£k›£‰ U$Kl'ÅËÇ… ¤sáßâÖÍṈ̃¯3ù¢\†÷mb2Iù¢YLhâ+h ‚.…¥Ó*ˆôx^œƒ‰ø%3ùÈÏ7êÛy¬KÈØñ[Ô}\üüT—2k éOS.Q+R?xÜ\V `2Pã”r¥R®™ãNU/ØÆÊMÞÌPüz–2‹®/ F…Ҳ⹧â”ì}ÏóÄ+›Ú:Šb^bk¾_cMÎ3\7Óäݧ4qó9å*æqñßñ›YÊj¯eò3³4q=Cwç´÷ßÜN¡bPî±Ú‡¢ÝÅ!õõ )€ç,Ùí®8·@‰›¼MsYuó(_n×o(;_}¼8¿F k3«›þ×Ð'KR;ÇK”_ÝŒ°o☳bßž zÏÛÏ¿”?;¾ÑD_Ì}É®SQ—¹Ÿ%ÊiŸíòR…f– *ä^ËíM>*~‘S‚Ý<¸ì¨Äù§ò=ª~qô?¿ÜFòÙ²8o(™íäIÅÚ^X» n¯æþ‹ôîÒšy¾îWÏWæÊ3¹O“ÚñÊ/B¾ ¬Ýço¢ÓŒø5wM:/j)!W“)Ê ¯ :â9ÊMôz˜0Å­˜õ<×ÔÔN‰Bz]w% ´UHP»ëñ–Θï·èàu‹ç‹ K.ÝtÈGÐyˆu˜ç¡­³‹Z­×ŒfÊö2ÉŸuŠå‡’‘žoHpå9Brôz‘òwoI)‹Ím:ðˆ[×èäS ‹‘ð²÷9cŽ>Û:xö¹ü;{ýŽ#MÌt½d.[š¥]Ï|*n(b lþ{øyõœžåèây±.>¸çY'Ëè!ÇàÙ×(U²Úípܵì5J,šçÁ=à6óÑ…Yý›r÷'GIƒåK›1l Àüý¼'=Ü{Û’†Òkêt¥›û—¬Ï™A#Ý>©å±’|n´Çý\.ä3UÇ1­®š´äSôä}ŽÒOåvâó¦pŒò¾õ¤œ¤Æžyö“eQFu8á=Ž‘'¢ýgµå½¢<ÃϽ”g¾Éy×ñÈðÈô€v>YjB÷MÇÄ™¬ëùç”X I/ßÈ™¢³ºA±nç~Íy·õ#ñefþ­y‹Sòb­Òχ3R`ówM‰:ÐÿD>_Τʹ÷”ˆ·×-Ñà›¯Ì%çª} Eÿ;϶qóÆld f½' hÛo¨—û5ž)JAâþaMÃEùYo“¯uÙÎäï7¬þ˜–d $Í¿s·_ÚûS|ôRóœpJÙ\¿ +Eë+A¿Ïý¿ÜÐ0EfÐjc[ër[üÒ–¥¢ì‡6`ÉaؾîÏ9…¼²f ¹%¶~_N9]ÚÔ½$Ÿ/Üi§Áågö‰)O-âý.[‚ß!%oÑŒø«}±ÞS%[ê<:RñœfvÉSa~fDz5'~æçßȨyøù5û÷q„5)–ŸÉ¾ oW¡íÕ{.g´séü’Z¦Þcæçb,» QÀ† `s—ÝOÇŽ Š‚‰xR`2f ¡­|&%Ó´£N 3R–¤µ™éF#m§œ»Æ&)•JÒh§Qkð ®ÛÀNš±„q¨5\3vñG/͈ý™‰+yk³‹A”àµpJÜZÞZÏï<X2S¹?¼AI9“Èœõ÷5Jºz9zá©}Qß®ž¶äME·â‹zd2kö•›Z‘’w@‹òqš”g=)•Hx:cɲ3Í“+ο…Œ%ÏÆe·ï«'û*M±ëOL<|GH©ÚΜ¶¸k;Õc4Jkrf–Ôƒçÿ*EózŽ˜ËrÀC¾¸L¡3#††gíc{±ißÄùüÀz"€R?yF½"%Ø{†™Ÿ›y÷Óxýy‘N+ÐØ7Ë4jT <ª˜2!nÎcüÜxâߘè[ÄÍ[F[b$új)é±#QÃbÝ÷…ˆW×ÇU¦?…ÖvzïRÆdÔoY¤0Í´p|iKëg§ÉŠ8/º„—ÖEjT¤oErtlV>§Šd<¯õÀMñÅÁíž~éÉШlUƒ÷-)åfšzŹ/QL¼RµT·#%3E»å̲±Ì#³¤ÙSS«ésA•‘<³O¥·?¢¡S2ìè^ÒÔëŽÌݯu~Íþ}-ç«ê°vÞ^ ïþ[ícÀ‰}Kñ~³mŽMo@0e;õÙâJçâÔÖÑ+än¦*€­Cö±œñIyšëb!íÐo¡–f?Ik¥DÑLÛ¶ú¬‹«’[}R¨‘Ö­íëdoKˆˆå©·¹É7}+£Œ±‡6w%€ÅGy»rÓŽžxFmÝÏiì%;ýk>ÇdÅsϨk|Íêc÷Òq£9Vz•ç‹ÔÛ“u¤uÃ5S™BÂoÏÉ´¡j3ß<7…õÒs)5ù­Úh̯ʨ’–í~樒Ž&€fd2v>ç¬2+ú¾'-PE´ìóÿÉSjïM[wÎêÞàJIŸÏú¤x¿³Sµ¦f…!3ß¼°Ÿ7Óº9M.ï©7ì,2‘@A.»ñü*¬®?¬]…¶WѶj‰¾5k/C°®á ìhW ¥ vˆêÇ}ml©JU5-Üiõà ŒŽÐX\¤e ßÙµC–üÄÚ• hFت¸C)󛙥‘Q‘ÂÍ«uC×­  ’3?«Šl3µ¶µQ›Ek‹³ÄNñ¶ZëâØâ=¿Ó‰LMŠ”cR#”+&FiAF¢XX vÀ©Ðþ/Û)QýäN ²#u«`Ã’Ó“ŠRt~ПÑ.ΜþEó¹ƒæ´>€ÛÀ$GôĹHëáOèÜõ9™®-€æ1ªcùøbu˜¹¬KOYÇZZÑØþ§Žh:¿ýôŠtm¬»`@¥‘5#e½úð)"Ê9ve‰RKV:±Å=I|³Hñ'o¬þV/(£§f­mK%9¯†Øý§—e$ÒIÚf„»dU73Ú*Æ|AF¼š¬(åV4#K¹ GÔ«Å%€å)à‰+ bf_ºâjÙìÇæ—:¶¶=ôd³ö¾Y’åh» 4zãµ7,Òš2Û/Ò£†5ÖH㞘Q³ö+e;<–}[½Vp*×ÚÏ” Ì»*¬ýÚOÁêOè;ÔÌÒŠ|jŸ_¯†¶«Ðöú6šŠìÂè™9šœGê@ë$O-Úø--ŽèVø  .bÍm]ÔÛÙª½¦Uk뢑.­§š‹ÕþƒÍÍ-4"¤/¡Š(šÛ¨w ËNër±IPÄÎwÝu à„•jnêˆ;ŸËÅìqGÓeG¿æ¶êhmv¤‰k=¿³¨;0˜õŽ]xÑŒ†›ym#e°¶† Ó©Õ¯9½úº»¬™¨".Z¢Óm]Ä…Ôåg²tô°Ù玿¨ýéþZÜ€—ètOÌ®Š)A?8|]Œ/)R®7­‚Œ#õ  ñÂìx kŠÒ¢*73e_x+:Û˜àkyk /ŽÖup¦ G½±E+~ÆY¥Ú1V9sã¥cà&;Ýü–’WœU±Í= ”kD°*|î+'‰3¦°éQk)!ÇœbÐjÉ’±$R”z%ª™Þ.p0£bª(ƒ%ÃýE(õ«{ èâtÁ.¸Qcðų¾òë·ªUE1GؾÉëWÒ9xqs÷K«í:‘}òDúvÆï(Ó¼ßÑ/Æ-á;6]MÉ Ñ*ØçÉ[‘Ü{£:ÔTB¬³Õ]±Ûó’&­ˆ_øù5ÐÝE!¸]…·×Zç2P €Ö9B~¹H1LK¡XO_ 1L ¿¦PôIa˜ë wªXôlË(äkŠµÆÆª±îF£¯m$-Ù½íZÏïGŠ+¢ äÑ5D_¼‚x¾ìÓ^øñbCÆ3×´a79N§ÙíP¤œ +•ÀÁc N·ì¯yœ•=ù^E¤Ž‡É0|IT¤Šç}ß9¼†áLÖsÅÊÛ=Þ>ßÊã/–6²žB©v_Gž:Í0¢·Á‚\ïÎöOïh”x}o]ýúxLB3¥ÎÇQÏtieqÌE¦Ò óÖ®j´WÀ. &9Ðêªò­ïùFÍö'˜ l¿xfÚì>™î6g=ÁÀÈ@Áv‹ecÔÛÛKc‰Ü¶ž€†gm–Deö`>pnë\rÁ"ç  € € € € € @@@@@@ˆ@@@@@@€ € € € € | ×LŒ œ À>ÀòS¢æŸµô{iýŒ¨ã"Q<³wOFLì_SŸ8†/ıÔXvô ±¬8Ö‘§ÁËdnšË4_¨½¾]c]œ÷~s?FŸ5n½9qÜé•êßéßšÛè¸ùŽq…¨ß7AëÕíµO¦m„h@ìÁuSN[ïc‹x°ýX³Îµ ½öý½¨¨vßþÛïÉ1¯ÓÖäãmC}n™m°É¢å*nB€ý €™ê…- ¢Â<CŸYûø™øvqÙ¡M^¾¾]CHIëOkïk=L\2××û¸úXêêû»¡e~ël_Aòµ}ò—€Ìº÷Øj¾Ú¹N¾úþ^T’W¿?rcÌ[ïy_„ϸø2Öæjk@Àþ@q²‘TQˆýÖŒÒØ¾+{P?¯C?¯-U©}*€>òû>°«ßySíHÖÙ> ™éñoŸÀúH}°˜©ã3þJœ«}Œ‰h¼!¾d”‘ì+ü,8å9ðyõ&;±èóZDoò+&‘Ò¦ëÖò¯j/_°Ö[X ›w%€u«uœÅ:×#¢í? HW‹u^Yë]¯?Rê'€­×¬ã«ðs½í÷ÛÝæžU¥®÷BøùŽÒ>Ǿð®c·°V»lX´j½º­(ïw1ê~mX뵎9}­N¬£ÖÓ^ôã5vã³åjSµ®ÅÇÕ¶š ¿Â«èmA~Ævá‹ÆN?“Û9Ïïâú¾«_Ôûö*BW혶¹,{E‹!ýµZ|ÒÆŠ3£èºéú@­™B#úéQâŽÏòw|R„÷«7f; -¶•Zq.—¸òŽP\ †.x÷½×µï)ëFÚ{Õ¹ÿv_¾ˆëQ–\«ÞpÇ.z_×ÂçäU¸à´÷yÓ¥©5íXÅ:z¿pëÏ}Öqßk¦£Õqˆ~›ÅyŸsTgûL^j¼N\©î×P¦Žv©ï!Ÿv¦ú]¶\ ?GyqÜíý>]1Äû’ÔûqZím$)ÚõH„÷ûÍ^ñ.§úœ¶^­-~‘ÛaíÅXô¿– Ü©^KñÙJÿÖû|Ûµ_,Ôyâ÷õs­Ý©^ïÏ¢³}µYmd@ß·€>Ëöþø´[­mÅç뻫s×~Ó§¿±µÎÔZÄóì·_ ¾¾sß_ùx¿S¼ÙjLuÜý¦'Wj´ßKÎ>ö~þV;gê\‹÷sìªkY±ØSŸ÷%ʲªMô5¾7€îŽrň+Í6ïü5÷».†œ&χÝ%%úÍ2yÍù\ëgοõ(¤}£ÿ¼|¼Œ¯P¾röjûÓª§Æ/ùì‹Ø|ë7‚Ö‹Õ~—ñ ÎsÝÖﺭ|ˆà´ùìCõ}r^¼¶òõŸƒZémµž®ûÎ(nóÅíµÏø…Æ àä9ˆÚ.G>¯~‚Rßw"¤(Õ¹íóy_BÚ›cY×ñÇ.„÷¥¬%€‘Ûa=íå•óúÀËê×’ö;ûl¥®ùóµðkžë:¿Þb³Á×¾ ¶á·àð—‚ûÕ/p3õ]ƒSü>í?ô<×ø 5ìú®ÆfýûëŸ!ý¼Í¬Gè2dG÷~v= >&.8kŽø.k-¯Ž­÷1„|h_8­åF´Rì™äÄŽ´éq‘JÌW¿õ«oB¶X.V?8­—ªÕ¼¬ÉÒ¾=ÛiÌ©+LJ¿Úù˜Ð.öú·¹Ä5ï·cýâÙ!n,9q¬cwÌý­g=AÒ4¢]Hó«¯ «lvô|ì/«¼¯eŸýQ7…mï»»¢2é-ü˜¹ãÝž_ûÌsÿ+ NwêÑ,] ·#€éu­È][G»´oÔZTE.ûL;Δ—ýÙ²‘Ónfií<%^Õx¯zÏ©~“l¿V•ý= M×Ñëi/±/ü—»àL¿6ê³e§u?«]Øæ·¬.èz[(ÎjªÚëÚ7)ö!%ÚÇÄlíþ±n1UBª®uõ\ƒ·+€îó\Sx}WǧG-RþEµ '­cn¾>¢€}^iŸKñå¡ë3×~êÇ$ö+±Rý²¢"vСže­ñ¨8ǽ—œÑ|ö®ê7Ôß`”hÙ7díâ–·ÀÙÛé÷ÙŸYïMM}#lÙ-Ôö½ëQHdÔ½ÿ#® fë ºÀÊ ²&I|3‰‹õåÖêOÛûú…7e¯¶'Ó);Ù÷€ýpi•–îUä*`—yRLWÒJu®ÇssÉ+§{ºÄ1§ë«–+ ¬Þá¾ÛÌ;ÓS“, Ióg‹Oz3ª¶‰›\fm›ÕÜ®ôºÉ悾El—“]7/­°g(be÷Œ¸™ÆÅgiHD7:>÷—Ý(íÍÅõ‹–«›m­Hz¤vXO{Ñ÷s-Z¥òN?[;@Õ7Ð÷š³QíSçþ줢 €&{J¨ìÔ§µå:¯ÁÛÀ ÔxØg¨¡×wíz‘Q3#Síoª"kcóΨb:B¡”ˆøm%Ä5gôšY„æè*à@M2ýŽWÉxäe!/àC@uÑão”†ê{Pgëñ‘(wŠÏ}pw¼¢ë±sÿÛoF— ¡:Š@ô´AqèB/´õ®Çï";0­ í÷RKýndúò;Þw÷‹5пEÛíS\ðg^™{qƒÈ…T'nWƒúÂÕÛ.õtoBÜ˽Q‹°*éÖˆÑÎznìJêý$O½Ç5»RDh‡uµ­¡Vv£>[;@5 |ÛÍð¾[ë©2WQK•ÒT.5\R½×àí`äŠð]¼¾«ã"œ¶ÖÕy¿Mçó‘OF‹¬ÛDé»2V$K¾}­gYÈ ø«€ù¢W~ºý`­ DRKKrdnf^c±¹+¬;ûèD/o[UÀZõÑŒ)Ô÷ÉŽ ®Ô¸xÖ¹ž°á’âÛëÀÅúf'؉6dßµÈWJ\1ûÀ(.iQÀ Û²c§Ø{ßÙwNOgÕÛ.õ¾\|ÃRÑ·–ÚU¶v¤PÞàÄy‰‰›\J¤ƒË+uܬ댪~‹­oú¡í°žöR#X˧gMÑoÔgk§¨¯µÎ`]à i™gÕsìן³ž`ë{Àz?Gjù6q½Pפ8ñ»oOP@C_§ÿ}ωU$4$¢ª< w[P}=À~Ÿ;íxiþ(ËB^À‡6 þ­ÍÝ'ÌO¦óžÕQ>ªêѵȸ“}ww¦çTÈbs¯§øß¡¦Ì›uöy‡ ¨»]êi»>Wÿ­0±š ¨tu ·‡ìØNß.Ÿsû"B;ŠÚëi/aý÷ÖªÇË F}¶ì6õyí>nµúC éÁz׺ ´ôûD¸ê¼ž»y¯\îªÖù9òDwû¬î+Þ¡\j_»{ψ· ªê¶ÓÞÚ1¹ûâêÝRÜ}k. y{RÅE&¥}ˈ†<™Ôª˜\÷õ ´‰yÿª»ÞGõ_ ôÔ•fÏñ*><½Z•FˉýÛ½¿Kèà1M fî{‡$»xÖ³ž ç瀣ŸG›¥E;W¶ª™ " àNö=d°æ°>‚m¿}÷hGW2ÞÈj½íÒ9z ƼÿÐ<Þ[gpÕyÔo¦mW«7Á̈‘ä:Úa=íEZF¿–Ä/ùWïô³UÔf—I.Ö/€Žóx¥*‘ŽJÖ~«@d3ÍØEC¢WÏ5Xï~¡ªT¹úUoSïBëþiUw¥¯>Q„‚[?wï¤núŒÏ¨w ù¬:bí÷xd˪±Å{4pµÆ®¼3¬ÅˆóC£G*ä7§ÏiÖqð»ðµ¹:žëÕ‚ú7Ê]zÑy#oùÌ3þ™) ½xÖ±Ï nĹ\»«ÖX!XF>÷ŽéUîdßuj¿q?­¾rïCÝØ(Ùª§]ú‰IG”³µ>CòsÅÞ}úÜ©þDõ <®KÎAjÛúë0r;¬§½¸–åk‰cÀ›ýly¢J‚g‚š6Î1ž"ŸW[Ч޶ê²ä×w´žk°û˜[ú·Ñ¯´¸Ï‘þYìÔ¾è'.Õ÷ÙÊÝqžÏNWˆ£²Ûol¿ÏÆ£­gYŒ>äA2¹Rkì‘ÿ’¿ñvù ­ÒqÕ5<‚V¾ï®Si2÷‡GÙoöv⦑GÕÉ¾ŽŒÔ.ÑGâ/»$ÆoÄ}R@Oû©ýiûm° EYßôB£—|Þ§~gÄ#¬° ÅMÛW%€Ža¶¹ï…GÞñëgÀÐ"6œNÑÓuõ`:j»j›Zq‚¾Ž¨íÒï¦UÊó>³€ð6ÄÍoô‚3Òøj븷;qÕgÝQ+?ëi‡u´Ž–ø]K’»óÙr„|y´%̧ý%~ëm Ü·,þÌ¿}¥ëOÚià 1| ¶Æ‘tïo/W™øÏxž£~†p}wwÑgùz<4ªzÕ·}PòQuä5J“º–ϽÅN³þ\sY÷xšO!4à= `£æTT¬=Qz^ëÀmìc-¿ªv*/¬¿‡õ¬W_·¹&ÅŽcœƒ™¨íÒŽD^¨²Òy1¼¸ÛaÝ<îîQÜØÞ룶ÃzÚKQ[¶¼Ëí“çæÏÂŽ®Y;û\ÄsŠ:ð=®gYö›¼¢ZºFûÓòš6JÑoÐXù®¹ßAš ûO·ŠÏpÑrÍ;€~b@ €|x8‰ñ¿À6°í*ÎÇûÀÈ}7wÖÏ û*üÊìkUƹÛHsÛ)@&@ N@@@@@@À. à‡òïîÝ»tòäIúë¿þkúÛ¿ý[ú›¿ùÉàà ]¼x‘þã?þC¿ї_~I¿ýíoéÑ£G433CÓÓÓž>}Jß}÷|þÖ­[rÙÉÉIúöÛo鯸qæ7¿ù }õÕWr; o‡áÇÐ@lпR©DÿþïÿN===R•üõõõÑèè¨?–>æW¿ú•üù_ÿõ_ôàÁ) £äyøð¡K·ä¹ÅïæÍ›ò÷‰‰ ºrå ýçþ§Cþxû@@ø£t?ÿùÏé§?ý©-,ƒCCCRÀT4ŽÅE1K±ãŸŠþéòÇñ:‰„;ùó‹þ±üqtð믿¦_ÿú×öötùcX8Ñ@lÀ¿õõu)X*íË?ÿîïþŽèܹs¶ñ2,—.]¢;wîГ'OìÈŸžöeÒé´\†Å Šþ1ׯ_—r‹ÅlÙsËÿ~õêU4P@ñovv–>ûì3ýSø³ŸýŒþùŸÿÙ?äôïµk×dtOOùêø‡?ü’ɤùóëï§„#,vJþÔöüp|| ´¦W¨«'KÍ?úŽšÍDzÔ;^¤2Î àþÀÍÍMÙïN¥~YUê÷Â… vôOõÿã~x©TJÊž^ø¡dåojjÊù ’?Uì¡úûéâ熟C°qänÏJéS4k¿7u/Pçpÿ `±øŠ~ùË_: ?8úwæÌGôOUýr5/ _6›õ¤~ù'GUŸ>·ðé³rÚW—¿Zˆ`ƒ0ÊÔnÉ^ëp †ùøLrZ¬Ç{ï8O €ûQß¾}K?–Ñ?÷ýûÅ/~!ûú¹‹?¸ðãþç|#ü¯‹‹>Üòç@~žeŽ×Ï)å áÓaQÜ-,,­SnuSüþ–f¦K4q{…&₩|E “!RÚ+æã*dØ"µA¹ù å–6|Ö»Iy~N®7lûo)Ÿ[£„Z¿ØîŒû5ƒr¹u™š-/•)q›—]¥TÎØÖråé+Ú—£œkg²¦Ž•p1Üøfý,èøÉO~"#ü‡ø±ÅOÁ}ô8µ«dO‰Ÿžúå~~ò§ ?ïŽü¹…Ͻm%…»“Þ OX†¦©½{Ú‘múÑ3Šß_¦Çcœ"ÍSžEêIÞ^.m8×›W)Ö }ꌥ"u|âZ·EÇ¥ª€Í™Ë:Sµœºí_”ûRÏrÆÒÅ®äièʪgßgžÊåÛ¯¬áb¸ßûþ±¸©¡_¸ïÃ…Ü÷O1Žþq¥®ïOü1™LFÊ¡.ªâW‰Ÿ*ø`ùc™ãuº‹=ÔöÔïü8‹"G ÿõ_ÿUþ½8r¢*J­ýs4zå¥ 5™¦Î±E9óÜ~ÌL‘®S—%p½É7Žèßh·ùx×íõ€í¾±ÄSðÉsùf™&n,Rç %¡OirÕ;[4™,Ü.ÒÄ•j>­‹º\ «Ej³ï . €ûMËå2]¾|™ºººì¾jØ]ü^Î=ä‹’?~üþýûRðTч^ü¡ÏîÁ)d5 tPŸ?=åËüÛ¿ý›ì£ÈE)¼o»)€­ç‹Õ¨Ûý9[œFžTS¼“V„¬õ¼)S©KÏÌåz–ª©á¥K ŸQªýË-Ù¢–t,cPï1s» —ØeirIK]Ûûh®#êr¾ç¡²FJ?yéI À\9úÇC¿p_¿îîn;È¢¥äLÉKG÷¸èCî…efùSÓ¼ù¥}¹ „£‡<»‡>ž _êWEüþ›g áˆ$QÃûzþüù]À,%JZ?¹¬%hÇòŽŠØÔØ3‡²ì5ÿÈùúÌ3RØ<¸Rˆ±IÅÕ7VÿÁ·âwƒf²¯iò›jûÄ_[†W=QDS§i,·y9Ͼ”„ü}RN̿Ņp¿ àëׯéöíÛvÚ—SÁ,X,}*úÇ"Æb§„OOûª9~k}ð˜,î1þÜé_%j°é³gÏÒçŸ.ç!fv?(¢c%="öÚL‡ž¨!€âõ*ÝÛñͺ#‚§Gý(Ï—h ?ëÛÐO½éäjô’—ºœc²ËvÚò¸_PìÎB~Aö«Scÿq寊þéýð8eËsùªhŸ.€,ú¿îÔ/Gþ¾ùæ™>vGþô~~zºWEý¸åÔ©SRú8ò§Øí SKP+øè^¢Â|ÁJ£Î†§QWW©U“½–îçÔ9ûˆèâà,uœ˜ì+Xk¹™o^ö;´SÒç14à¾À7oÞÈ¢ Nÿ*€9dùs‹Ÿ[Õ, <å§|¹Ò—÷K¾w|æ"E  k^Ü´¡ó¦xŸ~VñGgàØNRã³ñj?_ ø˜UE<¼â»§Ôzì;ÇXC·+Õ¡k".§$6Œ¶±×¸€î\\\”3zpÔgýèé鑦ËÔü»ßýÎŽøéóüþ÷ÿ·]ñë—þå±þTä/lN_•>}ú´£ÊW¡ÄÏ-„»SÒ ”0†Œýç?̆˜2NLE·ô†ŠiW%vm—ÖdJ7ÏS×-Õqë\ß#äâ .²Ð‹?¸ÿ.€!túÌ¿óc~E,}<Ô §}YìXÒ8²Ç¿«þ~ü7èÌÛRs¥¯’¿ ´¯;¸;Àa¬®ÓŒ˜Ëw¤ÚŠÚ­6|JìZk¤e£.€ï‰òÌ<`3÷ÇÑ?.þ¶‹?Xʸ8$N;†{aäÔï;wì*_¯ïÞ½{îÈ‘C®æ(¢PšE B85Ìëgìïï§üǬÙçOÿîÅ`òüSÇ”qKßFñQ>R¿¼¨Ëà{"€Ïž=“éYUýËÑ?s%å²È©ñþô¾zêWî…ÇÌçó´*Æ´{õê•ÌŠdz?~,£,{<4Wsúy~~^¾†ÓÐ,u,‚j– TýyYX÷ZcÉŒç¤ø5{F£vgþ\¬¹³ç…£ßN–À÷D9‚ÇiWNÿrß?žeC üÌ©Y.üà4¯;úÇAŽôñ¸~zÿ?Žøñó•JÅqœ¢ë™|­@~Ë'O?Ç”×ÊRY Y:ÿéŸþ)0ýËp‘ Kë_ýÕ_IaD0bú—#q,Sýû‡ø9ôŠ>(3§oõ¹~0šçVâÇ"ÈòÇóO®.•Jrv{¨™·[Rðøu\1ÌRYX*ÈÇÕP4,‚k"RÈÈ}ݨ䅅õ/ÿò/éÏÿüÏ!€€FýÇBÆ\ýËÓ¾±ò¬*ýË}ô8m«Wýêsý²ü±ìñsJNçrêW@þç^\0S¾Ë…e) Žó ~}»ùV¥pT’÷G¯æßYR•üýÅ_ü…d`` À(ÿxæެqñÇßÿýßËA—õißXòô> GðT_¿WÅW´¾.†Éåd䎅‘gáÇhË;à4GüXò8Ú'£Ú2››²ïàÕ«Weÿ>.០ä(‹êO~ò[üAE4P@#ÌþÁ¸,V,€Eãô/÷Ñcùã‚ Žô¹£,ÜoÎÍÍÙÇ?Žìqá÷ÿ{ûö­Gký3Þ²²˜Ç dùãýá _.òà¥Jù2º"`„ë•u:î¼,ü`¹ââ}ì¿ßˆqüô¢A.üàÊ_Žò---‰D {}Õã¿UŸ¾íüãup0Ë}àˆ"Šp´‘#”ò'"å¥O`„œ²å>uýëëë“Q7•úåè_*•²}f¸ðƒ£~JþÖ×ßìÊ~±®¬¬Ð½Û`¡œ•}9â÷§ú§Žþ RÀ€FøÇcû©‚ N·rªUõÿã>xjÜ?ËWûrTŽå‘%pCLW¶;ùirD766daïG;;;íèÀˆÿ8ÕËEýãô/WýrôûrE¯Šþ©éÞx|?®úU³}p?@9ŽŸ(Üxÿ¸_!§¢¹:øÓO?u¤€Y`Ñ@tÕ´ŠÛååeYý{âÄ Ù·îôéÓvôO ý¢÷ÿã±y|?5è3ÿäù¹Ú7jŸ?^®"úrŠw;ÿ8 ˜ËÍÊA¤YõBDÔûÔ‰j\îKW,å8|IãB‹ññqõãÔ/ýÇ¿sß?úEÉGÿxØ–=žË—‡}áB®æ¨ ¯³V*—‹M8}ËÛ‹Å~- >Nó>±r…òíÛwä8z´ ûR9’Ç2¤úß¹Ó½ª¯ÿ\^^±— @~=„ðì<¿¯Jÿ²ø±`±d² ò Мªe±‹ò·711!Å£*ò§‹ ?Îpd#aCs°DH- 0WûÎ3 °ßÅŠeÈ7B(ŠAxN ³¬±ôñc²Ý–ÿòÅÕ¢Œî©éÞXùo?ÙWPØâ⢤ôªDƺ!#‹rè-ÿ¢~-§h9Âçîû§$P ppd/ê,!¶ßTýþüŠ=ãýÕQA̰X­½^“³{p_?Žþé<ó:y»sss2JÈýÃúíqe/Íýõ¸ .~*È)àÏ>ûŒ¾þúk¹Í¨ÕÎÝô‹D6ü /§¨½©‰ššÚ)UV—)ÞÕ&k4Ñ@"Üý"––1¿p#‹®TÞøGØÄs-ä©à¸O ËbP@®f©ã( Ëž» Ï@‚˜J=0û1F@Yíì3üLã0I­R[)Q4K ´IñcÚGSøPÀw#€RÒD”#aA…»6›ˆØgîSÈ©b.ÜP®.æ¡cþó?ÿS¦zY¹ò—áž}„+ŒÃ"‰¼~^æF´¼+l³0elQf´£*#Iç²FR“² %‘ÎÙÑœ;1ÎPÁ¨.›Ÿ1Ë‹¨¢ñ*GÑÿ1›/ã|ߟcÉa9bé±#m[Õ4°]ýûÿmˆ;ÃûÅZ+ÉC´pßA.0á9†GGGåÐ0<æ K$Ë\ÐX‚¦D¾‘˨~¯Ešš…Ðï¸wS‡FºlùkJ8—+$¬Tq•–ηòÔeýÝϹ¢ŠM›1(9ð¿åïÿ«÷>`À÷]YŠXxX´”²L±t± q»0qj|èÏOŽþÉÁ …FÝ>/Çû½(fá¹|óóyY]Ìz¬Aª¹èƒ—UP½f÷ÐIפÞïÏ X‡’¾QJ¥'©«Õü»Wôœ³¢†m£dpôo²×ü»uD¢ˆ*þêÇVDédà{-€oET…GŽó'"^,{,]<?ÆR$ 4¶ÞeäoCöéãJaž™c[ÛÞ¢Pó«P6«™×åŒ%QÒÓïB›šÚ(©ŠBŒ4u(1›ý“4ÚÙb á€Hv?ÂdÙ ‰³x¤SETiV–Nw¾µÄ‡…‡`‘‘¿Í·ô®ÿñÌ,\2;;+ÿvˆ×ÛÆÛ¨Šª´o­ˆãn `kï$vUp5wÄeD¯*x:ÍÔ̯JZBKúDú»] d&¨EÉx|==G_7={»Eï㟠P¤py@h†˜–û/þs52ïïn¤9 ¸öºlNegïI[íˆßL¬Ó½Ÿƒê´þJå2™‰QQ2cž£brÀ!ˆ¶< ŒrA޹˜eà|_E‹+|å`ÏÆFC«w9‚VOß=¿ièfE¾[·nÑï~÷;±e9¿0Ë G娄[TŽ~r$P àÖûÀ„±ËÓ@‹’¹J—yh3åÛÔÜF½]Ôâ.üÐ$QŠc²`oE PJË ÏN£}¼~î»§¦cIã¡[xê7–̺×o‚ðÜÀ¿ùÍoĺžË ^7çòèÑ£šU½µÖÏÒ«m#Çý[+KÙÜЦ~·èLÙ–Ó£¶ÌµqñFb]mŽ(_ÇФå3E¯Õz®“f´ÇÓ#íòñ?Jâ|/pË@„Ùšf­Ž±¹XãáÇr¾_þò—öÔkƒƒƒtåÊ9F§oëÙG(߬›û(û剿N Çb1šŸŸ7§«s_ù¸U…3~°òzù÷°©ïöÒTpF± e¸hl9ª„rŽFÚÌ~€-½ | 3ÅÊiTs¼»×²_‹P½‘:'ž[—Zîîî¦?ýÓ?¥ÿøÇtâÄ ÿÎõööÒ·ß~K«+«;R†·ÇâÃlúDéøy™z¶dQN5¨õ+Qà¢ú<²\²¼V‡»ÙŠñÜk¤†ZÅ!ñúú@ß¾vo¥±ñ¸{Ž #¤Q9÷ÿøôçþçô—ù—ô7ó7ô·û·õûOúS:~ü8ýõ_ÿ5]»væ^Îm?å,^ÆûÊã:ŽIüÊBËE*=ÌË8æÞÚ²ûøÙ}- ¬·ä^l0ùä(µµ¶Q{GÅR˜7€Ö(˜àˆ ‹STä(϶Á‘?†eïïþîïlÔééé‘AžšûôIÑܦ²Àñ8¼}–>Ž(òññ8†,¤iäexþ`{·­j¿?s¸—×;îóðA ?ÏÈ)á¨ÿxÊ5Níþä'?±£}üÓd)dXÿâ/þ‚Î;'‹D¶;Æ ÷áãmÿ×ý—¬æ¡b8ËL° #<-‹KŸñư¹^]-𢻇°Éwhìu>Èqœ’e)âèXTúõ¯M]]]’0Ôç( †¤Óéšcíùí§ìç·ñ–nÞ¼IôÙgŸÑ… ¤rÕ±,êà´¯pKZ9Ɉ6²ò Ïü;ÑC ¾WÈsÚ—+s¹ bÝêh§Lküãל={VFÿ¸o_˜øép_Á¿ÿû¿§Û·oGJËý46eôîuéµÔ•å)ŸÜ¯ðOþäOdzybb‚æææªUÁV•3/ϯeÔ¿2eÜ€ao €ø Pö…ãÝq„LEÊø§±‚£i###2úÇEQÓÀœVÁQÒÍ,k,§œÎýýï/ <8Ú÷OÿôOR9­|æÌÙ÷OVö¾£@|pÈÑ·1$˲ˆ¦±ø1œ&Ú/e‹ûòq0¨øC—A^†SÀ}}}”H$"¥›Yyèžø¿øýìg?“ëâ¡e¸êø‹/¾sGN'Cð½À-²úĽŽ4èqп˗/ËK`ø©"]yؘ‡EŠ6ò~s0“ÉÐ_ýÕ_ÑÑ£GeÚ—×ó/ÿò/ôÝwßíÎÜÀ{D¯_¿€=ÂdùãìN"g<óGóô~€î¨Ÿýãt1‹u,@.èàèd2™”øgögže„«¹_ßûø €†ZÕ¾ §_Y¥@m³‚‡Z¹té’3†%Ð/ÈòÇibž„+€¹_$q³Æí{ùò¥Ü¯ƒe“¥3•JIyU3~lmnÙǦk¿«â÷2úr‘ÀAÕìŒ7Ó«;©ˆåÊ[®fùãŽòqZ˜ÿfTŠ˜ 6~þóŸÓÔÔ”,8‰,™Bθà„Ç ä"ßýîw2ò¨öŸáßÕß|lúã~¿ë语…:wü;€~˜Ïç%µ-†·  €„úIMQÌŠÁcª)ÒøoYTQ‡£±”--.IÁ»zõ*]¼xQÍÂüÛ¿ý›´™ûüñz·#î´3O§‹û˜‚$0lY%ƵÖÁð4ïFÿO|ØàÎP¢£¢g Ï—Ë5Ns*”Ÿç4'GÜêÐqtSµ]ŒýDðý RÀ°E ~iTõ»"îøöíÖ;@=ž©„ªÔ±ªbë»–î ’Æ(2é~Œû ¢€~P莊é¤"l\èÀö®£€,|}ä}áHÏWÌ©_ã!ÿJˆ¥l£ô¬•Fv÷›„À&„.†ázòÇÛã‚%_ª?"ïêû$xîêÞ Tw­‚¿uºÅ@?È>€AQ3–› cã§}YþTäO3÷Ð5~)ì°¡]°Vú8ìAàô@õ;§~××ß„¦hiººÇ÷ ÛÇZéÛ >}A}ÿÂÒÇ~Û€Àª`X8õ‹˜g0hk^^ž?˜Çû“’Ø`ä¢P?‘sç4ž_”~~acFHÀ²` ©\¡°,…LUáòtqü7G¿x9î“'+uEqF¤Až·Ì4/¯'hy®8fÁd ±(X  Ïoª¸(Ó¦é3pèˇMË6nŸ¾Î°Tm­ñÿjè7sÈû,p×gÙNzØïq¿=ÂRÉ~?û‰˜ŸFÙ§ ~QfÑ_ÏÛ‡àƒ@î»ÆéKõSÉŒþ˜‚ÿVðßj9ýy÷²î¿ƒ^ã^Þoû<ì ¶^U¡ì^§þ:÷Ï(ÛRçEG_–SÞ@|ö.ø@ À÷1(„“@@@@@@€ ØÇF™Êes@Á¾¦<3A­ÍÔÔÔdÓÖ5J3å÷·O™‰QŠgŠx h8å4µÙâ×L--š¶Qùï“A±s’@N15d _'e¬Çò“½¶N«ËæÒ šˆÇib2E÷ºŠ9JLLP<>A‰tŽ ]ÌÏP:¡|1O©É šLfl©ô[ŸQHQ‡% c ÊÊâñ"ÍdÒ”™ÉÛël·ß_fÔŽøµ´wQl2I¹|žr¹< KÖŠëlq¤ˆ›š:(Y0×QHR³ã9Aû¨”ºä€ûu-”,¯/ÑëLE7u%„\&¨…oðŠ' € ^ÊvÊU§¹µ“&¬>xùÉ.óñ–šH¥(ÖÛfþݹêTý{Ç(™£VëoNᦆÚìhbgo—`‚fCÖ—O™²'híÏçEš:Eí2%=BE¼g4†\"Fí­®H^+%‹Åk5ÿn „¶DÜJ·ôŠí¤%|í”¶ª‡óé$%Ó3T+lîš°·º>!¤£­æö‡Re¼74š|2NC½42™·#‚¹TÜ. H´(ž!ln–‚xýÖˆùX3Ë›wýêµ­CIÏc~ëK‹4Òª"ˆ¼G4šÌh›]’RÅj!K˜ŠØµXQ<#Ÿ¤Ñ‘QšHdÈ('­` MäÍ×OtµÈ”oW,SÀ¤'è»>ÑßpÈ,S>—}Q @ÁÎ)\=íÛÚÚªEæÚd ¸œ±kïꥎ–ê01,l*bǼööêëÇfʾXs}mÖß"*Ø1šB O§bÔÞâªâmiw Ä<31àÅæ¶^JÛÃ4 ´é…$ÍÔK›éÞSÛFRŽm†­/7Ñ«U‹±E”Q¦¤[‡P@A#)Ša_xè—b1 øÂ(†>_.š¯<•\ØúäsEŒû@@Ao¶{À¾×:@€€ €8 ß[¼~ý:à€ @\ë@@  N€“@@@@@@@@@@@@@@@@@@@@@ @ @!€@ € € € € € € € € € € € ؃ØàZ€ @€B@'€ €€ € € € € € €À^FLê À{ŸE € € € € € € €€ Î @»@Àø{À[*W6ÉxGÛ“Û2ÐîÐýFå5µÿè;jòå%K~¯Û ‘ßQëØkó÷ãßÑ]*ÉçŒÕ×4ze•Ê{ìÛÄñŒLoÔ\6úþëÇmþÞveíý݈·ó>:ÎË»yõõ–§CÚ˜Œe—©Õ:¦ÿë䬸™¥äëÝ:ßë4Ô­Îßv´® š¼²D™ŠùwúÒ3j:±@E¿cünAlofko`òlœ~ðÃë”®xŸËݼ#ž»L÷Rôƒ?ŽGn ÿÌC±íq¹mý÷à×,S÷‘/éGnQö=|aH_§|šòmSuó¿¤CÃYÏsù»wäs_/ãž ûGKò¦Ú:<'nÌ 4r©ÊÐ¥å ÿÚбï¨ù¼)?—>ËR×7eù\êü´¼a÷Ø1¶ˆcxdÔ\6úþëÇmžÿuîÕ{Àm¼ŽóònÞG}½Å'yñûÓÈ7øÔXV,ÿœb÷‹”øvÎ|í.‰RYîÛwÔue…’Ê;Š8–Ÿð¾NS²¢Žã)5}ân˳ËÔv<ç+FûI‹§¤Ptß-¹ž«ÐéOY¤¦höE†>:z㽜‹W¼|Y¶Mý÷Àãy`Óç9¦Ý'uá2ýàð½~^7)Ö“Çpúq¥úxi–>âc;rò¸gBÁþ@–€¡'›5So3Š¿±B™ù ‰`ËyóBWç_¿%£´N±aqsûÑ Jäd«ò†R÷Wiâö MÞM%&†A™ì:Å:⹉d‰r¥ê¶óÙ2åKbVå>¤r5dNl'™ë¹ýšòKE)Gºæ³%š¸±,¶SÝÿýߤ™é’Ü߉d‘2KÕó¤Ž[ àÿ¶ð­ýšÉGkÕcÜeŒô>†œ—†½ÓÇ(Ÿ+ÓŒ8oîõš(¢xK¥Å>Åo¯:ίCŒV×)~†_›£Ô¼AËOæ=˜›ö¾§Åù2¥soªëYªP:ûÆ:Þ§´hwÁ36(9ž“ë=mRµÕ2MÞ^íϹŸ¼Î™¥ Ê=mS´Û|ÅySM}““8*D’×%ðXžr«ští//Ÿ›]¯F^íó¼J©ì›p©š_3?;‚ätõ˜Ìý3¨{-ÏϤØ{ý¡Ÿ»ÝL©›¥¢+íŒ2ÏeÌHÓuŽ4”{Qt<ŸŸ™¥‰ëš¸;W}ç–(ý¢*]åÅeJÏ”´÷¸(þ.úK¼øÜ¤¦²4qó)MNU×YŸ qêÇrüu??}èØgޟ좸¼˜“û>ù`I;ÿk”ûVû˜û0qwÖuþ7)›™5÷ïÁBàµD  æìÜ‚gæùpžÇÀsR™£¥ÈÞ ¬-…üwŒâsÖkW–hòf†â׳”Y4œçýEÉ!óÙÌRîv+:ö$,=jÐH·7µØ:fFøï3EÝÉVŸÿÄ›6+g ÔìIOæ(#.ÅGs>©KqAœ7kàïö;ÆR®K+vªPÇMš8“u=÷œK[Þý7Öià„w=#O6Çí@ƒF{üñ]`èûz^õ>¾”'JÕHiÐzŸYQ6ïùõJgòüSG»¸v_À ëŸö¤½'EÛ™6÷-gÝÌFO˜¯Wûg>ÿÒqŒî¶Ø{ß ™/=û©¢¥ÉóÎm÷>ÚðDCâýI=ó÷'/å>¾²¶}‹kµèy¿Zάú À¥çžuªeç΢{AsøçnwûÊ´¥Hõ&V´ãSJHô«‡÷„x}i½WM Çí(›É5J,Š÷pЖœu­:ÇD^¯zåów¼íxæ p¬Ï\·ãºpå9¯=z½(R¥·äzbs›Zºû²k,‹)óü?¸ç}ŽÓßòõkt®Ëÿ¼8¸Üõëòï±Õ}Š÷˜çÄ/¢W˜2÷飋s”·öïè×Kò¹ìõ;žít[Ï%‡]ç¹ô\žß¾©5Üg!€`/§€›>™¦f"ÅÛ³(#9¹9óÆv{ÝŒ´$Í›F«•Ö£_I+½Uð‰ Žu›7ãëV¸Ÿ·dʉ›Ö`Áü¦ZzMòFµ(þ6û²¨%WÍy\F’²vZMÿÆlnG-»A±Á§¶èîÏYÇb¥8*kÔÉrÙS߆õýW23¢¤Ê(S§ø»Ù#}Úï¢_ŸÏ¶qsý†%uã)àà÷1ü¼4ö}ÔÓºæzU´Øq~Õ{>\0#†«%ÙÑ<¿>ýÆ´×¾Ò"€ª}v}cÞh Ùl·ÚÎò“ù\lžß?³Ï£ÚWîçÇïgë¥×ÞhÚ#3ÅœàsU²Î­8yK2ƧMQâ/–Ð $Ë2ÚéŽx8Öµ¥/o¶‘Üí—vÑËLyWe5É}ÅûçI‰Š6Çòßr¾zÞ&‡§íseoÏúüæ­÷«ãF¥Æçn—‹@ŸJA8j÷+³¢‚ýO=Q8%%}7­e+ Ôy˜#ˆOÄr)Kºø=ž3Ó•‚“*rܯMÈŒç:qÜŠt©v<5e¿®Ì|uM¼.n¾OÖö?÷ÈÙÉ›æû“·¶sTD9U*ü`ÿëüÏÑQ)o"Š(¢q‡Xľ2ÙÂÊËžÒÓ³®mœºkn#w×<_ݼMcÁܧ³³v”×ûñWKÍxLI+¢)RÁ‡dÔö¡õ9X_¼b¦°.ª4ôT5ú_1—?ù{»`ÿK›£óŠ—40n¦QdÁ!â¦þ‰º©;ÅÁìß”÷ï‹blR~~]¤K"õµDƒÏl1oDÓò†jGä P¤D¬m´êE««2 åí×÷†z?© ‡¹ìнlRF¡¦©w¼@±ñ%ŠÝ(˜("0yŸý/.‰ýÍŠÔšHQŽŽÍÊ­W|½ÈÛèÎSü¾HýÔч©òì7Ô÷Ó>?J¾­¯`àû~^û>  ¾^%£ÙMûÆ3r̵Ž>€Õ×:Eé©'Š—¹òÜü‚ Ò¶,ƒí߈”hÖ”Áf)KBú––åßc¹·^ÔŽCEÉâZÛTí£ƒa}ú¶|ú:zέÖS?®|ÒŠ:{F½¢gÒªv¤ôD”2W¡wÓ_ vnÓÇÌmx÷ÏŒ¨³h‡î"´»gt¡ï§Ô'Úë@_õýë·T‰|ý1L ;bJC9cŠÜéŒá@³h$F}_=¡ØWiŠ]b àaÅ2–dÚòã¯EJsÆ\Ç)¨¥yeͽ-€Y±Íû|~Ã?wÚ])EÿŸÞ^Ûÿ•Vë¸þ¦Ì”âÄÊ&%XRWÓ’ºx©×Á#—M_¦CǯÑGÇoˆÏí¦™ÒìIÓäŸìW˜ˆqUìMÊèÜ-ß÷ؙΌÑG]õ `yæ¡O ÷K«cÑ’³¸”¯¼^èrČșwœÿì××íˆbyî9õuÅé᱌_ДF÷6XQ?Uá{Nôû“Ò-"§á…Mª§ZYl úe×ç`Ζ<ŠˆáA |Øhö!zA=Êö£p,û «Ñ%Óh â›­õXnÉ%"“}ë“ÆÒ«Ž­‹Ñô‚+zT*Èþ‚ÃZ_©\ÁÞNRÞ ŸQZïXþ¨@£7^Ë ¢¾ÿæq‹â¹ Gä¤%D¥œ_².Ä¢xezY¦ƒÒšn6V§éö··éömÁ·ßÒïgK * ?/ {Uº³TÝ®yÔ×[K£  ·}nQâÌ´-w…dUXe$0·XíÇz¾XSÚTÛÑέ‘]´SÉÑPH–QgP´Ë¡q3=mT !®/´ôµ{ýâØ.U T¡IUgrÐù#]ƒ>wQRÀ«ôûÛV{½ý-ÝN=£z®?*zw6eþÔÒ’Ž œqççöÁ:w}NsánUæd$ðEUÌ}R„’ª¶ãéºÐŒ¬‰!bV ‘²51J 2í̑͂¯œ-Ëç«("”3›ÎuŠh^~q–NŸM[¯Q÷LF¦r ?\’©d;íkE*iŽÖ/¯Z]tUnŸ~\ýÒmXÌis·–OÙç÷Z ØÃ)à¶3‹ÿF¤E5ÆDš4µ$ÞÍ.Yý„–hFTcNœ÷FÂÔ(fŠõݯø‹Cwž2«¢ w•:¬ÂŽ!­`Ó±%çßPú¶™v3û5©>€Ó4$ûY­šý”¬´­û˜V±Aï5‘ª,Q×±j±ƒaÉJsOžÒ¢š4sÁŒ–t/Yéîêþ›7Î,ŦßPQTlŽ ?Õ¤A?îêïjý­g â\‰´Ü£%3mìÓÏl7ú†½aç¥Qï£1_°úõ‰¶"*pcêœY‘G}½@s;ª¿ Šz·žY–•Ǫ‰/O៻w3´™Þý²ÚÎG KÎtMQzNTÎN¥ÌŽãië=¶ú§Étï–ì÷ö±õ÷iŸˆ™-€Ç§(³"ªßg²tô°¹ü©¨}+f¿ƒÙ€ޏvôòÐp†r+Ë"Z{Ù’>Öª)ä¹¥ošiÖƒBZÕ1~BÙ•5Ê>Hˈš·?ã–cyÞFuÕ¾Š×­ó|=BQZ…N}Z•XÇ9éíx¦¨3s}é˜ARžÏuþ{]Û®ö±Ë¸Ò~æMýµ}Óþ£_•ÚQ -ŸuˆÖð¬ÙoM¬ÇîŒ~¬ZQÉÂYОvVM¾Už}‹«)ØæcOÅ3ɼ¼áÚÏw¿¤´µ¯úþû|ÕìKeWNΊԮؿcÕ¨¤yÜúïo)y%çØ×fŽ–½ƒ*àÚïcØyiÌûÈÇ?yþ¹'©P_ïõG f ¸ä`, for the Debian project (but may be used by others). flickcurl-1.25/docs/version.xml.in0000644000175000017500000000001211600753627014104 00000000000000@VERSION@ flickcurl-1.25/docs/appgarden-edit-auth-flow-mobile.png0000644000175000017500000013275111600753627020053 00000000000000‰PNG  IHDR+#s„…µ°IDATxÚíýýs+×}ç‰óتý;2™à×T6É”ñÓfw¢ÂÖîNÕTÁ“Lâ ’IybTäÍöfr¡äË“€“˜pB¦3 3CÌЦ˜YmÐv+&l¦Ü– A¸úJ€ @ê+‚ù~¾ç©ý €÷ñ}ª^uyt÷yêÓŸ÷9ŸÏéµ{÷î²Ôß^«µ÷aév?2íທ„—QS}ojxïa¦„psbŤB|ÖÖ.A,OƒU Öz>âx>rÚÀžA“Š™8û>NšyµŠë¥Àr•›÷ËøœR³Z¤8»f,__Ø.õñ°Ú^sùßvñ݃Kb•1ú¸±RL\R¬$ +­B˜‚ûø¸óx>òu§8f3ÚÇ÷ ª_Q¬T³ñÀrųµo´q[£Œ£¼‰£8º>vµ×ÃY¾Ç½]|÷à’XeŒ¾‡&±¿^±’EÌX›š˜é¾6±2nP2´lIjŒo¶Ñêy·PzìÄÊÂöZÐÞˆeÚåaÌ÷Í‹b‡X‰g«dNÇdšf4ãéÕ %¡cö j·Û ƒåÁqüÔ+.®&(ŒJÆãÎ⮃LŸÑFÓ‹I·Q\h<^be‰öŠlïÄâvy8ó}y±§JÛ¤ñ‚{}ºä= pãb%Q¨_)CF£F¬žNg(“ÉP®p@M6«>m# ž^'­^§:CÓêd(ãÖàŸW óÎöV4ª×4Ò{ã•Ë\ZMйó6ˆˆih74ªiË'û·V§ÞØïÕ¬ËïÅo´†<Ÿi°òiTLÇÜ×NæYÙùïtµé€¿] :+ç´GÕrAÔ+'›+PÅ>&L8 ¨^)±@é ¥9é4;®H5½цŽòYçT)å)ÃŽ×Îæé ¦ûŒÕeÛ+¬½ý«4ÕŠ,ÿi‘ÿLz^îHCyj’^;põE~|._¤*?vê¾Ærí²B¾Yh³{¡TÈ©öâùÏR±\£¶9½‘º_]¬¬¶B¹ŠXÚ¬ÝJ,_Õ=ïw¼î퀠ü1éžûÅ{ÞA³Îî5õ›ZmϦ ãë_5uöo½ààñ+Kž«G¥t<Ä•$N©dìn`þϽÄrÚj;"µ<çˆ1#2µB ý®@>7(`¾8ÀÙ D÷·KŠíÀêºÏR3Àh4Ê”ˆª»T‘ÚÓEå‹S‰‰ÐóÄ2Ô0Ãë&¸½–s§Òr ê+A¥º_t5¿X :ö@µñ*í²L¾ ­Yïbõ®´“ÖUêþ!+SƒJ™Ä‚x·Œ½Ã˜å–é-ãk÷»¿_eª®ëöjYÏu²ÔÃxüÄJ,s@½AŒ^zAûnà1´Á«KǼ„¹=-Ž©ñÇD£å¾zÓ&¥–´_ÂEk\÷ i.ŽH„Š•…¤+®6hKÆ'0ƒ×-tœ×Ž-wŽTY]{ÙöZ\‡¾vŠà í0l{Õ%„ŠEššÓ«µ‹7ß½Úò;nÅÒe±•ºÄJòKï.£RôW++žU­t¹éÿ>ÁË’áÜ0#»¦I<öî­hý³š’$s{ɤâ7+VV1J˜(I{óX”Ç×|»ƒ…ÅÅܤXIR}""­ò¦˜P:½1@@9£Ú#ž×–êüÚ™Àk[Fï²í]‡ãf)äúiJ%bû8b—·D:Kù\&p…¢È æ«´‹«íZÈ*Hœ‰`ñ‘,é×T÷— °Å(Q,æg-–&}¼¼X ˜ñD"D@¦ìó÷jžU´dÉnÓ– ;{õÅßßïßäxÅŠÓ@2©” r±™û”·«ùKŠnxOiÜ«yŒÀ8UÙËø¦ãñJ~é>ƒÈaðŒõ¢ßU'0ÐþòbE¸¡ñm}=FßÔ`Ìf—Çö¦Aí£²nFÌà'léÛ@@ÌbÏóØ<ÈúŒÆ¹0 ¾¶ûøŒÏ¯ î­Ð^QuèŸeçe«8úS£œöåO^ŸõÅ”ûØ\ÍpÍüçâÁ×½l»8Û^Ëù…Rš½8Ñ2ºÍf%À•/IÚàšêþÚwK¸&%"ÅÊ æq}\bG³_š9 j> ^ÕʨY÷ô™¹øªWçýé·žU<É++>ÜÅW8]8>t•÷¬DÿË3ö‹ªDÑ‘fÈÆü‚jpÍbEÛ…äÊ[ǼniÛ/ijc*§<3Û¹º¯. ¡eˆcÊk ¯½Z{E‰SÝ7Kž*·}+d¶d« ùbYÌ»¾3wÅ65 gžLð^¡T,<ß—i—y¾Yž¼n^Ùª?f*`Õh÷r uÿ€ÄJ;@DUzþ{ÐÛ7×âÖ‹%ýßÉ-“îKÛeµ"ÛÍ»‹[^ÃÃxlÅJ,E…R‘ŠÅ0 T`;|V`¶oF4x¦wà b¾ßb% –Ïꎧr{Ö13pkÙØöF¬ä½ÜF½å:ç‹ЧØZY¶‹”$ÇþŽ Èæ‚ò]£Xñõ§˜;&eYØîP ±X†’‰øÂ^Y¬ä»˜oßÛïê~e7°8s &Ï,íV/$<ñ8«žþÍ ’vßð® ‘mÎWlb¾ûx½é«Ï¢0à1Þ L_í|FÙ3óéŸQ½âì¯A¬xg_—‚öÚ? ±â3H/ç;aÇþ,wíBâ¦VV¼ýÉŠY–•³IZõíìWn¶â‘òˆ•ê`¹¾ùu®¡îW °_¡n#ÅŠÇ….²AÅX/…»”z]ÉyªWs®:M¦nwӺ׵.Cm<€ÇX¬¬¸»V¯y7ŠP¬´}.:Ëã ´<ÅJÜÞú*×¾±2ö¯ÔU{Ë®¬Œé ²‹[AHgS7(V¼ùv»PE#¾¢X)^£XÑ®i70oÝÅCÆl˜3‹ún†êzÅãêÇ5<ˆ•(±bùš»×,¥˜X1ë…K +·Yg>WßÜï¯XñμóÏ,w7ɘ³yÀ; ˆŸNÇK‘߸X èOÙZÏwýÛÕŒï–/”¨RÕÈà/Zô½ß†Å»äÙKI{ó-rËÉûå”o¹sU&´Ý±r][{ÝÀÖb¹À÷œ´Ò¾­³ïúiú6Op¸}¥D KÔăï^Àãæ¶êû Êz`“EOÀ³?¾âjb%l[á ¦tàÛ]*Îb8ò,v#ç#Ï1Ϋw×0£š‹4 }F±¯Î¯b´²Ý´¼« ïû0š”e[éÆIʰ·¡—ÊjnR¬¬²:åß±‹o„àÚè`PõµQŽï7Æã¤{WØV °_©]ü±(|WªæÔ뎘Š0°]±2x±fæÀ³Ñ†Ùð½Ïˆ·íØ[V }O޵q‡ë*1ÿ{sð`ëÝÀ¸_xŠR H&ÒTm<`[3Ú½fíÜ´vù­‹C‚гåÕ T¬4£Ëðî‹ø‚·Þm•Z²íØ™1^Ñ{l…¤F%`lE‹•µD–jõsEõ‚Æ«­AÔñLY®>L{tMD–ïúÅŠ·½¢×ƒâ‹’9Òšl‡¯úoG/n¤êÓ ´åkm;à¾PnçLüUÛ¥YN¬ ¤è€íVf´T Š¥qíH÷芕°wûð•-½m^+lÛ´2}±dY7½j6dw°* Àã/VÖVN6Ã^†wÕ7؇»š-ò2 K ^7m–#íÃÞû°Ü{i\f–x¹âjFkÀ,éŠcç¦k0˜¶×"±0ù¢Ézd?ŒÅÃÛ+Uj^c»þU¡Xø#/Vî½ÇhQ¿ Þ1,P¬:çVÖwÌÀ£/V ×!V¸¡¢V+ƒ¥w8Š0¾Ù›®Í5ß;B|éÏî:6¬*Î<ï«p™q¾Q}¹Ÿü† †å ~÷[ʯåÚ Ûkñ5ÆÍƒÈ@êy?ʺbÂÞ¢ŠceãZÚeéz»^öx}uì÷»¹®‚¤Kï0R“í€É— îÜŸ©\CðȈÿÛç—…½YÛó>³Y¥t€‘šÈ”¨Ýk¸ã’n÷o>Š÷±Q pÿY VzþØTi¹­™ý/¹s»¬ŒCÊc®Cša°]©â;¤±wºäS‘Fñ¢ú3ìÞßèÞwr´©œK…ÄÄ(]¨Ìß—³B[,síèöZæÜðoS)“ €¹²æŽwPu«3Á«(9ö~ £æ‹§™·Íu´ w‰P­”£DÈË “æVf.w?^ªÝCðo¼šïÛÉË›fů0×Ï\:D4Æ’T¬5ÆÁyW¨²Uw\˜o«äL%p•´X¹ìíẮ“Îb zæôÏ=o&·Îm üÎ?fÏ &ÏÞdùYíetS³Gí¦.ÊÓl÷ȼ©à`ëîºu-ƒív?êçzÚkj켋ü½Å†éx0¯Û¦Áv>{0í"ú‡:¯ƒÁxúä PlÇ9£Ý´Û­m (ˆ€XˆÄ @¬ Vb±+±€XˆÄ @¬Ä b V+±€Xˆ€X@¬Ä b V+®é˜Æã1MQpeÄx:}ÜŸS´õÕÅŠI¥TŒÖbŒµ5EŒÉ4•5•ûHr—ŠO­ÑSÅÆ#ÿä®~©þ\+•©9¾¿y6´ª6M9øê%v%©nÞìuÅ$­}¨@w¯tΛ®/w_¼t=”Ž­Q,¶æ§$‰|kWžë.?o‘ýý”ø;êœ:¯¿D‘Ì¥Ê1 ƒ\Ê5Fæ+ÁýÓl)¶æÏ'§P7]ùsæ[´çSEÑž×Ó¶×7.L *•j4¾áþÍÛ9Éꩨ›+åiùr_nlY­¯\×Xv}8û“¯Ÿ©¿oêÚ—¯»Gçxw“õp³Ï…›²' *$­±1GþÜ'VÙ‹ –—òºë7úùÙ(¥çcÃ=¦-ûœºlþïx÷pØ…W+…¯Ì8å‹%*‹TÈg)¡*8SiÃøý/}"IÙ/5Ùü>´F?ŌЕgiyaHÖï§X×…qš«›ÊX-ˆûéÚ9Ïuš_ÊÒSŸøÒ•J7__޾x•zbÇŠ1)ž¦bIŽS‚BMª´é®8ׇ¤¸]¡äSŸ }A™…8›¤),e<4KI1¦‹5j:3qñÿbà +9vŠT²òÉÇUöÍ»òçÌw£ð!Zû©¼hÏëhÛëy>™•uucý[µsœÕ]¾>X)OË—ûrc‹ì+ùK‰•ËŽe׉³?9û™óïJ+Ügžñîò}èA?nÆž«q2[ªR½þ]úó‡à>±mâ8› É‹³~£ŸŸcqžµdž´zƒžÕ£eŸSWË¿süy8쵫ª0®ø]3TÓ6åxE¯¥©é¨dC¯SµR¡jÍ_ùÓA›jÕ U*5jöÆî8{ÀkÕ*;N£ö`Üy{mÒ›†+SÓŸ ·‹©I ­ÆÎ_%­á\õ™R¯Ù$c0uä…×Çñó¶{& vl­N½ Î1î‰sWYkš³lòÜ=Ó¤v]^»Ñ¸òÜî hÐnˆz©Õ›¡3}aùè5Ãë”ç«^«²ëjd°<,/â7Ó5õ¶kàëµ›ìü²nÆmêÝÎó?ç©5Ú*&é¢.+žº Êstù¢Ú=´ÍxþY»š¬}e¿¨³ò¹ðr ‘×p ƒŒñ’*j¢]üö_Äsj…ö·Ç±º&¾km±wˆ«^ýíe‡,°™˜X‰ûg>,å+—¯L*§c·†$Õ YðžVð¹<äªrU¦)Ôý]1`æÌ¨È%³r{^™•´\"ä±”×­"UR Iyþ‡áP³n9ñ½üÛ‘¯ºg9®yà¶‘Q";Àõ$]ÖÕuâ~wdјøóÑ£j.á9>EZOÓ«Ú+\îã˜ÁPω¿5sÞŽó:¸«þþf@þÔx³AO™béràŒÏ¢òEµû½ˆ63ëù7™8U ¿Ay€þê\vmWr¾c³ÍåÝ”ï·ñ\MÖCnÍîOâ÷¦&g³´Ž«~ùa6 .@ÅÆ`ayë;Îú¿§ùu\y2뾺Žg«âáV® úZµ®KͱëÞÍT µÄ]P÷òPõÅêÊõ$VâKˆ•»ªo}S —ƒŒwÜJ‹Ù,ˈâ £ªúIŠßþ{æ;C“L‡ß±t…bã@Àʳ½ò2À;ó&VœmÞ'¤{Z1é¯ÃX€ˆŠ$ÉB=`Ã1F±™áÎú·1NŠ•qèøèÍÓ`jP>”'ÓSnçØ2`.Ðaã¾W¬$#ÆÁqÄ8îËBÇ£iSÜ¿v»™5ùLJ–”1Ó¦´·ÿ¯pŒ³?-'VBúGÒÝsµÞ±3ü>[¡¯¨ñÖYþ–³í…¨q>|ìøŸC©QÕ¯V{.ö¡XŽŒ…}(ê^½Ï…;Žûç^t]GŽUŽ1ÒSï9íÕ¥î“åŸ;Ó•Ú1Ð&³ùTýÞ x~:ÝY]ã£jûï™Ò³®çÔåÚ?ü(xÅÊ]W;FÛ!Ñ6óÃ'VšeûÁaT2ªÃÈ›Z†(­A3s Î1e “b¦1ÈŠÎTl?Å\ÌR}^µ­ eû;Õà©òè e‰#ÙIÛjÐK´J¸¸ôl ùZS¬>xg%ËIùj[3تóuÓÑqSTÈNU3z aŒØç®®dÄxóÑúzÞ=8u)"Ø€9e×)%ÕuMëº »=ü®Î:pvP+ÿiª=j7ïPUoìF¨òÖ‹ò†¯áy*_d»O#ÛÌ2TãìXñ`5âÁ*´ŽüG^#`eD ‚qY6S¹1dveQv&Šz~_ù¸è{s#¯–IC(È•AϨb(§ëŠ]¶¬Êó >7*”gÞGÚ®:¡ç:sCcªD}‚ªí±ò••ç©´¾Y.W}­T×MÑ^‰¢î˜TàÇVç­`:Úr•z +IëšHP<gÄ(ÎÚÖôŠÇß¶K–zÐŒÛr /é²M¶ògå£b¯:ºïÏl$*1õ6cVäùb" ˜R¾Âay 3"£úD[Ëͺ?‹vO˜K’o\+Ò|2jÍî¾I åÂ2¸bÿöÎt–“αÕdÂ2nq-j|ôäIMÞØÆËGÆîKî¶ý·z¾$ËòüÓæA o¹s,Ôd=5™·,£óéìÿÑãQ-S÷ÌÜÂZäMŠãÃm„-{Lxß +Vÿh˜Ž2YmÅ#:Ç| K Ž‘Pî%æG*fݸ²d*3%fä›î|ÛåeÄJx€Ÿ{É1FÉ”[¬ð‡R>`‰/'5!ÄU/0_Ñ†Ö >Ÿ}³]ØR¬Þ2ÔèÉ]qÖÒUßu/'Vêóµ¤h_7ž`×dWe= Ïáå3ëí~vÙf–ß»s­}Ÿi¦sàZÔ·Â@yCzÜqBO6[‘q,a³:‘³ç!}Èt{‚‚mŸþ±¿m•'êæ½Ž÷¡x£Êåw«ÕµØÊY]îUk”űšt«”€[¬,[OW‰Yñ‰•x˜.￘½S×`a>¬ºJ/"îiAÌÊåÄJpŸã²kI®ÈÆ–+õ¥¡ýbårýÛ»š™²Ý‚„XÄøhºó45j.w—x2¹xv‘?o r©„Ë5¨¯7ÔDŠwŒ9Ü{‚óé5"Æ#åY­jBÄñóì)€<÷AöFXtÌåÅJ=ôžh0#Éš,Œ;ƒï³UÇî•aM€µk».ª×¨±Ûß—=X‘ýjµçBÔ}݇Ü«7ü\ð¹+ÔuĆ—½ÆrÏÕÚÑ×÷cOW—+Qíïû/ßþb—9×3Àiƒ}+Û!u€=ŸÙOÌì¥/"ûÛñ/A³ü¶rsùµ™:•Ù–n‹Ë(Ù2¤\^5YДð¯ q7°fÛb¬Òæ3àò³µLÕ7pÉY¿–js±bPV,9ɰnŽvÙ·²â|ø[ª”ßþ‡XÐ*P°1P/Èe7Ý`U? R¥!–þÄ HÖQfc¾Òe/?šó™¾\l ±b×)‚Ø,™vP¢J£·ÄCz^¾id»ß‰l3kF«Üœ,CÏó}iȘ†¢=ט^–kDÞãƒiφëîÀбbùÎ:Ju(!¹¨<ˈë:Þ‡ÒÜÕR.A'Ù@ôÙ/å#Ë嬯UëÚÚfVΘòñC¶¯ôѵÜ5übe™z Y Ù¡%\$„ëŠ>ulÕž”.YrvŠÏ)WUî>3Îǘ=ôò¹’í2%VÂv˺N±"ËçÜEŽgñ+ã+öoïvТÞíÙz>öÎǸèñÑ'ù|âî.¦k7ê=íÕ©˜/«±±êÑŸcK­0Kw#™O‡°pž± ùÎ&‹³²ò# ]&buåë›gƒ‡ÁÎc­NIßd9(%²E¶›Ìx]žÈÁÞsç iõ•,ë+æ×[LKÛo½].w}ÝY©®EÌAÊ æ“Ì>w)t´åJõt=bźOø¸Õæ»{•³²¼,0Ø53¯ߺrÜ®R&Sˆ|/Íý+S£¢‚½Ùö˜l—¦B*¶0f%t\ˆ'ëÊŸ™o}•þí=¯¦Æˆ{goŒ[0>:ó$E[‚ØnG¦c¬IøÆ“ùßÖù¹Ö7˜KL]îÞ“xscYf>FçÓymcáxÔ«fíÀkþ|1µ¼øßéoËsY±[B¬,;Ãï³ÞŠãÍÜÇ]¯Qc÷¢{5º_­ö\ˆ¼#ûЂ{õÆŸ Ã¥ûðUÅÊr÷É2ÏÕÚ18^+FE6¶p›/¥Þãu©t×ÓÔç2¼¬X¹Jû[±åñ ³ö\"`ëâeí*o^o3{?ù±Ýž>`±R ÚM&‘¢RÍ$ÞdÚ¹kV"S²gÜù,U6áÞA§Tï©€Ôƒ¹V»ˆUš» ô*‰½”-›t¹kYÁþrû¾’ÃÍ,Î Š„{f'®›ž'RÙ¬Ãå$`g.ŠT cйJ3ü†ñä£]+¸ÜãbÉé# ’›ŸŸìÎW|x@TÊ·Œë+O©ü‹˜—ûŒû¼"è½ürµEå‹j÷¨6³ãó]'øÍ6pUO©¿|ß{N¬’ÏåÇ£Gª/š—3–ï+Ê 9,ˆ:¢^£Æî«ö«ë{.,߇Äsá~÷áë½Æêヴ‘õËèzºN[p)öÇéìöÁ‚¿sÉ„í‹øp¼ñV[­…<üëê-ʃû‘µ¬˜[âíÎ×ÅM•Ϲ‹ÍõVc®U¬”ì™Âb©@)5YnŽQ?à1‚{¤YొÍ NxylÄJžíÌ’LåÔ~ÒC¾ØËzØ6wÅZðÛZÑÞ>õÆó–œ ™œýÞ’ûÁM•¿§'·À÷°Ä=Ê13lC¾«_*Ã^>Ö ^ÀcGó€m7O†>‹+±€XˆÄ @¬Ä b V+±€Xˆ€X@¬Ä b Và±+=Ê'Öhmmâ™ MoôZ&•R1Z‹Å(f§D2MÅjó•_åi-F%Ý\î˜i %jŽåÿõ݉úK¸9ÄÊu1Ö‹ÂЖĩ6¸YaPH¬9®ç&]n>±RˆËëçëƒ%„J“Òª®êJ¬4 O‰ã?”¯ãæ+×E5w †TIw|?¥^»IzÓ ñt@Z•*ÕµÓ%¿÷ ƒ¢+9­'Ž›dêúIª›óߺFÕJ…ªµ \ç™R»¡¾c×Ó ¯ÈS³^£ ÿ^cÇN-¡1 ¦®“10Ź+UåuL;W­V§SSü¦Ý3i´ £²p™Zô}¸XÉ×ß·)£ŽÍkñ»ˆZ[KS]¬ú ¨˜ô_ÓvÁ7)÷~Ÿ ZoJf=ï_Í©üÐ.CŽ];è7‚xŽÚL€ä<ŸgÙ1õü‡Äß?•û¦Èô]¡„÷øXFå?¬ÎÖ¨°ÌÊO‚X1*i('Šle¤I)Ëhn˜>q±OSE«Q>SÆwžz ¿+ƒÐÏ{µ¬}Îj£A¹¤üºBc£B1µ Se«m­(V:bñ,5Ù*G-§DNõ|ß«Ú~±qGÖ1JgæFw,™W/D4|°²°“W,ž¤B¥á7íjÞ^层ÕuËíê çˆ[‘¢¢`¿TrLZ1í:"S¢ÞÔ!‚¼n`ÉùÆóº‰Q2› £¢¦ò7víTÆãNô¢,ûS%6¦m*¦î]Ç 5µ}ñ\¬ÕF¶X)@¬¸-‰eX«`ræÂ4˜+|Õ ~>¶Úa޾g[³ïøõ¦AÇŽÕ±ãéå„ß!ÿ?äcæ7ÌWPpÈ•k+2$°³×2ß?‚«NÖ{VbyÏ‹(€XyˆS­”§l®Díñe¾ôàÁü…\ŽòÅšë­ó@¬Ä b V+(ð€G˜¯}ík0Ê+xø„Êt:…Qx¼Å Ò£—¸PX@¬ !!!!!!A¬ V V V++HHHHHH+ˆˆ$$$$$$$ˆÄ Ä Ä bb b±±‚„„„„„„±€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V V++HHHHHHH+ˆˆ$$$$$$ˆ€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V++HHHHHHH+ˆˆ$$$$$$ˆÄ Ä Ä bb b V V++HHHHHHH+ˆ$$$$$$$ˆÄ Ä Ä bb b±±‚„„„„„„±€XXABBBBBB‚X@¬ !!!!!!A¬ V V V++HHHHHH+ˆˆ$$$$$$$ˆÄ Ä Ä bb b±±‚„„„„„„±€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V V++HHHHHHH+ˆˆ$$$$$$ˆ€XABBBBBB‚X@¬@¬ !!!!!!A¬ V V++HHHHHHH+ˆˆ$$$$$$ˆÄ Ä Ä bb bFb b±±‚„„„„„„±€XXABBBBB‚X@¬@¬ !!!!!!A¬ V V V++HHHHHHH+ˆˆ$$$$$$$ˆÄ Ä bb b±±‚„„„„„±€XXABBBBBB‚X@¬@¬ !!!!!A¬Ä Ä bb b±‚„„„„„„±€XXABBBBBB‚X@¬‹•¯}íkö`€Ge€ÇR¬@¨+ˆ€X@¬ "+±€XˆÄ ×ÂlB“É õž±2¹ ­[·è–b}}1ÿÿæáM:Çìï-ºcDGù[”?j]1-‘£Îè¾”{Ò9beʇ”ÉÍÌlÑññ9MV<î:iïØmRipãyëçh‹n=W¡‘õwþˆý-ûæÖqupßžŸ1Q÷ð&«§«ÞÃך§{Ôáí¸y$ÚôFË~ ã×Ã0F§X™õé¤R¡££c::TñƳÿ³ÏOô.ZöùF¨XÑv·hO3®,š6ص/Ìû#Vº§´•ߥÎd Cøp•ÿPM«w}L¨²ÁÚeëô‹™3Üt^ mò»š+•çèÖúóB¬Tžcüù Ô‘·ÿ·YŸ^§ e°óþµ~xñ剷ãkÇÃk+Þ²_ÇøõàÇàIp›uÄêÆfÅ=Ë(ÅÊ&] MꜟÑéÙ9Éý½ÙïÒpd¹'ͨ۹ ³³3:¿èDÖ“!]°óµh8ÔiÓ#V†;Ïé){ ôèkØÇé-©ï&Ã.u‡#ê·Îéôü‚†“ õ»}1zof’aôi4ê“ÎÎyƾï+a6cŸi{ÌhºµCz×ÂÁ>NÑïçS^“¹n ;v~"ëc6¢–ÎòwzFz«o—uØ:BnûH§¡9q^ìÞgþÙ,2켆A}sæ˜æÇ åqªNÌ>Ïûµúf ˆ²Úáì\wô yîáhDÝ YžV×q|D}ûÏßqõ­¾Ñuj÷½n‡Œþˆ•yH]•G)V*¶Xy.T¬„åßj;“¿%êîü˜×ñùŸ™]:?;eewß+V¿çí,ú¯³O,UçüÜF๗ïoji»Â`?fåͤXÙ8ÔYý^Èþ×™÷ŸÅ÷ãjý"¸Ïyó¤ÄÊF…ýžÕeÈuƒó$¯cò{¼%ûßE§Rvïø%ÛŽ·«ç\÷[p¹î×Ù'ôg1޳~%êQï°¾+ûÚìRí b庄qÁ°á™a•bå–£–)f&Ÿçÿß×Ùß&o{·KFЃox&®å=§+:Ûßô|·MúðÞ‚kLØ,éºç»1Ãyqèþ|ïx_ü«3#stqP¾ :ëÏØŒ©#l–·wñ¼}/ûÉŽ÷z[tÞ—†ÏÅá†ÿ¼û4 ª{&Ö¶½¿Ý>fWË]Ož™æþ©\ ;éέÓþ[~¨üèÐn·{*¿ëâ8ó^@lk¾¹ÃÍ >1’ç^÷·s"ݱ¢êÛ} CÔɺ•ÇÑ9­óßn+#­K;¼¿2q}±ËÎûRb%2ÿ!m·u\7žüuÿý²Ö•§¡É2ôß…uÎèžîûÎm­ ,Ûß&žû¹ÒzK¸yÝ<Ôm#8ü~¼·Z¿és}_ž˜p¯lù˳Î~»0OÁýo«rXöçyêŸûÛ¶¢#Ëu¿Æˆ¨>¹¨?B ùû¬Ìã í båa+{ÒÍæžyá0"¡2¬·N¤a6c†YpŒÅ„N¶äñ´\16l±bê‡.ïÞ¤C»ëÒx›E\ÃÊç®2Š']ùÝ&‹Y° ŸÃs6ãß5¨×ä¿}N¸¶ÙåcnDµ„lÅÊÅ´ëB×?ÝUÆ¢¼ÞÌê¸ù5e^»gû!õ1#mÛ2b&®ßîhìØ‘î"§VÃì6Sõ³}b,ÈŸ5›>okév#ã>œmÞç3º¦[HŒ.ö]Æ»Ž>!_«}'t*fž7…ëÍ¢úv^ç|]¨¼îM}.@EÛ‹ÿk\TÚe9±GÛõ]dç´K`)—4Þ¶ç˜ݢÛAöû]ê*oªó^ŒÖù½‘¼?¹ˆ•ƬI'Bœ3¡4\¥¿Yˆ«êþ«ðöZßaí5S¢.Œ#ïÇ•êuAŸsåÉ_ž¾£<Ñy²úŸU.nÍïaoÙ­>¢î¥[ÛGª~™àî—,o-è/7?F,è“QùSýfsÿÌ®øý8Z­}@¬<ÔbåØ˜ØbãÈ6:üb…»XììU蔹˜~ÛCÚ_÷\Ç<3ÎÜ ¿ÆÝ:íŸh¤œvªÉ‡'3Z‡×†Ï­=׬¤åâáõwòïuaðYÇu*›â\ý@#^'¯' i;vâxÛ6|>÷*ï~Ñц…»Þåìðúþ…Ý.añ<ç{ëÂæyžíÚ3¦Ñù[N¬ÌÛÜÏhØg®$Ò™+ßqeOªM«OlH‘8oßs»}շߨ^åÑ÷7ÄßÖJ’q¼©Vî­,V¢ó/aµ‡™ÿ×Ep5ûÝ뛬ߞh§t¼¿5_5d;º ûìºÌ]çüô„wçß-ªskååÔ9ã­êu_7Wèo÷Û½}|&V6lcq5±eÜ28 h¨üŸ[nFëªÿ²7·XßÝ}ÔíÆµN[Û^±^çr—© ÷÷®ûfÉþ*V.<®bV?޾Wé×%V¢ó´Êuæ}ÄƧýÙ%úË  údTþd¿q÷×Ig^«´/ˆ•‡X¬8w +³áÛQìD=LYkçTšëõ{Ê}Eø”ïÏ?S.[bÖ´"Ýf:ÎàÏ ŽO[,È4üòa¾MÙ<ŸÇ[ë,0½µ„Xa³õÆÌ½Z¡Ü:¬c'žã¤ùŽ|êÜm)`E&Ú‘+M·vÏŸõçn wJ“ǯ3ÚeŸû¸‡åOµ¡c3ñûÃ1ØžçÝ‘k–wÃa”:w—š¨¾j°¨¾}.r¶ÏÿÛ3ÁÒ(;îL.%V¢óo†ÎUºùêWTþ‡Æ‰t©¹pµQ‡NØV¹-æÚµ§ÜŒú–áØ=ñˆ•ð:·®{Ôš¯¼X®pÜlu±Â ØY°Xqæ%ê~œ]¢_D÷9+O VV"󴜷Ënõ‘¡\ÝÝ;71alb}¾y°¨¿ÜôÝ'£êݺ÷*Ž>)ëosåö±òÈŠ¾=ìL^›ûó·7ÙNPr«Í€wèÊàÜ?e»=õ/hoc`og}»B¶#’¡©Àê‡~Y_S.8Çì;¶ÓØÉžô?.%VnmìÒEH3én³¡Œ/TÌÁ|gyœµ¢Á¯g°¼´NUpîΩxȯbˆXøžÆv*c»ì©Ü;Z¼­³q²cÇsXDçO¶!S87ºÔ:³ê`9±ÒRÆŽÖÒÈ‘_”mÅ ¬SEĢåV²¨¾½ Ïöìàjq¼~h¦wíü„‹• ­‹£ó?ŸmÞÜ?»QYߟ8ÄVpþ•ðdýEku}›×e_Š•­ k6¬^T xÅŽYÙˆx?‡:ž òS¶»ÕüxÙæ+‰åR¶ÇV¨º£»>qéœýºg+ö‹È>çÊÓ,²<Ñyò‹elŒ£ìvªÀüm:c;”Y!|¥²¹ ¿Ü1"ªOF×»)coØ÷Çlçºóc+Ø~s©öíž>O[Ì­±‹ÂbåÁ‹•VàÖÅ–S¬mºÅJ^3£‹c÷®3ë|9ð!ǃƒç3äë®Ñ.s§ÙpžgkŸ:£{ ¯Ásî¶´}x¦ ØM—‹˜óÅmv`óÆ|מÝ{–ß ìåÆ[ãÂýÂ7ƒªÎëmîÛ3ŸÞkZb0ø¥Ž&ÛþtËå"dåZíùšá©g§Åù3[ÇŽ:Þ ÝÝy~ýmîq‹2·çŽK[{Ì5Õß_ùw—âªr¯YTß>Fr[ë {W0ëÿçC.?)¤ý·³o®’ÿ{;QíŸK埯0î¹Êόċ¡lÏn^Û{{2ø™åqQKw$v7œõÊ ëîdõþfÎwŸÛg¶ˆ1rÔ“,ã–í:~?®V¯Q}Î'sayÂó4ò•G¼`r=è:=WámçªßÍ=j™‹Ëu?ƈ¨>¹(÷f¬·Õnb뛲ÞìÕ¢ÛWÜOxÉ%@¬@g+F%#úD‘­Œ4)¥Œü‚;bR1a‰‚4U´å“1%jòÔ[øýòbå^¯Jqqýi¦[Hq×4³Q°EH"["­VRßóÕ &õjY;ÕFƒrÊå,}³q8@¬\;*(¡‘(hÌ PI­d¬¥”?#…†rÏ25JØ¢bÑ÷+ˆ•{c*%å¹2µ[IɹVZæb%MmKldìß|S¹•­%ò¤1±¢UröÊK@¬<:LÛåˆ`÷„ ´Ÿ‹‘’®Äȸ¡V4T7}¿ŠX¹ÇVG¤Àˆ¥ TT.]ÙjO|g‹•xÁŽE±7ˆçé$ x_î2-š€XyÈÐr {°d2©HPÌh?#™J[‰œõ·X þ~5±roªÛ®h’5Æ÷Üb…å·Ú“ŸÕÕ9bÙê<`Ÿý-òÑ«S©XbAøM¸ˆ•G‡(ÈÕÜÛëŤ#ÐÞ“ÂH¦Ó*®ÄŠYôýŠbEˆ¨y|,Sµ?wƬp!”IÏWRrµžk æT6Gé¸úm² ± VœñúÔó½è¾Æ^ÒxG‰‘¥3©¹ˆHæ©9vº‰…}¿X¬$ÙN_aîiÇK"çyŽQ2³“.j¶iWóöÊÌGŽt¸€ðPÀnÊHPGÄÊŠXb$I .jÆ& æ ߯G3’^VAók;Þ%VøÎeüÿ„?xŸË”ç}gŽÑQxD D ±ri±RˆË8‘à õE߯ðà ŽOº^Nyoþž¶%2^öÀã'R Zˆ•S­”§l®Díñe¾_%ަIù òO¥(_ÖÔ‹!b†Ìr9Êk¾ï—P` VàǦ@°+ð@…ÊM ˆXYl<¨ó+BEÆÃp.b T®U\@°+¡|ðÁt÷î]Úßß§ßùß¡_þå_¦_ù•_¡O~ò“â3þÿ :Ú€EÂâ2} b€X 5VÛí6¥Óiú£?ú#êõzôãÿXÀÿþ‹¿ø ú­ßú-ñ­h{ •Ëö)ˆbÅ7 úý>=ýôÓô™Ï|†Þ}÷]úÑäGô£IÞÿ}zûí·©X,ŠßðßòcÂÎÇ_öcFF¡>˜ÎÞ©’‰ñÅ^`¹«Û?Ul\éœÓAƒJ%ù.™±^dõñÕï>šmÏ_ZJÅX;Ç/üŒQ"™¦²f\9¿c½ÄΗ¤zÈ Kk¥25Ç7W_Z>)ÊSl˜×vÎïÛOé®õ÷‡ âïËŸÓY×ÓGWYU¹jŸ :wJô£ÕzÞ¼ ¨Œ‰6)éæÂz)&ؽRκw¶Éåêcˆ•kc<Óîî.=ûì³Ôl6é­·Þ¢·‡oÓ;ï˜dšïÐ`0³¡ßÿþ÷éÿøé _ø‚8&ôœS]ñ|ÝcdJ㵤ÏÕrqöY†Ú‹ ºB\¼É~±bÖ ö5sµÞµ …­ÑO‰²Ý¥/}"IÙ/5¯f¬æ¹±%Ë6¾]¡äSŸ }üˆ¶=3 ^çqö2Ï’0H ù,%T;d*í+å×lĹƒÄʸ‘Fký¦êNõkѧÒ4½.±Rø­ýT^ÆÍ/eé©O|éJbÅ]×ÓGW+WíSAçNªzO•Ýå˜ö=žwNŽ„õM& bŽqɉ³îmr©~бÄÊõñÆoÐïýÞïÑßþíßÒ‹/¾H†aP·Û‡ÿê«:ÿÞ9U*úƒ?øñYø9§tⳊó•F!!fF¹Ñš(X³=ÊóÕ–LÕ>¶×¬S•]£ZkÐ`ê+ñµ ]|_«7¼Õ^å!™¥l’ý›(¹~?ÝРÝðŸo:`F–Á +ƒ´j•å¥N†é6>¤ žq›zw§Ž™Ê¶8¦R­Qsà4êÇÔÖYÙÄù4jöäwSvƒ,liÒÚñ;ã¶áÊ«¡ÕÉ”ÕU“ÌÈ35Ö.UªëÆCÐörö𝂹ÚgÚ¦Ÿifåt®¬…µ7/ŸU_µºnç+ft]gís—9ÃÎÚÒœZíѤZµÂò^³ë|qÓ«eEÎçR"5çj`äùd[õL“ÚuÙVöÀ#VäŒþônnÎI“ôºÕ¾n£×d÷‚¸VU¶ýTõ3o=øûhpÈ{bÌþ•÷XUó¶Ér®ZA}ê…^ ßøß _ÿõ_§o~ó› ûT˜XYK\z)e‹çJnð=#ÅJ<_c}K÷¨³œuïlëX]«‰üjE÷Æ+×ÊøCúÃ?üC:==¿üòË—üÕW_¥N§#þ柽ôÒKT¯×iccCü.êœíƒ´p×iŒ¥«%‰b¹ÑÈ’ÿÝ@£832²bæqLÕ\Âá:ÄI‘Ö³ º¤ç;n åy‚PçNW ed®Ñ1°×y>BÎgÖóþï˜qZÇ; †»”çßå¾)ì5ÿq•mjP>±æûŽ»5òŽ2³zyU]û›w¥TNÇ<Ç%©&òaJ¡ç9g²PÀm¯ÄJ¼à[7älsA¸PEµ÷€¹’yË&Ým±ÂûÕ n»}õäÓîzg×hWr¾úÉ4ÕÌwT•kL%exšf]ô­dQw̤G/¸­ÒeÝg×sü»œì×f}¾’£ˆg«B”4Š)ßù⹚]Çóz¸ãê£QuxOÄsÔ[Q¬õ©_ýÕ_¥ŸþéŸð¿õ)ïùù$G:›"¬j»‚õ(Çê5–H8VV¢ï™b"¼œuï+fCº°:މ¥Ë᫼{@¬\/ßùÎwè/ÿò/éüüœ^yåa¨òÙÐ×_îܹ#þæŸñïøLég?ûYqL¤/´rÏ(êìáfÖd û{\—.*56[(ÿ–3Ô2v…¹LT•›ÐX—BJºÛXb¥P3\çl5xF¯YNÉX>+9mˆ™ÙxNsÌfËóåÕñ=Myiæ¦d*ƒ/ž9³ŒÌXI ƒ‚Ϻ ûoæ"$fSEeÜ1#¯$Ä t§ž³ ;~‡<*?õÂ\ÀÝ×þð7*eLJcjÚÓ¤ñ*òa^iª¦Ê¸X› ÁÖöb¥Y¶ÊÈö7„qš,Ëï¦Í[€È¶I²™àºlVþ†é qÿÄ }áz–*©öP9“†_ïÞ‚6(W¯*úp¦"ûK%½ær_Œ>ŸÕV)ÖVRøTÄŒvBˆ.§a<ÿ{ª®‘ j[΄7J²ÏVZ߯põk¿ökô3?ó3‚÷‘,ìSÞóÇŽ_÷å 6m—Eý”+»_-ºg„‹"‹›“í`Ò(B¬Ô…µCUü&eÇÕ êEéÒˆ±çJcˆ•¥9;;Æ7¸ÁÝ€Þ|óMákÎýËùßÜMãµ×^£ï~÷»Â¸àÇ, 0†ÅA›¦Ya`êSiDŠÕlÝp<(ëb–/F¹ò”ËtP9Pùrf׳"Wkb#`ŽœqåÆd­ ´™»…üJæ!ð|¦}>i08gp™»‰pcË’f0)ȆÝx`0wù³g0÷æ¶S«R©uPî2/Ò¸w âsk–Ý2„J)e\Y.- ‡”°ÏóàÚ>\¬ð,£2²½•Xáß§³ªhÌ lìVà~¥ÏbÍP;¿¿7¢9§ ´qHð57úX^øjSÍ28µãÚaç“m•(é¾¼ðº6’U|…³3—°vÛ®]Ss òѨ3w¦r‘R±y»]åæ}tQøî ÕA± Qb%¨O}ë[ß.`œú§ZاÅŠ> ‹2Vαˆ·`ùM”™«RÉîWKÝ3…†O„.jn˜—Y-³þZ9(H±ˆ±çJcˆ•¥¹¸¸Û‹r¿r>›>Å;F£½÷Þ{ÌíÅŸqƒ»m<÷Üsâ˜Eç­fx r‰ÊÜÀH–•O=3fùƒ.Wî ñBÝ5ÛÇ%±8ÛA*EÉdFÌœ7Ô»ç4ŠC‚eÇÍR€+…àm8bh2¾óñM¤ÁP.lN·6>[l0˜jŨàF45j.wžxR–u‘Á ¾ØËÕlƒ¡îÙ„`5ƒáúÛ>\¬ 45S_7¶÷ØÐ(—J¸\aʺ9+j·±x®(VäÎFqw°½ÃøŽnco™ ÊÆ‚ûï×cûÚaç“ÆhÞ¹B¡ò’[`$ǃÁÙLvÆáJOcu‘XYT'¾þ3– «Š•ëèSAb%ßÓT—Æ|Å}äøjDµÇ>+Úbeá=󬈸ÊÐÖ.†Î¾Êê;ÉîálYÇØs…±ÄÊÒð@ê¿ú«¿¢/~ñ‹b&”ÖV¢ü_þ¾[w zþùçÅoù1 Ï[ÍÎýÂÚA±–{B]<ÀÙê‹óøú•* åæl ÷ˆ cN¸ÄðímY)Ï7gjêb¥‡tƒ{AâG®Í †5*7§n6!³›j†6[sùVXùcYúÒŸÄ•;éšI{ †±Ç`¾í, ݹun.æš­¿ªÁpým`Ï7SHÌì£Ú{Ü«S1_VmÂyõŠpsqÎÿ.Tce`—šãèýLežScõ£Ï~I®¤X ØÔ³…é©—Q» N®"Vœ‚åª}*èÜq•G~ß‹“rÃÞ¦‚cÅnñ=Ë9Ú¡QTîªft;¤«®zí D•FcÄ @¬Ü¯ík¹ËÆïþîïÒ—¿üe1û)Œ•¬ß‹ßðßFo_;w1‰[î:ŽY¿©=û8wþçÌHHg;ò4µ¢œ-V+2ÖL|"W¡ÛõÆšY.7=ùKñX¶æË®Œ[i ÎÏgðóeçç³gïãÌ•Ã`»MU¥q(cÜÛ‡ÎÿV;›±2U›=ÛÀæ1ßQ;¡°ÝœLǵ*æ@ºD%Ù{HÚ.ƒÁÚî9ÆV§šÌ%«QQA´é «¿|ƒáúÛÞÚº8AÅæâÅ(óÒMɱuqT{Õw‰ÜµY¹Ûõ²t]aï”p¯ÊÅ&-ú‘åæ”-U©mÞ¦¬êc¶SQ¯Y£tl.–¢Ûؽ³“ŒqïbætkK8ŒÌàóY>þ1wÁvk×d‚íâd$Ïûkö€íÄÔkR1-ã+¾õbI‰&ÞÆûZâ~{ëaèè£Fd\—X¹jŸ +e¼«U¥”L‡XYtÏXíPd÷o¹êÝ– `¦¤±±Ç j>³‚±b Vn>ÛùÎ;ïÐW¿úUºuëýþïÿ>}ík_ŸqNNNÄgü;þþYô‹³éñ¹Q6÷½—AžÞwU´k%nÔŽ;Éé¦;f æø>_m¼ß oÏ”I £—¹ží.–«4ÝÁÒñùn8ñLY͸K#á)á÷îü›¡Ö)wœ3‘¥Æ€^³ué:”e.NÜ÷^ÎâÕœíêôÕS÷‹ÙšÌXq–9‘±‚£U„Ãÿ^D+ ×ßö¦Ü5ËS·±DŠJ5÷;VÂÛ{JõRÆ}< 6¦ÖŠDÂÞºØ ÚçmÊwa²\^x Æ”¹’¹Ú#–²ƒÕ£ÛØo€Ç'XÆo†^Œ<_À.T±´ÚY‰zOÍ_Fèø›WÉ%]®pEñbÍÛ ŒÕG6›F¸ï®zxÕÝG#êDÌøÇÝb%`å vÕ>å;¯Ê‡\YámWt½¿ÄZ¥²Vi#ï™ïgIW;h½UÛ­j¾0ö@¬ÄÊ Â]3¸ÑÀ]?ÿùÏ‹Ï}ìcþ7ÿŒÇÃ{sy‹Àî9Žü~|Å·BK·ùÓs>§ß8d˜Ó•Îmæ*>7ÍñêùÊ2›ãécØöí}©r³ç<¿j«¶ñ½@W±°ó9»y™Ì•Î=e1¢Ï{WÅøuع¦KÖÃâ>ºQ«+—íSQç¼Î{f:6#êî^Ä1û>{@¬<€–÷ß_ìÕjµÄ¦9üoþÿn¹•‡ŸºzssÐV›VÀªf>9ûIjû›hãèóÉÀîµÀÕ™G—EÂâ2}êÚÄ Æ+·áÊg;g³™€ÿý8ª"µV¤l¡øN þN\¦@Íñ“×ÉŸ„¶¿‰6Ž>{&Û2¶X{üÞò½Œ¸X¶O= Bcˆx€bå2"ãºÎ@¬X(4–W9+p%Ñ$Æs1é0þnñÑkÖ©Z­042̱’(’1hR­Â~£éóc§jh5Òêm±‚c]Û)VÆ=v;w¥Z£foº0߉¼&Î5›¤Ó*Ï)jŒœå¥©ë,Ÿ&ºÆ¾×¨}§§>“i4¨Êò_SyŠóT©Qy=]ü®R©’Öh»EÓ¸GÿŽÕK­N=»î¦d44ªñÏÆŽ•ªA›´šg^ãé,eÚ·æŸeJ5ªçâ#‘; ­’·ËËÅ»<,î$i]¯A=£NÙDLü–Ç¡Xnu±T‘šƒ*ù”C@°•¬ÄÜ lÚ.Û×M³z¬–óvÙ2Ãõûµx†jl%—ŒÉ²ð•&£"Ûr-IU¶úÒÖŠâøX3U~cjßsˆ“@±ÂÜÐ ²É¸ïºÅ†)\³r)µâáp1ËV}bÅ.[N›Ç¯8ëÑó{gÞÊ¥®ÉV’>W±4VV VE±ÂËkŽ˜ ‡Ñ7WÒe]˜7)›ÏðÏ]«˜ÐéÉók¹ÄÜðŽZY±Í(ƒz@ÕR‘Ê•µÓ¥bVœ,:_´°RŸyò)VX°}ò—Šl5Å0XÐ{E¹I׬v£Fìúõ&lƒ‚R&n_Ë+>Ú[4õTÞjYùûXÆ/n¼beÊ67¨²U±b™m€`° öJKYÄÈàÆ€Xy„ÄJ¢ÀÈ jÏüdz|V¿á2ÖjÖåæ4Ÿ¹—®Tîû‹™»>‰Õ˜¨˜•{mÊX« É,å2‰y|È "ß¡ÛGŸo‘X‰;&he¥Mi«îRY*• ”Vâ.[ë1ÑS"0É\²Ê”O©ÿ³¡©W|ôn\Ìe,íX­)©€ü(±â\UJ3W´r1«Ú•å{Œ›bå!‚Y©€%ÁÀˆˆ V V`€±ˆˆ V V.'VÐpàþÄ Œ1p@¬À÷Ä ++0ÆÀý±âáƒ> »wïÒþþ>ýÎïüýò/ÿ2ýʯü }ò“ŸŸñïøoÇÆ}RËþ¤•b+ 1Æ Òv»Métšþèþˆz½ýøÇ?ð¿ÿâ/þ‚~ë·~Küæq3ÚŸÔ²?‰å†XÄÊ#fŒqã´ßïÓÓO?MŸùÌgèÝwߥM~D?ú‘äý÷ß§·ß~›ŠÅ¢ø ÿ-?&êœf£H1vý5ñDŠJšq#e×K)ZKÈ\á˜ë.{£˜dåL“>uÔE½ ÊžÈÕ¿R% ÌïX/²ß?Eõ»òÿ†v@Õ¦y­uuím>nPÊÓÖ±XœR™5zÓ¥ò4ÖwÙqI»ÜQL *•j4†Xx¼ÅÊx<¦ÝÝ]zöÙg©ÙlÒ[o½EoߦwÞ1É4ß¡Á` fÚ¿ÿýïÓÿñÓ¾ðqL´X‘z®t@’r)O eÈ–›ãk/{£§µØjbåºËnÖó¢|%Gù´|\ðYjÛ¿mS†‹·œæÏÓí %Ÿúéc.êBôåê×+V®½ÍY>yÛ&²y&"ŠLä(—I©r'H,ÎÓ]Ñg>´”Xiä™Ð[˯ÔÖ+€XyÅÊo¼A¿÷{¿Gû·K/¾ø"†AÝnW«þý«¯vèü{çT©TèþàÄg‹ÅJœSÏw½ª0¾3•¶c–¼Mµj…»FÍžÇ ÷¨¡Õ¨Z­RMkÐÀs>ÓЩÊò¤émÒ ‰•ÅJPÙ_xáúßø úõ_ÿuúæ7¿¹ZÙMi´§ÊMõYr1¶ÊHH‘Ö–« Sã@ü?_иצvÏ$£Q£J­N=& ŒÛ†X54ʲ¾ÊìóU7&é¬Nx~´ÆåV©®½Í™X‰³|îö3u™ÿµL…¦öçÁù+½f]´oµ6oû©iÐA6.V°´ö ò·+€XyÄÅÊøCúÃ?üC:==¿üòË"NáÕW_¥N§#þ柽ôÒKT¯×iccCüî2beP/ #=[ëIS+ø\ÅrU)dÆÍƒW² 5Õ9›ß±«º•ýWõWé§ú§üïÕÊnR1Áò‘>ƹQù:Дeÿ&KºtíªdÄŠCƒ­žÔÅ*Á¼ Ï”žÿ~ó®Iù˜Ã…._gb¨A™˜ÇÝ*]^y…áÚÛ\‰.¾¼ßU¹»[,G=!æÂóï+cªæžöM‘Öã«*ŽÏcyDüb+¸XùÎw¾Cù—IçççôÊ+¯ƒ•Ï´¿þúëtçÎñ7ÿŒÇgá?ûÙÏŠc–qK¦3”ÉHÒ©„mHÖMö»iSÄ9Ä2ÊØžRM¢IfÄO©œ”⤭ÄÉ@ ›«>Åû5F£½÷Þ{,àÚŸqã•»=÷Üs☕ÜÀØ*JVªq:hU0ºå£x<Î`ÿ&’”d§¬›Ô®än=1J¦œb%/fëëc‡HŸ­&Vn¢ì÷¦ºXõɱø‰´sÕcP¢-Pº¿âÝÀ+VlÀêÐr¡’õÅI°úJR¶¬¯ÔO®½Üb¥–‰ÍŒùw–ÛZm²ÇvãÂ7™Ì0±ç®³E¿…XÄÊ#,Vx@õ_ýÕ_Ñ¿øE1ËÎ Vk›Zþ/Çß Š»=ÿüóâ·ü˜eÄJÝi,²ø ±ÂÂf¼¹[Ô´Y–î;ήLíVfÛÝÞ«k©"– i—m±b[hÌ­çWß ì&ÊÎã-Ê)KdÅÙ ‹õù€òñyìMûÞ½¥ÅŠ \W+éªãZSÒJTiôVê'×^îûi[ÆŲՅùw­¬¤; îÌsý€J•†pí²êl|oño!V±ò‹n”rw ßýÝߥ/ùËbf]œK%ë7ÇÇÇâ7ü·Ëm]ì+÷Ô»P¸ T±a̓F›¹|ÕíÕ—ºr•ZK¨ÉÜ©zÍšŒIá±7Ö±)ª5{ÔÖÔ{]«o]|Ýeç´E¬ ¡ÉÛno÷lÚïŽUu¸IEˆSŠ€D¶H c¬â?ØjMIc»ƒTÍ'/³ríåVîjÉb«ê2ri{ëbK°EåßY±Ttc@M«}“e³¢b›ÊZ{áo!V±ò‹>“þÎ;ïÐW¿úUºuëýþïÿ>}ík_ŸqNNNÄgü;þþÙâ—B¤›–éý®GùÄüÝÓ( ç.N *Õå ~ÓåƶÎfå»< 9koÔ(åØY*™Š­`e—y“+ ‰BÝS/2ž%Wë9ÄJ•o÷K!M:H«÷´°€qþÿŠŠë±HV9âµ—›‰•¤oç6溗ÎSÝ»vK Ë¿÷e˜íšŒg±w KæHWýɨæì•+ÍŒþ-Ä Va±Âán?Ü åAÔŸÿüçÅlúÇ>ö1ÿ›Æ¿ã¿á¿½î|›,¨{ÀVP¦¾ø±øOkN/}í]öe˜²UéÔùSÔ‹9½÷H–{ùüËö˜Ë¼Dtño!V±òŠk¶ýý÷ß;AµZ-ñörÿ›Æ¿[fUáQäI-û“Vnˆ@¬<âÆ˜`=›ÍüïÇU¤ ìOV¹!V±òc€p0°bbÀ¤@¬àÁ@¬ V Vˆ€XàÑ dˆ€X»n0þ`ü@¬ncaF“ÉÌþÿl2aÛ2?,uÄóÆòó˜¶ÿÃU×ãê±òÐ3éÓ­[·hsÿÜ÷Ýð|_|·«uʼ÷uÎŒ‘£[t1ºÙë´Ž¶èÖs]éœ#:?>!c"ÿ>ÊߢüQëzó=iÑk»Jkä»öñkïÊ…øÿ¨uDëìw·´æcâ;&R,¨Ÿ caQÛµyÿ<´ÏéýÿªBñˆ•eëDÕ·y.Ú÷løàût«ÂDÔ­mÒtôú—ØßÏI±Ò=¥­ü.u&ÑåZ¶×T×Îö_í¾ŸÀp‡XX@¬<’°YømaœîR×0·„A}Ú·f3 :?;¥ÓÓs2†“¹á=ìR§;tMÝŽAæLžgh44‡tq~Fç­nàlø¨ß!ýìŒÎ¾íun³u" ŸÝ“ vþ‰2Z6ébhR‡]ëôÌOY†nhºìÿ“a‡ÎNOéLo©üû¯3 ©Ûw€Ùˆ:çìœ<ïÃ%Ê5¡–¶+êöøÂ /K¿KÑÃ-)¤®ïÍL2Œ>sbõÉ¿(ã²beÃ%V6¨åuÍžÉrŸv}ÇDÎz{êÇ®ƒsº¬þÂÅJpÛÍF}Òö6Ø÷;¤wMßÿ­:±Ïåu.¨ï0\Eâuæ©—“®¬ïáo‹}z½o¸úš!Üÿú´Ë㺘?ßçí( iS· ùêðãXãU‘‡Í£Žm¤ C^]Wùëc<´\J¬ØGô¹þ]ÑF›•3µBÃú¯>ôÕoŸ¯†˜3÷}vÎ×^Zpïo©ëôÅyÎöäuÕ$€$[j‚b^×WºïÃÚ?¤ï@¬ˆxœv³ÝÁ¶ìekVötè÷=3 ÄÊ|¶7ÌmȤn·K­ NOŽh›¸ò|‘çö0–Ñrl¯2LDl7°e€23`v*Ì•…Ådh§t¼¯Ê…UG «‡°ëÌq#à4Š˜+M—¹ëŒfÑårûÙÏÅÊ¢º¶Ê8Ÿ‘—e\¿±²¹µMÛÛŽYqfì›!Ç,'V&t²­fÌ·wéXãî9£H±Ôv÷úóÿòØuWDGÄ~ìÙ«'s¤èØSF¼jµO Úm¹#ª¿ÜR}wxj×»l£uqèB¬Û߉À}åæt¶ËÛ› &¹ÚrK¬Ðí±ïdùF¥PwÞryÅJTŸ³&$–P ®ß€X—€s¾õÒj÷¾Œ¹Ù²WOå ’\rÕõUîûÀz î;Ò}¹ŸžŸ W³Vö++ˆ•Geð°’FönaGÒ°ž¸EͦËÐw#§‘¼Èȱ™Z‡+ÉÆ¦4–ÃŒç¹=Ƹí»>ñØ£ ËUd666ìßÍ-ÚbúIgh…]Ç+V‚Ë]®0±²¨®£Êè˃Z¥ÙôÅ#—ð¹1£}oCº"iÝÉÄ ÿÿ´Ã]Q‹ÝÀÂ˵X¬¸Ý »ÚŽøL÷]÷5—kWçˆ×›– —ZaØ9¡sþùö é|…a³Bç'Ûsñ3ëˆU—½3]¬ñY^·Ï¨²9ϳ\uÙbqr·ªsûÄûŸÆv–[ËŠ•°>WÙ¼e‹'îÒfÌî…Ôo¸xuï¸Ú½ïý¿³Ÿ»ëú ÷}Hûß÷6&È`¸C¬@¬ V ±â58¸øÜ¸²Ü]¸‹Œ×°°b2–+Ö¹·.ìàZq¾£Åun%"**_þ]æ×ž'2Få¹ÛY‡ízuB­ál)±b]Ç+VænNÒ·~‹‹_Ö#ËeØ3ÏÊÊ‚ºŽ*ã½€U„=n íhîwv°Ë‹• >wÜyKµQÇ^ Zß;[b·µÅýxÙ{?\¬¸ëúJ÷}`û‡ôÛxƒ]Ûb2ƒÄ Ä bå‘+%VL¯ÑËâNÙŽ=CãœvÖ¥Ÿ>Ÿ¹í(ÿöÃÓÛéœv×oùÄJØvªeølé4š°Ý|ÎíX ¾Mkä¹ÕlëæÞÛÝh²ÀàŠYp>í±Ɇý {õ€ÿ>R¬x®ã\9èm©€c¶{Øãˆݤ—ÚÑå²Ü½öØl|wtWˆ•u³² ®W+–›’Ì»Þj±ÙN¤»#(?ÌíoÛ.ØíÖ>i§Î-ŽOX,Ò$D¬°:†ù.³X%³ß¢ýÍˉ• _t¢w}ÿ·ƒó7vE\”U×V±FkkkÏThz£×ÓA&A±XœŠ  ˆ•pÆzQIœjƒ›¼žI%Œòõ:+áT3q‡XY£TIw|?¥^»IzÓ ñt@Z•*ÕµÓ%¿÷‹•â2b…K¯×¨Z©P­Þ¤qÀ÷u~­ »–9¦ÁóÐvý®×¬SµZahd˜è°båÑb\§¤ZQÉfSR°Ä²d8ÄE>¶æ3’•us‰ïW+Óv…ÞóÅ2T·V|uJ­]3Nš)ÝÚ Iÿ÷…šŽ VŒJFó‰"[iÚ" `Ç“ÌÅÅZö1ú·ÿößÒ/ýÒ/ч?üa±‰#è3'Ê÷ÿæßüú¥ûKô‘|„ž~úiúÌg>#ê€×vbå¡áõ×_§ÙlFHHkâý›÷soßÿñ,\ĸ±þ©O}ŠŽŽŽÄ*Ìx<~b„Üûï¿/Ê|||L¿÷{¿G¿ýÛ¿Mõz]Ô xbb éˆþÙûoÿþÃøÔjµÄgOj²ê„‹—W^y…~ó7“þëý¯¢Ž0È++HH÷Q¬p£|oo~çw~‡îܹ#ÜÄøo>ø`&þ}¢˜Î„ë‡×_Uj·Ûbµ‰×¯+ ôÄ Ä Ò}+ܽé[ßú–0Æ5M#Ó4…+Ôd2ybà¢Äû¯.TF£½õÖ@ÔÑüÿQü —0bb é>ˆ•wß}WħìïïSó¢Io¿ý¶0Ð9ÜX·øÖ_ükZ[[›ó/þ5}æ«/Ù¿}T‘‚d^Nï÷¼~x Ë~ð:88 [·n‰Ï0Ø++HH7(V¸KÓ׿þuzî¹çDy³Ù¤^¯GwïÞù{ï½góO›\¬üsúÌßÓß•ž£_üç\´ü"}ý­÷\¿{\àå¿ûî]±ÒÄë꥗^›lnnÒ7¾ñ ¸ƒ++HH7)VøÊßž˜Ö¿øâ‹beåÕW_¥7ÞxC¼Å|ça¬s¾™ÿ—LœüKªõÞ¡wØçG¿ÍÅÊÿNG¯½ÍVcútö÷ÿ޾Ӧö?г™géï¿÷†X¥yûí×è«ÿ}›žÍféÙ?Ù¦¯~ï5ñy¿ùOôß¿ð÷ôƒ7Þÿçí7èÿþþ?PǽMoüàôß¾AoðïßhÒßþÓôì³ÏÒŸ|úóôOí¾ý»·ßnS…}—e×øô¾*~ÿ¶‡w>Ÿ¿#ËsW•Ó‚öÖ[o‰-žyÌ r¼Žø Ô_þå_ŠºÃ€@¬@¬ !ÝXáîMëëëôÕ¯~U¬ð¯nß¾-Ëk¯½& õ;¯ßaâåuúÇÜ/0qò ô•W_gÇ~þüÃ\¬|˜¾öê”AÏüÿÿOØnbÏþìØïÐ3¿ ÿÿ¿°w™ü¯ê»ï~‹:ßúKñ÷øâ÷DPÿó]uì§è{ìšüº{¿ÆþÿÏÒ;ÿ³ÿ‹<öÿüðÿI?ÁþýÔßêâ7üŸ²¿û_å9þÃ稣Î!¸ãøÛ ÿî/Ó¢œ¼^Œ;†(;¯ƒW;Q'¼nxœœˆ•(^wðˆˆ$¤+Ü Ïçótvv&V¸Qn‹fÄóßðUÎ?þÑÿ%„ÀOüìÏ ±Àÿþ‹o¨ï_¦¼%¿ÿ¥3û˜ÓϧÄgù/¿dÿn;Å÷oH{íŒþ~žß*»~»¶ö³TçÕèß°ÿ§>Jo¼üwô üÚÿÏ—ìs»¯ñê˜7è¥/ý¿âÿ_zé ßoƒèv»çg¼Ü¼ü¼,ÑÂëæå—_¦ï~÷»ôçþç‘/ÕÄ Ä ÒÄ 7ƹ{S±XîMüon”óÏ-#žÇ¯t{ò߯>÷3ðÏè?ýÕ_Ósû!,~ö×7©q§Ç¾oÑs?Ë„Æï&Žý«owÔ÷£Fï~ŸïcB”|ìùÒ¯?'®÷üùqß§?øY)†þïý=ÿO?ô\ãŸÑ/}ìcbëå_R¿ûOÿCW^V…—Û1–pá‚åûßÿ>íììˆú®`Ä Ä Ò ‰îÚÄÅ _Yé0w'þ™%R¸›‡Çmpjü¿1ð¿Q­+ÿÿâÞ'„(ø½ï²ÿߦ?þ¹5ú¹õ´Ï?û‹Å„ÃÏ­ÓËögoÑíÚ‹ãÖÿñeºýëâïÏýãé_ñ¿û"}ŽóÏ~o¾¸þsìØ?£ÛÖ±·OéÏÒÿÊv3ûÏiìsƒ>÷ËkB¬üÆ'>AŸü}"ý Ú;5yYgyùßo¾ù¦.¬Nø¸ÀÝãýõ_ÿµ¨;ˆbb é†Ä (ög&v·²ë¹Îu`ÏЇáø÷ò¿‹€úã×åÿ‡¯|‰~’‰†Ÿ»õeö›WéO~žýý‡Çâ÷_÷Ã>{áϹàø9úò+ì7¯]ˆ)@~›töý·ÿüßÚ‚äßï|Û>—uüðõoSæ'Ù÷?ù‡ôŠ}Ÿ££7Þv]Û‹}|ÀçNœßñ:àuÁë„ ¾ºò /Ч?ýiQw+Ä Ä Ò Å¬pœÇ¬ð{nˆóUK¤¼ãØ l¾ØORþù¯Ð?üÏÒoþ¼OÿÙ÷w(Ïþÿó¹šë˜Þw?+~óó¿¹EßíÜ¡¿òYú—\ˆüË-º#~Ó£ÏþŠ<ÏO~ò\Ǭ­ý<=ßRçêRî“[ô•ï¾D­—jôôOÎÏ1xéÑ´öóOÓ?œòï_¤ø¯M_y©§Žý.åóizþEõs@_Ùú$}rë¨gåóÅçé“¿ùIú‡—bÛfçŽ`¼.xð•.ðøVϼÎxÝaÀ V VnH¬pcœoÅûÅ/~QìtÅ rþ™õŽçË¿õÏK!×þý¿Ÿû* Ä÷=úÌ¿X£ñÜ7|/U|éïþ3ýsÇqÿü_?Gç=Ç÷{Ÿ?÷;ò3óœ>Êû‹Ÿ¡žužÁwèW]×þEÚýÖûw¾µK¿èú~>ó­žü¾÷ úÎóó¼þ"©å¶ÏßûÖÇügë…õ¾.\¸`áö÷w'êŒ×|bb é†ÄÊt:Áõüý$<Ãz!$“û~ô#þ;Žó³•™r×­yùs0L&ºÝ¿Ù×]áN&“‰¨ .X¸XÑužyæQg¼>0à++HH7$VxÌ7Âÿæoþ†666DÐ8_Eà†:ÿîIO¼x]ñî&÷'ò'¢®x!^€XXABºA±Âû;ÿ›‹”?ýÓ?‚…¯®ðU¤¹`áâ„ׇׯ3 öÄ Ä Ò ‹Îûï¿/\›¸Xùíßþm:==‚ÅZ=xÒ/3/û| ¶uþøÇ?.ê†×w Ã@@¬@¬ !Ý'±Â s.Xø[ì?÷¹ÏÑoýÖoÑÓO?Mÿå¿üº¸¸ú“’xYy }©TuÀë‚× ¯^G䈕‡B¬Ü/Ÿt~\ ׺Ÿ×òŠ ¾šÂÝÀ¾õ­o‰—E~êSŸ¢ÿïÿ=ý»÷ïè#ùÈ/+/3/;¯^–kxbåóÚk¯‰ c¾#¼ó~&ø "ñá÷¾÷=Ò4NNN¨V«=Öð2ò²ò2ó²ó:àu`zb V+±+àáa6[ÎÎf7sþ›<7÷ôçðzA=ô' Vz:';tëÖ6µ&OvCöuÎŒQÀw#:Ú¼E[G­+_£u´E·ž«Ðè’Ç›3ÚÛÚ`íuËfs{Ÿ.†ó7ŒwŽ·Ùç;²='-ÚY¿Eëë·\Ljã/®Ñ§Ê–õ›C2X{Œèüø„Œkì“κŸ™-:>>§ ÀvŽYY·èbôhöÛ«ö©ûÙ¦Gù[”¿†ûhyôçY—Žv7Õ÷ë´S9sÔãˆNwìûeûðÔUÇÝó#ÚT÷ÕúÖžë¼4ƒåg+$?Ñל /hßÖ7éè¼=ÞîŠq¢ wóÏX>&o†Ü£÷±Í—cF-mŸ6T¿ßØ>¤ÖR×Q…åsó¾Þ߀'F¬´*üa½Iúè nÈÉ­³Áwÿ"X¬T6؃"и_ CÛ£ü®v)ÃrÔ:R´Mªœœ‰—žï‹|s££3±Ú3ÏþŸ—íÉÊµÉ¿ßØ¡£ãc:::’T*t¢ûl“VE\cߠكš¡kŠ÷Å5ŠgÝ·×…ñ:õÊ˼ñÈŠ•«ô©û-V4f”íiÆ}ìGQýÙ¤Êæ-ÑöGg:V¤0Ù>1ã";öäœÎOö¤À¯È1`ÖÕ¤ñ¸sD:›äØ÷àõ¯”ß lËüTNu:;V×TÆ_ô5‡´/ ÚmÒtŽvÖÅoOŒ™n6‰Áß=â!~_ž±Ì¸_+÷±Í—¤«íJ‘²Ë¯y*&»nÝÚU¢6úš“Α·ÏM´9+7$V¢Œµ~ç‚ÎNOéì¼E¦w&n2¤‹ó3:=;§®9¢¡aÐp²Ì±3êòïÎÎèü¢ã?¯ep »ÔŽhÔï°ßž²ßJ£c6ìÈóêû!ÀÛé]R·c8Î|M³u"ŒþÝ“ š“@±²qÈÊ×ÑE9[]Ó÷›Ž~N§,?z«Z³Ñº}ÓQ.æÎe—£Z÷îuiW‰ï ˜\pYR¬\8ÄÊfe‰Ù®Ùˆ.NvŃSce©¼ÌLƒÎY½Ÿžž“1tÔÍÌ$Ãè“ÉÛåôŒZý¡jû u[ºü¬+Å_ŸýŸ×Í…á6Žx›ê¬-x{\túʘœ°™½]ñÐ;fm=šEx]ö~áhf·oßèˆzµW£º2ú#»îg£>i{¢.uÖŽR¬°þ?4©£ú±«œAÂ10ßþÊë©{4ìÔ1×áuÏÊÝ7gŽ>µÚõ"ïÕ¶uoŸ1c¾?‘¿™ßë³Åõs®³ß9ڢߕm%ÎoxèˆûÜúíЈs–ŸBúóü¾‘â¿Òšçïtwƒ­8žÛÆüÆ¡nwq¸)Œ4ƒ½`ôlw]p–8™'ê\þÉŽ¨¶ó ~¯nkóIaÈ®ó¡èkZe9îLì¥=>^ìž Üã-i€ª1©ÓéŠUFk<çù›áÑ/¬ÿÏÌnðxÔ÷MÙÎ[Öù£ÇI»ÍÙXèj/Ö–-qÜ™ç¸Uúüê÷cXY—»Å󊗓խΟ±Abå>µ9ó:÷syÈÆÅ+ï,àYwkóhž×‘.VYö·K\S®®¬ïŸÃ8bå~Š•¨Ù“9[tÞWÚᙜ¹÷°a.8Ö¤ãmïq»ÌðçáâpÃwþõ­-µ¢ PƒåÅ>ÿÿþÜ݃ ´bÅD7#®9¢C‡›Ô†oEºyó°sÒQ×hÑ®ÇÍj}ç$p¦Û™¿ rÝÚØ§a`S)þÀ2 ŒV‹úÊ`+Kˆ•ÑÅ¡» YuO÷}y´fƽ¿¿µý5W=ZlyÜÖöUZGÛ¾ßn°‡œ5nd΃¶y}ï+£rt.ûÅÖ±2Žº´£ÊoÕýùáæüüÌ(èz®gqÔ2CÜ®‚ótï\G}ˆ~cÍò«™ðÓ]y_³ÍyŸZízQ÷НmÕŠÞ¦ëüÌut´Ò³ë¯K5<ÏÿÏÚjÔ: ¬ó[{º0ŽÏö7=ßm“>\m| êÏþÙnÖþCƒ´ã#ªiÔ1ç+­ü¾9t¬´Nì8µÒêjs9™°Qñ¯¾Fµ¿?Ïlã‘»Û숱í”}}Mãd[ ©ù¹ôà eôúïqO¨{ƺ߬üôOå Óîi_‰:ùýI—ûºÿ^Ù?ë.Ñ÷7©õvÔ89a«nÞvT«ÅC]Üãî±æX•k•>¿ÚýUÖEcwÐ=êvÚÜz~ÜÚÖĵLýP=ëtßäÏñ¦çy¡..sMù›­'Þ­ˆ•û(V¤_37P;j0Ua ²%lî¾¾Kæ=—‘qÈŒ“ÈcÕ¸uÒU3FZ¨aÚªHÞŠÞ†ùÙž|Pª‡4òäàè[n·Ót¯©fÄï‚ÜÀ6å©+¯3kö‹SÊÐ1/äìÓîY? ,ÏÙù³Êu¨|~»gû¡u0R…ÖŸÏÆNÌ>u»]ê÷û‚aˆXÙ² ßÍMÚØØ`¬3?äãÀ§4ð6dYFÊ…Œýv¨ÜfNDY7èl8ÏÓÆžF}>ÓhÞU¢nG±“Ž2N¶e½ÍäƒV Öž‡åùÞºýÐsåcAÿ=ßçÇI£ÛÔ÷熎hãc»ÞœuQ™?`åub^¸g&4*ßÁ"÷êõ1wYÚ¦å*²£ž>µÂõîEß+Vlî Ñ7<—ÆÍºr7›tNϧ0™±eͼr·9Àî£çnÑsÏ_¸4–¯½u)2t¶Ú`R¶l•CZËOÑýHÄúØ¢un(wØ*\ÿÔw/Zurb¼àÊê>ÔU4¼íÂÜå*ŽÉ‘ãî,Äu~ÍVÀÌ}¨ë»¯7ì %þ™/›G²Ow”°&€„1Êî/kbÀv9œ)ád˜Îûâ[qí²•¥¨qÒªÛ]54QîO›ÇmÒ¶-:q“;b5b•>¿Âo”5rìV«rö±l<®TQqe7ÜæBDì(·ÆcuüN­¬0áÕ·…Ž&&16—½æðtñ$bå:ÅŠˆœ³¯Â…`[þþ®5Ë㘅qý‘ǾÝR+2, p¯B§Ì•Ëœ,çï+ó;@Ê™¿ £±ŒX ¼¦ów!¸«œlEi]ü¾+wö<9ÕèäD£S­" Ïc×-V¤Á<òÌ`å!H¬è{žYJÛ +ë[´¸Oûûœ=ÚcAœ“À¸˜yü†53}êœÑ6Ïç³ïžÙ¹»\Ëõ`½µwn¯qÃÃzøÎF¦[­ æ‚qrDÛŽú*q$2Ÿë¢ýõý ñ·5loŠ>8 ¬{絜嘈|o„Ä(Eå;Ø}ðêõ!ë^·…'7„&¾>µÚõ–+G–»‡Õ7-$´¯Z>ø<0w—Ž5î>3š×‡S¬X+#Ûòž´üÞ¥»Õ:í³{I;9!ÝW¨\÷¯:FŽ1£è~ÔQbeïÔ°E‘MÌæmÛEÌ/VŽ;o©o}I±Þva.T]Öô³cuŒ\ýºæ*†«UŽSÇXr¶Ëûxr%òÖºŒrñ©ÆxËh}‡|¬ÓNéxËžœZÔ÷£ÆIÙŽ{®ö•.ƒwä3Æc° W£‹ï±å»¨¬Qc·¬ßu1¡ãr»sþþ>·¹uìñöº½R6¶ÕdfìíÍW{y¼ÖR׌xŽ VnD¬tŽ6ÅÃ{`ÐêoIa²{Úõ-ó*òXv­I_§ým§»ÇtFKˆ÷ÿ‰oàT³ˆÖÀzÍÉEôÊʺg¥Ä*çK¶kƒ\µàl2×6Ð[nb‘bÅm,†åÁzx:g²åÊ [QJ#kÃ6B/³â©KyÍ w»ï¡¼éøÞ2.BþÏÛ7l#ãd×áJÁêL¸o]B¬Ü›uÄ~ÅUðY|þï!»î6 ªæ³•óz‰+Qåð¸Eä;Ø`»z}xÝ·;}j•ëEß+¾ú÷öÍÈûeHÚᮽ›pµ©èbå\­Äî;Ü­Ykû~Zgq$[ÛìžÚõ¹-c¢ú‘tÏZwm,ÒÆ[Ͳ„[+À lÔ?¤ï~ø}ÜvAFkkæ±ZÍ »¦ÃÝþ­J°KSÜÛÂ@¬H²Õ‹ ¹3ÞyëDüFÓå¬:ò£‹Š½c•½B»¹ÅÚe;`ÜöÔ[©ˆ'E^ƒî!& ·}+Q#ÇdÂj÷ز¿]TÖ¨±[º8nºÆM¹aH˜X¹ù6·E“µš¸½Óã¨sJ{Ûìžc‹²VG—ºf䨀X¹¢Xi…Æ‹ìáøLçn7bÀR;ƒ8ú¬@>PEÛe¾¹G‡'j&ùB³Áq+Äõæ*bÅòÇæù™E]S °Î`[ßn`ûŽ‡Ï‘šy–³¬·vÎ\];¦ÓÖðÚÄ 7ÈÅÒ=sEëLün&û ÄÊÆ’;™¹VV¬ÙuGXnUÜ—ßo.6.,c@{ûèÂvíq,–€h-µ­*›µã6è|dÍÎßrƒÕý$P…‹•Eù^U¬,[ó-©o ÃI’ÝÙÊbå"B¬8ï•Ë‹“íhtDg*o#¶9ÃÑ–e¹ÅJG¹¥ìœ"bK¸ñÙ³½Ÿ¶|n`ÑãS´Xéj;¾pq¬+Ro9„…ôÅç"h"]“œ[i½å‰qñm]Ðvn÷,9ùãšP†ëQçíÈkZÆõ|t$û­­ß*ŽµÃ”ËMG¹.ÉØ .þújC~MY—ÖØîÚ1qÔa®m'®­m£ú~Ø8)ŸAÛÔ™9V¶ÖÙýÐð=cY®]Ë÷ù廨¬QcwÐf Ò•.È%ïþ´¹hwæÚÈ…çú†œ ÛŠß8=d»ç9¾3¥[סˆe[âš>7CÄʵˆåÁL5MÁÝ/ÎÙNLj§©õc2L¶ü}ª–ˆwN…áÐ9–Çî²ÝZNì´'ÇNºr@ßÜ×X¬s¹8\Ðí«ˆ+?‡Ì°éçölžxˆD]S °›{GlW«IȬè:±í~‡Ýsð©Ü‹ÔlÕî±Îv¿a¾Ù‡[KƬ¬ V„wÅV={§’µmlÑ5­ÉŒÍCê ‡¤털g…µÝÜ}ÏG¬æî¬Ö¶µ[lw56ö/hoãVHýúã-¢ÆÉY_³Û±ËwS[Eó E¬‰‡=ïÔØ¥+fQ®t­öÛè²FÝóí}y;v­þ`ŸÚ\ÅŽYã¡t— ÞæX¬Vr±ÄÆFÓ.·G—¸¦µ}ñu³>+ÏÖxY$+W¤° Ñ-‡ ŠÁ 'çÎ[›»Ç.ßâ‹ãùÎ';{»*–C^áÇÎ\ÇIãäˆú³•ç 3èùÄŠrcc/ØÚw*nîl;f¹¢®É‚æw6ìS‚‚ùdó€\¶í­=›È^·¿åÞ)¬r8»%„Äs–Xq—ËQ‰ÃÖ)ínzvÍÙØbï‰èÌgä…Q°e¿rëÖò/´tÕ¥˜ÓiwÃq­õm6kîÜSÓgäÏ]a¤È vÉ0ÝnOì<Ò?ZÅ.˜ó€ø¬£0È=®+ÞÊM§aeÿÿ<°îûgûöJÌ÷.üåðæÛ¹r™ïƒíêõÑ“³—ëóÝò¬wîluåZåzÑ÷Нm½}3*¾ª£ÍgéÕî\§âe«R¬ä… ËVð˜£f‘»ç—ÙúÖ>uBÚ>j|òög_^SW^7vcÛ¤K‡[ÎÝœö/)ecÉÑŽËô¸ìÕvþüœÉX%ûÞÞ%½?[êš#¶ésgÆm6o©íÝAmV ÿ‘jcïÿ­Ýªö6Ý»|_ CW£ÝnqÑã$osg;nZ/G4ÙVãÎãÖí V»ÇV»?¢ÊºhìžõÏ]í¸ÅcEBìïG›[+{v[ZnyA»O²*Ûëcþ2הϟm5¡%ûúóXebå¾0›Éf.G“™ÇŸnŸÎÝ8f*¶Âåæxìß]åep,XÙMV(‹Ê?Ûƒáz4cþê&{—Ì,ô;sÁ{A®~­Ñˆsf¬FfD}^µBê“?¨'ªäªØ^à¶Î䥕‘ù~øÎ{é{åÒÌTŸ¹ÊŽ@ò>]*oWGfê^š…÷}s9Ln¢î.uÍåêax¾¥¡Zù›]rì '£ÆæÑMÔõÍ–UÞ³‡¢ÍWä3f¶Ò5å Û'ŒC Vͱ|pÚ¯°·¢ËU>;:DÇ׺ú·C»€\Ò]ocÉ7XùŽžíÀ÷¥ V #:?>¤mþ¶[Ê^…ŃàePðPÃße²¹±Ã\ì¥ËÌ•ô¸—/ Vb±+ˆ€XˆV€¿àqr__vu±2¹ -þ"GÅúú:cþÿÍà štŽÙß[—~ÛñœåoÑÖqç>–Q^3Ôº¾óm²2=~/S›™-:>>oI¾¾6gç2NiÓê_ûgv˜tŽØgù…×èmÑ­Í#=ÖɃìWü]I'dLþÝâýå¹Ê}é/×:6²zß yIc_×èÌ=¦ýÂsk¯cŒxÔÅʬO'ööù£c::Ü‘"ec‡ŽŽÙÿÙç'z—F­ û|ãZÈ•ç˜ÁúüÅ}}àj»ìe•×öösV† V†Ã‹Ç®#·×Y; #ïúÚœ·²)Þj¬é:µº=»Lº§´•ߥÎdÑñtk½òØ‹•Õ¯&­CÖ>ët1y<ú·¡íQ~W»/ýåZÇÆ°zgJël\Þ¿=–ýÂ{ë¯cŒxœÜÀf±ÊâÝ“äMºšÔ9?£Ó³s2†ÏLV—ÎÏNéôÔÿW¬<ç+3Ó?n2¤ u½®9¢¡aÐÐaØö;tvzJgç-2#ÞÂlö»4Ílw¤.?îìŒÎ/:‘ÇúÒÙïÎÎuvý‰Ë¨Ø8Ô©o\°|Ÿ‘Þé»Ý›f#jéçò»V_}>a×í¸òÑ7:Ôu”ÙìvÈèh2ìŠÏ'ÃŽ,Ÿ]¾àëñÏM2Œ>s¿bõÈëø,¼mf£>i{LÜÚ!½k^[›OÌ>îóóîR«o²zrö õ»}×ìçи°Ë<š¹ÅŠi·§AŽÁêd&û„)ûÉy«ë™IUßFÔ½õÓêzß®<±ûogo9x8ùéÐh$ësæèÏQï§îzwÕëåÕ‘/Öïçõy¿^¢_9ëÇÕçÃêaqþøõ[Ú®0/ VçWɇ·_²úbewŒÃ®áèóÑ÷âjeu×y·o.¸ƒë"¼/çÕ'VD{w¨oßçQmÀÎy¡‹:6ØUÙäõîfëDˆ•Ý“ VîIô=¿R¹d]öÍ™ãžîSDzö¾Î~!¯c27Ð~Kæù¢ÓéÞñZŽ3¼ýÄäj¿àryDz•ú,@¬<ü.aÜ]ÇûÀ”ä[>ŽZòA0ÔýßïŸuŠ•îé¾ï8{Fmxf»¹Î{aŠóœì¬{¾Û¢óþ,ðšÏóï÷uö·IÇÛÞsî’1 šÝõ—W]›»Cx¿Û<ÔU¾uÚöæ{û˜= ñùú¾úÝè\ ·¶Ž•±Õ¥^÷L(^nøë{cŸ†Amv=Þn‡ívbLf"7ç¿Y?¤î5µ¹»,¤æ}`tñ¼ø\IÃCÛõ¶éŽXu±Ä ¯§þ™ê3Û'ÌÑáºó÷›Ôš¸ÛÞý½dç¤c¯*n•qÚdxûµh×sîõßLîDÕ㱪óþ©\½Ü=í+7"ùýI÷nt¿bõs¶¿éù~›ôaP9Y=¼½Zþ,*­·®Ø¿Øw´¯ÊçR÷âŠeõ¬Ì]ìóÏ÷Å=~ûW˜ÃûBx^m±Âó`^¨{q“t."ûˆIG[õ\¹ð_Îòб9âž_­\Îö°î×uQwýkíÁ÷á+kPÿ{Þ‘§þ¹ «èÃÈryÇ2s…> +¸XÙØS®ê¡, oË·Ý.ft.[>#Â%VFòZü!;Tïa¬nЛ!;áòõ]º0ÝÂCfhôOw•°‘FçÌzxÛ†È5'-qÍ­iTÏ M= ½î¦|¸îžªÿ÷iݪ—‘˜½µ¾Ãò6SF¶|(ŽXÙµmK8Iã´«Œë­Bì³ò­K#ÊÔ÷ç¹È˱ø¿ÆW«²%ËzÞußÏèëÍÛíT¶ «§­[Á³·ÂP¢àP kks÷yí!¯ñœ˜•¶®·«„Ĥ+Ûf“Ŷ±²Ya3ÉóòL~þ¼/úl6ÍÅpÃÄêG§bÆuS—–1m‰^®]«Œªn²q-ÛðdDzYß3ÑW™ÁcªÙï‹#™ÿ3ï,·!Dèæ‘,×éŽ2ZwÏæbNô‰¨~ÅûË¡[N:2?ÛšX­r×C…üY¢vCýö*ùXä"eÍÎGß‹«•uà6øœrŒºƒ…U`_ˆÈ«,ã›Á¿íÌóÕÉ{"ª ¬1l_µ‡e”oÝ›#6ÔØ·èž_©\Îöp¹¼¾~áh3q,Ÿlº5k¼×±ÆkµÒkûH=#˜@Ù¸%ò÷Vd¹ÜcÎ*} Vq±rlÏÈOèH=äd4Ÿ1¬°å}N´S:Þß²…E˜p°fýO³[¦\mر%<Nw4Ç[V+A÷âje½!V¢î〕 ¾•W÷ªóºc<‹n)Rcû}ˆ²ÆeÙg£ïù•ʵH¬\[¿ð+âØÂ®c×ýSq¯:'i¸[iWµax¹ÜåX¥ÏÄÊ#-V6U¤Ûè°Œ:þ0ØØØ`°7·hkk›N:£Pá Þ Ç9Fùù·Åƒg÷´ëÿŽ=°;G›bw¨I€a¤¢]Ï&}ö·7]n=þ|r†¤îŠ|ÌÝ‚g#'ÖµßWpèÈ6ò­™Â½3]ÌðòùLáöñ™Ë_ÝPÎÚe#HL¢¯Õnˉ•ëhóÄÊFp½%VÖ-7»¢Ëcq‡Î)Õ¸;á¬îr§ÙØÚrì€wäs1’.[¬ÏÞ5l÷Y~Î&+? >ñït'WÑØLø…Ü9êœÅ ðºÓØOë¶ ŒèW£yØ×[ß MVß[[,hä9v¶Zþ‚ÒËäc±q/®TÖH±u{â\"úBT^m±².'6öÏ–j±ÃkÂÅ1NŒËöý¿àž_­\—+×Ð?]Ç5¡Å`€{ï¢örž•> +´X 6:fƉŠ%q„£°­([ÃYøÊŠzȵæñ–+ÔáÅ똿¥\eäw'ö̽ŒƒØ!Ãqn»X±Ùê~„ØlxÁv<;Q³i,è³s*Äúo¶Ù¤³ã#:S³ê#¶ €ð/3¡þï¼~†¾|s×…¹{sá°cm6è|dÍúÉîqg²šX¹}½EÆb˜¨˜\k›/+VäŽaÙüzÇ[ë´Í¶0•³°‡s·î:7[N¬xw0²V…¸@ýh“µóÈ%nœ«GG/D7ç++;g.—<];¦ÓÖ0à¾jÍ·"[¶‘4r­>Õ¯¬ko —A{¥çB£ãÓ–Ü´Àuìjù³„ikvÕ|„¸—æ÷•å†u/®VÖ{‘n`á÷qPlUp_ˆÊ«¬¶ZÊD­q´åÓÑmàÃØ½|+Z¬TÄX¹hŒY¾\v[;V°åŠ{Ââêýb±â¸Ž5¹Ä⹘ß;Ÿ{ýÓ=qÏ|ó ª\î±l•> +¡X±žìa ±y†ý ÚÛ¸²§sëâ>í©@ÇS¶3ÌÐ8§eˆòÀÕα|ðï²X…ÛØã»|·wC:f»Ã0·°S„¹sðð™_sÖ•Föæ¾Æv2ÙN<'ÒuÀ·§¿4xÌÌ9ó‰7û-Úß´ü³ý°sUÇ{ß¹§K'{2ÀüP—FâðlO©Òa¤Ú»Ý°­zCÅJôõV+*î$x»ê˶y°XY÷ˆ•Y_³Û´Ëwz:‘õ´w>to ¥õ½³%¶Sµ|åשrÎvêž+7,ËÝNŠ­ÃêÊQw2hØ”þñìûãó öˆ]; [Ì$+Ãt÷XgõÎbD·BcBœn…ÖN{§»ÖL¼*¬œýÊê»ëÛê°® ýHmÐpbƒÎcWÉŸå’¹ÇVøº£»Wȇwö[S1F'lw.CíÐ$ƒÈ£îÅUË.V¢îã íµƒûBT^Ý÷I_ÝRLGµÁDõã]V7Žï‚cVäý¿¹wÄvÔ›,c–-—-¨Xʹѥ֙Z%ÚpƬ\G¿蟾ØÇuìgÄPMNl³wÌ m‘ÈcMš‘åre‹úl÷ôyÚb.­]ì€XyÄJ+pëbË%Æi¸9Ü–øÌãÞ¦{‡žã‹aèn`yuþs­ØÝp·ÎJÝùJËÅñ|'Ÿ½]W¬qvh»‰‡Ôîqˆÿ±óš3×9åìˆú©QGs½,“?øNÑ<ÂQGV­t2™Q¶åòc·6°bo6Fªýÿs·±á+›öÑ×[Ôn^춘ò½‹ëjsoyæíá})d÷¼âjÓíÃ3åÆá® åÖqÜyÛ×ÁbÅÙÇvì]ãfCæJâÜ¥hk¹ú0±¡fÞgl;Ùmµ›Ùú¦t%bBÇZ 9Ýßrï2V  ]_‰T+ ØûÿÅýJÖÓi}kŸ:£àcWÊŸ9ß]jŸw—ÏÇ=ßç‡ÛŽí6Eûʯ¢ïÅÕÊêíoyû¥á÷±GXEö…ð¼zï1K„È2F·áÚ qÝ%f}ïŠÚQýê ǘ¥ËÅ·E>vÔóíî:îµkëþ6npëA×鹟lœq=#6÷¨e..—s,ãb*ªÏŠþ²ÄËibå1`ÄfMö>”ÙeŽM\çöb°ýÓ¹_öL¹å8žïÍ&ìzì “ÙŠï“Yö¸™ÊÛê/c›±cx]ܯ7(ßïë]µÍ¯Þ6Ëàts™ˆ|†µñhä}ÇÁŒŸ:søË WCϬül2’ù½o³²²~ÌÑd¹~±tþfì}<³ɇ•‡ÙÊí½ZY¯~‡ô…+öÍÈ6Pçœ,už Íf—¹ç”KÕsp¹¹~±ÊuFç\T®›êO±b›_>»¾_¡£Š\Uá†"vo+‰•u÷{$–M†ÚŠv“ŽépwÓó^ ˆ•'ÚФíÍM±ÓÔ^…ù‹OP/`µUˆ3¶¥éÑyÿRÇÏÌííÐæß=h‡Ž ˆ€X@¬Ä @¬ Vb±+ˆ€XˆÄ @¬ Vb±+±€XˆÄ @¬ Vbåúyéõ ýþ:ýO¿Ù¢µ¼ 3x»òöå팛bå‘*ÿóG_QÿÀÛ‚bå‘ϸÃràíbå‘®_OžKn\ˆ•G£0àŸ8pã@¬@¬ˆ±± VÄ €X+£X‰üAì¡4Æ[*߯±Êz‹ôÁ–7.ÄÊc'Vr_Þÿ€éÇôƒ¯wDË«ô½÷ä/Þ¿3”ß¼Koª£¾wÐqý>õ÷#ùÅdDiõ»Ù÷|Mé3Ÿ ËßmÚmLhæÈÝì½ í~ú¶ý}mpO|þí/ÜžgçkJ›žsç¾=•'úàG´ùq÷µ¬s½ùýžë\w>Pçrü>U~‡î¼wÏYqtw0¢Ïýé+îó”™—çÍFWþQ­3s‡—±¼}b<¹b%uðÞÜBþàÇ.Ñrû˯¹W^>×%hvŸáŸ¿B_(»7tü~þùû­>3ø{t—ÂÒô¹@±Ò¡LçÏœÂàüiK‚o«"|¯ìKöõ¼ç6è¶ã,· —Xùö{óóW>­V8>å?Wêïßs‹ —Ø›)Qã<Ÿ?ÝýaO¬¦TzŽ#'?vÕ‹¬cˆðŠ•ÏüPYÙæ;¶+’m<¿gRÜñÛò»Œí7¿ý†{Źòð©¹8yáó¯ñ0´ p&>ÚbîSs‚òöaû¼÷è…)œbÏôèŽeØ·Þ‚à[¬Üv‰ëzÎU›DÙ£&ïчbåç×ïÝ¥Dйìÿsv—2ªÌÞ~›ÞWŸEÝ8òvðªró–Ù —UüÀZ™úT×>ÿËžÕ*ˆðĈ•Íï` ‚;-“>÷ƒR¹×J=düÿ˜^îXnTcJ‹ïÞ°]Á~ð÷Ò(O}yìùÍüøÊö«ôáÜ«ìŠg^ Œß(ß‘+)³Nß-b¾ðü}—RŸj¹Á¾ü:Å?Õ¡³|'>ý–½2+\ˆÉsïŒm1UÛ~%X¬ˆÕ%Vžv]çJ|á][œå6?º\Þ,—­÷=n`éã÷hØÑAÙp ‚oÁáNöÑ®'fåUúÁ᥸óuÿ¹bŸ¿¸Jãfª,™¶¢òå·è{j71<’7ç¶ÇϼA_ùþ{ôƒï¿eï¾–`Ÿ}[çýö VÀ“(VØnUÖês…ŠĻӕ+Ÿk}`»&Ù+æövÂV ½¬o €^ xÿÜ’;\Ù®gìº_ùBǰ·\Ðd,‹3ÀÞŒþ)wPü|'³{lUcf—ãîÄhïÖ?¸sÏïRöñ®#ÀÞ¤”%¾>nÐ !bå{aò¹¹sÜ·^µ…ÚÚÌb<±n`™¯ÿȵuñ݉Ã80¯:ƒçÝw®1sÑÇ¶ß ØÚøå%bV˜¡^z§È«óàsß¶¾?V¢'|ëâ¡c»a{'3×öÊŒ?}Û]µÏwüçú”3ß8âLÆ®ø“÷'nº»"VgÁÖÅßïùâZfï}àr{Ù³}4Ä x‚bV^an_cšy i¶%/°Ÿ»<ýÈ·óÕZî-{«ÞD ½C\Øñ.W+ÜëUúŠï…‰?r¼0ñ¶ý.–on]<£Ïü¡ãÅ•åŽ?æÅ´Þ{Ò·ÿ~Áñ‚Igl‹säÌÁ;ôæÄýRÈÙdJßþzO•ý¶û=1b… ¢×é…;øð_~öà‰°—¢åÃlkݳírã}ùÇß,±ßyûð§^yèòÿ”Ì[âã­ë)#Ûz9v‰ãqã@¬<¦b<êàÆ€XX+bb@¬€ÇJ¬üO¿Ù‚ÿÁÛ7.ÄÊ#Áÿñç¯Ãˆ‚àíbå‘à¥×'ô?ôòO¼y{ãÆ€Xy¤ Ÿq‡KØãëúÅÛBb Vb±+ˆ€X@¬Ä @¬ Vb±+±€XˆÄ @¬ Vb V+±€XˆÄ @¬\?SÇŒ)ˆ•‡1ÕË9Н­ÑšE¾ê±&XÅòuÜbå&ÔóB”¤|+*&¹`‰SµÇܦj6 :U+UjƒHw²^³I½Aêµ*Õm«• ]«Q¥R!­aÌóÐ( ±’)×Ù1Ì ­×&½Ýs­h´õ& ¦÷óÁßîñãøg&¸ò·¬q‚£To’©~34©V­°|Õ¨ÉÎ&êÜÇJ±Ïkd4ëìØ*iºASÏJLPyyÿGÔøî;T}ámª}÷½yþ§SjÞžùî„4ö]µþ.ï:Ô[ïSû­)«÷¨z2¤Ú‹cU×bkáo? vë]‘‡*ŽÍ·>povGTcÇU¿;bù‘ùr–·wû]qÞjý½ú++ åâÌÏP;è{£"„LN©DMê Ò]*süv-A7”q}ÆV%Òe2=¿³•ŠzŽÿ£u>S“+/!ù¨çãîÏ„[Žz¾•‘‚ë7…A•œïØlÀj’ÿØ; Ì{l‚‰™ç°òˆˆÛŠ}äeZsaP“üæ‹ox>ç¼BÕîűõ/¼âÿþ™7çuç ò·Ó å?õ²ïûâK3qlóÀ|hïJ‘SݹíùîUÒÞ±r…ø apÇ Fô½qƒ’J@˜ÊXgÈà+ƒéâ󮥩nô¨Ý¼CÕ w5K‘6°VtŠâ|™ª!Ä—É×åjM£ÀÄGÌ‘'æ&–Pßå£QHŠÏò*Ʀ]ÍÙbÄ›7)vâ2¦<ïZª¤„Í€Ê"Ÿ|5é^ô±Ü Œ—1ÆÊ(ꂹÓeøÿó,ßÓèòºÎûc*?#ÅI[­F ¾ÛþÅ™/É¿ãŸÈUwߣ´}ñÿF¹#ûÂD®n¨cÓ'ïûòõ[óÅ×]âäÞtLöÿØ«Ãwߥû;±ó¶‡ÌGyžoSý]ž_)¨r/¨k¾?’ß?;ð¬4ˆ•UÅŠscX)5ÇKWºH5\ÿçâ¥\9 rù€*!Pâ9Í%F–+Î|Èßç¿o¸Îçâø8ÕÍ{ö*MÅ)L5{'êX™H:H³ï“Ô/(¯·¾¦P¯;¡&sÁª¼EùO+QñâT‰•U«z™¯bÜ!C¶ZòÑ7bsFù*‘á+Ñ¿5ßby¸="­þ6•Êw(ÎÊÞeBFŠšãÇs—¯ú±²ÂÅJý ·Es_ÐÁ—ߢƒ“+}Ý·º VVv3¹ C=±d`ºeÈ«àóiÓv‰ŠÇãŠ%“IÊ–u!F"WVÌù÷Aù7ñ%ÄÊX/Ê¿Çn¶ŒÐñ•Ñvã+/ Êë9oûäu‡ûT‹’ÏzÅÊmj¼ïøý?¾&>ã.X !\ ‡(˜Qñi¶ÃD†_¬„ÿvÚ}‡R7®ø32\¬Œ[oúò0nõl±b­ØÄŸ~EòÑW(ñÌ«”|Æ Æ»$ V.‰QÍÊû’îåTL”WŒ©ÇP_Q¬X++éª+_;(Q¥Ñ³ÅE¡1V¼È\¬¸ó±ºXa14Ó{ö*M±1_¥™6KêZfä±Abež·åuwBY.ž}“ K oyÄÊËT¾=_Õ¨m·Ä ÉÀ wä}á¾.V‚+ãYnSÕ˜¹V]â¶Xy™ /Îæñ/â\Ò LþÝ!Ýlÿâ€J'ïÁ bå*Œ©œVÁáÙ"ÕÙ®[z½JYéˆY‘â‚_¿aŒI/©”Jƒí´U³W)®E¬(ׯl©Jmó6eEð{Š*l'¯»V:&Ý·šÓ{ ŽúÊhåM3”7H¬<Ó£æ;3¶£Ö;”þè˶8°ÄÊÚÓÕ»?"ýÿ‚éŠCIì Éxç}*o¿¢ÄÍ¡1+A¿m(ñqÐú™Žïâ:SÊ?-cTJl7²ÚßYÁörugªÄUìÙé]¶KØwß”<óÄ ÄÊUPµ±Î¼¸X°ŒMé2•°EÂ݆ ÏÕ¡b%Qh¸>«ä’®Ý±Ò…š½¥ñA:>ßelܤœc§­D:eÌ{ó!ÅJ½I€Šq °¿7Ð(¥ÎËÝÛ¦†F™¸£Ü±UÛ!q9®c;¾2J±ÂcV•×MÓåö2¥¶ïÈ€öò{óû§[s­O¿eÇYÄIî$8ÿQ¿¾ÅÜÀ>êÜ%ìåže×|ú µ[ØûTxVí&öÑÛ"ž…ǤXîƒízO~¦ˆ=ó:ép€X¹ÎUs0 ¹ÌË{”ÿ)¶zѸ»Ò5¦,ø|À®aNƒ¾ÓÔñùØäyß@9§4»w3“å_êØË–×d?x‡Ûó;gÌÊ”½ÛdðîýAóO¿)„špüj¿ý±øÜ|׳*óþ˜ —×ìí’E¬ÓNˬϑe¼ûˆ•Ǹ¹GO¥vé.:ÁÕ;ÑG^~¬A@¬€Çé[&å>ÍâYÞÙ ¡þ&ÛaìíзÖ_ö·¾|¼ó·_£ÄÓ|§¯×¨ˆàyˆ€X@¬Ä b Vb±+ˆ€X@¬Ä ,æÿ©U/”¶IEND®B`‚flickcurl-1.25/docs/appgarden-edit-auth-flow.png0000644000175000017500000012577111600753627016612 00000000000000‰PNG  IHDR$.NæÌÖ«ÀIDATxÚíýýs#Ù}ß‹ó¸U÷ïpã×T®JøéúÞx ·î÷¦*UTœ%ŒãR,–¥8¢u7*ZÈÒ6[¤l:“JB&´¸ŒEÈ”@IX‹(ˆ+HËÁ ³K,ÜíÙVó¹çœ~@w£ÑHÎìÌìëT½j8ºû<õéÏûœÏçỗàý`†J H$€ @‚A |IO [iY\LK:=‹‹’ÞÈKgŠkõšI/,Ž8>˜Å…´ä‘ç²ZÖ-TXKö3‹²è•KýÉŠõ¨®cI«ß.v}ôžØŽ9Ü^Óµ÷ûÂÄíÒybÚ!pNˆ.cÁé{½Fø.Hn&H,YKÎÈÌÌ5Hd¤5QZÌÄ?œt¡5|žVU6’êû¤¬›UV§¼Y®Ýê£20{RÍmHR]3‘)Žm—ÈúxÜÙ^sùžÞvº'Ä-cü= pMA²‘º¦ I­Mµš`•Ö‚Ç'ýÇç#Sôz53½àû>%Å ’Üb2²\ÉÅüCo¨ÎyA|åME¾ñõñ¸3®½Ïò=íí2tNˆ[Æø{àQ ’äí ’L"fæÙ*˜ë[$’ÌŽ,Û¬”:·¡Š™ zêÉØöÓÞï“´Ëã˜ï‡/H, <:A’\̉ÕëˆeYñtz73†BÆŒÕlÈùù¹CCåÁw|/, n&Ù…ëI°²‡ÚPåÙ á»VzºÉíÛÞïãÛåñÌ÷õIR²ç–tÆÜë½ ïa€[$©µâ2Ñ(åeMˆÏÏ/È‚¤×ö¥ªfÇ{ÕXc¦Y.J¡X”¢¢P(JÃ1`úóìš$³¶Ù‚ó)7;S—y-jU(Ì[+&Æà¼T|¡ ò©þÍ¥ÙvYªíïÍo %û|VC•¯ ó‰àµg3ªìúwe'и]Öʪœ½¦äv×L½jÓk’õŽ%ZRÌn©àä™×ÌÏ«ã6$_nÆ´¡¯|îù; ÉnedAo®½˜‘ý|yÈ ´½Fµ÷ðjKCòû*ÿó&ÿ óƒrÇÃ=KÊùý@_Ôǧ3’ÓÇö‚ט¬]¦È·êçê^ØZK;í¥ó¿(»y9·z¥î§$Ó­4N#H:­sÕn[*øÝ©{ÝïtÝ—Î#á;RÝ/áó¶ªEu¯9¿Éç¥tÚ(¡ÓTý+ïœCý[<'ààÉ$¥kf )[óÉnI™›M\Ãekøó0‰taº†Î÷CçH(CqnŠàö Üv†\–ì îñAÅnð÷p»Ì©Fº™%¥a·J»’Š«»¹ 9ï+_R¶” yžÄ‚”¬ÑuÝ^“¹>•÷Ócê+%[ÅaaÕÈ ¢¨c÷6ž¦]&Éw£°[ïfn+j‡ª›Ôýc"Hz ÙZH‰?[ðvîr](ÃeÜì*×îW ¹Àu›ùÅÐu¥ÉCàÉ$‰…}i¶šÒh6¥E£¡¾k…Œ©VôªÃÄ1(£\”ÆÇ¸ ûùÇSȤ†v jöª27qpûîTbH<؆ßxþÔHA2–ùl MZ… ã”Q3þk'&;ÇÜ®síIÛk|µS ûç>ãµ™›@Œ¸ÌKµw³v ç»™Ÿ|'«ÄünÈ ¿IÝ?‚¤)™‰wíKÈVÉòV³¡Õ©ùÝj@à‰²Ä¢4ü›T,$nibž öà6®Ã³“6³ÊEea.ùpÉ4†‡óáÏe®)H´qÝ“N32ô’’S/¤ëu:Sù‰=>£¦SÞv«‰ n¿¾ 1.czKÜá¦7è¨Y⎷Q@T»$d·lÅÌħ<‘8´of£y¬î/†ñ}íàñ Cw¾õ`ŠöŠ«ÃáÙr]¶¬¯?•vç‡òg__õŹà±é|#0ƒŸNF_÷ºíâoûBzX Í«—º†µUÍF¸ÝÍJ¡uKuë»l¥±‚¤•¹)ÎASð^Ù’\f6B :+œV1Ôg;ª^ý÷ç€ ­žÀÓ¾B2d|«x¿»…Ñ9Í{Hb üÉé §Ô†/ÊXM ‹¦Ö- cP¯ÍN½ío"ìB±uñšÙžµ#»s¡êtq¨.ÖF–!"®(S{íéÚ+N€–‡f»çvχVºÔ¬þ¬Z5ÈlìÚAêï;ʵð\ª ž,dž•¹Äè|_§]ùVy »d-æ†c˜"Vq(·P÷ï“ 9JÙæð=î›3I÷åŠÃßÙÛ GÜ—ž{iÖn·ðîh™€'Z$ædmkC66F±&kj笆 =4³=cÛ ?jA[ gg;={kÓŽ2bó‹‰ ‚ÛßA’ OGî®›ÛPØÙîê~j—­¤rÙŠ&‘\˜Øe«¸– ÅÇìG®^o 0ëõðÊžÒÖ`å%1´#ž\·†ês£Œ»À¾ËVyºsè™áÐ æðÌè ßÔ~ ‚$<‹:qàñPpûû$H†ŒÎëÇÝDÆ2x±8“]{-õ°VHÂýÉߘ”–ì.ÎÊ´o!¿q»¨•‹¹ ɵ&[©\çê~Ú ö)ê6V„ÜÝ#6…è”·F»†Ý¾R)æÒ:K]C‹a7¸9çað„ ’)w­ŠòýŽ ÒÆû(H·Üi&'Üþt ’¤·}òM®} ‚¤3¼â–kNºBÒ‘ý…»S©•€ùʇ(HÂùº;Å#9¥ Ù¸EAR¸¥]¶Âu—1Ž Çjùó0®ï.H±œŽU ôã<‰ëûü]ukî}$VqíšbÄ ž=­³!·š¡7•?ZAžA×;‰¹®i6¨­þÕAæ*½×ëL¸ýÐIDZÌ7‡®¿¥v Ó»neÖ¶$›+HC¿lpèý/*þ$£^ÌÙl/»;û¨\¶¢òmïµ0²=zAr[Ûþ†]¶féÈ÷€œïÏm;íNuhß‹Öܾ‰)‰›\ºàItÙšvÿþ†,†ƒNg7BAÆÃñ7$£¶ä¢'ûC»6%ULEFÅR¤‡ÈDÄW o£óÞ«‘KÇ~C†ïPßÄ0U»T…W Rá÷ETeQmC›LÍÊ‚zë÷ÖnVª­‡)H¦YeÞ Ko>Ø\ •j£´:~ØàNJ9¼R6MPûTí2¢w{ªö®ƒs1Fô“+HZ/—\Ømna•†Þ÷£Û¶ˆõÊŽ|Œ»YFà#‰á÷Êð0xâwÙÒ~Ús27†ÙÔ¼äÎ;‘†œÔºaf¦›Õ¼ÚiæúÛþŽä]ÜÍK~M6²Õø2F¼"9æíîQÛŒnyÁíAãÊàΖ›j¥Á’R6aPÅ ’™Ô¢ä‹yÙHo8/)¼™a¼œ\صWzMÙ_LÅ–ïöI¸½â/GÅû̦¥PU;g÷‡vÊÒ†h¹µ–LþÜ rß(·Fý¦íRÝ‹˜ÝŸ“}µ Xã¼$[Q±-Þž\A2êÝ7z…ª|Þr~+bËã¨ÖÈ—+î:ãM3·8b×­€§CÌLlz!ÜMßÔ>Ú-lœ¯zœ‘¸5æ¥i½ênlpû¨÷"LöÞ–÷– ^08a1[?ñ[ÞoÁ(Û^ãMÄLzìË‹±ý0‘Ý^s[Õ[l—ÆðêÎ\#û‰$¢Þó3®ßEïÄ)HýÁê+d‘;ÑÀ“!HÖnChc¤°6µ iM¼sPŒ­ÞèlŸ“ ½Ã`„oûøYZ_°~kZzŸC„{‹ÿÍá“í¤4æ7JLfÔ߯}+×Û^ã¯Ñ©îÇ/úÑb aÔÛÂGâ[¡¸•v™¸Þ“Þ^Ý?Ú öÖƒñ.i‘«ó[ïøq&Î#&¢¹qÎMáÆ • ~Ëú¤¨7H‡öû·ª9™0DS [rÞ,ý÷gƒ®*á|l„\9:\„«ÎAÒžIÛšl[ãá½ÝK:#ÊšPn>…FCíö”ŒÙyL½ó$3køŽ«3SþM9üΊsÙMÏðÉOÈüZvð>™)Úb’kÇ·×$×ÐÆý¹l-ÌŽyéÝB0þÀ©ÛÂÆBôjHZ½?§‘Šo´Ím´‹v_jI~+-©/ô›]P.`Öd÷ãµÚ}Ã[îNgÄíŽsãI”›fz~„0LÌÊF¾:6.-¼Ò´˜ Æi m3¼\m€Ç^<Zê-ÙårYÊÊç¿iõnñÜ=ón÷ÜÖû¿£ŽÕlHUç§\Uù™î…l=«)çÕ²)Oõ¼)Öà Èuß\^v¯ÕP»n=Šú¹öêY-/ï&ÿæxã³ÓÔmµ¡v{ÚÅôç\ºZÞgPR;¹5Ϋ^»7Zˆ ‚$@ HA€  ‚$@‚A H$€ @‚A H$€^G:Žô¨ €cÆÓÞÓþÌè!H&Ã’­¹„Ì$33 IÍÎËn¡Á óDr_6ž™‘g6JOtþg·Ë×8Ö’üÖ®T;6Ͼ䪖=À–·Ô=4+Eëá^§´1+3Z“û7:çî¯`_¼v=uJ2Ÿ˜‘DbÆ7NÙ¤2Eu®mû\÷õy7ÔßϘ¿ãÎYÖõ—Úk¢r´d?=#3Ùèþi•6$13œOÍZÑ äÏŸoÓžÏl˜ö¼¶½½q¡×*ÉÖV^:¹ëvžUõ´Q¶¦ÊÓäå¾ÞØ2]_¹­±ìöð÷§¡~æüý°®}ýº{òñw³îsáaÙ Y›uÇÆ´üÑcpŸ¸eßH©¼Œ(o°~㟟¥­ùÁØ_ Ži“>§®›ÿÔZx¼{ì©ÉZJWXR2[²±±!k™EI9•¸=ÇÀ ú/}rV¿T}bó¿ö¡ù9ehN=ÛRÊc±ø(I§h ÐtÑr Ò5s?ݺÁºNõK‹òÌ'¿t£Ïï/__¼I=©c͘”œ—-{œ2¬­©‰“s¹oÎõ!ÛÈ¿›•Ùg>)å1e*­%ÕDÌÚDBukÖŒ‡óy9o”ec!iþ¿Q²"Éš=v®mÈ–›O=®ªÿ@þüù.­}Hf~.cÚó6Úö6Ç…RFOXeL]=´þí´sRÕ]¦Øš*O“—ûzc‹ÝW2×$×Ënò÷3ÿßM MqŸ=U„Æ»ë÷¡÷û¹ðp쉎3N.nå¤XüžüÑcpŸx6qRM~È‹¿~㟟sž™ÙŒŠ%i…V&}NÝ,ÿþñçý± g®£¦´rÌ4õÎ%­+sf^ª¾Šl”‹’Ëf%—®à^ë\ò¹¬d³y©6;Á‡´zˆr9u\AÎ[èÚ<—rµÈGÏj˜ÏŒ‹DÏ’R!¯ÎŸ“BÉ¿zÓ“fµ*VÏ—}\Ó§Ï{Þ´¤QRÇæ‹ÒŒê¦9wNå1_ð—Í>wÓ²ä¼h_»tÞ äù¼Ù’ÖyÉÔK¾X9c7*Íêè:Õù*æsêºi¨<4T^Ìoz-©–σ[ó¼ªÎo×m«qWš÷{ƒü·ìóäKçNþ,)›ºÌ†ê2*Ïñå‹k÷‘m¦ó¯ÚÕRík÷‹¢*_ð!þ!߀{ ßPÚ_0ĖʧÕs­Npl¨Ÿ*Šå†çšcúæy3pßœ—í¶h•vÍaaWµ©êÛ¶Á–’¢ª·²n»ÜðuG•Ç®oe´6ËvŸðõÅðuz÷›r·Ñ ÔuÙé£Års‚rª¯ñuݳšR.Ÿú‚ê§ÕrÙwouLýèÿ»}ñ:õ$ö¬Ïð÷~Ã^_»q78Žx÷˜ªO·œ®¡Ôr~ÓjTU™t›†ï™åõX˜Ú¸jõJ&?Éta„ IJi¤ ÂĞyó·m\ŸpǨóRÁÜËÅjK:ªýªè†ð¸ÐRîf<ÊÚý"º­²¿˜4Ï‚‚ûnÒ¿£ÛÖ®ç\®$ÍfÁÔ«_Dá< ú\Ñôqýœñ_wPîðØÒóŽÉËÃã¯ß¨N®1:jŒǣƲ¨ñHç]Ý?VÏËW£ZöÆsS†ór¨]'?ÆßŸüýÌÿw°ÌÎ= ú‡î[9óܳ¯ÝðúZs¢±sô}6E_Qc[p|ñ•ßq‡5ÎÇÝîs¨eÚU•±Ñм_Gõ«iž njèòŽxÞG÷¡ø{õQ<÷σ±u?V òTÜ]0ãä¾² ¬Þd÷É4ÏiÚ1Ê OfÔäS¹`Æ7¿Í7¨ßèç§×fª]ôäÊÜFÁ´Ë°ý󜚢ý½q¬X0ßUçf‘!é$n½·cœ2Æf~¨‚$9<ƒá*X{©É’ÝùDÈaVò »pÍÂÚ{B:g¯®TM£¿Ûˆ˜kdíå­ÝóA…eçíå<ý š »@Ìm9ƒœ%ýŸqP4³gió½ý·/_ÅÐÒYu?ÂÅbÁbêÜn"ó»eç:Éa׌٠oðõ3œ¦äÒ©ÐñsRh:Ç4sÞJUð8eÓæï‚5hÇAÜwþþVDþSRz½$ ¡2%æw#gnÆ•/®ÝÄ´™UÌD¸´$%×6b¯Ñ_ýK¤çÙôб‹ûÕK±sC¿M¦óv=¤g¼þd~oìY©B=P¿z°Jk‘î:¥ÖØòDÖwRõÿP;êëòd‡ê:¹˜3˜Q努¯iëz«Ú Ü» Ù†³½æÜËWN_ÌM]OQ‚$9 ¹ïô­o9âd!¾g¾{e‰åó¶Ý–Ô8±‚ì­ ŒÄýù%Hüm;ºOØ®d³Ãu˜ˆJñã‚ÍìZ1b%Â7F©Þú ú÷#Æ8[tFŽá<µz ɤ¢òd…Êí[ZÊ]yÔ¸$³1ã`'fŽe#Ç£^ÕÜ¿^»Yyû™4»å,ç2îÿSãïO“ ’ýc6ØÓùæØ±sô}6E_qÆ[ù[…´g/Äó£ÇîÖðshn?d8Çõ«éž ‘}(‘–ÆØ>w¯>ŠçÂ=ßýó ¾®cÇ*ߪ÷tᕉî“ÉŸ;½©Ú1Ò&eó9õ{/âùéw= ŒkjŒÊ‡ì¿g·>xN]¯ýG?RkaAr?ÐŽñvH¼Íüþ’ê®÷phdœNa7JÏ56õàçŒ ûÎ9zªòSF°”:-»2²žß`:᪷°j.ÿaï;§Qçv(ûs®²;â¹3°ÍïŸûm1r™Ø2ùªYEÏ.îÎÚ¢sw&Úi¨LÑòuÎ9)¶ìŽ“53s)cpxçÎ5e¨„óQûF&8wʶPPƒbO]gkÖ¹®å^7åµÇ°Û„¿üÐÍÿ¼M9¯Þ“œ1ÐTgo9å-nØ7u®1:ÏQå‹m÷^l›¹ÆhRkžVÉ<<퇩/ÿ±×ˆXá0]Ò.›å¸ù(äo»¦ìJø4‡}ד¦ï ¹übÂ6v¢ÜÙNê!äw3ñʶèä¹UcÊ3è#ç:3ƒ]è:c¢ç÷”äÎ;Žïª}žlí»±å Ô×Tu]5í•Ú(û&ô±¹Áƒ)¡о¶œ¦ž"ɬûÐL¥$™L*’Tmk…‰ïoÏ}Êy˜tÎ÷íÁz«l·ijM­à¹ùÈz«‡Á{&4«¨ÄHÂyÐ6"cHìó%LTŒÞœã»;*¯£ Ÿ>qîŒËk÷þÜðâjF¹ feYO8ÍxýbhbÂq7iݰ‡g,wgýc«¥ÄcÒãZ…¸ñ1”'g‚Æ30T>¼¾|({;Ï—Ù]ûü½ê~¤¯·\ËÛõÜÈÛy[Tãb|>ýý?~<ʧÎ=30¶x6y³ð~#hhMzÌè¾5Z¸ý£dùÊä¶•ò ðêw’±3ê>›ª¯¨1nA_ѹçœçKRÅdŒ©×¸±Ûß—zV¸Õ =OâúÕtÏ…ð}ÜðÝÇñ}h̽ú°Ÿ SôáØçWܳzâkLúÜy0U;F†1$|ãR¶ù¬à=,ðˆŽnÛþ{廃±ÿ&íïÚæé\plJeŠ£Ç¾‰í(›ù}$=çá­+ÔÜx3Á†®nÍ™FúæÉ†3˾¦–~öew?+[i§@Å{²ëÌB%çdk_/ V[æ¦Pâ@:Íœ½¤W°ìÁ/(blÕ˜H'$c|7Õ.ÍFC-ýÕRê®df}³tö¹µãý¾eÏDyõ8·›¯ÂX?ä¢é IïîËþî®ì«º30¡gšæ<2û®; ±?/~§;÷®n+uíìþš=8Mgùì ¬Qí^Šm3;ÿ‰€0(¯¥œÎ ÿñ×hž¶³0Y¿øpêPÏŽ »¦´äüü\JzéswCæƒû"öÁãÿÛg°¹³8ÚðÚpÚf\y†êÛ1š¢®3ŸQû©%ñóó†YFŽ+—¿¾¦­ëœ6’Z@Ú3±3 Û`hªHÆ›Íô€“×ÓHA’˜•t&-é´fQ×rC®OA#?éäÉï¶tnÜ\3–©µ@Þ3þ‡Œ“%Fª#i·\s‹n>‹‹²–­^SŒî%ŸQî÷[NN HÂe,éûo„¯¿¿ÿߤÏÛžœjå¼1.~|¾'­¦ÕËRA¹m­-š1-ö¡ìÍb&d~Qå· \¶:“Æ´¼q0>ŸƒëìïfÕ»Nš¿ÝÙÞêVÊöˆ4êÆsA~nè6žYÌ{A ×Ï>~쌾Ϯ7¶ë z^¬‘žW¯“’A_ޏŸGö«éž Q¿MNÔ×ÇÜ«ù¹ð`Š>ûüŠyVOsÉž;Óµcdß÷Ÿ§™óÙ|>AOÙþƒºñý7i[„ùŸê÷‰([pr»ê6ãnM¸3.zg˜òFj(ÎÄmŒ¯æ×¼g¼™ËÔ¬ZÞ“]³[JSö3 ¦ –› Ñ1 Ž+Ä–òë4³gZ!*µ8gfÖ«Á|{ÞIÉè ºàò`Bfç‚‚D?x2ËqiÓp)# š‘ùŠîsêÁ,jRín6§êmAJM{·™™ùÜÐu¯'HŠƒ™gùÏ»n2¥®©‚vËy]>«Óî§'±mæú¡ûgÂÎ÷çÍgË?8ë[£9û¦ ¹ÎŒ լÂo¹YÕ‰= >¢Y¾àÛP ®çcßn›qå‰{h…¯~ð$G ®qå ¸éêÚÔ XÑÞu)_Ú5ÇîlHû!$“ÖÓMbH†Ir”‘mß o¬ÖØ|¸3mÙfLÒ˜’ë ’è>aÆåÀD‘½²š˜X' >$×ëßáUÉ9ϵ JlÅŒV0O½F>àš’œ?K¨Ÿ7‚¤çR·Ñ¨¾^r&KÂã`ÂçŠϰ39‹¹‚júߌºÆœ úø„G{Œ;æú‚¤8òž()CÈŒ;£ï³iÇí]áNrç¼>8®^ãÆîᾚ¤ŠíWÓ=âîãø>4æ^}ÈÏ…aCvŠºŽÙ¤âº×˜ì¹3];õýDÈc$PÆÉI\ûÇþë·¿Ù½-ð ðÛ ÑcßÔvÈûÔ®gèSƒ vÛ7PýíûMA/«Aú®ãÚð3³Ê²«¶C+5UœÄÖ†Z2´—B-¨düÝF¸¸³f U1ƒ™lû³™…ÜÐàd«ÿaEk«ÆIICÍòà†4Üà|wh…Äÿ€wÕ¥îøÃª¨Õœè~qÍ^"+ûƒšŠû²•-™e:³’±è+sc°bå-Zƒ»tbAâž×/tÔlWaK²¥æâAùz±í~/¶ÍÜ™©Ýj/bÉxÿøkôF r)c z3j¥Áåº1dB>‘Þ¬öF1Œ9B¸¾¬þÏšs8±8®<“÷:áÏÀ-Ò^.žUƒÍŸ~)[.}M[×î­ö̧?ìöµ}f]׊aA2I=Œ!±óÉh#?eÜLÊ=ß6ç³¶û”=ˤg·RíêÒ‹ÏGG=Ø2é-Ͻ3NŒÚ…ê6‰]>ÿÆ#öx–|H‚¤sÃþÞJÙÔ»7ë®ÇÞÁ?>ód?Ÿ´kŠX{(÷šEÙÈì:c› -gMNL´Rl»ŽŸýØ|úŒ€±ã‘Zuðâ4“’·Ü™SûžÚ*GÍâOvÌÃ$EGŒ;£ï³©ÇwËUÕγæ– ®œŒ¨×¸±{ܽ߯¦{.Ä®L` Œ$ë¹ð`Š>|‚dì}2ÑsgºvŒÜ¥*í³ùJÎêœ!HRÑ“OS’›´ÿ°m®ìå™1cß´vÈ£ßö7%ûj¹H±»‘±—ï|Ûþº+‰ù-©¶Ôƒ0ë%©A¡ç U¡ûj§f£(‹É§³Ù•£ýñòÊ»Õ(I:5»TÝ÷|aÝ­;È.îë$ÎewÑñ5.4Fvb^]C-Aæõ—œBÌ®©r© ÞjÞ¼ïÀ]øÒ&”ÿ°ö§Ë;Ë„îR¸£´ÓY³{†›¯Ý•ÎGÏ>‰¹5)«]ªçý³»f°•¯ê4û%_ڼ爓äâ®Úù¥êì8 dú9ŸááT%ç¼ [z÷‡†ä2³ccH¢Ë×îñmæ4'ŒŸ~9—q‚ò ¡üÇ_ãÁˆ`9½•à¹u×n[efÕ®ƒ¶r·é8žÞÃRqOn~Œ1«„jÙñ½Í¨¢¡Îã®2Ù¾ÂöÀ“ZÜP»´tÆÚñå‰ÐC×ñŒn_YT}¥¥ül7æmŸ×o¿_®`}Ý›ª®M Àœ@gOdòûŸ¯-§ª§Û$î}¢Ç­s½kÖî¢]^Œ˜awè„™½ícç<' k±ïmy”‚¤×È:ÖjkIµûÑÚ\bl ÉÈq!fœ,:þÅz‹å›ôïðy ΑVïtãÆŒþ<ÙÂ,%ûj!Ë7Ö¤†Æ“ÁßîùSé}Õ7”ûJÑÞ'±O¿4cÙÂ`ŒÏ§ÿÚ±ãQ3·è;ëç‹UÈxÁöç#úÛ$Ç\W$&$ãÆÎÑ÷YsÊñfà:ŒKˆ¯×¸±{ܽ߯¦{.ÄÞDZ}h̽úП W÷á› ’Éî“Iž;ÓµctüTB6ÔØ¢m¾9ç])a÷Ç`=õ†Ü{'$7i7Ö;¹ lAŸ=—ŠØöwR»*œ×»ÊÞŸýØšÜí=A²µKKjN¶òÁÀìªê´þݨR [Þ̹žmZLw¦Ù*6 Ðý¢uvçÊVc¢ö›ÙˆÎ¢^L¶8p­rìí­ï¶|.aIe4¤‚34ÉÑj¯ÚÑanqÑç±ã‚>NpaÔÎéluôMÊÇy~-àÊ–˜MKÙ÷ Ï¦ç×A²ƒ•„47´äê$Ï8ù710W—àyM ùZô ÆÆ•/®ÝãÚÌ &LvsÐ7TËg8=ãä9þ!Zƒ½ôêZO¹d,$ým7çø…gkKØê‹‹s&ÏF|uª¶vûþü\`ºýù¤·K‹½‚– l>÷‰¸ò õǺNií™À š‚mšTƒic|¹Âõ5M]›ÀÌÅ@°`øÿá¾8M=E­ÆŒzYUðeƒÁNé{Ì?nÍer‘ãBÑéë[å×#î÷!^™|0r•n”‘3*¯þö þ×'‚ãkrn>F¸Å Æx!H¼Ý‘TÙ¿vrýþ}ߥ†Æ8·ÿÄþ<}£–÷&Ñl¶¨\±ÔØ’¬¸>ã‹i²ÿîIq+¸dB¯”÷FÍÌÏúQ&W`eãÆ#«ÜNÚû~ôór‚cF÷­gF¼D/Ü?†ïÍËVü3ú>ëL=Þ˜|Ì ´Øz»‡Ç «O3®_=˜ê¹0î>݇ÆÝ«û¹ðÊÄ}x\G“ÓÝ'ãŸ;S¶cÄ$}bv6`󚽡{)üüŒzf I°n¢žS×kÿ° ›ð‰µQcßtvˆ)ó5_â8óà–YÄ€·Ôl’ Ì@'SßµÔJC/biÙ|gß>Ìu‰ÚºÍÏYæüûû›¼õ®_®N/.À©c®=¼?½ýöU+òøI°¯Ý²F½óA×óÞ}àŸmèu,slïméW_“–ot»G·™?†Ä+ߘüÆ]#Ü×:¡þiÅÔo ïYñ×0ßj'µOxoŠöŸ¼<“_Ç®ëÖÐý_®õu¼Ý4ÿï׸õ¤¢gÇæ|C®KebÄLá£dš>äŽ×ÃÏk‚ûüú}cÔsbš|N>=Q}Ѻþ˜1y_q\†G.ÇÔkÜØ}Ó~u{Ï…ÉûÐûñ\xÔ}øv¯1ýø`ÛHãúe|=ݦ-8‘ ûÇéGà²õ¡®Ó³)Ï7ðñx³«à43â_tÞÜzyq–ӼŸ¶xXåóïóz{/À­ ’-oÆockMæœYÅÝj‡ú§í0¯‚}X™uð$ðD ’ŒÚñdv.íì·ü8äK½°Fm·‘~‹q#¿ám=úÐó¢–‡×ÒÞ{=«|ú=6é1¾ø0Á=ª‚Ô΀z·¼¹õ®j‹z§Žê¾Úª59;òY  HA€  ‚$@ HA€  ‚$@<ñ‚¤)™ÔŒÌÌÌHr!+½‡z-K¶æ2“HHÂ#)©ÙyÙÈUß§ò;yšIÈVÙšì˜^Sö×¶¤Ú±ÿ_Þþ˜©¿¹7 H¦¡SÞ0Æ´MRò­‡kü¯¥f|× 2¿[}_ÉZÒ¾~¦Øš@ŒTeÞ©«¢#HJkϘã?”)rC‚dr É€(˜Û*û¾ïIó¼*åjC:½–”ò9ÉæòrÞêMøý°ñ¿á’t¡iŽïX Ù_L9ן•¢5ø}£\\6+¹|IZóôä¼ä|§®Wn„…DGªÅ¼dõ÷ulÏ-©–ËÒhYæÜÙ\Aåµ# u®|¾(M-0z–ùÍyÓ’N«*ùœ>GY,çÜ­Ò®$M^ÕŠJ¡*–:w§Y•o}ýëRº{ß'\ZRVyÐyÌ«ÒñåÏ­³žªrÁ®³rÃâf€˜ éeÖ™í_\œ³EAbQ>‘ID­f$d׸7û~´ Éýߟ˂sl¦Ð2¿Û ¥™™y)šÕ›–lÌ_Ós—êTe1þ>%ùfO¬bfxU&û7^ÒêÚQ¿1$Ór®DF:ôù¢:¦˜ùùûçÒß2yèg%>>±àäTÍÈÚ$+4O‹ idlc8µ¡V8ª2çÆ%kH@Ì$ç%[ÈKf6áØiŽý>N´F~ÞÌ/zçÌ•J²Ÿžµÿ?Ÿ•N#+ g5%§VÎ fÅ"‘\”ªZ­È§!“\\± ò3ãk•Ö<ã?9¿( ŠR'xmÿoR‹[RÈo9¢M¯ýPŠ»‹1“Ù•²Z *­Ùù{ƸlË¢ó}b6­VwöeÁH³[j¥Å_g ’W«3i§Î’™7|PIË‹çH­”ûPKw»Æû¾Ü>0ž×Jû8«àÌþ§¤`ûþz‚¤˜q\¸R)(ARȦ½UŠf+ï¸LÙ+;s ²¶›w\º1*7?ÚíJ¹m5”k–'6B«@Ñ‚d^Î]á¶¿à ŠN¯ä”Y)õÜŸ ñò§¾wbL´rÎgÁ:sW‰:Î5SÄ ÀEôÎwG—§VÐXß*;~Ç5ÈS*ÞcÜ÷“ ’†,&.[®ïGïÈ劜jnMRCnOój…¤#[³®ûӰ˘'6Rk^LÈHA’\óâV¼ÀÿdFZž›Û@pùI¯º;ø­ORò3\‚>h‚¤Ny« ³³³)ÇÊ nÏ ÙsGÈì;¿ ’èïcIÁ$JD7æ=!TPBÈ]!I.æìs6‹²µ±¥‚Ë«&Ð<·¿+»i4ÔêÇþš·b²[}ÝÛ1kaßÎUÈ8.Z»rÏ'6Æ U/¹¦ý›¢#8:?>ARêD¬x+D Ù?ï9‚cc´ßAÀ]ôÊ^¼H: ¤.oÌúÜš|ñŠÙùù»Ô|Öìÿý° ‰ÛöwÖ L÷oE<·˜–y/cWîû¾›ÏlÉîÆâ@)p¾??8ßÜœ—ŸÔZ1°ú1^Øç\˜¬Ö¤ójg0«è¬ëw¨l¨x›` IË[¥Ñ¢dn~n“b¾GÀ\øã$ʽÐ÷ÍœgÄo”î9ÆsBæ†ub6ã¼Ðó}Ä IÄY‰ä¬¬eKsžËx«5n€xÙu‘ÚOûâHlá°æ½X±#…ùÀùS [Òìù„NØekvÌ?¨›„̦ñ³Qpò× ì¦ã@ÊvÙŸYsEï\6æSÁݼÖòÎÖ¿A²álà ’5 |`‚Ú'Á5žnånÔjYS|Ó•}>µjau"¾WÛøªïôõ"ß.ßqŽíô®'ÖôÎcúÿ#ÎÑQîj­È|Eå›$×$vLF2bǬI¾òðÞC’È„^Æ€ yÄt$¿•‘Åô–œw®óý“‡ _K§%³‘¼]A€  H¨@LÁ§?ýix‚ùú׿Ž!xÄH¯×À'_H$‰Dzò’#@H$‰DB‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$‚$$‰D"‘$€ AH$‰„ @H$‰DB‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$ ‚$$‰D"‘$€ AH$‰„  ‚„D"‘H$‚$‰D"‘$€ AH$‰DB‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A‰D"‘H@ HH$‰D"!HAB"‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"!H0ÄAB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ H$$‰D"!HA‚ !‘H$‰„  ‚„D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$‚$$‰D"‘$€ y˜‚äë_ÿº7 À“†<±‚1€  ‚$@ HA€ GD¿+ÝnŸz€§Ht+²zçŽÜqXZZR þ¿rP‘nýHý½*•vÔ9Úr˜¹#™ÃÚ óQ3ù8¬·I¹»õCU¦Ìˆ2é[59::“î”ÇÝ&µ£M¯M²µ67[¸~WåÎsYi»gÕßvß\=ªSG÷íÙѱ4ºÎ=¼¢êé¦÷ð­æéÔu;®š6}¨e¿…ñëq#ž\AÒ¿”ãlVäðÀ1z—7åðHý_}~\¾v-«>_)H Û«²ShÜX-«kT¬G#H.Nd5³-õîÆîÁ’*ÿ1Œ¦9îöèJvYµËê”+5±úÜha…ÉllA’}Nî,=oIö9%²Ÿ¯PGáþ_;P}zI*ŽQ®û×ÒAå1Ê“nÇeÕŽ·.HÂe¿ñëý#ž—­~ݬR¬dƒ³…¶ Y‘Ê•%õ³S99=“ÆU×ûÞº¼«¶ëJÔ—‹zENOOå¬R7ž»WRQç;=­ÉÕUYVB‚䪡Îsr"§ga#<þÞqåš´ïºWrqÕ–ËÚ™œœUäªÛ•Ë‹K3£ù oI£q)íö¥”Õ9OÕ÷—Žøê«Ï ;Ê0º³)å ˈï8‡Ëzt>ík*7««º—ŸØúè·¥VVù;9•ríÒ+ëUíØˆµõò\YÝ q¥®Qoó£ó¬?ëÇæO·ÑK«ï›åÕÇ]ÙÇ9ub]꼟JíÒŠJn;œž•}}Â>÷U»-»<µ ßñ1õ=|þz o]6ê¦N½¾wQ—Æe[•ùJ.œ<Ú‚$ë ’çF ’QùwÛÎR篙º;«4uïòž\EÕ½dëáß®)£ª¬§ÐŒñ剽ªu|10¨N6õoõuâò×–¯Ý8ù]2ÇY"êd½0´²v°Õ'Úö¹—†¿Û<¶]§âê;x†©“%7í3YÒ¿]=r ± ÙÔýU èÊÞ/ï ’Øüh»ÕÃèº åÿª<|¿ì^ØFe£`—!¢ÿŽ­sÅÅÉÞйÝÙýIû[7t?gko—­ð±+eÏÐ}?>˜®_Œès—CyRâ<»:\ž%õÛ±yŠî«ÙJdÙŸ÷åéòl¸m³å«Ør=ª1"®OŽëÏ #†û¬Ç)Ú$ï· YÞ±]bXŸ¡è3úãyõØ6¾úÊøŠŽyèÊñªýЫX®ÛIJ'H¬òAÀˆ{ЭËö’m õc®áæsÛ1|»öw+*†À5nÎÔÌýECšUýÛ猚W>åòc Ývͺ®á[q\G,¯.ìã.O¶ƒÐ¾^ßÎqƒkÚy½8ÝQ})¬»†J7ðÛÍ‚:¶]íÎæ¬jymæÔÏúqcLþÜYñA[Û.2v†¿Í/õ̬ íÊ^ÀàÑâaÛ×'l×mß®œ˜äã&3®¾ý×9Û[2F¨®{«¼7™¦íÌÿ Z8z"d2AŸ_Û^DÆæÉE|þ]å¸é¶=3ëªÔÔ†v¿ß– G¤[Îy*í±uþ mߟZ¨Ú«%ÇF€+1t5MsÅ2Hû/«ÛkiSµWßöñ{?NU¯cú\ OÃå¹ô•'>OnÿsË£EÁÁ=.»ÛGœ{éÎú¡S¿ÊÈ×®’*oŒé/ŒÓ'ãòçô›•½S¯¿šºÒ÷c{ºöÉû.HŽ]OPz†Å° Ñî›;Y9Q®V¤õ•ì-…®cš™cmtWŒ·${Ç)Ká¤`? •azs cÜÜÙ Ì.ºîat¿Ñ`ÿ½dŒ:÷¸zvÅœë2ÒP·³¯gË^,ÃѺ÷ òwò>,,.Œñ¬w{–wi¯âµË¨øš³%cäê¼^n{3Ÿñù›L Ú|˜öÕ¥rû¨KY¹ÝewŒhZqûIJ-í{æµï¸ú6œ—LyÊ{ËæowE¨q´â¬=˜ZÄç?*~Ámrlþ_5Íêw›ªoª~{\8‘£½ÕÁêŸÚ)íêR]W¹ÖœËÁöà»quî® œøg®zÝ+[Sô·¡¸0·/ \5/ ›Žˆz?^£_Ä÷¹A¬šÿ»pœY|ž†ËSÓíy_¹<1ué]åR¦]='ë/sŒˆï“qùkWì~Uð­¢^íxu0mû‚ä}$+^°iа}Ý˲쭯ÜŽÃ;g©‡îº‰U©>sÄîLàòò²ÍÒ²¬¬®Ëêê¶ÔÚ£¯áúœGÁ†›aA²bŒ¯ A¶20ì#ŒúáŠÙ¨aè…‹ ÜW3’ëf5¤̭ܽã1ÿö.hÚ½´gà™ÍøüMbúÛ<Çpyp1[^]õves ¥ÿ,¯Ó¾{žá=º¾£V€vNËFÄêõ¬õúÑ©™Õ_ö ÂéI|þV‰¼«ˆöˆËÿé™ë´äô_õïʪê»ë¦]®–du=,HF×¹½{ÓrðûÀ}3a)H*!·.·ÇßÓô‹Û$ñyšæ:ƒ>âŠß“Ëþ5úËC#ÆôɸüÙý&Ø_»õALÓ¾€ yŸ‰—­hAÒ¿ª¨ºŽ¦ ,­ŸcrÉç3þÀq51>Þ;gƒÏ÷*3û™µ]\êþ€ËJAŽNj*°sô5ìöºÔûƒ|­.©`ðÚ‚Dͺ7úÁUÇÃ=¶:ÎöéÞ”†/Ÿeíb±²olØ+Fw¶O}Ÿ]\.Æî@f¿¤Œw¶|às>*Nú600¿aFû³+ü¢˜­]öžþ]›ºÎÊžýWßCîlžþ²œy3º¶áuTï^KÄçß5þü«mƒU¬¸ü_5Žm÷—ŠOŒµër¬¶™­)7¬Ç%èÒ5/ŽC‚dt»×=¬ VP\·5íò5½ QFj?Zøów?ö¯Ñ/âûœ›§1+$±yšLl{ewûÈ•½J»sfùb´ÔJÂÒŽ|k\yØcD|ŸŒ«w÷ÞËúú¤]+S·/ HkA¢·Ví;ÆÕÊ^Aù¿[j‡%{w¨•ˆ=þËŽQ¹w¢vQº¬ÈÎò ¨Ý=ÏÒzVêj§¡FùÐ f>Vq!£¯Ñ¿,8î2Gê;µƒ×ñŽí¿}v5‘ ¹³¼-•Ë+©ŸÚ®1ËNPoʼnllç®Lèë5T^j'N@ìæ‰yOcl¸FöNAí¦vù9Þqbjt@m{ü–ÈãM/¾ÂÝD >v긳ƅÔNÝ:˜LÔƒ¦P¿’¶/¿v ´ëÿ$Y³sfÇX8. ãê;ÌÕéŽÐlŽ/xÁà^~F ’¨mãó?˜5^Ù;1»<¹ßûUtþq©úK¡váëÛº./mA²šUíÑVâEÕ‹|õbH–cÞ_á¯D÷‰Ú5jp¼ÝæS ÇýkG­4]´ï Hÿ,~ÜýØŸ²_Äö¹@žú±å‰ÏÓ° ŽUñ•Ýë#WN0üºœª¿ÜɽâXÓ_Å×'ãëݲcaÔ÷GjG¸³#7À}e¢ö½8y^V• â;o H ©Enûë.ùûÉáJPdÌ1}©wsYÒ³Á‘2;˜é^Z^e^(×—eÿyV÷¤Þ~0öú8ÿ.Fë§Ž‘ºpçò¿¼Ì &^솳¼}ìÍÖ»Á´Ú@+U‚/=k(cÔ½•í#o3|MWðE¿ØÐR[‡®ÜyÜ@X·]bßÑruÚi|þ¬Ú‘¯Ž—e{{ßá6¹°\)ÿNF«;ÊNÕß²^åhïÚ¤PÇf\}Ѷ·„^övÛrÿæ3Ö2ƒ#zûûæ4ù¹ÃÓÞIc¢üë•Â@ù•!X¹²Û#´KÖúÎŽp¬ò8®Îmס²l/ûëUÏÝéû›5ØÕmOÑ&æÇWOvW=7ŸÑ÷ãtõ×ç‚y²Æ–gtžÚCå1/Y\ŠºN3ÐGtÛêweGjÖør=Š1"®OŽË߃¾jãug—®¥»Þ¼ËâÛ×ÜO¼èAòä½Ï¤+–š lwûcÛWþÞ–Õù>}«ÝîS\?à¾ÒÕùÑ×ë?´òNZÝ)sÝ2üÛÿN–?ç»kÍ~öÕl¬:v¨}ü®9Ý¡ö½q}ߣòï¾Ã~K¸þM·?}þõqºìýíѽÁŒs{Ô}1eù»SõÙ˜ûqÂzßçVž¦»NtýŽ+×Ã#âúdlþº %N6Ûj·±¡—N^·.A7Æ¿“Ó“'þ”±±ê¬4­Þú[­¯‡$KÁ÷Mr¥’ì§÷°ù‡€ ¹-YsÄDj­ Œö–l9+3óûŽ?k%Ç•Ê*HÊ㾟B<èÈÖ¬}®…|K­ˆ¤+&A2/ç® Ú_ð~ó-Çl&•‘‚$…lÚ[AiÒIAòxÑ;ß 0O9ÁíÁ±UvG§ä¬L¤¤hû~Aò@­rØ""1¿&ŽûÕb®i¾óIrÍ‹ ñò“9Ž˜·wïŠF’÷B:åí¬5;;ë’D ¸} 8²çŽÙw~$ÑßO'Hôʞۘ͜”:‚‚Då7×´?+:çH,æAòêo“fQ¶6¶Tà{—-@¸ÕnycÖÜî‹QÌÎÏ;qnlƸï§$F( Ó 9ïs ‰; óƒ‘t¾ؾxn1-óIç·³»@îûi‚ì÷é³4>¼‡Dm'Ì ž<Ô  u€ ‰ #ù­Œ,¦·ä¼s柳k©JfNÖÏÍIf·à¼Ñ'XTúZ:-™üÐwðä „ ‚à}" Àc!F%€G+‚(@fÔùô ʘX+¶Ÿ«wŽ,$ôK¤Úü¶UÐ/?LI¡ŸÇòƬyc»5UÙÎeQ¿Ä1¹(ç½Ûª¯û²ñŒz‰ãvÙûû™ÒÎÙk•dkË~×J§¼¡êã)Þ2Û^¿8sk.¡Ú9á{éeBR³ó²[hÜ8¿ò–:߬G¼´3¿µ+ÕÎë¯BfÖ”g£dÝÚ9Kºo?³!÷Ý¿?´fþ¾þ9ýõp;}tRArÓ>)H:%™3ý(%ùf8-Y›M˜6Ù*[cëe#¥îÝuá¯{›\¯n{A2‘×éÈöö¶|æ3Ÿ‘jµ*o¼ñ†¼yõ¦¼õ–%–õ–´Z-3«ùƒü@~ï÷~O¾øÅ/šcFž³W6D2S ’¶ºU[H'Õg r>Îh[Kš7¶O#H¬âšwÍt¾ykFÁÚ‡fäçLÙîË—>9+‹_ªÞÌ ÍhƒÊ.[çnVfŸù¤”;OhÛ+£o-¥ë<©^h¹eŒÎµÌ¢¤œvXÈžß(¿ViÍœ;JtJc˜VÝ9ýÚô©ù}éÝ– YûÌü\Æ¿Õ/-Ê3ŸüÒI°n§N³:r“>yÎNQfzŸÛ –£×Ø÷îñŒdTßT"!á—üøëÞß&×ê§Œ=€ ™Ž×^{M~çw~GþçÿüŸòâ‹/J£Ñ^xA~í×~MþÅ¿øò­o}K^y¥.gß?“l6+Ÿþô§Í1£ÏÙ“ý9=;8XÑ(­¥Ì §6LSkî¬^S2zÕd!çÛ¬%§®‘Ë—¤Õ ’äšœ7Êæû|±:æííNfeqVý›Ú ü¾Ó<—ófKZç¥áóõZÊj(ã©!…\Nå¥( +h|È1jZ»Ò¼ßóÍ8ž›c²¹¼T[~ý#çeU6s¾‚T›öw=uýE-Êæ¥pÞ2¿kÜmòÚ(GÕIOÕUUZÊk”òª]rR,7n¥í/..ŒÁ¨ÑßO×öö,´^Í ´Oï\ÒzÆX•Ó¿B6ª½uùÜúÊËÞwC‚ÄjJ¹\Vís_Jû öL¹jK«ç¶GUò¹¬Ê{Þ«óñmM3¿húp&=gò÷¯êÅžÏn«¦eÉyÑn«Òy+$Hì™ùÞý¦ÜmøW-)Ýö ¶–º̵rvÛ÷œ~®‡á>]'ö=ÑQÿÚ÷X®n“ñ«#·Ñ§âÉLj-0)QÞšó ÿŠlô=c ’d&¯úVÁÜ£þvð×½¿MÜcË…¼Éo¡4î>cìÉÔüÍßüüîïþ®œœœ˜¿_zé%ù§ÿôŸÊßù;Ç ÿÖŸýèG?’b±(ËËËæwqç<ߟ7®5¥ŽíV¡…Gj£¨\^앎–þ]« IeH,šÄŽäÒ)Ÿ›fN M×h› }§øöy¢pÎ=Ÿm8†äŒì7ï¢ÎLjóYÅÌðwÊÍ™ãýFÁ}ÉèïÒß²ÞùáãÖ ªl½†dR3Cßi·ŸRÆWfU/¯8×þÖ}ÛÚO„Ž›•¼É‡e‹¹Ð9g׊7n{í×ÿÊ+¯H½^7O×öŽ I® ­fuJö¬ñšqwŠkï–rû —Ívõó‰îW­¢çÊóµãÏë]]ã<›ªŸÅýª3ƒׯQåêÈ–c\ZVÑô­Ù²oF<î|Ñm5¿[2~‹iý]Úî×Vq°"ã\ÌáQÚ˜:_2÷êxP÷}4®N"ï‰dZšS ’›ö©(A¢'2æçÐÊyn[MI«zM¤R¾’ø{f#5ºüu$VÉv7õ“˜ß½ZËØ’éùîw¿+ò'"gggòòË/ÃáŸÿó.÷ïþ]Ã?ûÈGÌgú;=ãù§ú§æ˜XßdÇ•b£¬`VÞŽ)Qwж;I^ÍúÙÛ3Ív,‰roÈ9.=²mÌÙ®1® YË7àÅ\ôÌ\uwÎŽMѳ‹½’™aM¦ ¾Yiû|çøfÁ6äæ•K‘åuÉ…}{¶P$óÆhÐ3A£Àû[¹ó˜Yܹ Ç€S†€^H¬É½bÚ3¼xmÔ8ù)® DÚ}sí?îFvÁ1mƒ©×,تɇk\ÍK±Õs ˆ™Ø»AÛëíW_}UîÝ»gþž®ícIu×3cÛ[Å htv×þ®WÝ÷D†Ý6³jF·h·‰*Éò‹‚¤dÙFìÌÜ–Ó-Ù]HØÆ]óÁ˜6Ž(W3gúðBÖî/Ùù™€«aüùܶšSme‹›¬™™Naå7~÷œk¤$wnÏh—¶ì>›­}×¼ÉÌ ?ç^ÛêÁßGÇÔ‰wOäíz?Ï¥}rrArÓ>%H’æÞÏ›ûÆuÛêïšúÙÍ®yýjÜ=cÜ U›Ý–ì›ò§ÌŠÛ¨vÈ™ßÌyqn­â†í~ÈØs£±$NOO¡m(h÷ŠoûÛÆ]Kó×ýׯ¥âÇ?þ±|ï{ß3„>f\P§1öÏ•ñ¹hŒÈrÏ6ͪˆ p.ù†E3[—ôî¾ìïîÊ~vß ‚·gh‡cHìU—„ïA?Àž9ÕcQÍÆž+×ûÿsv"Ïgyç³ÿL¬r 1.g‹Òe4²¶èòoVC¹fØÿ·š 务\lò9ÙZ[4ur\/ì¼Ø¼ß(0Ÿ»³å®±³5çP®ûIÉg褼óܤí_ýuã÷¯}ýõßÓµýhA¢7;p ÇØöv‰þ~~qM²å²Õ þn°|¶_âÎ4û¿в…qºÐÓÆ#žµa§ò¢gøó®QYhù®=ê|v[¥¶ÊCyÑum;ñþþ­Ü·ÎÏÆ «gµL>JEåz´»!s‰AÝÚ}t\ ÝN;ŒŠÍ%HnÚ§F ’rK Zx©rvLüƒÊojW¹myýj¢{f­4$4ǵƒ6¾wUÝUý5»¿f BÆž=€ P©TÌÖœ:nDÏ`^]]™w´Ûmyçw”‹Še>ÓF„v±xî¹çÌ1ãΛ[ÐÁ¿[²«ˆÙ]ÇÇ]¬úa–Þ2®ɵb`Ö0™LÚ$’jg¦9™]03à%ç¡Üô¾#T;Õ­·7¨ºá‹iY:ŸÄ·‚”ãnæwAÓ³žÑFå¬üd#\~z|Àõ&9k—uœQPÞH Åb¸ÆfÁ3 Š¡Àÿ錂ÛoûÑ‚¤Upf܋֨öî4 ’žKÜVvËÖ@8»x%Ó¹HAbï” ¸û ìø6—©!‹‰èþ¤ûuÇ»ö¨óÙgÆ¿Òàä%=ÆNF`«éŸÛO2e Òq‚d\ õGL+HnÚ§F ’L©#½²m°çUFZ¯*äšê³ OŒ½g¡•@ù#ÚÁÝÐßWU}Ϫ{xq·ÌØsƒ±$Á`]húŸþÓ’?ÿó?73šÚpp·áÔÿê÷è]p´«ÅóÏ?o~«{ÞÜâÀO{ÿ<2Õu%(š‡´ZEñ_Ü—­lÉqÙ Ï*V+C”ÁfÜWôÖ°*°Sç[Ó³ÊfÅFm­QÇ^Ñ3²[íE¸ÄŒ˜¥tfZó¾ÀÚ¬*bQ¾ôûIÇõÆ Ìˆ&CFA'dؾæ*Ü¿íl:˜u¿©Qpûm?"¨]o`µÇµw§Y”Ì®Ó6*€¶œ5.)þä‚2تΪ…Ììs½ÁJÊFiÜÛ«º3éÖ˜6ŽÚÙKï–¤Ç{NRÿæUžlãÁ˜ó ïîÔqŒè­j'~f~!;È‹UPõ?ý’½Ò1§b²z¡M¬P= ×1ur[‚ä¦}j¤ )Zæ¾7;øÍÚ›dè~Ð+­ùVÞÆß3‰´¯JŽk©ßó¹@ÐzaK²¥&c‚Ar›[¿j÷Šûoÿ­|å+_1³˜Æ0p’û›££#óýÛø­_î I×µÆ7{×ófn ¶?¸2æÖ¤¬vº©6ìY_geÅQO¥³ÒT»É¸3Ä»ÕP>:¶Ïvb1?”Ÿ²cÀÚFàà| }¾ÅÁù¼Yø¤r»h¨]œr¶hûì·Þüíì¦Ê”«6=#ZÇD|×Ùal_í’dù®•rbl÷¥YõžŽó€Qàn•œP«LUåêRÊ:«óYU'ÃFîuŒ‚Ûo{wÛß”lì+w,ÅîFÆv)òmû×Þç»Tz_ÎU¹Ï‹»¶›‰zçBpö¿á¸ÃÌ›~äº$-nåäܺ+‹N˪€šÕ¼Ì'‚(¾ƒ;&Ù±ÁÝÁü.h)Ÿ!}>×ç>¡â Ôn[çy;.ÀsGŒ2„ýuq_ípÔ¬ÊÆ¼ïðí·A¢Z§å]ËÜOp=\ùúh#¶Nn*HüÛþ^·OÚöן¼sÿÌÌÙcƒå$ãî·6Ô½¦ÛÁ^=ˆo×]oa« Æž†ä2³Ñ1$Œ=Éõѳ–o½õ–|ík_“;wîÈ¿ÿ÷ÿ^¾þõ¯›Ï4ÇÇÇæ3ýþþ,þåx¾YñäÀðøÂÛ•áw9œç×ãìd3›–²ôáOø¾Ïäªûÿg¼ϨÀdcØ*7±¨]»ÒÙj0@99Øe&¹°ë̜ۆÀ3ÆÝÿ·ü,ÊBÒwÎÔ¢”Zúó¼gÛn>‹ÊIûÂÛ³ñ\ÚsKúÚIðådUeøËœZp’¸Ÿ?¼1z¦4 n¿í-{7ªPÝ&Rs²•¾ƒdt{÷¤¸µ<^ì6zîÊBÊÛö× ”×mªw7rÝStLDO¹}Ú#1çˆÇ·ñ°‘/ภòbìù"vwJÌ;;icî™Á ù|ëã²éÙ€ÛÚ†y¹d+è²¥êcqqÎÚF êá•`©3sŸ ’TLPû¨U’›ô©è#·*'&ÂYÕpßïá®6¹«­±÷LJ÷³Ù@;šÓ¶ƒZñ]Ëm~À؃ @ÜíF¡ \ú…/|ÁÌ\~ìc3è¿õgú;ýýÛ‡——Ž |mYØï;7|û±íâb¿'Å ÏïÇ­ƒ‡[Voªs[‘ùï™Ï-«3}~{v™­Nï)lû˜ö¾V¹ÕNn¡ßGµÇMÛøA¤[רóùƒ©u™¦{Ë{Oùì›>^ÝÒ×QçêMXãûèôŒZ%¹NŸu®k1¦ïô:VLÝ=ˆ9¦å½ã†±$i¥äÝwß5»àÔj5ó&eþ[¦¿›leäñ§è¼¡8j›J7H´`}p:ô©íFǟϦž‰\ey²‰Óö©[$Œ=€ yòS=kÙï÷ úï§É5AŸù Y\ËE¾sB﹟^X“jçƒ×±?mÿ0Ú8þ|ê%j»ÕüÓù6ëqBb’>õA#Œ=€ x‚dRQq“c$TÀXa%.¦ý= Hn$J&…º@¼/¢„:@í‰BÃ|ÖkeÞ])I¿=/I.›•l.'ÅrCzž ™ ’(A’ÚF«*yu|®P'£Îí®HT‹yÉšcKÒê s¾NSªåª”îoü‚dc„ ™uIÑ”%•)˜(J9ÉæKÒ´ì’Bfxå ±3FûD‚$L2-çŽhˆ;÷ƒNÕR’oöb§ó !‹ w•'-7$k%ß±MYsV‘f·4 Hn!vÄ5¬Óùæèß©8 ÛhOÊVQ­@äלx;îbRA2›Ù—Ra_æá0»U{î|:é˜É ’qÝËæ³¾’9YpâCüBç&‚D¯%“Iƒ_ íV;@tìÇø v+&¨}6+’]Ly+&[ÞŽZ@Ü ì‚cp'e·Ôò‚ÚçÜX%Tü«Õ^ЈŸX˜¸'f$mùI0n%"œø‘…ýs[„2ö±ó»rÏ;÷œŠwÙ’dìÎ`ƒ|%æ¶¼]¹Ê» ¸“  ±ãG2^ ‹íF† É­á7¸•±ˆ™HJ¡¥Ju×ûzcCR3Ó»l9¿_˜¸D¥ ­±ç>ߟÄ ÌÍ9¢CAí=#tœ¼Ïn© ÷á²6s‹-“þr/æÌo†‰*cß{GKÒün°ÚåÚ¥E7 H&¥×”ÝÅ`ìD"5/¹ªë¢Ô’ÝßNX©9™M\©ÊvLÈ3kŽ qݬJúňΊFZ}®YóE'~$þÜÚ­¬°1tËZØ’fïwî™”ãf¹ñ îûBÂeíIq+øH÷| 'Þ-Kj­8Ö~a¢ØþzðÝ-@Üœ^Ç’V«%-«ù}ÇRßµnöfrKßêô¦?·“·¨c§§gò¡Ï×éÑqA€  ‚$ý¯ÿµ,..ʧ?ýixÂÐÏpý,Ç€'VüÙŸý™|÷»ß•_|ž0ô3\?Ë1Äà‰$¹\NÞzë-év»ð„¡ŸáúYŽ!O¬ ùú׿.ï¾û®H$‰Dzò’~†ëg9† HH$‰D"!HArAÒétÑI$‰Dz“~†#H€‰D"‘H¬‚AB"‘H$‚$‰D"‘H@ HH$‰DB‚AB"‘H$ A ‰D"‘H@ HH$‰D"!HA‚ !‘H$ A ‰D"‘H$ HH$‰D"!HA‚ !‘H$‰„  ‰D"‘H$ H$$‰D"‘$€ !‘H$‰„  ‚„D"‘H$‚$$‰D"‘$€ ¹_ûÚפÓéÈOúSxÂÐÏpý,Ç€'V|å+_‘jµ*wïÞ•z½þÐÑ×áZ\‹kq-®Åµ¸Öí\K?Ãõ³C žXA H$4ºÝ®ôûÔ H>ÝŠ¬Þ¹#w–––ƒÿ¯T¤[?R¯J¥u޶fîHæ°6Õuk‡«r繬´o½L*?+wduÊü<.ÔÖU]¯K­k×ëêQÝ«cûï÷1_+£½nÐÎ¥N.%»êöÿ¹²jrtt&Ý[ÊóÙѱ4ºOF?íûÊ?ÜæuÕu27¾Îe¹ §6%@<ô/å8›•ÃÃ#9<Ø´ ±åM9ý´æ+{üp{×é^œÈjf[êÝ›M²,©6Ü« HAòäѯ›Õ’•lpÖÖ6FV¤reIýìTNNϤqÕõ¾·./äªÝwþß—‹zENOOå¬Rk„ÛK¿}%—Öà—u)«cNÏÊrau#ŽéªóÖ×¹lÔ埋º4.ß0†ÞòAY}_‘““S)×/¥:ß•úîôäD]¯æËc_}ÞP³âWRQå<«]83ãm©—ÏÔ¹N¤\»Yžzýb0“Þ½’†Îoןÿ†÷ÿ¾u!g§'êœÁº¼8Ñ¢pS}Ûà~Î'Hže|«kÕTþNU»ÔWC†{dÞû–4—Ê5I•Uç#Ô¦n›è:*«r•³+#I÷êBµƒ¥ê¿f~¦ ùîDõíÖE#².âÏ;\'q×ãõ7EÅíªÎ+ÇÛÆð.¨ººÿR ;˦=ÊÖ5ûΠýk…m#HŽT9Úýöý4ªíôuT?¿ ÛvßoO^V·¨¶õ·éÕEÃÜSýv°ìãÆ€¸>m·cWýk÷§Óò ÞÂ×Ñõtyq¨;¯¾ÕqíþørYµc#H¶+ª=ºñ÷‚äñsßZ¹£¤J„ ¹3ÄaÍ2úçõÿ÷ÊêoKŽÖÿÛVÆuÄJÀžþnO,³Z²=|îŠK Y×.eæ:êÿí3ctÜY=rŒ— ÙÔyÏ–+Lø|+eÏ0<Ý[ }¿.å+Ûh9Xò¾"µ7k²½<×Òæñaîά5lèòÄ^mÚ>±ŸnÝþþøB”åáúÜ;½p~w$™u]¦ ‰U6mæ?×òÞ™SG£óÞ®D¶é±“ÿ¨6å²U9Xþíê¡iÛøúÖloèXwµ-þ¼þ:‰¿Æ°»àúÐyu…ëä _øƒÁÿ—Ôu§ì;Ýáþá’­½ßOG¶]WŽÌq;rå›H0÷m¶6qYÍ}]±ë¾Ü ç^®¬Ê~;<ˆíÓ‘í¸¼gò¾N³ò¼/O]µúº:vÓ¬žŒ.W°ÌXÖžì@<‚dyÇq±²*>qà3 »5süê±mˆôÇøjG¸=ç̸[¶±}âùðï- çAs¶§Œ“%[ÄXå½b®udþ_¸¼/Ym°-mJÅê;Fmì´ÍqcéA·n+ë5ÃÚvŒDuì¥ZÁQ+§Æ RF§å̾Vm¡qžemA´rhÇ4œl:†ÏöéÀ(Óyw…•ç®Ö—3c”­ Ø ’š^¹P3ú®QYѱ9*¿õn?6ïƒ6=±óqU6«c¦ÞU;®úó¨Ú{S×Ñr´ ©eW͹œ:qÓÍ“‹øúnÛýíŽ`¶qmɱÉó²œ^ÅŸ×_'ñmîã5Y¾c¯LxýjgÉ®P[öê¬b\Õœ>7Mß¹^©œ»ÓOãÛÎ͇+~¯ÎöÌÊËéÕ”erÃrWm*CeÆôi¯Ïìz»8Ý Œ Ã×yÎäɽæö±}Ou/ìñd%Wˆ-׃vÙ|`&5úSÜÃ’Ç^¸6ž=ÃeXhãhs'+'eå²Õ“à ’®;«*ËëÛrT8rG tKÆø.ï-›¿ÝU‡ÆÑŠYq¹òŒªÁlñEaÓ3Ž*ÆPZ’½ã‚Ž¥pR°Ê¥¨cíÿk#óXýîXsRÈÚÆÐ^y(§Ú \Ö«öjÍ%w&Û23ÏzÛÚÕ3´ª~ô9 'r´çlU¡É‰mŒêë®ÊÞaA* ×u%>ïn›êºó·©Ži°¿ ¸£UOÔEÇ—ø¿³g©µ±W߯:+'~CÚ²W¾öÊVìyýuߦQîu–\\\H­R–“ãCY÷‰­°‘î™®ïDôßÀ¹ãúé˜~׷ůÝûr¼ê_)¼~YÂÄ_ö¸1`\ŸjGgœpûûðulAb>÷¯ùÜCãÊåŽcöù§»‡$µ Yq‚qÆKÐXî^–eoÝïÖ²,Çõ¸ýÿ+)l#Á=n5[ã²sZ6«(úß•u€¬g›½ü,ËÐu ¯r{0[»¼¼l³´,+«ë²ºº-µvèXeø¹®Þï—WÔoUÿñðîNöªÍªŠu°w$:S¾ìÚ€-¨–c®]q][–œó©WVÕ9×Cõ4y IãTdË~ת¹“÷¸6m›àkÿwn@ö(A²b\ó®ü;`9犫ï™™êåÀuüÆjÜyýuߦÃÁðÇÛ>"U'ÆõoA2Uß™XDôÓûãûíµ£b3ìÕ€³«ÈÀÿiÊ:^Œè/cúôІjœYžTD®ÊÅ—+pþ)ïaÉc-HF.ðUQ;u;¤Š•¨ŸØ®?3‘~—­Ó£C9ufêÛ*ÀùpõÎÀý"@_ ›KžÐ9k»³Ö¶ÁqTïFzþüW²¶+IÝ¿ÊP)ÈÑI͸ÝufW7Oy(Žä¤a:®N¶(8T3Ö—²íùÇïÈ¥q-;¶Ý~ü;µër¬¶ƒ­]õ§_!QyÏÛ³ìý®%å£Mgfúؼǵ©›G¿«ír–$þ™ì Sn}®¸ú¾ï̺ÖЮëÝA¥{ÞÀ Il›>ˆ\í[?¬xßù ßQ‚¤û`Ú¾3J¨Ø’þƒ1ýt|¿ë;îK«Fü+½þ¨ëÅ”Õu!óú€p—ô—}’þ2ªOO*HºC‚$\¶¶­.Éïü—Ør¹çÏÖºÓßÃ’'WèíWû¶a²²WP;e)—ŠÊ±1 V"Þµ0$W²g öm9S~÷ÖeMöVîŒtº:Ýq |Û§]>ð‚ç/Do§Úö­¸y\ZÏJ]íòÕ(:ÁñÇžQé?Ö¼/Eû›•ÕŽ=*¦ä`5Æÿ|à~æîTvâåÜC®ŒÑ§ Û‚Ú‰éê²";Ëw"¶TlÛßú¡-Ȳ§Ê=Níôu–µƒ}O.û±yoS7ë¦M.Ü:Z‰!YÙ;‘KµÓÒñβ _ß—²ã†Ÿ¨]’®gv¬ŠÙe,þ¼Qý.ú¡ÍÁ³~¨ÜÖ”€«ŸxÁé:X:\/'Bo=m߉v9´·¾hßí§ãûeÇ èüìœEo3<¦¬ýË‚r¬v¼k8»]é¾[*ûdý%ºO$Ã×±‰›¿¥Í#5ž¨ÝËŽí{ÿ¿~ý˱åzжϿ²s(µËìÊÉÞºìM¹m9‚ä¡ ’Zä¶¿¶øJÀ9\ ’Œ9¦/•£àîLKë‡Ê}(ʈÍx/Fl× —3jãädÔKÍÚö®Ržïýÿ,`(ùË`9ƒ ñ‹³lÀ=liuOêíècõg'Ž?¼Ëfvô‹ò.Átè¬.„ÿof·ÕJÒÎJpG¦£Êðv½ƒzõÿvc»ìzp£íãÚØ¼Ç·©6Ïl¿|×…n}ilP{`‡¥“7º¾õuʲíw7[ZW«eÝ Î¬“¸k±‚î>ªvvÖ»‘:žkRÛmÏ=oEN …éúÎðŽhën9”ñßOÇ÷»Ëû^;¬wG\3¾¬vðùúë“+Hüeÿ~eL‰éÓf¥c9(HV|+pþë”*Á#êú^òÕÁúÁ©YU/—z7Ò¦ó½Úp ¾.ßÿwü Hý®Xj…¤ÝíOq\_¹k©wN´ÕËÌì"w4É´¼xŽÔZA³·dkÎ1þç÷àö€X+uì㬂³‚‘R+㾟R´ò’4ÇÎJ©ã~–s>ÓçSyNºÇ[Þ*OÊ$–÷}ºÐŽ[)·’Ç‚Þùn„ÛÓŒ·º`¯& ÄVÙ’ãæe €øï§$½ª“§dFZ^¼Èà|Z¹âb!ïoå%áÏÏlXtdwŽ@z@( ʳ¾àv_Œˆbv~ÞqŸÒn]ú%ã¾$k©Q«2Jp(—¬­ÙA`üÜüœ÷}*S4ç¨îÎŽI&«:Z5r‹ƒcææ%åÝûƒõ$ïViÍ1Òç¥Ü }ßÌy¢b£tÏ ™_ˆƒÄlFªÿŠÇ¨ï#VHfã‰Kç*P=øn~-ØÒ·´›–d"a®»^Z‘)í.z+=n€|™­Aò¤á d®…‹r™jµ¬)¾¿æ\-±B¦¼¥Vafçd!“U»n)±FÖ zºˆõÄRÇ·¬$Oª ±c2’;fMòýís¾?½Ââí € yJèH~+#‹é-9ï\çû‡“§rnKæœ@|'’ÞÊ vå@ HAòøñ /Èw¾óùîw¿ ðT¢û·îç R€ y ©T*ryyiv²xÑý[÷s)@<†4 ùÉO~"ï½÷ÀS‰îߺŸ3H‚ä1äÕW_•~¿/$ÒÓštÿÖý|Ô=ÐëõäääDÖÖÖäcû˜üãüåWõWåÃþ°‡ÙÉMõ™Ÿ'åûøÿ¡üê?þUùÈG>"ÿøÇåsŸûœ©] æ ‰ôÉOúS_¢ òO}êSrxxhÜ»:ÎfõèÝwß5e>::’ßùß‘ßüÍß”b±hê†AA‚ !‘’ ÑŸý·ÿößä_ý«%µZÍ|öAMnhòòË/˯ÿú¯Ëý¯ÿÕÔ;‚AB"ݲ ц÷ÎÎŽüÖoý–Ü»wÏĘèß¼÷^ßüû¢×7nZ]zuèüüܬé:ÒuÅà€ AH·$H´+Ò·¿ýmcp ±,˸-u»Ý Zx„?Óu ÅH»Ý–7Þh™:ú7ÿæß˜qß@ HH¤[$o¿ý¶‰ÙÛÛ“j¥*o¾ù¦1Â5Ú wùöÿ™™™ðKÿ@>÷µy¿}R±EÇ œáïuý蘒þð‡²¿¿/wîÜ1Ÿ1À H$$Ò ‰v?úÆ7¾!Ï=÷œ Ü®V«Òl6åþýûÆè~çw<þzE ’¿-Ÿû‹#ù‹­çäWþ¶&¿"ßxãÀïžtùï¿}߬éºúÑ~dþWVVä›ßü&®[ ‰tSA¢WôÖ¾:˜ýÅ_4+$¯¼òмöÚkæŠÖ[oƒ\ó­ÌßSäïI¾ù–¼¥>?üM-HþO9üñ›jUåRN¿üßåð»çrþ×ûò™…ÏÈ—¿ÿšYmyóÍË×þûº|fqQ>óûëòµïÿØ|~Yýkùï_ü²üðµ7Íÿßzó5ùæþ—/ó‡ÎqoÊk?ü¦ü÷ýoÊkúûתòå/|V>ó™ÏÈïö ò×ç—ÞïÞ|ó\²ê»EuÏ~ñkæ÷o†x+â3óù[vyî;åtÑŸ½ñÆæ}-:†D‹5]Gz%éOþäOLÝ1È H$$Ò ‰vEZZZ’¯}íkf@ï(u÷î]#J~üãcüÞ«÷”@yUþ*ýËJ€ü²|õ•Wձߗ?ú°$–¯¿rOÂWäÙŸÑÿÿÏ¥ë3ÿÿŠ:ö»òì/ÛÿÿßÔ»>þwç»Ol[êßþó÷¿úóï›@ú{gÛαŸ’ï«kêëîüsõÿŸùŒTÔù?ó¿ÙÇþßþ¿ågÔ¿ŸúŸeó}Oyßýïö9þÕç¥îœÃpÏ÷wýÝ=]¦×L9u½4î5LÙu¼R¯›:Ñu£ëèøøØ¬(éºc@ HH¤mtg29==5+Úðö„ˆ2Ôõoôj‰æ¯þÃÿÏû?óó?oþû‹/¾æ|ÿ’dáñï¿têsò…9óYæ+?ò~·>§÷¥ðãSù×ú<¿±øíÌÌÏË®9oAþ¡úÿÜNäµ—þB~Y_û_É;wð?ãóšüèKÿ¯ùÿ—~ôÚÐo£¸¸¸0ø?ÓåÖå×õà ]7/½ô’|ï{ß“?ú£?âM÷ ‰tA¢ n튴±±a\‘ôßÚðÖŸ»†ºŽ'¹hÚÿ~í¹ÿGúKþÝúÏòÜÇ~Ùˆ‡Ÿÿ+Rº×Tß×也Wbâ·ž7¿uùò¿ûyõ»_•oÜ|Vú/3Çþ§ïÔï?&¥æ=Yûe}¾áñ±çÿFî}ã9s½çÿF÷ùôÏÛ‚çÿùاåù¿þ›Ð5þ–üªz£¼Þ¶øWßý»/ÿM /Ó¢Ëí WœhQòƒü@677M}±Û‚AB"Ý@h7$-Hô I]¹&éÏ\!¢]’4:ŽB“ÿ½ÿCúÿ‡ä/ìÿ¿¸óIcøÿÚÎ÷ÔÿïÊïýÂŒüÂÒ_y¿×ŸýñßWâà–ä%ï³7änþ÷ÌqKõ’Üý«%ó÷çÿêÏåïë¿÷¢|^ó·~gGþ|éÔ±(wÝcïžÈÎÿ}Ï%ì×>_PŸ7äóÿhÆ’_ûä'哆ߑOÎRvN¾¼L†¿¼úï×_Ý'ªNô¸ ]ÙJ¥’üçÿüŸMÝ!H$é‚D‹?üÃ?4»F¹ÁìÚ×¹j×AßWWWæßoþþÿi‚Ø^µÿõò—äg•0ø…;_Q¿yE~ÿÕß¿{d~ïòð1ê³þH‹Š_¯¼¬~óê7Œ±EÆoJY}ÿ?úÇžèø—›ßñÎåõêwdágÕ÷?û»ò²w_Ã×Þ \;Œw|Äç~üßé:Ðu¡ëD‹½Jò /Èg?ûYSw ‚„DºA ‰6²u ‰jׯ¶^ p…È[¾¶»lý¬džÿªüåÿøSùõ_´EÃÇÿÇ‹êû{’QÿÿÅt>pLó{j~ó‹¿¾*߫ߓ¿ú§ò÷´Øø{«rÏü¦)úOìóüìoÿeà˜™™_”çkιš'’þíUùê÷~$µååã?;8GëGÿã™_ü¸üå‰þþEùËÿúŸå«?j:Ç~O2¿þqyþEçÿVK¾ºúÛòÛ«)M7Ÿ/>/¿ýë¿-ù£–ÙòؿӖ® ]'zÅD‹8½M²®3]w ò ‰tA¢ n½íŸÿùŸ›¤´Ñ­?sßAâAà·?z1âÌ/Éÿûù¯IË|ß”ÏýÒŒüÒsßz±àþâ?Êßö÷·ÿÁsrÖô}¿ó óùsß¼gfÉGõoåsÒtÏÓú®üÓÀµE¶¿}Ï;ǽoo˯¾Ÿ‘Ï}»ißü¦ü’ÿü:¯¿¢_ìø½ó7¿ýÍ1ÿÑ=ÆÁ}‰'Z”è ö¿ø‹¿0u¦ë‰AA‚ !‘n Hz½ž h×ïïбîKõËò“ŸxèßiüŸMEÛ²w³jY×?‡ÂR¢àâ¢%íÈïÛÞ5Ú7¸†Ÿn·kêB‹-HÊå²<û쳦Ît}0È H$$Ò ‰ŽÐ†öù/ÿE–——M ¶^ ÐÆ¸þtèºÒ+%Ú¥í÷ÿ÷M]é:#~A‚ !‘n(Ht×k!òðF”èU=ûOˆ-@týht]é:c€@ HH¤[$šwß}׸!iAò›¿ù›rrrbD‰» ðAKºÌºìï½÷žÙùŸø„©]GÚ‹ÁA‚ !‘nQhã[‹ý¶öÏþóò¿ñòñ\þìÏþL*•Š1Â?(I—U¯omm™:Ðu¡ëD×®#vÉ#$ÊG\_‡kq­Gy­° qÑ«"ÚeëÛßþ¶yaâ§>õ)ù—ÿò_Ê?ûgÿL>ò‘| ÐeÕeÖe×u ëÂuccP@<~üã›À^½³ÀÓˆîߺŸAz%@¿P¿üïûßÿ¾ 9>>–|>ÿT£Ë¨ËªË¬Ë®ë@×ì H$€ :ý®Ù®µß8ç˜çxÔПG× õô'ÉcAýxSîÜY—Z÷ƒÝx—傜6Úßµåp厬Ön|ÚáªÜy.+íkoÕOeguYµ×•õ=©\ Þ¤]?ZWŸoÚíÙ­ÉæÒYZº8ÆwP‰¸Æ¥dWÝ߈õ¾µG[ÎŽŽ¥q‹}Ò_÷}«&GGgÒÕÑú‘*ëªTÚOf¿½iŸz”mz˜¹#™[¸&gLî_ÈáöŠóý’lfO}õØ–“ƒMï~Y?8 ÔñÅÙ¡¬8÷ÕÒêNà¼6݆ÊÏêˆüÄ_³U‘=wlXZ‘ó‹øñîdÛŒµ‡ÿŒÕcòʈ{ô¶ùdô¥VØ“e§ß/¯Hm¢k¶%«ò¹òHïoxªI-«È+Rn€¯[‘%5ÀîU¢IvY= " øéhv$³]¸–ñØ®:­ÉŸšøí™|kâÞuÛ3£þŸ±ÛS•kE¿¼)‡GGrxxh“ÍÊqyøáÕ­eÍ5vŽôùÒ¿fÚjæá\¹EAâ¯ûÚÁ’1PÛ¦^u™—ŸXAr“>õ¨IA^;…Æ#ìGqýÙ’ìÊÓö‡§e9ÉÚâcý¸áÕ±Çgrv¼c‹ø¬=ô/ ¶¸y(e5‘±jîÁ¹¼Q~»r¼nç'{R–Ó#皎Í+Ù3FëºÊe9Ü\2¿=nŒ˜±VúøíÓ+Üä« ø¥(AòÛ|B. Û¶ÙÖ×<1Zwîl;Â5þšÝú¡·Ï,ÚArAg]Ö+rzr"§g5±Â3jÝ+©œÊÉé™\Xm¹j4äª;ɱ}¹ÐßžÊY¥>|^ר¸º‹«¶´/ëê·'ê·¶aÑ¿ªÛç-×½^ÿ¶~q0‚.ê ß¹£¯iÕŽa¿}\‘+«)H–TùêeSÎÚ…5ô›zùLNT~ʵˑõØo_ÉÅ¥å+—r½òÊQY\ȶ#<Â+Yö ¿ß²IÅ'HV²ÌZõÛR9Þ6Ç‚*CÛÉKßjÈ™ª÷““3i\ùê¦oI£q)–n—“S©]^9mß•‹ZÙþìÂx—êÿºn* ¤Û´¬ÚB·G¥~éŒ]5C·mlGª­Ûýx#îB½?ãªÝ÷Ú÷²Q7õê­*]Ô¥qÙöê¾ß¾”Âβ©Ë²jG[¨þeIÝéÇrF‰ÃÈ|Ï4ÞN}<«‹†Ô¾ëèºWå¾´ú¾>5Ýõbï§m»Î½}ª öË®ý›Á½Þ_?geõ;_[\^ØmeÎßQ7÷¹ûÛ«F̘3Éø4¢?î[àgkƒül/«•Ã3Ï`_>({ßUVŒ!ÖP/Ù<Ý^2Fš+@úcç\Ãqm ú^]/ & Œ±º¤Wvâ¯é–å¨ÞõV†vôx±}-bVm#Ó“êõ ³ZèŽç:ƒ1¼kú…ûÿ¾u=Dõ}Ëî?g5÷üñã¤×æj, ´—jËš9î4tÜ4}~úûqTY'»ÍóJ—SÕmY?c£É#js=æÕëÁçò•몼ýˆgÝ•ÃA^Ûe³Z²sv5Á5íU’¥½3 BÉm ’¶;³ VåìÒy˜^Ú3ð!ö*Ö˜c-9Z·­öÃy¨,iuÕYppÄÊžþÿÞÀ5C ¦få£lÅ\³->—¦å¡•Ûe+œ‡Íãºsšl‡\¢–6#g¬ýù‹*×å=¹Še΃H?¢þZM.£ôÛeõ sgµ]¢Œ¼¡Òu]ß{ŽáØ>³ûÅê‘c]ȦS~·îÏVçWþ‹Ðõ\kÖ©è|GÝ;·Q¦ß¸³õÎŒöɶ}_©™ÉAŸšîzq÷ÊPÛ:+s+ó+7ÏvÔŠÍöp]:ãÁóúÿª­ÚµƒÈ:¿³S6ðéÞJè»u)_M7>EõçáYkÕþW )Jö° uk°bªï›ߊi×[IsVLmnO,g‡WQãÚn¸?÷=Q»Ælš±íD}ÍÆñº#–ç*,;†íð=cî çžqï77?—'öJÑöÉ¥#Üìï/”A_¾WöN/&èû+R{3nœìªÕ³p;:«¾WesÇš#§\ÓôùéŽ»£î‘.[ ÍÝçÇõ‚¹–U>pžuå¡ ž£•ÐóÂMú¹8É5í߬~à]À$·,Hl?cm„ÖÓy8ƒO-7kÿì¥m©X†Ä2@bu¹Õã gæ§0Òø¬emÿÚlùÒß§;öÃàÀy8؆œ=-{†…å ¬‘×tfÌï¢\¶Vüål;O]gî,–2˜cƪسHÛ§—eyÎËŸ[®Ç÷âtod´£¡p9˜UíZ—rqq!———†«‚dÕ5nWVdyyY±¤ü‚"޶·l—¥í¸{©ß^9..Ǧ¬Ërz5ÈÓòNA.õŒ¡ußn›¶¡Ú­;Ⱥ]o}ûajăj‹åÐñlgÉ{°ò1¦ÿžíéãlÃÚ*ï ŒÓÆG^½ùë¾’eP¹3¨ÚÅÃùê>zîŽ<÷|%hˆ©|í,ÙB¢¬V \cÉ3tÝr8ÆÔäãS|?2±7ž0ÃGuµšvy2t/ºurÜx3Â…SÕýH·ÎÑm7ʵ-ë›9ºèp\³1?ÒMHÝ×ËÞ¤‘þÌ(+‡vžl:bÁä1§º¿\ñï¹öqe|úbE­œ^¨¢¸qÒ­Ûmg’§ë¸*­KaÝ™ÝÀ8¹iV¦éóSüvLYcÇnguÍ;V'Æíi9.Îë!·¹ ›Ž â‘sFüÎY!QâêÒ33Q±2é5¯NÆO$‚dZAbÿ,ªYî_·ß­ñͦø ûØc߬9++*ˆo'+'ÊíÊêNækçwð´gð–MÌÄ$‚$òšþߤåT+CKæ÷ö®rÇ'9>.ÈI!k—mPØFq;4•‡(ARÞ Í6z†f„ YZ•½ƒ=ÙÛÓìÈŽ œìFÆ© â)ÜæÿÌ´u6˜Eͬ\Ûj‡ç3o%Gî¶ß¶Œ ªU”»Äñ¡¬ûÚÓÄuØù\2í_Þ[6»3º£Ó¯"ëÞ-9º&ßË#b†âòíêwóú°ë¾ì‰Kmìt‡úÔt×›Dº®nßtŒ‘}Õõ‰×Á°ÛrTЮ.íA}ø‰»Â±nß“®ºíµ${ê^*KAÝWÆp\^=ŒcÚñý¨î’“†'|Œ0Rî*ozî\Âä¨þ†3s]žPŒn»QîNª”OœcìUܸkNcœºå8ñ%§Ûº¯ig¯(ÞY²c®´ÀtÆx×]giSz¬+œÈÑÞª75®ïÇ“v;îÚ×vï»g?cBFùq ªLyMþÛqe»íú]2“69ÿïq›»Ç­/y+Ž£ÆÖ+gB@?3vv«¶:~j¢kÆ<ÇArmAR?\1èn„ÑZ~ÃÛ'CË»z0Š=V]«{Y–½u¿kƲ×Û’àÿýFÇÐàè̺ƒãÈkv+ñ+$K¡·œ?ªxnöêƒfE¹¨ÁÜuéŠ$AƒpTܤFÚ^!Q+#W¶!µìš×Œ! Õ¥}Íå``ùЃwÅ÷½ûÀ¯Œø¿&_ö ‰ãmŸÛƒª3ãju Aò _7ñç gãõ¿êºë*YÏ:ê%NÄ•#ä"“ïh£ìæõv\?ªGô©i®¯ Õ¸oÆÞ/WR8Øövé1n1Ùr¤ 9sVT÷|®ˆîì³w?-©¸ŽÕuuOm¹ˆcâú‘íJµØÌ£n .µ*劳Z„ËV7ªؾô£ï³è¶‹2L£Ü(œU™Q×´Çð`P}-í¾ãðžñoVÕ*DÅÞqî¬vl~S(Û³ãZ¬·+Yo'(o¥ueUµËzĸª#µâ7Nš¼FÝCJ$®­(µ}ÓÝc“þv\YãÆnÛq%0nÚ›tŒ$¿Í=aä® .Åï Ø®ŸÈκºçÔ¤BAÅœ]3vlÉ‚¤62~cS¾ÏÊÚEÆ JÎŽ¾ :7èNFqÇ^(_ÙÃcgFLù&«pu„›ÌM‰ë­óÓ»¦3ˆú\‡vÙÚ«ø0‡Î ²=[zgó4ð€)Žä¤vuk‚DÝf™]¹Õ»Ã.!{cÉò„;„VHÜYr_¸.PÚ·~ØØÿÀ¯¸|çÜë‡Ï Ço”¸"¡6Ñ–¤jfÓ‹#X–³¶;Ë~'€U÷ÝHñ3ZŒË÷´‚dÒúlç|ÇGÆX¼èO-H*1‚į\_Xj§ C9uòÖV"®ºPPÔ’ÍãF„PX5.wÞ¬m¥ G'µ!—­øñ)^\6‡f²Í±FØ"wÕ'lßx-tº¶‘ßS+¦wB1'CÛ¾F´]Еʞà L:8ÆéaýÍØkºô`5³mDùÕã¡Õw禀KãfdÇ:hwél¢¡¯i×¥;¶v"lוÚq`[ظ¾?jœ´ŸAëRïûfóW—ÔýPzÆ qós Œ—ËÆ™7+gq×tÑ•Cµ[TwÄìæ’ª­r¯.Μ KÇÈ™uÚ>*«]e”¯ôÁê„1$SãsõDŽÔŽ05µ#ÍqVV—Ü%õÚÈm¯#H¼T”¡p¢v|ºRõio¹i‚GòK<𻎰Y?TÎ]µšvzà¹hÁåÎêíZ/TlLãäyYWî£Þ™puºãOv›´]·g'¡pÝWp½õñ4‚d\¾ã·‹¾~}¸FŽíè‹K¶ŸwX,M(Hâî•ë 5Iáç3µƒuY“½•;Ž»Š-H–” ñÜBT_:S2TÔ¢eÞɹO—Ö³RW»‡5ʇÎFÇC‚¤;f|Š]isð•=³C\ý4x?qcÒ+¨jW§Ëš=VØÁƃþ¹~x¦îùº¬Œêñm~gйߖ6MÝ]ªw¹[®^Ž»¦;a±r õ«+)nŽp¥ÕvW;wqƒï®§î–¯«j×25^VdgùΈúŽˆ'û—¯/ôÎ\Î6Ëzwra§ w@¼c7†°|5Õ=6ÝoãË?v¶ÆÕíxáößÈ öGÔæN,—;Ú®­Ñ[›UG-ˆÔØhyåvÆÑ ®éný{ª„[ÿR•guSN¼0A2ÉK›"v÷¹ãsi(ãÈ¿£ÕÊöQÀ×·r4ØQdsgÛ‰­°¨ÑÇöÇÙÈ¡\öG¬àøgŠõƒmH8.gê%S{¾àÀ•ÍußlUÜ5U úæ²·ITÀ¡ÞÙk«¶ŒõfÕ ÔöVƒ;peÏ"g©ŒXxÎ$Ár¹â!.ðªv"Û+¡Ýh–WÕ{ꃙuóà_õ^Œ¸zgò—:êÒ̪•e{Ùw­¥u5ûíßs~eȸ­ØB.Ú} º(©óØþÊN,5ØYGÏ£;äfži\ñOÞÿÏ"ëþòtÏ[Qù~e¸á|ûWbóa”ݼ>šö,äÒ`:÷4«‡u_¹¦¹^ü½2Ô¶á¾ïT/ fÛ]¯NÌ GmA’1î&«ÑcŽ3|q– ¸|-­îI}DÛÇOáþ<”ׯI ¯Ë›¾±­{!«þ]’ö|/êTcÉáfÀõó¨í¾×vÃù9µc‡¼{{[Ê—ý‰®ÙV øw<\WcPôvÔᜠQè´qøÿî.P;+ÁݳŽ*W#W•ƒ.lñã¤ns;®¸/´Ô6Ýþã–¼M ¦»Ç¦»?âÊ:nìî_žÚqUÇnŒjmî®ÐyméºÐEíꨂû³ëK‘cþ$×´Ÿ?ëΤ•ÝןgµArkô»b©Èv·ò§WÁÒ'—‹¾ëpIˆŒº»Ö5'«‡«³½½ ÔÍ_ÿšc×Èq2nln?Œº~¸eµïþcÑæÓ ö3¦?Õ5íMÖ„’G‹ÙrU@{Yõöo{uDÏr^ÑàVWñ6e»ÀCàv°]ë–'Üì`ìwجG¾O $™¶œȺ~Ç…Ú…d'«â3x!Àc~×ÇÊòÆ#ÜêÅÃÊíó¨†{‚$@ HA€ xdè—vé ÿ$OÝŠ¬ê—:,--)ÿ_9¨H·~¤þ^½ö[}´å0sGVê°Œö53‡µÛ;ߊ*ÃáÓ÷B±¾U“££3ó6àÛksu®Æ‰¬¸ýkïÔëÝú¡ú,3öõÃU¹³r(í§zðx?û•~—б4ºOGÿ®éþò\ö‘ô—[U½¯ŒxQáe¹ §öSÚ/B×¹…ñÚ?–a˜‚äI )ÇYõ–õÃ#9<Ø´…Èò¦©ÿ«ÏËÒ®eÕçË·òÐÍ>§ŒÒç+ô¡ZØV/l¼µ·|«2,«2TžºÎ[;XRí|` ¹ÛksuÞìŠy{o¡\–ÚEÓëÝ‹YÍlK½;îøe¹³”}êÉûÕ¯ºµÕ>KRé>ý»QØ‘Ìvá‘ô—[GÕ»š4ZRãò^¥ýTö‹ðunc¼öe&€ yâÄIݬ–„géì‡îŠT®,©ŸÊÉé™4®º¡© 9;=‘““áï‚ä9Ÿ é[ÑÇu¯¤â\ïÂjËU£!W>ãõ²^‘Ó“9=«‰ó¶aëòB®Ú}ÏuèBwz*g•zìqí˺”ÕïNÏÊêúÝ€á°|P–ËFEåûTÊõË +R¿-µò™ý]íÒù¼«®[äã²Q— _™­‹º4.ÛÒ½º0Ÿw¯êvùÊñ勾žþÜ’FãR¹J©zÔu|:ºmúíK)ì(ÃÿΦ”/¬[kó®u)'{ú¼ÛR»´T=ùû@W./.³˜WŠWæv?(H,¯=R¯7Tôí>aÙýä¬všu¾o·å¢b×Oí"üá®×t;‡Ë¡ûÀ™ÉO]Úm»>û¾þ\7õ~¬÷@½^©¼úò¥Ú¢¡ûA×}ݯ'èWþú ôùQõ0>úúµÂ¶1* Uç7ÉG¸_ªúRe÷…W _Ÿ¿§+k°Î/.­1÷qt]Œî Ñy$¦½ëréÝçqm ÎY)›:n¨1*»¢ë}Øà·jÇFlWT¹»ñ÷üTå²ëòÒêûîéK©7®T{ßf¿°¯c)—ÍËšçJýrDÿ ×ö8£ÛÏŒAö‹.Wx,›ªÏ H÷-íZ~(ÚÝ;CÖìÁþª<üýÞéÅXArq²7tœ73vuê¹ùÎ[±ÌyŽ7—Bß­ÊÙe?òšÏëï÷ÊêoKŽÖÃçÜ–F?j–u{¸¼ÎµµëBø»•ƒ²“ﲬ‡ó½~¤€ óùÒžó»ö™12î¬9Õ…lêºWb°r°<\ßË{rÕf£®§Û­rÙnÇnÄŒâÊà7KrqKm,˲”Ûƒ>Ю/·m㢰nÓM³zâ ]O—§NŸY?V†n[–ü¿_‘Z7ØöÁïm6ëÞêàÁJTÛ#û€]Ý~5Ù{ióxhF¶ëÔã‘Sç—'ö*äöÉ¥ãòc|q?¾_©ú9Ý[ }¿.嫨rªzxsºü¹dkoÜ !A_Ù󵯓ωîÅ)ËZa«ìéÏ÷Ì=0ú>^)ÝFçÕ$:VŹW¤¬üØ>bÉájD=g+Cã—¿¼fl޹ç§+—¿=ÜûuÉÔÝå­ö‹èûpU•5ªÿ=ïËÓåÙð–-_Å–+<–YSôYÉ H–w7çÁkŒk×Ðö\$úrf«C†B@´íkéé•ó€>6鲜ª™®cý°^Ú–Š|Ø(câòdÛ/¶aÙwОq?âšÝš¹æê±m8÷ç!v…°ìèö‰óÿKÙ[rë¥mf2ï,mª¼õCÚ~ðµUÙ ë®8² РǀÞ,¨Õ„=U¾%ÛP²Ê{£ÛäåÈü¿ DU-»j—õì"pŽá|Æ_oÐn'vÛ¨zZ½= kŒcøØbæÖÚŽXÑÑâò\=^ògñm` Ñߦ~?B,¹ã²Ýgãïù©Ê5NÜZ¿>ÖÄ•ºŽ;^_ž˜{Õ?£]@/œ6]®`9¦é³’Ç^¬8A‡AÃÂ5Üô€¿¼¼¬Pÿ®¬Êêêº×Û#ÅmÔ.ûÎé3¼Ï¾c.Û'Ãß©‡rýpÅìºÔ0~Êíx7±îeYöÖW.8ÃùÔ\Iá`Ûäcàb=«Øu¯ýfݬl2Ûž!ïÎøíœ–ÍL­þWÏø­üLJ‚¸U»,GûÝøëŵÛd‚ä6Ú| A²¸î ’%×eë‡øò¸†ÚeÉéGÚõ¯yp}Y^]õí,w8äd»W©>{¿á¹âØå׬¨ò«`ÜãáäìÕ05£]±wd:S1ºî jç¤%OôÅô«ö ¼ë--ËŠªïÕU›ÓÛŸ.цçuò1… ‰¹§*k¬ ‰»Cq'1}!.¯ž Y²'–÷N'j³s\`RÅ7NDŒËÞý?枟®\×$·Ð?Ç]'0i¥D^„+î¸öòŸš> € yìI´aÑo;±>£¯]—cµcíª?z…ÄyÖñ ®ÛÒAåUc°ßqÜZìx;.aS¾s—µ;”šu¾ŒqÙê_UÔNbÇά˜ ´¬Ÿ°44klÉéÑ¡œ:³ãmxoü½ÍŒæðÃuP?WCùÖnWånáž,ËYÛ½³ªGõît‚äAüõÆ„£„C÷VÛ|RAbïÄUï®w´º$ëjûO{6õ`à‚£ÝÜú“ ’ðÎ@îêŽv?ZQíÜÿ*PÖWÆŠÉãÊ`…dó4à>W.ÉIí*⾪ ¶Ö6BÚn#Ûuûl\¿r¯½jÜû¼›JAŽNjöFc§ËŸ+>ký›æc„+X{p_¹.Sq÷âte}ë²5ú>ŽŠuŠî qyµëF­z*áÚ8\õ æø6ÃÔ½|'^dÍX9nŒ™¼\^[ûV¢í•›à¤ÄÍûÅ$‚ÄwwIÅjÁ¾s6÷.OvÌ=ó­ý¸rDziú,‚ä $ÞR øµãÍÕeEv–ïŒØ Ó¿íï¥ì8Á…'jÇ•«Æ™l:Ʀ­Ù÷ÍÃ;pìtÚ(·÷þ×.CGj×åÂuâ>nžD<`×ì_؆ôÊ^Aí¶c©nŽíeþ¡=ïmã@ǰœ)uë²&{+®¿ô°‘ë_qÆNAïˆs!Ç;vP÷AÙ6¯NwCÔvh—¼ Ù‹QÛÜŽ$ñ×›VTœ8è­ž¯ÛæÑ‚d)$Hú—¯M/ôJÇv=íœ]ŽwÅÐÒÎé[‘º¾ëK’=S;3]œ9.S®kœ-0 uUW¾º³u-Û_]}tVQïIØö‚¨ÍŒ°c|n•U½«˜ƒÕ‘1~@w»“mwF½ÿuãš]ïwÛv~Ùìª]?V»;Y¿˜8}õ¾šþCɇ›‡þÔí=]Yo~è 7ì›±màœ³;ÑyºÒï_çžS.§ž£ûÈÃëÓ\§yÎqåzXý AòÁl‘«gÉ÷Ô[ä³öêˆ6Ù¦$KÁ÷,L.ŒÎ6®+rpx$Û+¡÷. Hžzcòìè@ÖWVÌN;Yå¿Ý¥^`ºÕ„SµèáÙ嵎ï[59ÜÙ”•e½+Ϧ  H$€  ‚$@ HA€  ‚$@ HA€  H$€ yœùÑ«]ù¿þèUù_~½&3y ž2t»êöÕíÌ € yìÄÈÿúÑ—1Ü?èvF” H+ôÌ9ÆúÝÞܬ’ÇÜ´>xî[ܬ’Ç'Óé8¸Y$@‚A HA2 ÉO¼lH<–wÍÉß㬟ø¨]oɾ¿eäf@<‘‚$ýwäÝ÷Ä—~*?üÆE„0yE¾ÿŽý‹wï]ÙßâB^wŽúþ~=ðû¹/·í/ºm™w~×ïÁ"=ùܧFåï®l—ºÒ÷å®ÿNW¶?{×û>ßz`>ÿÎïŽóòÕ“•йÓßéÙ'zï'²ò‰àµÜs½þƒfà\÷ÞsÎåûýÜî[rïþŠ“û­¶|þ^ž/¢Ìº<¯—.ìß}ôÇ’¯÷çÑeÜ]¿‹ €§[Ìí¿3°‚ßûi@˜Üýʃ+(_¸-ÛÏêÏ_–¯¶#ºyåûýàówk—ʨoÊ}•Þ“ÏG ’º¼`ùæ7þÈþÔŒÑÿ§ßßõ "ïzás7ä®ï,wAòwçÏ~ÖY©øÔð¹æ¾üNP@]ß.þó §ûÓ4«"Ù¦ïÈîOõb×1‚Aò” ’ÏýcI[oynCžüŽ%Ißowïý4`P¿þׂ+!þ„O È _xÙ„+ÏÈV†þGkÊÕi@TÞ>ì÷¼°o‹£Ä³M¹çïµ×Ñÿ‚'Hî‰{=ÿêKj7¤ºïȇ}‚äÿ×ïÜ—TÔ¹¼ÿkv_œ2xýMy×ùüÊÔ/oû¯8î]á27ä%§ ~è®0}êÂ;ÿK¡U' ‚ä©$+?xÏ3úïÕ,ùü2—þ±¢.sÏFø?•—ê®ËSGæÍw¯yn[?ü²mxÏ}¥úÍàøìú+òáô+êϾO±{Ï^é×/ƒBå‹oÈþ—/dîSµ€Ñÿï¼*ÉOÕåÃ*ߩϾá­j ‰[ö9¯îu<Á”_9Z˜U"Už^ΕúâÛžK‡âFRë²òÙKê£Áó½tôª¤žõ•YÕoÒYú~×]éËw^xCÒêøù?PmðlÝ9‚Aò´Æ¨‡×#܉®ê–ÌûŒáù£®·jüè«Þ1nÜÆnÝY=i¾iþŸuܵ®~p4QÉ¿J1¼ZኜQ1&/ĸEɳ—Î †r7ûÔË>ÁóF̹~"é´bŸkþ¨\AQ<»%_ýÆ›²¤ÄÒÑ›²ûÅWÆäíçþ5ÿ•vÄ÷v1$ðØeKŽ«`‡×ß ºdIë-oß…¸ÿƒ×U0{]k‹'@tp»Õ`Å3àUÆÔ†É»VO^o9X}%~Þ ¸†]Wô»ïÉ•>ŸÆ+Ë@<ë³·eA‰­Wdùb>Üs½°{á­\¼«òùn¬ ©ËCr"ìNÖ§?(s«/÷­N0 ^ÕÙ õŸ„6Ǹ H$O• yY>÷ûòÃÚÛÞNT‰OÔåóßébBŸ}+v¼‹÷»Nðy÷íÁʇ/c壓åÍu¯z7ä²5ôŽ\5Û²¿Ûýßù¢Ïõ룡’Wä‡ï.Žo Ÿ+ñ…û‘«-ñå”ea_­Œ|å ù¾³K—°>"oþ-ƒŸ}M¾úƒwä‡?xÃÛÕ,¥>ûŽsžwÿ¦‰ @<­‚Díå®(·¥äGÂ;HÙ‚äóµ÷<7"oÂzÏÛŠ× n÷ä]#ÿ…W#ƒÌ??áÎQž›˜ºîW¿X÷‚Ú]w1;¶ÄÔî ÿT0}°Cص:Ñ÷Êq¿ënß¿÷`Øýë¾ vKæ\õ‰†¼0B|TpzzàÈöýW<1¶ïl € €§Úeká? lû{¿ë3À[Êë£þ€õ Q.õë‰õ·"¶~i‚eŒïF½sã•AÀ÷Ж¸?u„Íèm¯|[õz;„¶&VüÁ›ž°Ê¡>|®Oùóýž/y·tw»obgÆlûûƒæPœIÿ÷n[/…¶^F Hž²’—•‹VGúacYmg«ƒÚîI?ÚQj&ý†·Íí &¸Ý' ¼ø“›ízõŠ|uè¥?ñ½4ð®÷®’ïDnûÛ—Ïý®ïå»õáË}/È¥÷÷ ¾—,úcMü[/ì¿%¯wƒ/Fìw{òo4²ß ¾G%RhÑóª¼p。 ÷—^ ¨>Aí¶0ù°Ú–öÃj«ÙäG_ºÆñ—Ä'îš¼}øS/?vyK~ÊÎ[êµÛ)£Ú¶8qã¹Y$O° 'nV ‚$€ Á@G‚ä}ãùõFúÝÞܬ’džÿë^ÅPÿ¡Û››AòØð£W»ò¿~ôeŒõºu{s³ H;Q¢gÎqßzzÝ´tû"F$@ HA€  ‚$@ HA H$€ @‚A H$€ xêIO:Ž¢Gƒ H)î¦%93#3.É9ÙÊŸ?²<4 û’«ZàZ–ä·v¥Ú¹é±–l¤fdv£DçÉMÄÈþ|ˆä|Fr…¢r»2Ÿ´…Éü~õáç¡S”„ºVºøðI§”QåJH±sÓc-YSu”Èéü€ ¹.­bƹ¡™þ–lÌjQ’”\S¹põZR­6¤Õ(K.›“R£ëúÕ¬V¥ÙjJ1Ÿ“|é\:Î C¹—l6+…Rc‡Ò®$ »EuŒrkžKù¼X™8/W¥Õ{™ýûó¦>N–U¢ªdÿ6B|•öŒ¨Ø*VÅr~ÓkU%ŸËª|奪Î3J¸µI2SFµ¨ŽÍI¡Ü^hE%ª¼‘¼û)}ï-ɽð¦ä¿÷Î ÿ½žTïvÅz»+õ]®ø¶4Þö‰¤7Þ•ó7zª>Þ‘Üñ•ä_ì8u!¨Æþö=9¯½mòSâ°úÆ{ã­‹¶äÕq¹ïµU~ì|ùËÛ¼û¶9o®øÎˆúIˆB:©Œì9ú¾‘5b%]h‰å¹ýXצLÂ÷Û™””^/ÉBà3µº0¿+Vè·IµâPLë¿ÓÒrÏgì”ù(f’ÁÏŒËYZšC+k߬•”Ðɦ‡Ž]ŒX>öžqÙ ›RÅÎó¨òF…»-I|ä%™ Ъ2ê­_ }®yYr?5Ç¿øòð÷Ͼ>¨;±¿íu%ó©—†¾ßøQß[ý«Fd> oÛB&·y7ôÝ+RxƒAA2&&ÂÕɵHCùA§$³ŽH°ƒ<¹¸/ ½"Ñê?ï̼M9¯Þ“Ü‚v ›“BË]™Ù0ç[È5ŒàÐñ+™¢½êRZS#áË“réJ9ßG壴6k>Ë81/ç¹´'8Ây³MÒ·eŸwfnË/-Ù5ùÔ«BâÕ.[ºŒ UFSÊõmAÿ?£òÝ‹/oà¼?•Ýgmrî¬*´¾×4F}æÅ¾X?²ÿN~¶e¯f¼ýŽÌ!qiþ_Ú­Û¿}¡k¯R8Çο;”ÿ¸ßZ/¾ zYPÿOlª:|ûmI©¿S›ozyXø¨Îó])¾­ók‹¦ô Î5ßmÛߦZ1I¤pHGΨG ’­jg¢óÚîL¥Àÿµ@ÙÍîËîî¾d÷׌I¦ Á1© ñçÃþ}Æ÷ûRà|QaŽOJÑzà­¶dý⣕÷VcâŽ.£BûóêûY)uÆ”7\_½÷¤yÑ•ªr—Ê¿!™Ï:ÂáÅž#Hj’ó­6”wõjÄ=i‘¡V=>úšOPö%óQGH ’øßZo¨<ÜmK¡ø¦líÞ“¤!_|[‰[¸ì7~:pÏ*Þ3+$Z¿x×ä1ý•–ìå Ù?nق䣯­R‚$Òe«1ÎeËã© ƒÁ]cÝ øîU=÷¥d2é’ÙÙYYÜ-Á»Bb ¾ÊG”€IN H:å ûïNP„M"f†Êè¹ué”1å ÷üøUŸ«SMf?$w¥ô®ï÷õcó™v—*qÒðþ}Ùø¸ZQQBbXŒþmïâ-™ó¹\%Ÿµó I§öúP:µ¦'HÜ•—äÇ_¶ùèË’zö™}¶!¥·$14r‹vPûVyHTìÎ%Lw¶Ñ ãS w…d>|/ìoI¶ÔôÄZ©)0Üø æczA¢bZz¼Õ–Ò`µ¥WÝr®eÅ%HySÞÀy»²¨EÀg^—†kð7Þ ’—d÷î`u"¿^3+-OdÜó‰Œw«ÕhAý[;¾ä®äýÀêIÒ$/ÉÚ‹ýA<Š9—í²eÿ]—²?ÀýÅ–l¿ƒË‚dÙw²7¤¨v³*s²èl»B%,:wsò±ÙI6Ò…kxKÜ҆籰UP;i5$—™õÅØB_¿ÔèHyˉ É–ÔVyoµáV‰ã¦µ¸•“së®,š€ó9ɪ²šêZó ÛÕªÚ{0æØ«¡2ºy+XcÊ%HžmJõ­¾Ú©ê-™ÿèKžpÉÌÇR¼ø‰”_°ã5’_´q!©Í+i¼õ®ì®¿ì˜÷FÆDý¶äŒýÚOÄò}—2×éIæãvÌÈ–Úå+ÿn€»½JÓsTâ3M)_¨Ý·¾÷º¤ÿìÉ$´$·¶`b'ü;ciAà”¶{SÊ÷KvvºØ)HRk¥ÀgÙôl`שùµ¼·ðþ|r°{W§*ißV©ù9/H=œ[¤‚ùNÌITPûƒVAæœójW´^£ I_¹s’;'8¶>TF[è’qå R ¸l½$së÷ì òÝwAí¯ Ü©>û†ó㊠?éãèüÇý¶÷†rÙú¨÷­{’þŒºæÇ_svázWÖ>ãìÒõÑ»&¾DLj¸®~çŦý™CâÙW¥Œ»‚dÚÕ«Õ’–5É ›’ù9µ Qº?Õ5z*໥®aõ¢¾ëHÏ÷yÇÒyé<„rö¤Ó îf—»s­c¯[Þp`{ë-uîÐïü1$=õîÖÛ?TÿøëFŒYÇO÷ÛŸšÏ­·C«+ïv”8ù±·Õ°‰=Ú¬…ä5vZo¿Ç€€ y¸tª;òÌܶܧáoÞq>òÒS m € '”Þ–¤?«âKÞ±)Añuµs×›#ßÎ~Ýßåã­wdcýÇ’ú¸ÞAëDzAÀ:‚A@ HA€  ‚$@ HA€  Àÿ~¡Òq„¾OIEND®B`‚flickcurl-1.25/docs/flickcurl.10000644000175000017500000005655712210457673013361 00000000000000.TH FLICKCURL 1 "1 September 2008" .SH NAME flickcurl \- call Flickr API .SH SYNOPSIS .B flickcurl \fB\-a \fIFROB\fP\fR .br .B flickcurl [\fB\-d \fIDELAY\fP\fR] [\fB\-h\fR] [\fB\-o FILE\fR] [\fB\-q\fR] [\fB\-v\fR] [\fB\-V\fR] [\fIcommands\fR] ... .br .SH DESCRIPTION \fBflickcurl\fP is a utility program to call the Flickr APIs via the flickcurl library. Run \fIflickcurl \-h\fP to get a list of the supported commands and their arguments. .LP The program requires configuring before use to work with the Flickr APIs. Run \fBflickcurl\fP without any options to get the instructions for registering the application and creating the initial configuration file \fI~/.flickcurl.conf\fP from the registration information. .SH OPTIONS These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. .TP .B \-a \fIFROB\fP, \-\-auth \fIFROB\fP Authenticate with a \fIFROB\fP and update the authentication file. The program will exit after updating the file. .TP .B \-d \fIDELAY\fP, \-\-delay \fIDELAY\fP Set delay between requests to \fIDELAY\fP milliseconds. .TP .B \-h, \-\-help Show summary of options and exit. .TP .B \-o \fIFILE\fP, \-\-output \fIFILE\fP Write the results of format feed API calls to \fIFILE\fP .TP .B \-q, \-\-quiet Display less information while the program runs. .TP .B \-v, \-\-version Display the version of the program and exit. .TP .B \-V, \-\-verbose Display more information while the program runs. .SH COMMANDS .LP In the following list of commands: .br \fIPER-PAGE\fR is photos per result page or '-' for default (10) .br \fIPAGE\fR is result page number or '-' for default (1 = first page) .IP "\fBactivity.userComments\fP \fI[PER-PAGE [PAGE]]\fP" Get photos commented on by the caller. .IP "\fBactivity.userPhotos\fP \fI[TIMEFRAME [PER-PAGE [PAGE]]]\fP" Get recent activity on the caller's photos. .IP "\fBauth.checkToken\fP \fITOKEN\fP" Get the credentials attached to an authentication TOKEN. .IP "\fBauth.getFrob\fP \fI\fP" Get a frob to be used during authentication. .IP "\fBauth.getFullToken\fP \fIMINI-TOKEN\fP" Get the full authentication token for MINI-TOKEN. .IP "\fBauth.getToken\fP \fITOKEN\fP" Get the auth token for the FROB, if one has been attached. .IP "\fBblogs.getList\fP \fI\fP" Get a list of configured blogs for the calling user. .IP "\fBblogs.getServices\fP \fI\fP" Get a list of blog services. .IP "\fBblogs.postPhoto\fP \fIBLOG-ID PHOTO-ID TITLE DESCRIPTION [BLOG-PASSWORD]\fP" Post PHOTO-ID to blog BLOG-ID with TITLE, DESCRIPTION and optional password. .IP "\fBcollections.getInfo\fP \fICOLLECTION-ID\fP" Get information on collection COLLECTION-ID .IP "\fBcollections.getTree\fP \fI[COLLECTION-ID|- [USER-ID|-]]\fP" Get tree of collections COLLECTION-ID for USER-ID .IP "\fBcommons.getInstitutions\fP \fI\fP" Get list of institutions .IP "\fBcontacts.getList\fP \fI[FILTER [PAGE [PER-PAGE]]]\fP" Get a list of contacts with optional FILTER .IP "\fBcontacts.getListRecentlyUploaded\fP \fI[DATE-LAST-UPLOAD [FILTER]]\fP" Get a list of recent uploading contacts since DATE-LAST-UPLOAD with optional FILTER .IP "\fBcontacts.getPublicList\fP \fIUSER-NSID [PAGE [PER-PAGE]]\fP" Get the contact list for user USER-NSID .IP "\fBcontacts.getTaggingSuggestions\fP \fI[PAGE [PER-PAGE [INCLUDE-SELF [INCLUDE-ADDRESS-BOOK]]]]\fP" Get tagging suggestions .IP "\fBfavorites.add\fP \fIPHOTO-ID\fP" Adds PHOTO-ID to the current user's favorites. .IP "\fBfavorites.getContext\fP \fIPHOTO-ID USER-NSID [NUM-PREV [NUM-NEXT [EXTRAS]]]\fP" Get context photos around USER-ID's favorite PHOTO-ID. .IP "\fBfavorites.getList\fP \fIUSER-NSID [PER-PAGE [PAGE [FORMAT]]]\fP" Get a list of USER-NSID's favorite photos. .IP "\fBfavorites.getPublicList\fP \fIUSER-NSID [PER-PAGE [PAGE [FORMAT]]]\fP" Get a list of USER-NSID's favorite public photos. .IP "\fBfavorites.remove\fP \fIPHOTO-ID\fP" Removes PHOTO-ID to the current user's favorites. .IP "\fBgalleries.addPhoto\fP \fIGALLERY-ID PHOTO-ID TEXT\fP" Add photo PHOTO-ID to galleries GALLERY-ID with TEXT .IP "\fBgalleries.create\fP \fITITLE [DESCRIPTION [PRIMARY-PHOTO-ID]\fP" Create a new gallery with TITLE, DESCRIPTION and PRIMARY-PHOTO_ID. .IP "\fBgalleries.editMeta\fP \fIGALLERY-ID TITLE [DESCRIPTION]\fP" Set the TITLE and/or DESCRIPTION of a GALLERY-ID. .IP "\fBgalleries.editPhoto\fP \fIGALLERY-ID PHOTO-ID COMMENT\fP" Set the COMMENT for PHOTO-ID in GALLERY-ID. .IP "\fBgalleries.editPhotos\fP \fIGALLERY-ID PRIMARY-PHOTO-ID PHOTO-IDS,...\fP" Set the PHOTO-IDs of a GALLERY-ID and PRIMARY-PHOTO-ID. .IP "\fBgalleries.getInfo\fP \fIGALLERY-ID\fP" Get information about GALLERY-ID. .IP "\fBgalleries.getList\fP \fIUSER-ID [PER-PAGE [PAGE]]\fP" Get list of galleries for a USER-ID with optional paging .IP "\fBgalleries.getListForPhoto\fP \fIPHOTO-ID [PER-PAGE [PAGE]]\fP" Get list of galleries PHOTO-ID appears in with optional paging .IP "\fBgalleries.getPhotos\fP \fIGALLERY-ID [EXTRAS [PER-PAGE [PAGE [FORMAT]]]]\fP" Get the list of photos in GALLERY-ID with options. .IP "\fBgetphotoid\fP \fIIMAGE-URL\fP" Get the photo id from a raw flickr farm IMAGE-URL .IP "\fBgroups.browse\fP \fI[CAT-ID]\fP" Browse groups below category CAT-ID (or root). .IP "\fBgroups.getInfo\fP \fIGROUP-ID [LANG]\fP" Get information on group GROUP-ID with language LANG. .IP "\fBgroups.join\fP \fIGROUP-ID [ACCEPT-RULES]\fP" Join a group GROUP-ID with optional accepting of rules. .IP "\fBgroups.joinRequest\fP \fIGROUP-ID MESSAGE ACCEPT-RULES\fP" Request to join a group GROUP-ID using MESSAGE and accept rules. .IP "\fBgroups.leave\fP \fIGROUP-ID [DELETE-PHOTOS]\fP" Leave a group GROUP-ID and optionally delete photos. .IP "\fBgroups.members.getList\fP \fIGROUP-ID [MEMBER-TYPES [PER-PAGE [PAGE]]]\fP" Get list of MEMBER-TYPES types members of group GROUP-ID. .IP "\fBgroups.pools.add\fP \fIPHOTO-ID GROUP-ID\fP" Add PHOTO-ID in GROUP-ID pool. .IP "\fBgroups.pools.getContext\fP \fIPHOTO-ID GROUP-ID\fP" Get next and previous photos for PHOTO-ID in GROUP-ID pool. .IP "\fBgroups.pools.getGroups\fP \fI[PER-PAGE [PAGE]]\fP" Get list of groups a user can add to. .IP "\fBgroups.pools.getPhotos\fP \fIGROUP-ID [PER-PAGE [PAGE [FORMAT]]]\fP" Get list of photos in GROUP-ID. .IP "\fBgroups.pools.remove\fP \fIPHOTO-ID GROUP-ID\fP" Remove PHOTO-ID from group GROUP-ID. .IP "\fBgroups.search\fP \fITEXT [PER-PAGE [PAGE]]\fP" Search for groups matching TEXT paging PER-PAGE and PAGE. .IP "\fBinterestingness.getList\fP \fI[PARAMS]\fP" Get interesting photos with optional parameters .br date DATE .br extras EXTRAS .br per-page PER-PAGE .br page PAGE .br format FORMAT .IP "\fBmachinetags.getNamespaces\fP \fI[PREDICATE [PER-PAGE [PAGE]]]\fP" Get a list of namespaces with optional PREDICATE .IP "\fBmachinetags.getPairs\fP \fI[NAMESPACE [PREDICATE [PER-PAGE [PAGE]]]]\fP" Get a list of unique NAMESPACE and PREDICATE pairs .IP "\fBmachinetags.getPredicates\fP \fI[NAMESPACE [PER-PAGE [PAGE]]]\fP" Get a list of unique predicates optionally by NAMESPACE .IP "\fBmachinetags.getRecentValues\fP \fI[NAMESPACE|- [PREDICATE|- [ADDED-SINCE]]]\fP" Get a list of recent machinetags for NAMESPACE and PREDICATE since ADDED-SINCE .IP "\fBmachinetags.getValues\fP \fINAMESPACE PREDICATE [PER-PAGE [PAGE]]\fP" Get a list of unique values for a NAMESPACE and PREDICATE .IP "\fBoauth.create\fP \fI[CALLBACK]\fP" Create OAuth request token/secret pair and show the authentication URL .IP "\fBoauth.upgrade\fP \fI\fP" Upgrade legacy authentication to OAuth .IP "\fBoauth.verify\fP \fIREQUEST-TOKEN REQUEST-TOKEN-SECRET VERIFIER\fP" Verify an OAuth request from `oauth.create' .IP "\fBpanda.getList\fP \fI\fP" get the current list of pandas .IP "\fBpanda.getPhotos\fP \fIPANDA\fP" ask a PANDA for a list of recent public and safe photos .IP "\fBpeople.findByEmail\fP \fIEMAIL\fP" get a user's NSID from their EMAIL address .IP "\fBpeople.findByUsername\fP \fIUSERNAME\fP" get a user's NSID from their USERNAME .IP "\fBpeople.getGroups\fP \fIUSER-ID [GROUP-EXTRAS]\fP" Get list of groups USER-ID is a member of .IP "\fBpeople.getInfo\fP \fIUSER-NSID\fP" Get information about one person with id USER-NSID .IP "\fBpeople.getPhotos\fP \fIUSER-NSID\fP" Get photos from user USER-NSID with optional parameters .br safe-search 1-3 .br min-upload-date DATE .br max-upload-date DATE .br min-taken date DATE .br max-taken-date DATE .br content-type 1-7 .br privacy-filter 1-5 .br per-page PER-PAGE .br page PAGE .br format FORMAT .IP "\fBpeople.getPhotosOf\fP \fIUSER-NSID [PER-PAGE [PAGE [FORMAT]]]\fP" Get public photos of a user USER-NSID .IP "\fBpeople.getPublicGroups\fP \fIUSER-NSID\fP" Get list of public groups a user is a member of .IP "\fBpeople.getPublicPhotos\fP \fIUSER-NSID [PER-PAGE [PAGE [FORMAT]]]\fP" Get public photos for a user USER-NSID .IP "\fBpeople.getUploadStatus\fP \fI\fP" Get calling user upload status .IP "\fBphotos.addTags\fP \fIPHOTO-ID TAGS\fP" Add TAGS to a PHOTO-ID. .IP "\fBphotos.comments.addComment\fP \fIPHOTO-ID TEXT\fP" Add a photo comment TEXT to PHOTO-ID. .IP "\fBphotos.comments.deleteComment\fP \fICOMMENT-ID\fP" Delete a photo comment COMMENT-ID. .IP "\fBphotos.comments.editComment\fP \fICOMMENT-ID TEXT\fP" Edit a photo comment COMMENT-ID to have new TEXT. .IP "\fBphotos.comments.getList\fP \fIPHOTO-ID\fP" Get the comments for a photo PHOTO-ID. .IP "\fBphotos.comments.getRecentForContacts\fP \fI[PARAMS]\fP" Get the list of photos for user contacts with recent comments .br since DATE-LAST-COMMENT filter CONTACTS-FILTER .br per-page PER-PAGE page PAGE format FORMAT .IP "\fBphotos.delete\fP \fIPHOTO-ID\fP" Delete a PHOTO-ID. .IP "\fBphotos.geo.getLocation\fP \fIPHOTO-ID\fP" Get the geo location for a photo PHOTO-ID. .IP "\fBphotos.geo.getPerms\fP \fIPHOTO-ID\fP" Get the geo perms for a photo PHOTO-ID. .IP "\fBphotos.geo.removeLocation\fP \fIPHOTO-ID\fP" Remove the location for a photo PHOTO-ID. .IP "\fBphotos.geo.setLocation\fP \fIPHOTO-ID LAT LONG ACCURACY\fP" Set the location for a photo PHOTO-ID. .IP "\fBphotos.geo.setPerms\fP \fIPHOTO-ID IS-PUBLIC IS-CONTACT IS-FRIEND IS-FAMILY\fP" Set the geo perms for a photo PHOTO-ID. .IP "\fBphotos.getAllContexts\fP \fIPHOTO-ID\fP" Get all visible sets and pools the PHOTO-ID belongs to. .IP "\fBphotos.getContactsPhotos\fP \fI\fP" Get a list of recent photos from the calling users' contacts .IP "\fBphotos.getContactsPublicPhotos\fP \fIUSER-NSID [FORMAT]\fP" Get a list of recent public photos from USER-NSID's contacts .IP "\fBphotos.getContext\fP \fIPHOTO-ID\fP" Get next and previous photos for a PHOTO-ID in a photostream. .IP "\fBphotos.getCounts\fP \fIDATES TAKEN-DATES\fP" Get the counts for a set of DATES or TAKEN-DATES. .IP "\fBphotos.getExif\fP \fIPHOTO-ID\fP" Get EXIF information about one photo with id PHOTO-ID .IP "\fBphotos.getFavorites\fP \fIPHOTO-ID [PER-PAGE [PAGE]]\fP" Get favourites information about one photo with id PHOTO-ID .IP "\fBphotos.getInfo\fP \fIPHOTO-ID [SECRET]\fP" Get information about one photo PHOTO-ID with optional SECRET .IP "\fBphotos.getNotInSet\fP \fI[PER-PAGE [PAGE [FORMAT]]]\fP" Get list of photos that are not in any set .IP "\fBphotos.getPerms\fP \fIPHOTO-ID\fP" Get a photo viewing and commenting permissions .IP "\fBphotos.getRecent\fP \fI[PER-PAGE [PAGE [FORMAT]]]\fP" Get list of recent photos .IP "\fBphotos.getSizes\fP \fIPHOTO-ID\fP" Get sizes of a PHOTO-ID .IP "\fBphotos.getUntagged\fP \fI[PER-PAGE [PAGE [FORMAT]]]\fP" Get list of photos that are not tagged .IP "\fBphotos.getWithGeoData\fP \fI[PER-PAGE [PAGE [FORMAT]]]\fP" Get list of photos that have geo data .IP "\fBphotos.getWithoutGeoData\fP \fI[PER-PAGE [PAGE [FORMAT]]]\fP" Get list of photos that do not have geo data .IP "\fBphotos.licenses.getInfo\fP \fI\fP" Get list of available photo licenses .IP "\fBphotos.licenses.setLicense\fP \fIPHOTO-ID LICENSE-ID\fP" Get photo PHOTO-ID license to LICENSE-ID .IP "\fBphotos.notes.add\fP \fIPHOTO-ID X Y W H TEXT\fP" Add a note (X, Y, W, H, TEXT) to a photo with id PHOTO-ID .IP "\fBphotos.notes.delete\fP \fINOTE-ID\fP" Delete a note with id NOTE-ID .IP "\fBphotos.notes.edit\fP \fINOTE-ID X Y W H TEXT\fP" Edit note NOTE-ID to (X, Y, W, H, TEXT) .IP "\fBphotos.people.add\fP \fIPHOTO-ID USER-ID X Y W H\fP" Mark USER-ID appearing in PHOTO-ID at (X, Y, W, H) .IP "\fBphotos.people.delete\fP \fIPHOTO-ID USER-ID\fP" Mark USER-ID as not appearing in PHOTO-ID .IP "\fBphotos.people.deleteCoords\fP \fIPHOTO-ID USER-ID\fP" Mark USER-ID as not appearing at coordinates in PHOTO-ID .IP "\fBphotos.people.editCoords\fP \fIPHOTO-ID USER-ID X Y W H\fP" Update USER-ID appearing in PHOTO-ID to coords (X, Y, W, H) .IP "\fBphotos.people.getList\fP \fIPHOTO-ID\fP" Get list of users appearing in PHOTO-ID .IP "\fBphotos.recentlyUpdated\fP \fIMIN-DATE [PER-PAGE [PAGE [FORMAT]]]\fP" Get list of photos that were recently updated .IP "\fBphotos.removeTag\fP \fIPHOTO-ID TAG-ID\fP" Remove a tag TAG-ID from a photo. .IP "\fBphotos.search\fP \fI[PARAMS] tags TAGS...\fP" Search for photos/videos with many optional parameters .br user USER .br tag-mode any|all .br text TEXT .br (min|max)-(upload|taken)-date DATE .br license LICENSE .br privacy PRIVACY .br bbox a,b,c,d .br sort date-(posted|taken)-(asc|desc)|interestingness-(desc|asc)|relevance .br accuracy 1-16 .br safe-search 1-3 .br type 1-4 .br machine-tags TAGS .br machine-tag-mode any|all .br group-id ID .br place-id ID .br extras EXTRAS .br per-page PER-PAGE .br page PAGES .br media all|photos|videos .br has-geo .br lat LAT lon LON radius RADIUS radius-units km|mi .br contacts (all|ff) .br format FORMAT .br woeid WOEID .br geo-context 1-2 .br in-commons .br in-gallery .IP "\fBphotos.setContentType\fP \fIPHOTO-ID TYPE\fP" Set photo TYPE to one of 'photo', 'screenshot' or 'other' .IP "\fBphotos.setDates\fP \fIPHOTO-ID POSTED TAKEN GRANULARITY\fP" Set a photo POSTED date, TAKEN date with GRANULARITY .IP "\fBphotos.setMeta\fP \fIPHOTO-ID TITLE DESCRIPTION\fP" Set a photo TITLE and DESCRIPTION .IP "\fBphotos.setPerms\fP \fIPHOTO-ID IS-PUBLIC IS-FRIEND IS-FAMILY PERM-COMMENT PERM-ADDMETA\fP" Set a photo viewing and commenting permissions .IP "\fBphotos.setSafetyLevel\fP \fIPHOTO-ID SAFETY-LEVEL HIDDEN\fP" Set a photo's SAFETY-LEVEL and HIDDEN flag .IP "\fBphotos.setTags\fP \fIPHOTO-ID TAGS\fP" Set the tags for a PHOTO-ID to TAGS. .IP "\fBphotos.transform.rotate\fP \fIPHOTO-ID DEGREES\fP" Rotate PHOTO-ID by 90/180/270 DEGREES .IP "\fBphotos.upload.checkTickets\fP \fITICKET-IDS...\fP" Get the status of upload TICKET-IDS .IP "\fBphotosets.addPhoto\fP \fIPHOTOSET-ID PHOTO-ID\fP" Add PHOTO-ID to a PHOTOSET-ID. .IP "\fBphotosets.comments.addComment\fP \fIPHOTOSET-ID TEXT\fP" Add a comment TEXT to photoset PHOTOSET-ID. .IP "\fBphotosets.comments.deleteComment\fP \fICOMMENT-ID\fP" Delete a photoset comment COMMENT-ID. .IP "\fBphotosets.comments.editComment\fP \fICOMMENT-ID TEXT\fP" Edit a photoset comment COMMENT-ID to have new TEXT. .IP "\fBphotosets.comments.getList\fP \fIPHOTOSET-ID\fP" Get the comments for a photoset PHOTOSET-ID. .IP "\fBphotosets.create\fP \fITITLE DESCRIPTION PRIMARY-PHOTO-ID\fP" Create a photoset with TITLE, DESCRIPTION and PRIMARY-PHOTO-ID. .IP "\fBphotosets.delete\fP \fIPHOTOSET-ID\fP" Delete a photoset with PHOTOSET-ID. .IP "\fBphotosets.editMeta\fP \fIPHOTOSET-ID TITLE DESCRIPTION\fP" Set the TITLE and/or DESCRIPTION of a PHOTOSET-ID. .IP "\fBphotosets.editPhotos\fP \fIPHOTOSET-ID PRIMARY-PHOTO-ID PHOTO-IDS,...\fP" Set the PHOTO-IDs of a PHOTOSET-ID and PRIMARY-PHOTO-ID. .IP "\fBphotosets.getContext\fP \fIPHOTO-ID PHOTOSET-ID\fP" Get next and previous photos for PHOTO-ID in PHOTOSET-ID. .IP "\fBphotosets.getInfo\fP \fIPHOTOSET-ID\fP" Get information about PHOTOSET-ID. .IP "\fBphotosets.getList\fP \fI[USER-NSID]\fP" Get the list of photosets for the USER-NSID. .IP "\fBphotosets.getPhotos\fP \fIPHOTOSET-ID [EXTRAS [PRIVACY [PER-PAGE [PAGE [FORMAT]]]]]\fP" Get the list of photos in PHOTOSET-ID with options. .IP "\fBphotosets.orderSets\fP \fIPHOTOSET-IDS...\fP" Set the order of sets PHOTOSET-IDS. .IP "\fBphotosets.removePhoto\fP \fIPHOTOSET-ID PHOTO-ID\fP" Remove PHOTO-ID from PHOTOSET-ID. .IP "\fBphotosets.removePhotos\fP \fIPHOTOSET-ID PHOTO-IDS...\fP" Remove PHOTO-IDS from PHOTOSET-ID. .IP "\fBphotosets.reorderPhotos\fP \fIPHOTOSET-ID PHOTO-IDS...\fP" Reorder PHOTO-IDS from PHOTOSET-ID. .IP "\fBphotosets.setPrimaryPhoto\fP \fIPHOTOSET-ID PHOTO-ID\fP" Set photoset PHOTOSET-ID primary photo to PHOTO-ID. .IP "\fBplaces.find\fP \fITEXT\fP" Find places by TEXT query. .IP "\fBplaces.findByLatLon\fP \fILAT LON ACCURACY\fP" Find places by LAT and LON with ACCURACY 1-16. .IP "\fBplaces.getChildrenWithPhotosPublic\fP \fIPLACE-ID|- [WOE-ID|-]\fP" Find child places with public photos by PLACE-ID or WOE-ID .IP "\fBplaces.getInfo\fP \fIPLACE-ID|- [WOE-ID|-]\fP" Find place by PLACE-ID or WOE-ID .IP "\fBplaces.getInfoByUrl\fP \fIURL\fP" Find place by place URL .IP "\fBplaces.getPlaceTypes\fP \fIURL\fP" Get a list of available place types .IP "\fBplaces.getShapeHistory\fP \fIPLACE-ID|- [WOE-ID|-]\fP" Get history of shapes for a place by PLACE-ID or WOE-ID .IP "\fBplaces.getTopPlacesList\fP \fIPLACE-TYPE [DATE [WOE-ID|- [PLACE-ID]]]\fP" Get the top 100 most geotagged places for a DATE (or yesterday). .IP "\fBplaces.placesForBoundingBox\fP \fIPLACE-TYPE MIN-LONG MIN-LAT MAX-LONG MAX-LAT\fP" Find user places of PLACE-TYPE in bbox. .IP "\fBplaces.placesForContacts\fP \fIPLACE-TYPE WOE-ID|- PLACE-ID|- THRESHOLD [PARAMS]\fP" Find top 100 unique places clustered by a given PLACE-TYPE for a .br user's contacts with optional parameters .br contacts CONTACTS .br min-upload MIN-UPLOAD-DATE .br max-upload MAX-UPLOAD-DATE .br min-taken MIN-TAKEN-DATE .br max-taken MAX-TAKEN-DATE .IP "\fBplaces.placesForUser\fP \fIPLACE-TYPE [WOE-ID] [PLACE-ID [THRESHOLD]]]\fP" Find user places of PLACE-TYPE. .IP "\fBplaces.resolvePlaceId\fP \fIPLACE-ID / WOE-ID\fP" Find places information by PLACE-ID or WOE-ID (number). .IP "\fBplaces.resolvePlaceURL\fP \fIPLACE-URL\fP" Find places information by PLACE-URL. .IP "\fBplaces.tagsForPlace\fP \fIPLACE-ID|- [WOE-ID|-]\fP" Get tags for a place by PLACE-ID or WOE-ID with optional parameters .br min-upload MIN-UPLOAD-DATE .br max-upload MAX-UPLOAD-DATE .br min-taken MIN-TAKEN-DATE .br max-taken MAX-TAKEN-DATE .IP "\fBprefs.getContentType\fP \fI\fP" Get default content type preference for user. .IP "\fBprefs.getGeoPerms\fP \fI\fP" Get default privacy level for geographic info for user. .IP "\fBprefs.getHidden\fP \fI\fP" Get default hidden preference for user. .IP "\fBprefs.getPrivacy\fP \fI\fP" Get default privacy preference for user. .IP "\fBprefs.getSafetyLevel\fP \fI\fP" Get default safety level for user. .IP "\fBreflection.getMethodInfo\fP \fINAME\fP" Get information about an API method NAME .IP "\fBreflection.getMethods\fP \fI\fP" Get API methods .IP "\fBreplace\fP \fIFILE PHOTO-ID [async]\fP" Replace a photo PHOTO-ID with a new FILE (async) .IP "\fBshorturi\fP \fIPHOTO-ID\fP" Get the http://flic.kr short uri for PHOTO-ID .IP "\fBstats.getCollectionDomains\fP \fIDATE [COLLECTION-ID [PER-PAGE [PAGE]]]\fP" Get collection domains stats .IP "\fBstats.getCollectionReferrers\fP \fIDATE DOMAIN [COLLECTION-ID [PER-PAGE [PAGE]]]\fP" Get collection referrers stats .IP "\fBstats.getCollectionStats\fP \fIDATE COLLECTION-ID\fP" Get collection view count stats .IP "\fBstats.getPhotoDomains\fP \fIDATE [PHOTO-ID [PER-PAGE [PAGE]]]\fP" Get photo domains stats .IP "\fBstats.getPhotoReferrers\fP \fIDATE DOMAIN [PHOTO-ID [PER-PAGE [PAGE]]]\fP" Get photo referrers stats .IP "\fBstats.getPhotoStats\fP \fIDATE PHOTO-ID\fP" Get photo view count stats .IP "\fBstats.getPhotosetDomains\fP \fIDATE [PHOTOSET-ID [PER-PAGE [PAGE]]]\fP" Get photoset domains stats .IP "\fBstats.getPhotosetReferrers\fP \fIDATE DOMAIN [PHOTOSET-ID [PER-PAGE [PAGE]]]\fP" Get photoset referrers stats .IP "\fBstats.getPhotosetStats\fP \fIDATE PHOTOSET-ID\fP" Get photoset view count stats .IP "\fBstats.getPhotostreamDomains\fP \fIDATE [PER-PAGE [PAGE]]\fP" Get photostream domains stats .IP "\fBstats.getPhotostreamReferrers\fP \fIDATE DOMAIN [PER-PAGE [PAGE]]\fP" Get photostream referrers stats .IP "\fBstats.getPhotostreamStats\fP \fIDATE\fP" Get photostream view count stats .IP "\fBstats.getPopularPhotos\fP \fI[DATE [SORT [PER-PAGE [PAGE [EXTRAS]]]]]\fP" Get popular photos stats .IP "\fBstats.getTotalViews\fP \fI[DATE]\fP" Get total stats .IP "\fBtags.getClusters\fP \fITAG\fP" Get list of tag clusters for TAG .IP "\fBtags.getHotList\fP \fI[PERIOD [COUNT]]\fP" Get the list of hot tags for the given PERIOD (day, week) .IP "\fBtags.getListPhoto\fP \fIPHOTO-ID\fP" Get the tag list for a PHOTO-ID. .IP "\fBtags.getListUser\fP \fI[USER-NSID]\fP" Get the tag list for a USER-NSID (or current user). .IP "\fBtags.getListUserPopular\fP \fI[USER-NSID [COUNT]]\fP" Get the popular tag list for a USER-NSID (or current user). .IP "\fBtags.getListUserRaw\fP \fI[TAG]\fP" Get the raw versions of a TAG (or all tags) for the current user. .IP "\fBtags.getMostFrequentlyUsed\fP \fI\fP" Get the most frequently used tags for the current user. .IP "\fBtags.getRelated\fP \fITAG\fP" Get a list of tags 'related' to TAG based on clustered usage analysis. .IP "\fBtest.echo\fP \fIKEY VALUE\fP" Test echo API call; echos KEY VALUE .IP "\fBtest.login\fP \fI\fP" Test login API call: returns username .IP "\fBtest.null\fP \fIKEY VALUE\fP" Test null API call: no return .IP "\fBupload\fP \fIFILE [PARAMS...]\fP" Upload a photo FILE with optional parameters PARAM or PARAM VALUE .br title TITLE .br description DESC .br safety_level 'safe' (default) or 'moderate' or 'restricted' .br content_type 'photo' (default) or screenshot' or 'other' .br hidden 'public' (default) or 'hidden' .br friend .br public .br family .br tags TAGS... [must be last param] .IP "\fBurls.getGroup\fP \fIGROUP-ID\fP" Get the url of the group page for GROUP-ID. .IP "\fBurls.getUserPhotos\fP \fIUSER-NSID\fP" Get the url of the photo page for USER-NSID. .IP "\fBurls.getUserProfile\fP \fIUSER-NSID\fP" Get the url of the profile page for USER-NSID. .IP "\fBurls.lookupGroup\fP \fIURL\fP" Get a group NSID from the URL to a group's page or photo pool. .IP "\fBurls.lookupUser\fP \fIURL\fP" Get a user NSID from the URL to a user's photo .SH Extras Fields The \fBEXTRAS\fP parameter can take a comma-separated set of the following values .TP \fBdate_taken\fP Date item was taken .TP \fBdate_upload\fP Date item was uploaded .TP \fBgeo\fP Geotagging latitude, longitude and accuracy .TP \fBicon_server\fP Item owner icon fields .TP \fBlast_update\fP Date item was last updated .TP \fBlicense\fP Item License .TP \fBmachine_tags\fP Machine tags .TP \fBmedia\fP Item Format: photo or video .TP \fBo_dims\fP Original item dimensions .TP \fBoriginal_format\fP Original item secret and format .TP \fBowner_name\fP Item owner ID .TP \fBpath_alias\fP Path alias for owner like /photos/USERNAME .TP \fBtags\fP Item clean tags (safe for HTML, URLs) .TP \fBurl_m\fP URL of medium size image .TP \fBurl_o\fP URL of original size image .TP \fBurl_s\fP URL of small size image .TP \fBurl_sq\fP URL of square size image .TP \fBurl_t\fP URL of thumbnail size image .TP \fBviews\fP Number of times item has been viewed .SH Photos List Feed Formats The \fBFORMAT\fP parameter can take any of the following values .TP \fBfeed-rss_100\fP RSS 1.0 .TP \fBfeed-rss_200\fP RSS 2.0 .TP \fBfeed-atom_10\fP Atom 1.0 .TP \fBfeed-georss\fP RSS 2.0 with GeoRSS and W3C Geo for geotagged photos .TP \fBfeed-geoatom\fP Atom 1.0 with GeoRSS and W3C Geo for geotagged photos .TP \fBfeed-geordf\fP RSS 1.0 with GeoRSS and W3C Geo for geotagged photos .TP \fBfeed-kml\fP KML 2.1 .TP \fBfeed-kml_nl\fP KML 2.1 network link .SH SEE ALSO .BR flickrdf (1). .br .SH AUTHOR flickcurl was written by David Beckett. .PP This manual page was written by Kumar Appaiah , for the Debian project (but may be used by others). flickcurl-1.25/LICENSE.html0000644000175000017500000000677312130421223012313 00000000000000 Flickcurl Library - License

Flickcurl Library - License

This package is Free Software available under any one of the specified licenses below, or any newer version of those licenses. All the licenses below are alternatives and if you select one license, that one alone applies.

1. The GNU Lesser General Public License (LGPL) Version 2.1 or any newer version

See http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html or COPYING.LIB for the full LGPL 2.1 license text.


Copyright (C) 2007-2013 David Beckett. All Rights Reserved.

This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License Version 2.1 as published by the Free Software Foundation or any newer version.

This package 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 Lesser General Public License Version 2.1 for more details.

You should have received a copy of the GNU Lesser General Public License Version 2.1 along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA


2. GNU General Public License (GPL) V2 or any newer version

Under Term 3 of the LGPL Version 2.1, you may choose to license the entire package under the GPL. If that option is chosen, then this package is licensed under the terms of the GPL Version 2 or alternatively, any newer version of the GPL. See COPYING for the full GPL 2.0 license text.

3. The Apache License V2.0 or any newer version

See http://www.apache.org/licenses/LICENSE-2.0 or LICENSE-2.0.txt for the full ASL 2.0 license text.

Copyright (C) 2007-2013 David Beckett.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

The NOTICE file contains the notices that must be applied according to section 4(d) of the Apache License, Version 2.0.


Copyright (C) 2007-2013 David Beckett

flickcurl-1.25/AUTHORS0000644000175000017500000000014011212024216011372 00000000000000Dave Beckett Vanilla I. Shu (flickcurl.contacts.*) flickcurl-1.25/LICENSE-2.0.txt0000644000175000017500000002613611212024216012457 00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. flickcurl-1.25/flickcurl.pc.in0000644000175000017500000000040111212024216013231 00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: Flickcurl Description: Flickr API Library Version: @VERSION@ Libs: -L${libdir} -lflickcurl Libs.private: @LIBS@ Cflags: -I${includedir} Requires:@PKG_CONFIG_REQUIRES@ flickcurl-1.25/COPYING0000644000175000017500000004310311543424731011400 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. flickcurl-1.25/src/0000755000175000017500000000000012210726306011206 500000000000000flickcurl-1.25/src/stats-api.c0000644000175000017500000010001212157645243013203 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * stats-api.c - Flickr flickr.stats.* API calls * * Copyright (C) 2010-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STDLIB_H #include #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include #endif #include #include /** * flickcurl_stats_getCSVFiles: * @fc: flickcurl context * * Returns a list of URLs for text files containing historic stats data (from November 26th 2007 to 1 June 2010) for the current user. * * Not implemented since the files that this API call points to stop * working after June 1 2010. * * Implements flickr.stats.getCSVFiles (1.19) * * Announced http://code.flickr.com/blog/2010/05/13/stats-api-redux/ * * Return value: always returns non-0 to signify failure **/ int flickcurl_stats_getCSVFiles(flickcurl* fc) { return 1; } /** * flickcurl_stats_getCollectionDomains: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @collection_id: The id of the collection to get stats for. If not provided, stats for all collections will be returned. (or NULL) * @per_page: Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referring domains for a collection * * Implements flickr.stats.getCollectionDomains (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getCollectionDomains(flickcurl* fc, const char* date, const char* collection_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date) return NULL; flickcurl_add_param(fc, "date", date); if(collection_id) { flickcurl_add_param(fc, "collection_id", collection_id); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getCollectionDomains")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/domain", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getCollectionReferrers: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @domain: The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname. * @collection_id: The id of the collection to get stats for. If not provided, stats for all collections will be returned. (or NULL) * @per_page: Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referrers from a given domain to a collection * * Implements flickr.stats.getCollectionReferrers (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getCollectionReferrers(flickcurl* fc, const char* date, const char* domain, const char* collection_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date || !domain) return NULL; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "domain", domain); if(collection_id) { flickcurl_add_param(fc, "collection_id", collection_id); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getCollectionReferrers")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/referrer", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getCollectionStats: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according to * Flickr Stats starts at midnight GMT for all users, and timestamps * will automatically be rounded down to the start of the day. * @collection_id: The id of the collection to get stats for. * * Get the number of views on a collection for a given date. * * Implements flickr.stats.getCollectionStats (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: views count or <0 on failure **/ int flickcurl_stats_getCollectionStats(flickcurl* fc, const char* date, const char* collection_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* count_str; int count = -1; flickcurl_init_params(fc, 0); if(!date || !collection_id) return -1; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "collection_id", collection_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getCollectionStats")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/@views"); if(count_str) { count = atoi(count_str); free(count_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) count = -1; return count; } /** * flickcurl_stats_getPhotoDomains: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @photo_id: The id of the photo to get stats for. If not provided, stats for all photos will be returned. (or NULL) * @per_page: Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referring domains for a photo * * Implements flickr.stats.getPhotoDomains (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getPhotoDomains(flickcurl* fc, const char* date, const char* photo_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date) return NULL; flickcurl_add_param(fc, "date", date); if(photo_id) { flickcurl_add_param(fc, "photo_id", photo_id); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotoDomains")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/domain", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getPhotoReferrers: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @domain: The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname. * @photo_id: The id of the photo to get stats for. If not provided, stats for all photos will be returned. (or NULL) * @per_page: Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referrers from a given domain to a photo * * Implements flickr.stats.getPhotoReferrers (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getPhotoReferrers(flickcurl* fc, const char* date, const char* domain, const char* photo_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date || !domain) return NULL; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "domain", domain); if(photo_id) { flickcurl_add_param(fc, "photo_id", photo_id); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotoReferrers")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/referrer", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getPhotosetDomains: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @photoset_id: The id of the photoset to get stats for. If not provided, stats for all sets will be returned. (or NULL) * @per_page: Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referring domains for a photoset * * Implements flickr.stats.getPhotosetDomains (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getPhotosetDomains(flickcurl* fc, const char* date, const char* photoset_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date) return NULL; flickcurl_add_param(fc, "date", date); if(photoset_id) { flickcurl_add_param(fc, "photoset_id", photoset_id); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotosetDomains")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/domain", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getPhotosetReferrers: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @domain: The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname. * @photoset_id: The id of the photoset to get stats for. If not provided, stats for all sets will be returned. (or NULL) * @per_page: Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referrers from a given domain to a photoset * * Implements flickr.stats.getPhotosetReferrers (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getPhotosetReferrers(flickcurl* fc, const char* date, const char* domain, const char* photoset_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date || !domain) return NULL; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "domain", domain); if(photoset_id) { flickcurl_add_param(fc, "photoset_id", photoset_id); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotosetReferrers")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/referrer", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getPhotosetStats: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @photoset_id: The id of the photoset to get stats for. * * Get the number of views on a photoset for a given date. * * Implements flickr.stats.getPhotosetStats (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: number of views or <0 on failure **/ int flickcurl_stats_getPhotosetStats(flickcurl* fc, const char* date, const char* photoset_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* count_str; int count = -1; flickcurl_init_params(fc, 0); if(!date || !photoset_id) return -1; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotosetStats")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/@views"); if(count_str) { count = atoi(count_str); free(count_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) count = -1; return count; } /** * flickcurl_stats_getPhotoStats: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @photo_id: The id of the photo to get stats for. * * Get the number of views, comments and favorites on a photo for a given date. * * Implements flickr.stats.getPhotoStats (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat* flickcurl_stats_getPhotoStats(flickcurl* fc, const char* date, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; flickcurl_stat* stat1 = NULL; flickcurl_init_params(fc, 0); if(!date || !photo_id) return NULL; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotoStats")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/stats", NULL); if(stats) { stat1 = stats[0]; stats[0] = NULL; flickcurl_free_stats(stats); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stat1 = NULL; return stat1; } /** * flickcurl_stats_getPhotostreamDomains: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @per_page: Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100 (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referring domains for a photostream * * Implements flickr.stats.getPhotostreamDomains (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getPhotostreamDomains(flickcurl* fc, const char* date, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date) return NULL; flickcurl_add_param(fc, "date", date); if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotostreamDomains")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/domain", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getPhotostreamReferrers: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * @domain: The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname. * @per_page: Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get a list of referrers from a given domain to a user's photostream * * Implements flickr.stats.getPhotostreamReferrers (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_stat** flickcurl_stats_getPhotostreamReferrers(flickcurl* fc, const char* date, const char* domain, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_stat** stats = NULL; char per_page_str[10]; char page_str[10]; flickcurl_init_params(fc, 0); if(!date || !domain) return NULL; flickcurl_add_param(fc, "date", date); flickcurl_add_param(fc, "domain", domain); if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotostreamReferrers")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } stats = flickcurl_build_stats(fc, xpathCtx, (const xmlChar*)"/rsp/domains/referrer", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) stats = NULL; return stats; } /** * flickcurl_stats_getPhotostreamStats: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. * * Get the number of views on a user's photostream for a given date. * * Implements flickr.stats.getPhotostreamStats (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: number of views or <0 on failure **/ int flickcurl_stats_getPhotostreamStats(flickcurl* fc, const char* date) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* count_str; int count = -1; flickcurl_init_params(fc, 0); if(!date) return -1; flickcurl_add_param(fc, "date", date); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPhotostreamStats")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/@views"); if(count_str) { count = atoi(count_str); free(count_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) count = -1; return count; } /** * flickcurl_stats_getPopularPhotos: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. If no date is provided, all time view counts will be * returned. (or NULL) * @sort: The order in which to sort returned photos. Defaults to views. The possible values are views, comments and favorites. Other sort options are available through search. (or NULL) * @per_page: Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o (or NULL) * * Get stats for popular photos * * Implements flickr.stats.getPopularPhotos (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_stats_getPopularPhotos(flickcurl* fc, const char* date, const char* sort, int per_page, int page, const char* extras) { flickcurl_photos_list_params list_params; const char* format = NULL; flickcurl_photos_list* photos_list = NULL; flickcurl_photo** photos = NULL; flickcurl_init_params(fc, 0); memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; if(date) { flickcurl_add_param(fc, "date", date); } if(sort) { flickcurl_add_param(fc, "sort", sort); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, &list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getPopularPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } if(photos_list) { photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); } return photos; } /** * flickcurl_stats_getTotalViews: * @fc: flickcurl context * @date: Stats will be returned for this date. This should be in * either be in YYYY-MM-DD or unix timestamp format. A day according * to Flickr Stats starts at midnight GMT for all users, and * timestamps will automatically be rounded down to the start of the * day. If no date is provided, all time view counts will be * returned. (or NULL) * * Get the overall view counts for an account * * Implements flickr.stats.getTotalViews (1.17) * * Announced 2010-03-03 * http://code.flickr.com/blog/2010/03/03/flickr-stats-api/ * * Return value: view count or <0 on failure **/ flickcurl_view_stats* flickcurl_stats_getTotalViews(flickcurl* fc, const char* date) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_view_stats* views = NULL; char* count_str; flickcurl_init_params(fc, 0); if(date) { flickcurl_add_param(fc, "date", date); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.stats.getTotalViews")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } views = (flickcurl_view_stats*)calloc(sizeof(*views), 1); if(!views) { fc->failed = 1; goto tidy; } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/total/@views"); if(count_str) { views->total = atoi(count_str); free(count_str); } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/photos/@views"); if(count_str) { views->photos = atoi(count_str); free(count_str); } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/photostream/@views"); if(count_str) { views->photostreams = atoi(count_str); free(count_str); } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/sets/@views"); if(count_str) { views->sets = atoi(count_str); free(count_str); } count_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/stats/collections/@views"); if(count_str) { views->collections = atoi(count_str); free(count_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(views) free(views); views = NULL; } return views; } flickcurl-1.25/src/photos-geo-api.c0000644000175000017500000003766112157645243014154 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-geo-api.c - Flickr flickr.photos.geo.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include #endif #ifdef HAVE_STDLIB_H #include #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include #endif #include #include /** * flickcurl_photos_geo_batchCorrectLocation: * @fc: flickcurl context * @location: The location (lat, long, accuracy) of the photos to update. * @place_id: A Flickr Places ID (or NULL) * @woe_id: A Where On Earth (WOE) ID (or 0) * * Correct the places hierarchy for all the photos for a user at a * given location (latitude, longitude and accuracy). * * You must pass either a valid Places ID in @place_id or a WOE ID in * @woe_id. * * Batch corrections are processed in a delayed queue so it may take * a few minutes before the changes are reflected in a user's photos. * * Implements flickr.photos.geo.batchCorrectLocation (1.8) * * Return value: non-0 on failure **/ int flickcurl_photos_geo_batchCorrectLocation(flickcurl* fc, flickcurl_location* location, const char* place_id, int woe_id) { xmlDocPtr doc = NULL; char latitude_s[50]; char longitude_s[50]; char accuracy_s[50]; char woe_id_str[10]; int result = 0; flickcurl_init_params(fc, 1); if(!place_id || !woe_id) return 1; if(location->latitude < -90.0) location->latitude= -90.0; if(location->latitude > 90.0) location->latitude= 90.0; if(location->longitude < -180.0) location->longitude= -180.0; if(location->longitude > 180.0) location->longitude= 180.0; if(location->accuracy < 1 || location->accuracy > 16) location->accuracy = 0; sprintf(latitude_s, "%f", location->latitude); flickcurl_add_param(fc, "lat", latitude_s); sprintf(longitude_s, "%f", location->longitude); flickcurl_add_param(fc, "lon", longitude_s); sprintf(accuracy_s, "%d", location->accuracy); flickcurl_add_param(fc, "accuracy", accuracy_s); if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } if(woe_id > 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.batchCorrectLocation")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_geo_correctLocation: * @fc: flickcurl context * @photo_id: The ID of the photo whose WOE location is being corrected. * @place_id: A Flickr Places ID (or NULL) * @woe_id: A Where On Earth (WOE) ID (or NULL) * * Correct a photo location. * * You must pass either a valid Places ID in @place_id or a WOE ID in @woe_id. * * Implements flickr.photos.geo.correctLocation (1.8) * * Return value: non-0 on failure **/ int flickcurl_photos_geo_correctLocation(flickcurl* fc, const char* photo_id, const char* place_id, int woe_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; void* result = NULL; char woe_id_str[10]; flickcurl_init_params(fc, 0); if(!photo_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "place_id", place_id); if(woe_id > 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.correctLocation")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = NULL; /* your code here */ tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = NULL; return (result == NULL); } /** * flickcurl_photos_geo_getLocation: * @fc: flickcurl context * @photo_id: The id of the photo you want to retrieve location data for. * * Get the geo data (latitude and longitude and the accuracy level) for a photo. * * Implements flickr.photos.geo.getLocation (0.12) * * Return value: non-0 on failure **/ flickcurl_location* flickcurl_photos_geo_getLocation(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_location* location = NULL; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.getLocation")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } location = flickcurl_build_location(fc, xpathCtx, (const xmlChar*)"/rsp/photo/location"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) location = NULL; return location; } /** * flickcurl_photos_geo_getPerms: * @fc: flickcurl context * @photo_id: The id of the photo to get permissions for. * * Get permissions for who may view geo data for a photo. * * Implements flickr.photos.geo.getPerms (0.12) * * Return value: non-0 on failure **/ flickcurl_perms* flickcurl_photos_geo_getPerms(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_perms* perms = NULL; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.getPerms")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } perms = flickcurl_build_perms(fc, xpathCtx, (const xmlChar*)"/rsp/perms"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) perms = NULL; return perms; } /** * flickcurl_photos_geo_photosForLocation_params: * @fc: flickcurl context * @location: The location (lat, long, accuracy) of the photos * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Get a list of photos for a user at a specific location (latitude, longitude * and accuracy) * * Return value: list of photos or NULL on failure **/ flickcurl_photos_list* flickcurl_photos_geo_photosForLocation_params(flickcurl* fc, flickcurl_location* location, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char latitude_s[50]; char longitude_s[50]; char accuracy_s[50]; const char* format = NULL; flickcurl_init_params(fc, 0); if(!location) return NULL; if(location->latitude < -90.0) location->latitude= -90.0; if(location->latitude > 90.0) location->latitude= 90.0; if(location->longitude < -180.0) location->longitude= -180.0; if(location->longitude > 180.0) location->longitude= 180.0; if(location->accuracy < 1 || location->accuracy > 16) location->accuracy = 0; sprintf(latitude_s, "%f", location->latitude); flickcurl_add_param(fc, "lat", latitude_s); sprintf(longitude_s, "%f", location->longitude); flickcurl_add_param(fc, "lon", longitude_s); sprintf(accuracy_s, "%d", location->accuracy); flickcurl_add_param(fc, "accuracy", accuracy_s); /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.photosForLocation")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_geo_photosForLocation: * @fc: flickcurl context * @location: The location (lat, long, accuracy) of the photos * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1 (or NULL) * * Get a list of photos for a user at a specific location (latitude, * longitude and accuracy) * * Implements flickr.photos.geo.photosForLocation (1.8) * * Return value: list of photos or NULL on failure **/ flickcurl_photo** flickcurl_photos_geo_photosForLocation(flickcurl* fc, flickcurl_location* location, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_photos_geo_photosForLocation_params(fc, location, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_geo_removeLocation: * @fc: flickcurl context * @photo_id: The id of the photo you want to remove location data from. * * Removes the geo data associated with a photo. * * Implements flickr.photos.geo.removeLocation (0.12) * * Return value: non-0 on failure **/ int flickcurl_photos_geo_removeLocation(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; flickcurl_init_params(fc, 1); if(!photo_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.removeLocation")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; tidy: return fc->failed; } /** * flickcurl_photos_geo_setContext: * @fc: flickcurl context * @photo_id: The id of the photo to set context data for. * @context: Context is a numeric value representing the photo's geotagginess beyond latitude and longitude. The current values are: 0: not defined, 1: indoors, 2: outdoors. * * Indicate the state of a photo's geotagginess beyond latitude and longitude. * * Note : photos passed to this method must already be geotagged * using the flickcurl_photos_geo_setLocation() method. * * Implements flickr.photos.geo.setContext (1.8) * * Return value: non-0 on failure **/ int flickcurl_photos_geo_setContext(flickcurl* fc, const char* photo_id, int context) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char context_str[3]; void* result = NULL; flickcurl_init_params(fc, 1); if(!photo_id || context < 0 || context > 2) return 1; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(context_str, "%d", context); flickcurl_add_param(fc, "context", context_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.setContext")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = NULL; /* your code here */ tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = NULL; return (result == NULL); } /** * flickcurl_photos_geo_setLocation: * @fc: flickcurl context * @photo_id: The id of the photo to set location data for. * @location: The location * * Sets the geo data (latitude and longitude and, optionally, the * accuracy level) for a photo. * * Implements flickr.photos.geo.setLocation (0.12) * * Return value: non-0 on failure **/ int flickcurl_photos_geo_setLocation(flickcurl* fc, const char* photo_id, flickcurl_location* location) { xmlDocPtr doc = NULL; char latitude_s[50]; char longitude_s[50]; char accuracy_s[50]; int result = 1; flickcurl_init_params(fc, 1); if(!photo_id) return 1; if(location->latitude < -90.0) location->latitude= -90.0; if(location->latitude > 90.0) location->latitude= 90.0; if(location->longitude < -180.0) location->longitude= -180.0; if(location->longitude > 180.0) location->longitude= 180.0; if(location->accuracy < 1 || location->accuracy > 16) location->accuracy = 0; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(latitude_s, "%f", location->latitude); flickcurl_add_param(fc, "lat", latitude_s); sprintf(longitude_s, "%f", location->longitude); flickcurl_add_param(fc, "lon", longitude_s); if(location->accuracy >= 1) { sprintf(accuracy_s, "%d", location->accuracy); flickcurl_add_param(fc, "accuracy", accuracy_s); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.setLocation")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_geo_setPerms: * @fc: flickcurl context * @photo_id: The id of the photo to get permissions for. * @perms: Geo permissions * * Set the permission for who may view the geo data associated with a photo. * * Implements flickr.photos.geo.setPerms (0.12) * * Return value: non-0 on failure **/ int flickcurl_photos_geo_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms) { xmlDocPtr doc = NULL; char is_public_str[2]; char is_contact_str[2]; char is_friend_str[2]; char is_family_str[2]; int result = 1; flickcurl_init_params(fc, 1); if(!photo_id || !perms) return 1; sprintf(is_public_str, "%d", (perms->is_public ? 1 : 0)); flickcurl_add_param(fc, "is_public", is_public_str); sprintf(is_contact_str, "%d", (perms->is_contact ? 1 : 0)); flickcurl_add_param(fc, "is_contact", is_contact_str); sprintf(is_friend_str, "%d", (perms->is_friend ? 1 : 0)); flickcurl_add_param(fc, "is_friend", is_friend_str); sprintf(is_family_str, "%d", (perms->is_family ? 1 : 0)); flickcurl_add_param(fc, "is_family", is_family_str); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.geo.setPerms")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } flickcurl-1.25/src/photos-licenses-api.c0000644000175000017500000001337512157645243015203 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-licenses.c - Flickr flickr.photos.licenses.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include #endif #ifdef HAVE_STDLIB_H #include #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include #endif #include #include static int compare_licenses(const void *a, const void *b) { flickcurl_license* l_a = *(flickcurl_license**)a; flickcurl_license* l_b = *(flickcurl_license**)b; return l_a->id - l_b->id; } /** * flickcurl_read_licenses: * @fc: flickcurl context * * Internal - read licenses **/ static void flickcurl_read_licenses(flickcurl *fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; const xmlChar* xpathExpr = NULL; int i; int size; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.licenses.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } xpathExpr = (const xmlChar*)"/rsp/licenses/license"; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; size = xmlXPathNodeSetGetLength(nodes); fc->licenses = (flickcurl_license**)calloc(1+size, sizeof(flickcurl_license*)); for(i = 0; i < size; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_license* l; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } l = (flickcurl_license*)calloc(sizeof(flickcurl_license), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) { l->id = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "name")) l->name = attr_value; else if(!strcmp(attr_name, "url")) { if(strlen(attr_value)) l->url = attr_value; else free(attr_value); } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "license: id %d name '%s' url %s\n", l->id, l->name, (l->url ? l->url : "(none)")); #endif fc->licenses[i] = l; } /* for nodes */ qsort(fc->licenses, size, sizeof(flickcurl_license*), compare_licenses); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(xpathObj) xmlXPathFreeObject(xpathObj); } /** * flickcurl_photos_licenses_getInfo: * @fc: flickcurl context * * Get a list of available photo licenses for Flickr. * * Implements flickr.photos.licenses.getInfo (0.6) * * Return value: an array of #flickcurl_license or NULL on failure **/ flickcurl_license** flickcurl_photos_licenses_getInfo(flickcurl *fc) { if(!fc->licenses) flickcurl_read_licenses(fc); return fc->licenses; } /** * flickcurl_photos_licenses_getInfo_by_id: * @fc: flickcurl context * @id: license ID * * Get an individual photo license by ID * * Not part of the Flickr API. * * Return value: a #flickcurl_license or NULL on failure **/ flickcurl_license* flickcurl_photos_licenses_getInfo_by_id(flickcurl *fc, int id) { int i; if(!fc->licenses) flickcurl_read_licenses(fc); if(!fc->licenses) return NULL; for(i = 0; fc->licenses[i]; i++) { if(fc->licenses[i]->id == id) return fc->licenses[i]; if(fc->licenses[i]->id > id) break; } return NULL; } /** * flickcurl_photos_licenses_setLicense: * @fc: flickcurl context * @photo_id: The photo to update the license for. * @license_id: The license to apply, or 0 (zero) to remove the current license. * * Sets the license for a photo. * * Implements flickr.photos.licenses.setLicense (0.12) * * Return value: non-0 on failure **/ int flickcurl_photos_licenses_setLicense(flickcurl* fc, const char* photo_id, int license_id) { xmlDocPtr doc = NULL; int result = 1; char license_id_s[5]; flickcurl_init_params(fc, 1); if(!photo_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(license_id_s, "%d", license_id); flickcurl_add_param(fc, "license_id", license_id_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.licenses.setLicense")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } flickcurl-1.25/src/vsnprintf.c0000644000175000017500000000463511370061161013330 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * vsnprintf.c - vsnprintf implementation * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include #endif #ifdef HAVE_STDLIB_H #include #undef HAVE_STDLIB_H #endif /* * Thanks to the patch in this Debian bug for the solution * to the crash inside vsnprintf on some architectures. * * "reuse of args inside the while(1) loop is in violation of the * specs and only happens to work by accident on other systems." * * http://bugs.debian.org/cgi-bin/bugreport.cgi?bug = 104325 */ #ifndef va_copy #ifdef __va_copy #define va_copy(dest,src) __va_copy(dest,src) #else #define va_copy(dest,src) (dest) = (src) #endif #endif char* my_vsnprintf(const char *message, va_list arguments); char* my_vsnprintf(const char *message, va_list arguments) { #ifdef HAVE_C99_VSNPRINTF char empty_buffer[1]; #endif int len; char *buffer = NULL; va_list args_copy; #ifdef HAVE_C99_VSNPRINTF /* copy for re-use */ va_copy(args_copy, arguments); len = vsnprintf(empty_buffer, 1, message, args_copy)+1; va_end(args_copy); if(len <= 0) return NULL; buffer = (char*)malloc(len); if(buffer) { /* copy for re-use */ va_copy(args_copy, arguments); vsnprintf(buffer, len, message, args_copy); va_end(args_copy); } #else /* This vsnprintf doesn't return number of bytes required */ int size = 2; while(1) { buffer = (char*)malloc(size+1); if(!buffer) break; /* copy for re-use */ va_copy(args_copy, arguments); len = vsnprintf(buffer, size, message, args_copy); va_end(args_copy); if(len >= 0) break; free(buffer); size += 4; } #endif return buffer; } flickcurl-1.25/src/groups-pools-api.c0000644000175000017500000002152712157645243014533 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * groups-pools-api.c - Flickr flickr.groups.pool.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include #endif #ifdef HAVE_STDLIB_H #include #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include #endif #include #include /** * flickcurl_groups_pools_add: * @fc: flickcurl context * @photo_id: The id of the photo to add to the group pool. * @group_id: The NSID of the group who's pool the photo is to be added to. * * Add a photo to a group's pool. * * Implements flickr.groups.pools.add (0.12) * * Return value: non-0 on failure **/ int flickcurl_groups_pools_add(flickcurl* fc, const char* photo_id, const char* group_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photo_id || !group_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "group_id", group_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.pools.add")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_groups_pools_getContext: * @fc: flickcurl context * @photo_id: photo ID * @group_id: group ID * * Get next and previous photos for a photo in a group pool. * * Implements flickr.groups.pools.getContext (0.7) * * Return value: an array of size 3 [prev, next, NULL] flickcurl_context* * or NULL on error **/ flickcurl_context** flickcurl_groups_pools_getContext(flickcurl* fc, const char* photo_id, const char* group_id) { xmlDocPtr doc = NULL; flickcurl_context** contexts = NULL; flickcurl_init_params(fc, 0); if(!photo_id || !group_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "group_id", group_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.pools.getContext")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; contexts = flickcurl_build_contexts(fc, doc); tidy: if(fc->failed) contexts = NULL; return contexts; } /** * flickcurl_groups_pools_getGroups: * @fc: flickcurl context * @per_page: Number of groups to return per page (default 400, max 400) * @page: The page of results to return (default 1) * * Returns a list of groups to which you can add photos. * * Implements flickr.groups.pools.getGroups (0.12) * * Return value: non-0 on failure **/ flickcurl_group** flickcurl_groups_pools_getGroups(flickcurl* fc, int page, int per_page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_group** groups = NULL; char per_page_s[10]; char page_s[10]; flickcurl_init_params(fc, 0); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.pools.getGroups")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } groups = flickcurl_build_groups(fc, xpathCtx, (const xmlChar*)"/rsp/groups/group", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) groups = NULL; return groups; } /** * flickcurl_groups_pools_getPhotos_params: * @fc: flickcurl context * @group_id: The id of the group who's pool you which to get the photo list for. * @tags: A tag to filter the pool with. At the moment only one tag at a time is supported. (or NULL) * @user_id: The nsid of a user (or NULL). If given, retrieves only photos that the user has contributed to the group pool. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of pool photos for a given group. * * Currently supported extra fields are: license, date_upload, * date_taken, owner_name, icon_server, original_format, * last_update, geo, tags, machine_tags. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_groups_pools_getPhotos_params(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!group_id) return NULL; /* API parameters */ flickcurl_add_param(fc, "group_id", group_id); if(tags) { flickcurl_add_param(fc, "tags", tags); } if(user_id) { flickcurl_add_param(fc, "user_id", user_id); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.pools.getPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_groups_pools_getPhotos: * @fc: flickcurl context * @group_id: The id of the group who's pool you which to get the photo list for. * @tags: A tag to filter the pool with. At the moment only one tag at a time is supported. (or NULL) * @user_id: The nsid of a user (or NULL). If given, retrieves only photos that the user has contributed to the group pool. * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @per_page: Number of photos to return per page (default 100, max 500) * @page: The page of results to return (default 1) * * Returns a list of pool photos for a given group. * * See flickcurl_groups_pools_getPhotos_params() for details * of the fields. * * Implements flickr.groups.pools.getPhotos (0.12) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_groups_pools_getPhotos(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_groups_pools_getPhotos_params(fc, group_id, tags, user_id, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_groups_pools_remove: * @fc: flickcurl context * @photo_id: The id of the photo to remove from the group pool. * @group_id: The NSID of the group who's pool the photo is to removed from. * * Remove a photo from a group pool. * * Implements flickr.groups.pools.remove (0.12) * * Return value: non-0 on failure **/ int flickcurl_groups_pools_remove(flickcurl* fc, const char* photo_id, const char* group_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photo_id || !group_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "group_id", group_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.pools.remove")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } flickcurl-1.25/src/common.c0000644000175000017500000016140012157645243012576 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * common.c - Flickcurl common functions * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include #endif /* for access() and R_OK */ #ifdef HAVE_STDLIB_H #include #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifdef OFFLINE #ifdef HAVE_RAPTOR #include #endif #endif #include #include #include const char* const flickcurl_short_copyright_string = "Copyright 2007-2013 David Beckett."; const char* const flickcurl_copyright_string = "Copyright (C) 2007-2013 David Beckett - http://www.dajobe.org/"; const char* const flickcurl_license_string = "LGPL 2.1 or newer, GPL 2 or newer, Apache 2.0 or newer.\nSee http://librdf.org/flickcurl/ for full terms."; const char* const flickcurl_home_url_string = "http://librdf.org/flickcurl/"; const char* const flickcurl_version_string = VERSION; const char* const flickcurl_flickr_service_uri = "http://www.flickr.com/services/rest/"; const char* const flickcurl_flickr_upload_service_uri = "http://api.flickr.com/services/upload/"; const char* const flickcurl_flickr_replace_service_uri = "http://api.flickr.com/services/replace/"; const char* const flickcurl_flickr_oauth_request_token_uri = "http://www.flickr.com/services/oauth/request_token"; const char* const flickcurl_flickr_oauth_authorize_uri = "http://www.flickr.com/services/oauth/authorize"; const char* const flickcurl_flickr_oauth_access_token_uri = "http://www.flickr.com/services/oauth/access_token"; static void flickcurl_error_varargs(flickcurl* fc, const char *message, va_list arguments) { if(fc && fc->error_handler) { char *buffer = my_vsnprintf(message, arguments); if(!buffer) { fprintf(stderr, "flickcurl: Out of memory\n"); return; } fc->error_handler(fc->error_data, buffer); free(buffer); } else { fprintf(stderr, "flickcurl error - "); vfprintf(stderr, message, arguments); fputc('\n', stderr); } } void flickcurl_error(flickcurl* fc, const char *message, ...) { va_list arguments; va_start(arguments, message); flickcurl_error_varargs(fc, message, arguments); va_end(arguments); } static size_t flickcurl_write_callback(void *ptr, size_t size, size_t nmemb, void *userdata) { flickcurl* fc = (flickcurl*)userdata; int len = size*nmemb; int rc = 0; if(fc->failed) return 0; fc->total_bytes += len; if(fc->save_content) { char *b; flickcurl_chunk *chunk; b = (char*)malloc(len); chunk = (flickcurl_chunk*)malloc(sizeof(*chunk)); if(b && chunk) { fc->chunks_count++; memcpy(b, ptr, len); chunk->content = b; chunk->size = len; chunk->prev= fc->chunks; fc->chunks = chunk; } else { if(b) free(b); if(chunk) free(chunk); flickcurl_error(fc, "Out of memory"); } } if(fc->xml_parse_content) { if(!fc->xc) { xmlParserCtxtPtr xc; xc = xmlCreatePushParserCtxt(NULL, NULL, (const char*)ptr, len, (const char*)fc->uri); if(!xc) rc = 1; else { xc->replaceEntities = 1; xc->loadsubset = 1; } fc->xc = xc; } else rc = xmlParseChunk(fc->xc, (const char*)ptr, len, 0); #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Got >>%s<< (%d bytes)\n", (const char*)ptr, len); #endif if(rc) flickcurl_error(fc, "XML Parsing failed"); } #ifdef CAPTURE if(fc->fh) fwrite(ptr, size, nmemb, fc->fh); #endif return len; } #if FLICKCURL_DEBUG > 1 static int flickcurl_debug_callback(CURL *handle, curl_infotype type, char *data, size_t size, void *userptr) { if(type == CURLINFO_TEXT) { fprintf(stderr, "INFO %s", data); } else { char dir = (type == CURLINFO_HEADER_IN || type == CURLINFO_DATA_IN || type == CURLINFO_SSL_DATA_IN) ? '<' : '>'; fprintf(stderr, "%c %s", dir, data); } return 0; } #endif /** * flickcurl_new_with_handle: * @curl_handle: CURL* handle * * Create a Flickcurl sesssion from an existing CURL* handler * * This allows setting up or re-using an existing CURL handle with * Flickcurl, however the library will call curl_easy_setopt to set * options based on the operation being performed. If these need to * be over-ridden, use flickcurl_set_curl_setopt_handler() to adjust * the options. * * NOTE: The type of @handle is void* so that curl headers are * optional when compiling against flickcurl. * * Return value: new #flickcurl object or NULL on fialure */ flickcurl* flickcurl_new_with_handle(void* curl_handle) { flickcurl* fc; size_t len; fc = (flickcurl*)calloc(1, sizeof(flickcurl)); if(!fc) return NULL; len = strlen(flickcurl_flickr_service_uri); fc->service_uri = (char*)malloc(len + 1); memcpy(fc->service_uri, flickcurl_flickr_service_uri, len + 1); len = strlen(flickcurl_flickr_upload_service_uri); fc->upload_service_uri = (char*)malloc(len + 1); memcpy(fc->upload_service_uri, flickcurl_flickr_upload_service_uri, len +1); len = strlen(flickcurl_flickr_replace_service_uri); fc->replace_service_uri = (char*)malloc(len + 1); memcpy(fc->replace_service_uri, flickcurl_flickr_replace_service_uri, len +1); len = strlen(flickcurl_flickr_oauth_request_token_uri); fc->oauth_request_token_uri = (char*)malloc(len + 1); memcpy(fc->oauth_request_token_uri, flickcurl_flickr_oauth_request_token_uri, len +1); len = strlen(flickcurl_flickr_oauth_access_token_uri); fc->oauth_access_token_uri = (char*)malloc(len + 1); memcpy(fc->oauth_access_token_uri, flickcurl_flickr_oauth_access_token_uri, len +1); /* DEFAULT delay between requests is 1000ms i.e 1 request/second max */ fc->request_delay = 1000; fc->mt = mtwist_new(); if(!fc->mt) { free(fc); return NULL; } mtwist_init(fc->mt, mtwist_seed_from_system(fc->mt)); fc->curl_handle = (CURL*)curl_handle; if(!fc->curl_handle) { fc->curl_handle = curl_easy_init(); fc->curl_init_here = 1; } #ifndef CURLOPT_WRITEDATA #define CURLOPT_WRITEDATA CURLOPT_FILE #endif /* send all data to this function */ curl_easy_setopt(fc->curl_handle, CURLOPT_WRITEFUNCTION, flickcurl_write_callback); /* ... using this data pointer */ curl_easy_setopt(fc->curl_handle, CURLOPT_WRITEDATA, fc); /* Make it follow Location: headers */ curl_easy_setopt(fc->curl_handle, CURLOPT_FOLLOWLOCATION, 1); #if FLICKCURL_DEBUG > 1 curl_easy_setopt(fc->curl_handle, CURLOPT_VERBOSE, (void*)1); curl_easy_setopt(fc->curl_handle, CURLOPT_DEBUGFUNCTION, flickcurl_debug_callback); #endif curl_easy_setopt(fc->curl_handle, CURLOPT_ERRORBUFFER, fc->error_buffer); return fc; } /** * flickcurl_new: * * Create a Flickcurl sesssion * * Return value: new #flickcurl object or NULL on fialure */ flickcurl* flickcurl_new(void) { return flickcurl_new_with_handle(NULL); } /** * flickcurl_free: * @fc: flickcurl object * * Destroy flickcurl session * */ void flickcurl_free(flickcurl *fc) { if(fc->xc) { if(fc->xc->myDoc) { xmlFreeDoc(fc->xc->myDoc); fc->xc->myDoc = NULL; } xmlFreeParserCtxt(fc->xc); } if(fc->secret) free(fc->secret); if(fc->auth_token) free(fc->auth_token); if(fc->method) free(fc->method); /* only tidy up if we did all the work */ if(fc->curl_init_here && fc->curl_handle) { curl_easy_cleanup(fc->curl_handle); fc->curl_handle = NULL; } if(fc->error_msg) free(fc->error_msg); if(fc->licenses) { int i; flickcurl_license *license; for(i = 0; (license = fc->licenses[i]); i++) { free(license->name); if(license->url) free(license->url); free(license); } free(fc->licenses); } if(fc->data) { if(fc->data_is_xml) xmlFree(fc->data); } if(fc->param_fields) { int i; for(i = 0; fc->param_fields[i]; i++) { free(fc->param_fields[i]); free(fc->param_values[i]); } free(fc->param_fields); free(fc->param_values); fc->param_fields = NULL; fc->param_values = NULL; fc->parameter_count = 0; } if(fc->upload_field) free(fc->upload_field); if(fc->upload_value) free(fc->upload_value); if(fc->service_uri) free(fc->service_uri); if(fc->upload_service_uri) free(fc->upload_service_uri); if(fc->replace_service_uri) free(fc->replace_service_uri); if(fc->oauth_request_token_uri) free(fc->oauth_request_token_uri); if(fc->oauth_access_token_uri) free(fc->oauth_access_token_uri); if(fc->user_agent) free(fc->user_agent); if(fc->uri) free(fc->uri); if(fc->mt) mtwist_free(fc->mt); flickcurl_oauth_free(&fc->od); free(fc); } /** * flickcurl_init: * * Initialise Flickcurl library. * * Return value: non-0 on failure */ int flickcurl_init(void) { curl_global_init(CURL_GLOBAL_ALL); xmlInitParser(); flickcurl_serializer_init(); return 0; } /** * flickcurl_finish: * * Terminate Flickcurl library. */ void flickcurl_finish(void) { flickcurl_serializer_terminate(); xmlCleanupParser(); curl_global_cleanup(); } /** * flickcurl_set_error_handler: * @fc: flickcurl object * @error_handler: error handler function * @error_data: error handler data * * Set Flickcurl error handler. */ void flickcurl_set_error_handler(flickcurl* fc, flickcurl_message_handler error_handler, void *error_data) { fc->error_handler = error_handler; fc->error_data = error_data; } /** * flickcurl_set_tag_handler: * @fc: flickcurl object * @tag_handler: tag handler function * @tag_data: tag handler data * * Set Flickcurl tag handler. */ void flickcurl_set_tag_handler(flickcurl* fc, flickcurl_tag_handler tag_handler, void *tag_data) { fc->tag_handler = tag_handler; fc->tag_data = tag_data; } /** * flickcurl_set_user_agent: * @fc: flickcurl object * @user_agent: user agent string * * Set Flickcurl HTTP user agent string */ void flickcurl_set_user_agent(flickcurl* fc, const char *user_agent) { size_t len = strlen(user_agent); char *ua_copy = (char*)malloc(len + 1); if(!ua_copy) return; memcpy(ua_copy, user_agent, len + 1); fc->user_agent = ua_copy; } /** * flickcurl_set_proxy: * @fc: flickcurl object * @proxy: HTTP proxy string * * Set HTTP proxy for flickcurl requests */ void flickcurl_set_proxy(flickcurl* fc, const char *proxy) { size_t len = strlen(proxy); char *proxy_copy = (char*)malloc(len + 1); if(!proxy_copy) return; memcpy(proxy_copy, proxy, len + 1); fc->proxy = proxy_copy; } /** * flickcurl_set_http_accept: * @fc: flickcurl object * @value: HTTP Accept header value * * Set HTTP accept header value for flickcurl requests */ void flickcurl_set_http_accept(flickcurl* fc, const char *value) { char *value_copy; size_t len = 7; /* strlen("Accept:") */ if(value) len += 1 + strlen(value); /* " "+value */ value_copy = (char*)malloc(len + 1); if(!value_copy) return; fc->http_accept = value_copy; memcpy(value_copy, "Accept:", 8); /* copy NUL */ value_copy += 7; if(value) { *value_copy++ = ' '; memcpy(value_copy, value, (len - 8) + 1); } } /** * flickcurl_set_service_uri: * @fc: flickcurl object * @uri: Service URI (or NULL) * * Set Web Service URI for flickcurl requests * * Sets the service to the default (Flickr API web service) if @uri is NULL. */ void flickcurl_set_service_uri(flickcurl *fc, const char *uri) { size_t len; if(!uri) uri = flickcurl_flickr_service_uri; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Service URI set to: '%s'\n", uri); #endif if(fc->service_uri) free(fc->service_uri); len = strlen(uri); fc->service_uri = (char*)malloc(len + 1); memcpy(fc->service_uri, uri, len + 1); } /** * flickcurl_set_upload_service_uri: * @fc: flickcurl object * @uri: Upload Service URI (or NULL) * * Set Web Upload Service URI for flickcurl requests * * Sets the upload service to the default (Flickr API web * upload_service) if @uri is NULL. */ void flickcurl_set_upload_service_uri(flickcurl *fc, const char *uri) { size_t len; if(!uri) uri = flickcurl_flickr_upload_service_uri; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Upload Service URI set to: '%s'\n", uri); #endif if(fc->upload_service_uri) free(fc->upload_service_uri); len = strlen(uri); fc->upload_service_uri = (char*)malloc(len + 1); memcpy(fc->upload_service_uri, uri, len + 1); } /** * flickcurl_set_replace_service_uri: * @fc: flickcurl object * @uri: Replace Service URI (or NULL) * * Set Web Replace Service URI for flickcurl requests * * Sets the replace service to the default (Flickr API web * replace_service) if @uri is NULL. */ void flickcurl_set_replace_service_uri(flickcurl *fc, const char *uri) { size_t len; if(!uri) uri = flickcurl_flickr_replace_service_uri; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Replace Service URI set to: '%s'\n", uri); #endif if(fc->replace_service_uri) free(fc->replace_service_uri); len = strlen(uri); fc->replace_service_uri = (char*)malloc(len + 1); memcpy(fc->replace_service_uri, uri, len + 1); } /** * flickcurl_set_api_key: * @fc: flickcurl object * @api_key: API Key * * Set legacy Flickr auth application API Key (OAuth Client key) * * For OAuth this is not sufficient and * flickcurl_set_oauth_client_key() and * flickcurl_set_oauth_client_secret() be used * to pass both the client key and client secret. */ void flickcurl_set_api_key(flickcurl* fc, const char *api_key) { size_t len; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "API Key: '%s'\n", api_key); #endif if(fc->od.client_key) free(fc->od.client_key); len = strlen(api_key); fc->od.client_key = (char*)malloc(len + 1); memcpy(fc->od.client_key, api_key, len + 1); fc->od.client_key_len = len; /* Mainly for flickcurl_auth_oauth_getAccessToken() to sign the call * exchanging tokens */ fc->api_key = fc->od.client_key; } /** * flickcurl_get_api_key: * @fc: flickcurl object * * Get current application API Key (OAuth Client key) * * Return value: API key or NULL if none set */ const char* flickcurl_get_api_key(flickcurl* fc) { return fc->api_key; } /** * flickcurl_set_shared_secret: * @fc: flickcurl object * @secret: shared secret * * Set legacy Flickr auth secret */ void flickcurl_set_shared_secret(flickcurl* fc, const char *secret) { size_t len; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Legacy Flickr auth Secret: '%s'\n", secret); #endif if(fc->secret) free(fc->secret); len = strlen(secret); fc->secret = (char*)malloc(len + 1); memcpy(fc->secret, secret, len + 1); } /** * flickcurl_get_shared_secret: * @fc: flickcurl object * * Get legacy Flickr auth Secret * * Return value: shared secret or NULL if none set */ const char* flickcurl_get_shared_secret(flickcurl* fc) { return fc->secret; } /** * flickcurl_set_auth_token: * @fc: flickcurl object * @auth_token: auth token * * Set legacy Flickr auth Token */ void flickcurl_set_auth_token(flickcurl *fc, const char* auth_token) { size_t len; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Legacy Flickr auth token: '%s'\n", auth_token); #endif if(fc->auth_token) free(fc->auth_token); len = strlen(auth_token); fc->auth_token = (char*)malloc(len + 1); memcpy(fc->auth_token, auth_token, len + 1); } /** * flickcurl_get_auth_token: * @fc: flickcurl object * * Get legacy Flickr auth Token * * Return value: auth token or NULL if none set */ const char* flickcurl_get_auth_token(flickcurl *fc) { return fc->auth_token; } /** * flickcurl_set_sign: * @fc: flickcurl object * * Make the next request signed. */ void flickcurl_set_sign(flickcurl *fc) { fc->sign = 1; } /** * flickcurl_set_request_delay: * @fc: flickcurl object * @delay_msec: web service delay in milliseconds * * Set web service request delay */ void flickcurl_set_request_delay(flickcurl *fc, long delay_msec) { if(delay_msec >= 0) fc->request_delay = delay_msec; } /* * INTERNAL: initialise parameter array */ void flickcurl_init_params(flickcurl *fc, int is_write) { fc->count = 0; fc->parameters[fc->count][0] = NULL; /* Default is read only */ fc->is_write = is_write; /* Default to no data */ if(fc->data) { if(fc->data_is_xml) xmlFree(fc->data); fc->data = NULL; fc->data_length = 0; fc->data_is_xml = 0; } if(is_write) flickcurl_set_data(fc, (void*)"", 0); } /* * INTERNAL: add a new (key, value) to array of parameters */ void flickcurl_add_param(flickcurl *fc, const char* key, const char* value) { fc->parameters[fc->count][0] = key; fc->parameters[fc->count][1] = value; fc->count++; } /* * INTERNAL: finish parameters */ void flickcurl_end_params(flickcurl *fc) { fc->parameters[fc->count][0] = NULL; } static int flickcurl_prepare_common(flickcurl *fc, const char* service_uri, const char* method, const char* upload_field, const char* upload_value, int parameters_in_url, int need_auth) { int rc = 1; if(fc->api_key && fc->secret) /* Call with legacy Flickr auth */ rc = flickcurl_legacy_prepare_common(fc, service_uri, method, upload_field, upload_value, parameters_in_url, need_auth); else if(fc->od.token && fc->od.token_secret) /* Call with OAuth */ rc = flickcurl_oauth_prepare_common(fc, service_uri, method, upload_field, upload_value, parameters_in_url, need_auth); else flickcurl_error(fc, "No legacy or OAuth authentication tokens or secrets"); return rc; } int flickcurl_prepare_noauth(flickcurl *fc, const char* method) { if(!method) { flickcurl_error(fc, "No method to prepare"); return 1; } return flickcurl_prepare_common(fc, fc->service_uri, method, NULL, NULL, 1, 0); } int flickcurl_prepare(flickcurl *fc, const char* method) { if(!method) { flickcurl_error(fc, "No method to prepare"); return 1; } return flickcurl_prepare_common(fc, fc->service_uri, method, NULL, NULL, /* parameters_in_url */ 1, /* need_auth */ 1); } int flickcurl_prepare_upload(flickcurl *fc, const char* url, const char* upload_field, const char* upload_value) { return flickcurl_prepare_common(fc, url, NULL, upload_field, upload_value, /* parameters_in_url */ 0, /* need_auth */ 1); } /* Need gettimeofday() which is a BSD function not POSIX so may not * be in standard C libraries */ #ifdef HAVE_GETTIMEOFDAY #ifdef WIN32 /* have it as an external function */ int gettimeofday(struct timeval* tp, void *tzp); #endif #else /* seconds between 1 Jan 1601 (windows epoch) and 1 Jan 1970 (unix epoch) */ #define EPOCH_WIN_UNIX_DELTA 11644473600.0 /* 100 nano-seconds ( = 1/10 usec) in seconds */ #define NSEC100 (1e-7) /* factor to convert high-dword count into seconds = NSEC100 * (2<<32) */ #define FOUR_GIGA_NSEC100 (4294967296e-7) static int gettimeofday(struct timeval* tp, void* tzp) { FILETIME ft; double t; /* returns time since windows epoch in 100ns (1/10us) units */ GetSystemTimeAsFileTime(&ft); /* convert time into seconds as a double */ t = ((ft.dwHighDateTime * FOUR_GIGA_NSEC100) - EPOCH_WIN_UNIX_DELTA) + (ft.dwLowDateTime * NSEC100); tp->tv_sec = (long) t; tp->tv_usec = (long) ((t - tp->tv_sec) * 1e6); /* tzp is ignored */ return 0; } #endif /* end HAVE_GETTIMEOFDAY */ /* Need nanosleep() to wait between service calls */ #ifdef HAVE_NANOSLEEP /* nop */ #else #ifdef WIN32 struct timespec { long int tv_sec; /* seconds */ long int tv_nsec; /* nanoseconds */ }; #endif static int nanosleep(const struct timespec *rqtp, struct timespec *rmtp) { unsigned int msec; unsigned int sec; sec= rqtp->tv_sec; msec= (rqtp->tv_nsec / 1000000); /* carefully avoid sleeping forever with a sleep(0) */ #ifdef WIN32 msec += 1000 * sec; if(!msec) msec = 1; Sleep(msec); #else /* otherwise use sleep() (POSIX) and possibly usleep() (4.3BSD) */ if(sec > 0) sleep(sec); else { /* 0 seconds so ensure msec is at least 1 */ if(!msec) msec = 1; } #ifdef HAVE_USLEEP /* use usleep() for fractions of a second only (when available) * since some implementations won't let it sleep for more than a * second. */ if(msec > 0) usleep(msec * 1000); #endif #endif return 0; } #endif /* end HAVE_NANOSLEEP */ static size_t flickcurl_curl_header_callback(void* ptr, size_t size, size_t nmemb, void *userdata) { flickcurl* fc = (flickcurl*)userdata; int bytes = size*nmemb; /* If flickcurl has already failed, return nothing so that * libcurl will abort the transfer */ if(fc->failed) return 0; #define EC_HEADER_LEN 17 #define EM_HEADER_LEN 20 if(!strncmp((char*)ptr, "X-FlickrErrCode: ", EC_HEADER_LEN)) { fc->error_code = atoi((char*)ptr+EC_HEADER_LEN); } else if(!strncmp((char*)ptr, "X-FlickrErrMessage: ", EM_HEADER_LEN)) { int len = bytes - EM_HEADER_LEN; if(fc->error_msg) free(fc->error_msg); fc->error_msg = (char*)malloc(len + 1); memcpy(fc->error_msg, (char*)ptr + EM_HEADER_LEN, len + 1); fc->error_msg[len] = '\0'; while(fc->error_msg[len-1] == '\r' || fc->error_msg[len-1] == '\n') { fc->error_msg[len-1] = '\0'; len--; } } return bytes; } /** * flickcurl_get_current_request_wait: * @fc: flickcurl object * * Get current wait that would be applied for a web service request called now * * Returns the wait time that would be applied in order to delay a * web service request such that the web service rate limit is met. * * See flickcurl_set_request_delay() which by default is set to 1000ms. * * Return value: delay in usecs or < 0 if delay is more than 247 seconds ('infinity') */ int flickcurl_get_current_request_wait(flickcurl *fc) { #ifdef OFFLINE return 0; #else int wait_usec = 0; struct timeval now; struct timeval uwait; /* If there was no previous request, return 0 */ if(!fc->last_request_time.tv_sec) return 0; gettimeofday(&now, NULL); memcpy(&uwait, &fc->last_request_time, sizeof(struct timeval)); /* Calculate in micro-seconds */ uwait.tv_usec += 1000 * fc->request_delay; if(uwait.tv_usec >= 1000000) { uwait.tv_sec+= uwait.tv_usec / 1000000; uwait.tv_usec= uwait.tv_usec % 1000000; } if(now.tv_sec > uwait.tv_sec || (now.tv_sec == uwait.tv_sec && now.tv_usec > uwait.tv_usec)) { wait_usec = 0; /* No need to delay */ } else { /* Calculate wait in usec-seconds */ uwait.tv_sec = (uwait.tv_sec - now.tv_sec); uwait.tv_usec = (uwait.tv_usec - now.tv_usec); if(uwait.tv_usec < 0) { uwait.tv_sec--; uwait.tv_usec += 1000000; } if(uwait.tv_sec > 247) wait_usec = -1; /* 'infinity' */ else wait_usec = uwait.tv_sec * 1000000 + uwait.tv_usec; } return wait_usec; #endif } static int flickcurl_invoke_common(flickcurl *fc, char** content_p, size_t* size_p, xmlDocPtr* docptr_p) { struct curl_slist *slist = NULL; xmlDocPtr doc = NULL; struct timeval now; #if defined(OFFLINE) || defined(CAPTURE) char filename[200]; #endif int rc = 0; #if defined(OFFLINE) || defined(CAPTURE) if(1) { if(fc->method) sprintf(filename, "captured/%s.xml", fc->method+7); /* skip "flickr." */ else sprintf(filename, "captured/upload.xml"); } #endif #ifdef OFFLINE if(1) { #ifdef HAVE_RAPTOR char* uri_string; size_t len; #endif if(access(filename, R_OK)) { fprintf(stderr, "Method %s cannot run offline - no %s XML result available\n", fc->method, filename); return 1; } #ifdef HAVE_RAPTOR uri_string = raptor_uri_filename_to_uri_string(filename); len = strlen(uri_string); memcpy(fc->uri, uri_string, len + 1); raptor_free_memory(uri_string); #else sprintf(fc->uri, "file:%s", filename); #endif fprintf(stderr, "Method %s: running offline using result from %s\n", fc->method, filename); } #endif if(!fc->uri) { flickcurl_error(fc, "No Flickr URI prepared to invoke"); return 1; } if(content_p) fc->save_content = 1; else fc->xml_parse_content = 1; gettimeofday(&now, NULL); #ifndef OFFLINE if(fc->last_request_time.tv_sec) { /* If there was a previous request, check it's not too soon to * do another */ struct timeval uwait; memcpy(&uwait, &fc->last_request_time, sizeof(struct timeval)); #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Previous request was at %lu.N%lu\n", (unsigned long)uwait.tv_sec, (unsigned long)1000*uwait.tv_usec); #endif /* Calculate in micro-seconds */ uwait.tv_usec += 1000 * fc->request_delay; if(uwait.tv_usec >= 1000000) { uwait.tv_sec+= uwait.tv_usec / 1000000; uwait.tv_usec= uwait.tv_usec % 1000000; } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Next request is no earlier than %lu.N%lu\n", (unsigned long)uwait.tv_sec, (unsigned long)1000*uwait.tv_usec); fprintf(stderr, "Now is %lu.N%lu\n", (unsigned long)now.tv_sec, (unsigned long)1000*now.tv_usec); #endif if(now.tv_sec > uwait.tv_sec || (now.tv_sec == uwait.tv_sec && now.tv_usec > uwait.tv_usec)) { /* No need to delay */ } else { struct timespec nwait; /* Calculate in nano-seconds */ nwait.tv_sec= uwait.tv_sec - now.tv_sec; nwait.tv_nsec= 1000*(uwait.tv_usec - now.tv_usec); if(nwait.tv_nsec < 0) { nwait.tv_sec--; nwait.tv_nsec+= 1000000000; } /* Wait until timeval 'wait' happens */ #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Waiting for %lu sec N%lu nsec period\n", (unsigned long)nwait.tv_sec, (unsigned long)nwait.tv_nsec); #endif while(1) { struct timespec rem; if(nanosleep(&nwait, &rem) < 0 && errno == EINTR) { memcpy(&nwait, &rem, sizeof(struct timeval)); #if FLICKCURL_DEBUG > 1 fprintf(stderr, "EINTR - waiting for %lu sec N%lu nsec period\n", (unsigned long)nwait.tv_sec, (unsigned long)nwait.tv_nsec); #endif continue; } break; } } } #endif memcpy(&fc->last_request_time, &now, sizeof(struct timeval)); #ifdef CAPTURE if(1) { fc->fh = fopen(filename, "wb"); if(!fc->fh) flickcurl_error(fc, "Capture failed to write to %s - %s", filename, strerror(errno)); } #endif if(fc->xc) { if(fc->xc->myDoc) { xmlFreeDoc(fc->xc->myDoc); fc->xc->myDoc = NULL; } xmlFreeParserCtxt(fc->xc); fc->xc = NULL; } if(fc->proxy) curl_easy_setopt(fc->curl_handle, CURLOPT_PROXY, fc->proxy); if(fc->user_agent) curl_easy_setopt(fc->curl_handle, CURLOPT_USERAGENT, fc->user_agent); /* Insert HTTP Accept: header */ if(fc->http_accept) slist = curl_slist_append(slist, (const char*)fc->http_accept); /* specify URL to call */ curl_easy_setopt(fc->curl_handle, CURLOPT_URL, fc->uri); fc->total_bytes = 0; /* default: read with no data: GET */ curl_easy_setopt(fc->curl_handle, CURLOPT_NOBODY, 1); curl_easy_setopt(fc->curl_handle, CURLOPT_HTTPGET, 1); if(fc->data) { /* write with some data: POST */ /* CURLOPT_NOBODY = 0 sets http request to HEAD - do it first to override */ curl_easy_setopt(fc->curl_handle, CURLOPT_NOBODY, 0); /* this function only resets no-body flag for curl >= 7.14.1 */ curl_easy_setopt(fc->curl_handle, CURLOPT_POST, 1); curl_easy_setopt(fc->curl_handle, CURLOPT_POSTFIELDS, fc->data); curl_easy_setopt(fc->curl_handle, CURLOPT_POSTFIELDSIZE, fc->data_length); } else if(fc->is_write) { /* write with no data: POST */ /* CURLOPT_NOBODY = 0 sets http request to HEAD - do it first to override */ curl_easy_setopt(fc->curl_handle, CURLOPT_NOBODY, 0); /* this function only resets no-body flag for curl >= 7.14.1 */ curl_easy_setopt(fc->curl_handle, CURLOPT_POST, 1); } /* set slist always - either a list of headers or none (NULL) */ curl_easy_setopt(fc->curl_handle, CURLOPT_HTTPHEADER, slist); /* send all headers to this function */ curl_easy_setopt(fc->curl_handle, CURLOPT_HEADERFUNCTION, flickcurl_curl_header_callback); /* ... using this data pointer */ curl_easy_setopt(fc->curl_handle, CURLOPT_WRITEHEADER, fc); #ifdef FLICKCURL_DEBUG fprintf(stderr, "Preparing CURL with URI '%s' and method %s\n", fc->uri, ((fc->is_write || fc->upload_field) ? "POST" : "GET")); #endif if(fc->upload_field) { struct curl_httppost* post = NULL; struct curl_httppost* last = NULL; int i; /* Main parameters */ for(i = 0; fc->param_fields[i]; i++) { #ifdef FLICKCURL_DEBUG fprintf(stderr, " form param %2d) %-23s: '%s'\n", i, fc->param_fields[i], fc->param_values[i]); #endif curl_formadd(&post, &last, CURLFORM_PTRNAME, fc->param_fields[i], CURLFORM_PTRCONTENTS, fc->param_values[i], CURLFORM_END); } /* Upload parameter */ #ifdef FLICKCURL_DEBUG fprintf(stderr, " Upload form parameter %s: \n", fc->upload_field, fc->upload_value); #endif curl_formadd(&post, &last, CURLFORM_PTRNAME, fc->upload_field, CURLFORM_FILE, fc->upload_value, CURLFORM_END); /* Set the form info */ curl_easy_setopt(fc->curl_handle, CURLOPT_HTTPPOST, post); } if(fc->curl_setopt_handler) fc->curl_setopt_handler(fc->curl_handle, fc->curl_setopt_handler_data); #ifdef FLICKCURL_DEBUG fprintf(stderr, "Invoking CURL to resolve the URL\n"); #endif if(curl_easy_perform(fc->curl_handle)) { /* failed */ fc->failed = 1; flickcurl_error(fc, "Method %s failed with CURL error %s", fc->method, fc->error_buffer); } else { long lstatus; #ifndef CURLINFO_RESPONSE_CODE #define CURLINFO_RESPONSE_CODE CURLINFO_HTTP_CODE #endif fc->status_code = 0; /* Requires pointer to a long */ if(CURLE_OK == curl_easy_getinfo(fc->curl_handle, CURLINFO_RESPONSE_CODE, &lstatus) ) fc->status_code = lstatus; if(fc->status_code != 200) { if(fc->method) flickcurl_error(fc, "Method %s failed with error %d - %s (HTTP %d)", fc->method, fc->error_code, fc->error_msg, fc->status_code); else flickcurl_error(fc, "Call failed with error %d - %s (HTTP %d)", fc->error_code, fc->error_msg, fc->status_code); fc->failed = 1; } } if(slist) curl_slist_free_all(slist); if(fc->failed) goto tidy; if(fc->save_content) { char* c; flickcurl_chunk** chunks; c = (char*)malloc(fc->total_bytes+1); /* +1 for NUL */ chunks = (flickcurl_chunk**)malloc(sizeof(flickcurl_chunk*) * fc->chunks_count); if(c && chunks) { flickcurl_chunk* chunk = fc->chunks; int i; char *p; /* create the ordered list of chunks */ for(i = fc->chunks_count-1; i >= 0; i--) { chunks[i] = chunk; chunk = chunk->prev; } p = c; for(i = 0; i < fc->chunks_count; i++) { memcpy(p, chunks[i]->content, chunks[i]->size); p += chunks[i]->size; /* free saved chunk once it has been copied */ free(chunks[i]->content); free(chunks[i]); } free(chunks); /* saved chunks list is now freed */ fc->chunks = NULL; fc->chunks_count = 0; *p = '\0'; if(content_p) *content_p = c; else free(c); if(size_p) *size_p = fc->total_bytes; } else { if(c) free(c); if(chunks) free(chunks); flickcurl_error(fc, "Out of memory"); } } if(fc->xml_parse_content) { xmlNodePtr xnp; xmlAttr* attr; int failed = 0; xmlParseChunk(fc->xc, NULL, 0, 1); #ifdef FLICKCURL_DEBUG fprintf(stderr, "Got %d bytes content from URI '%s'\n", fc->total_bytes, fc->uri); #endif doc = fc->xc->myDoc; if(!doc) { flickcurl_error(fc, "Failed to create XML DOM for document"); fc->failed = 1; goto tidy; } xnp = xmlDocGetRootElement(doc); if(!xnp) { flickcurl_error(fc, "Failed to parse XML"); fc->failed = 1; goto tidy; } for(attr = xnp->properties; attr; attr = attr->next) { if(!strcmp((const char*)attr->name, "stat")) { const char *attr_value = (const char*)attr->children->content; #ifdef FLICKCURL_DEBUG fprintf(stderr, "Request returned stat '%s'\n", attr_value); #endif if(strcmp(attr_value, "ok")) failed = 1; break; } } if(failed) { xmlNodePtr err = xnp->children->next; for(attr = err->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; const char *attr_value = (const char*)attr->children->content; if(!strcmp(attr_name, "code")) fc->error_code = atoi(attr_value); else if(!strcmp(attr_name, "msg")) { size_t attr_len = strlen(attr_value); fc->error_msg = (char*)malloc(attr_len + 1); memcpy(fc->error_msg, attr_value, attr_len + 1); } } if(fc->method) flickcurl_error(fc, "Method %s failed with error %d - %s", fc->method, fc->error_code, fc->error_msg); else flickcurl_error(fc, "Call failed with error %d - %s", fc->error_code, fc->error_msg); fc->failed = 1; } else { /* pass DOM as an output parameter */ if(docptr_p) *docptr_p = doc; } } tidy: if(fc->failed) rc = 1; #ifdef CAPTURE if(1) { if(fc->fh) fclose(fc->fh); } #endif /* reset special flags */ fc->sign = 0; return rc; } xmlDocPtr flickcurl_invoke(flickcurl *fc) { xmlDocPtr docptr = NULL; if(!flickcurl_invoke_common(fc, NULL, NULL, &docptr)) return docptr; return NULL; } char* flickcurl_invoke_get_content(flickcurl *fc, size_t* size_p) { char* content = NULL; if(!flickcurl_invoke_common(fc, &content, size_p, NULL)) return content; return NULL; } void flickcurl_free_form(char **form, int count) { if(!form) return; /* free content which is the first key */ free(form[0]); free(form); } char** flickcurl_invoke_get_form_content(flickcurl *fc, int* count_p) { char* content = NULL; char** form = NULL; char *p; int count; int i; if(flickcurl_invoke_common(fc, &content, NULL, NULL)) return NULL; for(p = content, count = 0; *p; p++) { if(*p == '&') count++; } count++; /* counting separators so need +1 for number of contents */ /* Allocate count + 1 sized array of char* (key, value) pointers * The last pair are always (NULL, NULL). * * The pointers are into the 'content' buffer which is kept around * and owned by this array and stored in form[0]. */ form = (char**)calloc(2*(count + 1), sizeof(char*)); if(!form) goto tidy; for(p = content, i = 0; *p; p++) { char *start = p; while(*p && *p != '&' && *p != '=') p++; form[i++] = start; if(!*p) break; *p = '\0'; } form[i++] = '\0'; form[i] = '\0'; if(count_p) *count_p = count; return form; tidy: if(form) free(form); if(content) free(content); return NULL; } char* flickcurl_unixtime_to_isotime(time_t unix_time) { struct tm* structured_time; #define ISO_DATE_FORMAT "%Y-%m-%dT%H:%M:%SZ" #define ISO_DATE_LEN 20 static char date_buffer[ISO_DATE_LEN + 1]; size_t len; char *value = NULL; structured_time = (struct tm*)gmtime(&unix_time); len = ISO_DATE_LEN; strftime(date_buffer, len+1, ISO_DATE_FORMAT, structured_time); value = (char*)malloc(len + 1); memcpy(value, date_buffer, len + 1); return value; } char* flickcurl_unixtime_to_sqltimestamp(time_t unix_time) { struct tm* structured_time; #define SQL_DATETIME_FORMAT "%Y %m %d %H:%M:%S" #define SQL_DATETIME_LEN 19 static char date_buffer[SQL_DATETIME_LEN + 1]; size_t len; char *value = NULL; structured_time = (struct tm*)gmtime(&unix_time); len = ISO_DATE_LEN; strftime(date_buffer, len+1, SQL_DATETIME_FORMAT, structured_time); value = (char*)malloc(len + 1); memcpy(value, date_buffer, len + 1); return value; } char* flickcurl_sqltimestamp_to_isotime(const char* timestamp) { /* SQL DATETIME FORMAT "%Y %m %d %H:%M:%S" (19 chars) */ #define SQL_DATE_LEN 19 /* ISO DATE FORMAT "%Y-%m-%dT%H:%M:%SZ" (20 chars) */ #define ISO_DATE_LEN 20 size_t len = ISO_DATE_LEN; char *value = NULL; value = (char*)malloc(len + 1); memcpy(value, timestamp, SQL_DATE_LEN); value[4] = '-'; value[7] = '-'; value[10] = 'T'; value[13] = ':'; value[16] = ':'; value[19] = 'Z'; value[ISO_DATE_LEN] = '\0'; return value; } char* flickcurl_xpath_eval(flickcurl *fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; int i; char* value = NULL; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; if(xmlXPathNodeSetIsEmpty(nodes)) goto tidy; for(i = 0; i < xmlXPathNodeSetGetLength(nodes); i++) { xmlNodePtr node = nodes->nodeTab[i]; if(node->type != XML_ATTRIBUTE_NODE && node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } if(node->children) { size_t len = strlen((char*)node->children->content); value = (char*)malloc(len + 1); memcpy(value, node->children->content, len + 1); } break; } tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return value; } char* flickcurl_xpath_eval_to_tree_string(flickcurl* fc, xmlXPathContextPtr xpathNodeCtx, const xmlChar* xpathExpr, size_t* length_p) { xmlXPathObjectPtr xpathObj = NULL; xmlNodePtr sd_node; xmlBufferPtr buffer = NULL; xmlSaveCtxtPtr save_ctxt = NULL; char* value = NULL; size_t value_len = 0; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathNodeCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; if(xmlXPathNodeSetIsEmpty(nodes)) goto tidy; sd_node = nodes->nodeTab[0]; buffer = xmlBufferCreate(); if(!buffer) goto tidy; save_ctxt = xmlSaveToBuffer(buffer, NULL /* encoding */, 0 /* opts */); xmlSaveTree(save_ctxt, sd_node); xmlSaveFlush(save_ctxt); value_len = xmlBufferLength(buffer); if(!value_len) goto tidy; value = (char*)malloc(value_len+1); if(!value) goto tidy; memcpy(value, xmlBufferContent(buffer), value_len + 1); tidy: if(buffer) xmlBufferFree(buffer); if(xpathObj) xmlXPathFreeObject(xpathObj); if(value && length_p) *length_p = value_len; return value; } /** * flickcurl_set_write: * @fc: flickcurl object * @is_write: writeable flag * * Set writeable flag. */ void flickcurl_set_write(flickcurl *fc, int is_write) { fc->is_write = is_write; } /** * flickcurl_set_data: * @fc: flickcurl object * @data: data pointer * @data_length: data length * * Set web service request content data. */ void flickcurl_set_data(flickcurl *fc, void* data, size_t data_length) { if(fc->data) { if(fc->data_is_xml) xmlFree(fc->data); } fc->data = data; fc->data_length = data_length; fc->data_is_xml = 0; } /** * flickcurl_set_xml_data: * @fc: flickcurl object * @doc: XML dom * * Set web service request content data from XML DOM. */ void flickcurl_set_xml_data(flickcurl *fc, xmlDocPtr doc) { xmlChar* mem; int size; if(fc->data) { if(fc->data_is_xml) xmlFree(fc->data); } xmlDocDumpFormatMemory(doc, &mem, &size, 1); /* format 1 means indent */ fc->data = mem; fc->data_length = (size_t)size; fc->data_is_xml = 1; } static const char* flickcurl_field_value_type_label[VALUE_TYPE_LAST+1] = { "(none)", "photo id", "photo URI", "unix time", "boolean", "dateTime", "float", "integer", "string", "uri", "person ID", "media type", "tag string", "collection id", "icon photos" }; /** * flickcurl_get_field_value_type_label: * @datatype: datatype enum * * Get label for datatype * * Return value: label string or NULL if none valid */ const char* flickcurl_get_field_value_type_label(flickcurl_field_value_type datatype) { if(datatype <= VALUE_TYPE_LAST) return flickcurl_field_value_type_label[(int)datatype]; return NULL; } char* flickcurl_call_get_one_string_field(flickcurl* fc, const char* key, const char* value, const char* method, const xmlChar* xpathExpr) { char *result = NULL; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); if(key && value) { flickcurl_add_param(fc, key, value); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, method)) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(xpathCtx) result = flickcurl_xpath_eval(fc, xpathCtx, xpathExpr); xmlXPathFreeContext(xpathCtx); tidy: return result; } /** * flickcurl_array_join: * @array: C array * @delim: delimeter character * * Join elements of a C array into a string * * Return value: newly allocated string or NULL on failure */ char* flickcurl_array_join(const char *array[], char delim) { int i; int array_size; size_t len = 0; char* str; char* p; for(i = 0; array[i]; i++) len += strlen(array[i])+1; array_size = i; str = (char*)malloc(len+1); if(!str) return NULL; p = str; for(i = 0; array[i]; i++) { size_t item_len = strlen(array[i]); memcpy(p, array[i], item_len); p += item_len; if(i < array_size) *p++ = delim; } *p = '\0'; return str; } /** * flickcurl_array_split: * @str: string * @delim: delimeter character * * Split a string into a C array * * Return value: newly allocated array or NULL on failure */ char** flickcurl_array_split(const char *str, char delim) { int i; int array_size = 1; char** array; for(i = 0; str[i]; i++) { if(str[i] == delim) array_size++; } array = (char**)malloc(sizeof(char*)*(array_size+1)); if(!array) return NULL; for(i = 0; *str; i++) { size_t item_len; const char* p; for(p = str; *p && *p != delim; p++) ; item_len = p - str; array[i] = (char*)malloc(item_len + 1); if(!array[i]) { while(--i >= 0) free(array[i]); free(array); return NULL; } memcpy(array[i], str, item_len); array[i][item_len] = '\0'; str+= item_len; if(*str == delim) str++; } array[i] = NULL; return array; } /** * flickcurl_array_free: * @array: C array * * Free an array. */ void flickcurl_array_free(char* array[]) { int i; for(i = 0; array[i]; i++) free(array[i]); free(array); } #define CONTENT_TYPE_COUNT 3 static const char* flickcurl_content_type_labels[CONTENT_TYPE_COUNT+1]= {"unknown", "photo", "screenshot", "other"}; /** * flickcurl_get_content_type_label: * @content_type: safety level index * * Get label for a content type. * * Return value: pointer to shared string label for content type or "unknown" **/ const char* flickcurl_get_content_type_label(int content_type) { if(content_type < 1 || content_type > CONTENT_TYPE_COUNT) content_type= 0; return flickcurl_content_type_labels[content_type]; } /** * flickcurl_get_content_type_from_string: * @content_type_string: string * * Get the enumeration value for a content type string. * * Parses the string value into a content type either from an * integer form like '1' or a label like 'photo'. * * Returns: content type enumeration value or <0 on error **/ int flickcurl_get_content_type_from_string(const char* content_type_string) { char* endptr = NULL; int content_type = -1; content_type = (int)strtol(content_type_string, &endptr, 10); /* If not all of string was used - fail */ if(endptr && *endptr) content_type= -1; if(content_type < 1 || content_type > CONTENT_TYPE_COUNT) { int i; for(i = 1; i< CONTENT_TYPE_COUNT; i++) if(!strcmp(flickcurl_content_type_labels[i], content_type_string)) { content_type = i; break; } } return content_type; } #define SAFETY_LEVEL_COUNT 4 static const char* flickcurl_safety_level_labels[SAFETY_LEVEL_COUNT+1]= {"unknown", "safe", "moderate", "restricted", "(no change)"}; /** * flickcurl_get_safety_level_label: * @safety_level: safety level index * * Get label for a safety level. * * Return value: pointer to shared string label for safety level or "unknown" **/ const char* flickcurl_get_safety_level_label(int safety_level) { if(safety_level < 1 || safety_level > SAFETY_LEVEL_COUNT) safety_level= 0; return flickcurl_safety_level_labels[safety_level]; } /** * flickcurl_get_safety_level_from_string: * @safety_level_string: string * * Get the enumeration value for a safety level string. * * Parses the string value into a safety level either from an * integer form like '1' or a label like 'safe'. * * Returns: safety level enumeration value or <0 on error **/ int flickcurl_get_safety_level_from_string(const char* safety_level_string) { char* endptr = NULL; int safety_level= -1; safety_level = (int)strtol(safety_level_string, &endptr, 10); /* If not all of string was used - fail */ if(endptr && *endptr) safety_level= -1; if(safety_level < 1 || safety_level > SAFETY_LEVEL_COUNT) { int i; for(i = 1; i< SAFETY_LEVEL_COUNT; i++) if(!strcmp(flickcurl_safety_level_labels[i], safety_level_string)) { safety_level = i; break; } } return safety_level; } #define HIDDEN_COUNT 2 static const char* flickcurl_hidden_labels[HIDDEN_COUNT + 1] = {"unknown", "public", "hidden" }; /** * flickcurl_get_hidden_label: * @hidden: safety level index * * Get label for a hidden status * * Return value: pointer to shared string label for hidden status or "unknown" **/ const char* flickcurl_get_hidden_label(int hidden) { if(hidden < 1 || hidden > HIDDEN_COUNT) hidden = 0; return flickcurl_hidden_labels[hidden]; } /** * flickcurl_get_hidden_from_string: * @hidden_string: string * * Get the enumeration value for a hidden status string. * * Parses the string value into a safety level either from an * integer form like '1' or a label like 'hidden'. * * Returns: safety level enumeration value or <0 on error **/ int flickcurl_get_hidden_from_string(const char* hidden_string) { char* endptr = NULL; int hidden = -1; hidden = (int)strtol(hidden_string, &endptr, 10); /* If not all of string was used - fail */ if(endptr && *endptr) hidden = -1; if(hidden < 1 || hidden > HIDDEN_COUNT) { int i; for(i = 1; i< HIDDEN_COUNT; i++) if(!strcmp(flickcurl_hidden_labels[i], hidden_string)) { hidden = i; break; } } return hidden; } #define FEED_FORMAT_COUNT 8 static struct { const char* name; const char* label; const char* mime_type; } flickcurl_feed_format_info[FEED_FORMAT_COUNT+1] = { { "feed-rss_100", "RSS 1.0", "application/rdf+xml" }, { "feed-rss_200", "RSS 2.0", "application/rss+xml" }, { "feed-atom_10", "Atom 1.0", "application/atom+xml" }, { "feed-georss", "RSS 2.0 with GeoRSS and W3C Geo for geotagged photos", "application/rss+xml" }, { "feed-geoatom", "Atom 1.0 with GeoRSS and W3C Geo for geotagged photos", "application/atom+xml" }, { "feed-geordf", "RSS 1.0 with GeoRSS and W3C Geo for geotagged photos", "application/rdf+xml" }, { "feed-kml", "KML 2.1", "application/vnd.google-earth.kml+xml" }, { "feed-kml_nl", "KML 2.1 network link", "application/vnd.google-earth.kml+xml" }, { NULL, NULL, NULL } }; /** * flickcurl_get_feed_format_info: * @feed_format: input param - feed format index * @name_p: output param - pointer to store feed format name * @label_p: output param - pointer to store feed format label * @mime_type_p: output param - pointer to store feed format mime type * * Get feed format parameter value information * * As announced 2008-08-25 in * http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/ * * Return value: non-0 if feed_format is out of range **/ int flickcurl_get_feed_format_info(int feed_format, const char** name_p, const char** label_p, const char** mime_type_p) { if(feed_format < 0 || feed_format >= FEED_FORMAT_COUNT) return 1; if(name_p) *name_p = flickcurl_feed_format_info[feed_format].name; if(label_p) *label_p = flickcurl_feed_format_info[feed_format].label; if(mime_type_p) *mime_type_p = flickcurl_feed_format_info[feed_format].mime_type; return 0; } /* * flickcurl_append_photos_list_params: * @fc: fc * @list_params: in parameter - photos list paramater * @format_p: out parameter - result format requested or NULL * * INTERNAL - append #flickcurl_photos_list_params to parameter list for API call * * Return value: number of parameters added */ int flickcurl_append_photos_list_params(flickcurl* fc, flickcurl_photos_list_params* list_params, const char** format_p) { /* NOTE: These are SHARED and pointed to by flickcurl_prepare() to * build the URL */ static char per_page_s[FLICKCURL_MAX_LIST_PARAM_COUNT]; static char page_s[FLICKCURL_MAX_LIST_PARAM_COUNT]; int this_count = 0; if(format_p) *format_p = NULL; if(!list_params) return 0; if(list_params->extras) { flickcurl_add_param(fc, "extras", list_params->extras); this_count++; } if(list_params->per_page) { if(list_params->per_page >= 0 && list_params->per_page <= 999) { sprintf(per_page_s, "%d", list_params->per_page); flickcurl_add_param(fc, "per_page", per_page_s); this_count++; } } if(list_params->page) { if(list_params->page >= 0 && list_params->page <= 999) { sprintf(page_s, "%d", list_params->page); flickcurl_add_param(fc, "page", page_s); this_count++; } } if(list_params->format) { flickcurl_add_param(fc, "format", list_params->format); this_count++; if(format_p) *format_p = list_params->format; } return this_count; } #define EXTRAS_FORMAT_COUNT 19 static struct { const char* name; const char* label; } flickcurl_extras_format_info[EXTRAS_FORMAT_COUNT+1] = { { "date_taken", "Date item was taken"}, { "date_upload", "Date item was uploaded"}, { "geo", "Geotagging latitude, longitude and accuracy"}, { "icon_server", "Item owner icon fields"}, { "last_update", "Date item was last updated"}, { "license", "Item License "}, { "machine_tags", "Machine tags"}, { "media", "Item Format: photo or video"}, { "o_dims", "Original item dimensions"}, { "original_format", "Original item secret and format"}, { "owner_name", "Item owner ID"}, /* http://tech.groups.yahoo.com/group/yws-flickr/message/5053 */ { "path_alias", "Path alias for owner like /photos/USERNAME"}, { "tags", "Item clean tags (safe for HTML, URLs)"}, /* http://tech.groups.yahoo.com/group/yws-flickr/message/5053 */ { "url_m", "URL of medium size image"}, { "url_o", "URL of original size image"}, { "url_s", "URL of small size image"}, { "url_sq", "URL of square size image"}, { "url_t", "URL of thumbnail size image"}, { "views", "Number of times item has been viewed"}, { NULL, NULL } }; /** * flickcurl_get_extras_format_info: * @extras_format: input param - extras format index * @name_p: output param - pointer to store feed format name * @label_p: output param - pointer to store feed format label * * Get APi extras format parameter value information * * As described 2008-08-19 in * http://code.flickr.com/blog/2008/08/19/standard-photos-response-apis-for-civilized-age/ * * Return value: non-0 if extras_format is out of range **/ int flickcurl_get_extras_format_info(int extras_format, const char** name_p, const char** label_p) { if(extras_format < 0 || extras_format >= EXTRAS_FORMAT_COUNT) return 1; if(name_p) *name_p = flickcurl_extras_format_info[extras_format].name; if(label_p) *label_p = flickcurl_extras_format_info[extras_format].label; return 0; } /** * flickcurl_photos_list_params_init: * @list_params: photos list params to init * * Initialise an existing photos list parameter structure * * Return value: non-0 on failure */ int flickcurl_photos_list_params_init(flickcurl_photos_list_params* list_params) { if(!list_params) return 1; memset(list_params, '\0', sizeof(*list_params)); list_params->version = 1; list_params->extras = NULL; list_params->format = NULL; list_params->page= -1; list_params->per_page= -1; return 0; } /** * flickcurl_search_params_init: * @params: search params to init * * Initialise an existing search parameters structure * * Return value: non-0 on failure */ int flickcurl_search_params_init(flickcurl_search_params* params) { memset(params, '\0', sizeof(flickcurl_search_params)); /* These are the numeric fields and are all set to 0 or 0.0 by the memset() */ #if 0 params->min_upload_date = 0; params->max_upload_date = 0; params->accuracy = 0; params->safe_search = 0; params->content_type = 0; params->per_page = 0; params->page= 0; params->has_geo = 0; /* strictly lat and lon are ignored if radius is 0.0 */ params->lat = 0.0; params->lon = 0.0; params->radius = 0.0; params->woe_id = 0; params->geo_context = 0; params->is_commons = 0; #endif /* The remaining fields are pointers and are set to NULL by the memset() */ return 0; } /** * flickcurl_set_curl_setopt_handler: * @fc: flickcurl object * @curl_handler: curl set options handler (or NULL) * @curl_handler_data: user data for handler (or NULL) * * Set curl set option callback handler. * * This handler is called for every curl request after all internal * curl_easy_setopt calls are made on the internal CURL* handle and * just before curl_easy_perform is invoked to start the retrieval. * Thus, this callback can override any internal configuration. * * If a simple once-only CURL configuration is needed, using * flickcurl_new_with_handle() may be easier. * * WARNING: The @curl_handler callback is called with 2 void args in * the order user data (@curl_handler_data value), curl_handle (CURL* * pointer) - take care to use them correct in implementation. * */ void flickcurl_set_curl_setopt_handler(flickcurl *fc, flickcurl_curl_setopt_handler curl_handler, void* curl_handler_data) { fc->curl_setopt_handler = curl_handler; fc->curl_setopt_handler_data = curl_handler_data; } flickcurl-1.25/src/gallery.c0000644000175000017500000001537112017322551012737 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * gallery.c - Flickcurl gallery functions * * Copyright (C) 2010, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include #endif #include #include /** * flickcurl_free_gallery: * @gallery: gallery object * * Destructor for gallery object */ void flickcurl_free_gallery(flickcurl_gallery *gallery) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(gallery, flickcurl_gallery); if(gallery->id) free(gallery->id); if(gallery->url) free(gallery->url); if(gallery->owner) free(gallery->owner); if(gallery->primary_photo) flickcurl_free_photo(gallery->primary_photo); if(gallery->title) free(gallery->title); if(gallery->description) free(gallery->description); free(gallery); } /** * flickcurl_free_galleries: * @galleries_object: gallery object array * * Destructor for array of gallery objects */ void flickcurl_free_galleries(flickcurl_gallery **galleries_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(galleries_object, flickcurl_gallery_array); for(i = 0; galleries_object[i]; i++) flickcurl_free_gallery(galleries_object[i]); free(galleries_object); } flickcurl_gallery** flickcurl_build_galleries(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* gallery_count_p) { flickcurl_gallery** galleries = NULL; int nodes_count; int gallery_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); galleries = (flickcurl_gallery**)calloc(sizeof(flickcurl_gallery*), nodes_count+1); for(i = 0, gallery_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_gallery* g; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } g = (flickcurl_gallery*)calloc(sizeof(flickcurl_gallery), 1); /* initialise primary photo object */ g->primary_photo = (flickcurl_photo*)calloc(sizeof(flickcurl_photo), 1); /* assumes it is a photo */ #define PHOTO_STR_LEN 5 g->primary_photo->media_type = (char*)malloc(PHOTO_STR_LEN + 1); memcpy(g->primary_photo->media_type, "photo", PHOTO_STR_LEN + 1); /* empty list of tags (1 NULL pointer) */ g->primary_photo->tags = (flickcurl_tag**)calloc(sizeof(flickcurl_tag*), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) g->id = attr_value; else if(!strcmp(attr_name, "url")) g->url = attr_value; else if(!strcmp(attr_name, "owner")) g->owner = attr_value; else if(!strcmp(attr_name, "date_create")) { g->date_create = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "date_update")) { g->date_update = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "primary_photo_id")) { g->primary_photo->id = attr_value; } else if(!strcmp(attr_name, "primary_photo_server")) { g->primary_photo->fields[PHOTO_FIELD_server].integer = (flickcurl_photo_field_type)atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "primary_photo_farm")) { g->primary_photo->fields[PHOTO_FIELD_farm].integer = (flickcurl_photo_field_type)atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "primary_photo_secret")) { g->primary_photo->fields[PHOTO_FIELD_secret].string = attr_value; } else if(!strcmp(attr_name, "count_photos")) { g->count_photos = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "count_videos")) { g->count_videos = atoi(attr_value); free(attr_value); } else free(attr_value); } /* end attributes */ /* Walk children nodes for or <description> elements */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; if(chnode->type == XML_ELEMENT_NODE) { if(!strcmp(chnode_name, "title")) { if(chnode->children) { size_t len = strlen((const char*)chnode->children->content); g->title = (char*)malloc(len + 1); memcpy(g->title, chnode->children->content, len + 1); } } else if(!strcmp(chnode_name, "description")) { if(chnode->children) { size_t len = strlen((const char*)chnode->children->content); g->description = (char*)malloc(len + 1); memcpy(g->description, chnode->children->content, len + 1); } } } } /* end for children of <item> */ #if FLICKCURL_DEBUG > 1 fprintf(stderr, "gallery: id %s url %s owner %s\n" " date create %d date update %d\n" " count of photos %d count of videos %d\n" " title '%s'\n" " description '%s'\n" , g->id, g->url, g->owner, g->date_create, g->date_update, g->count_photos, g->count_videos, g->title, g->description); #endif galleries[gallery_count++] = g; } /* for nodes */ if(gallery_count_p) *gallery_count_p = gallery_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return galleries; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photo.c��������������������������������������������������������������������������0000644�0001750�0001750�00000077261�12017322551�012437� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photo.c - Flickcurl photo functions * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #include <ctype.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static const char* flickcurl_photo_field_label[PHOTO_FIELD_LAST+1] = { "(none)", "dateuploaded", "farm", "isfavorite", "license", "originalformat", "rotation", "server", "dates_lastupdate", "dates_posted", "dates_taken", "dates_takengranularity", "description", "editability_canaddmeta", "editability_cancomment", "geoperms_iscontact", "geoperms_isfamily", "geoperms_isfriend", "geoperms_ispublic", "location_accuracy", "location_latitude", "location_longitude", "owner_location", "owner_nsid", "owner_realname", "owner_username", "title", "visibility_isfamily", "visibility_isfriend", "visibility_ispublic", "secret", "originalsecret", "location_neighbourhood", "location_locality", "location_county", "location_region", "location_country", "location_placeid", "neighbourhood_placeid", "locality_placeid", "county_placeid", "region_placeid", "country_placeid", "location_woeid", "neighbourhood_woeid", "locality_woeid", "county_woeid", "region_woeid", "country_woeid", "usage_candownload", "usage_canblog", "usage_canprint", "owner_iconserver", "owner_iconfarm", "original_width", "original_height", "views", "comments", "favorites", "gallery_comment" }; /** * flickcurl_get_photo_field_label: * @field: field enum * * Get label for photo field. * * Return value: label string or NULL if none valid */ const char* flickcurl_get_photo_field_label(flickcurl_photo_field_type field) { if(field <= PHOTO_FIELD_LAST) return flickcurl_photo_field_label[(int)field]; return NULL; } /** * flickcurl_free_photo: * @photo: photo object * * Destructor for photo object */ void flickcurl_free_photo(flickcurl_photo *photo) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(photo, flickcurl_photo); for(i = 0; i <= PHOTO_FIELD_LAST; i++) { if(photo->fields[i].string) free(photo->fields[i].string); } flickcurl_free_tags(photo->tags); for(i = 0; i < photo->notes_count; i++) flickcurl_free_note(photo->notes[i]); free(photo->notes); if(photo->id) free(photo->id); if(photo->uri) free(photo->uri); if(photo->media_type) free(photo->media_type); if(photo->place) flickcurl_free_place(photo->place); if(photo->video) flickcurl_free_video(photo->video); free(photo); } /** * flickcurl_photo_as_source_uri: * @photo: photo object * @c: size s, m, t or b * * Get a photo's image source URIs * * @c can be s,m,t,b for sizes, o for original, otherwise default * http://www.flickr.com/services/api/misc.urls.html * * Return value: new source URI string or NULL on failure */ char* flickcurl_photo_as_source_uri(flickcurl_photo *photo, const char c) { char buf[1024]; char *result; size_t len; if(c == 'o') { /* http://farm{farm-id}.static.flickr.com/{server-id}/{id}_{o-secret}_o.(jpg|gif|png) */ sprintf(buf, "http://farm%s.static.flickr.com/%s/%s_%s_o.%s", photo->fields[PHOTO_FIELD_farm].string, photo->fields[PHOTO_FIELD_server].string, photo->id, photo->fields[PHOTO_FIELD_originalsecret].string, photo->fields[PHOTO_FIELD_originalformat].string); } else if (c == 'm' || c == 's' || c == 't' || c == 'b') { /* http://farm{farm-id}.static.flickr.com/{server-id}/{id}_{secret}_[mstb].jpg */ sprintf(buf, "http://farm%s.static.flickr.com/%s/%s_%s_%c.jpg", photo->fields[PHOTO_FIELD_farm].string, photo->fields[PHOTO_FIELD_server].string, photo->id, photo->fields[PHOTO_FIELD_secret].string, c); } else { /* http://farm{farm-id}.static.flickr.com/{server-id}/{id}_{secret}.jpg */ sprintf(buf, "http://farm%s.static.flickr.com/%s/%s_%s.jpg", photo->fields[PHOTO_FIELD_farm].string, photo->fields[PHOTO_FIELD_server].string, photo->id, photo->fields[PHOTO_FIELD_secret].string); } len = strlen(buf); result = (char*)malloc(len + 1); memcpy(result, buf, len + 1); return result; } /** * flickcurl_photo_as_page_uri: * @photo: photo object * * Get a photo's page URI * * Return value: new source URI string or NULL on failure */ char* flickcurl_photo_as_page_uri(flickcurl_photo *photo) { char buf[1024]; char *result; size_t len; /* http://www.flickr.com/photos/{owner}/{photo id}/ */ sprintf(buf, "http://www.flickr.com/photos/%s/%s", photo->fields[PHOTO_FIELD_owner_nsid].string, photo->id); len = strlen(buf); result = (char*)malloc(len + 1); memcpy(result, buf, len + 1); return result; } #define SHORT_URI_ALPHABET_SIZE 58 static const char short_uri_alphabet[SHORT_URI_ALPHABET_SIZE+1]= "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"; #define SHORT_URI_PREFIX_LEN 17 static const char short_uri_prefix[SHORT_URI_PREFIX_LEN+1] = "http://flic.kr/p/"; /** * flickcurl_photo_id_as_short_uri: * @photo_id: photo ID * * Get a short URI for a photo ID * * Encoded based on description given in * http://www.flickr.com/groups/api/discuss/72157616713786392/ * * Return value: new short URI string or NULL on failure */ char* flickcurl_photo_id_as_short_uri(char *photo_id) { char buf[SHORT_URI_ALPHABET_SIZE + 1]; int base_count = SHORT_URI_ALPHABET_SIZE; char *p; char *r; long long num = atoll(photo_id); char *result; if(num <= 0) return NULL; /* http://flic.kr/p/{base58-photo id}/ */ /* construct the encoding in reverse order into buf */ p = buf; while(num >= base_count) { double divisor = num / base_count; long long modulus = (num - (base_count * (long long)divisor)); *p++ = short_uri_alphabet[modulus]; num = (long long)divisor; } if(num) *p++ = short_uri_alphabet[num]; result = (char*)malloc((p-buf) + SHORT_URI_PREFIX_LEN + 1); if(!result) return NULL; r = result; memcpy(result, short_uri_prefix, SHORT_URI_PREFIX_LEN); r += SHORT_URI_PREFIX_LEN; /* now copy it backwards into new result string */ while(p != buf) *r++ = *--p; *r = '\0'; return result; } /** * flickcurl_photo_as_short_uri: * @photo: photo object * * Get a short URI for a photo * * Encoded based on description given in * http://www.flickr.com/groups/api/discuss/72157616713786392/ * * Return value: new short URI string or NULL on failure */ char* flickcurl_photo_as_short_uri(flickcurl_photo *photo) { return flickcurl_photo_id_as_short_uri(photo->id); } #define SOURCE_URI_MATCH1_LENGTH 11 static const char source_uri_match1[SOURCE_URI_MATCH1_LENGTH+1] = "http://farm"; #define SOURCE_URI_MATCH2_LENGTH 19 static const char source_uri_match2[SOURCE_URI_MATCH2_LENGTH+1] = ".static.flickr.com/"; /** * flickcurl_source_uri_as_photo_id: * @uri: source uri * * Get a photo ID from an image source URI * * Turns an URL that points to the photo into a photo ID. * i.e. given an URI like these: * <code>http://farm{farm-id}.static.flickr.com/{server-id}/{photo-id}_{o-secret}_o.(jpg|gif|png)</code> or * <code>http://farm{farm-id}.static.flickr.com/{server-id}/{photo-id}_{secret}_[mstb].jpg</code> * <code>http://farm{farm-id}.static.flickr.com/{server-id}/{photo-id}_{secret}.jpg</code> * returns the {photo-id} * * Return value: new photo ID string or NULL on failure */ char* flickcurl_source_uri_as_photo_id(const char *uri) { const char* p = uri; const char* q = NULL; char *photo_id = NULL; size_t len = 0; if(!p) return NULL; if(memcmp(p, source_uri_match1, SOURCE_URI_MATCH1_LENGTH)) return NULL; p+= SOURCE_URI_MATCH1_LENGTH; /* now at {farm-id}.static... */ while(isdigit(*p)) p++; if(memcmp(p, source_uri_match2, SOURCE_URI_MATCH2_LENGTH)) return NULL; p+= SOURCE_URI_MATCH2_LENGTH; /* now at {server-id}/{photo_id}_... */ while(isdigit(*p)) p++; if(*p++ != '/') return NULL; /* now at {photo_id}_... */ q = p; while(isdigit(*q)) q++; if(*q != '_') return NULL; len = q-p; photo_id = (char*)malloc(len+1); if(!photo_id) return NULL; memcpy(photo_id, p, len); photo_id[len] = '\0'; return photo_id; } /** * flickcurl_user_icon_uri: * @farm: user icon farm * @server: user icon server or 0 * @nsid: user nsid * * Get the user's icon URI * * The icon URI returned is always a 48x48 pixel JPEG. * * If @server is 0 (or the other fields are NULL), the default icon URI of * http://www.flickr.com/images/buddyicon.jpg is returned. * * Defined by http://www.flickr.com/services/api/misc.buddyicons.html * * Return value: new icon URI string or NULL on failure */ char* flickcurl_user_icon_uri(int farm, int server, char *nsid) { char buf[1024]; char *result; if(server && farm && nsid) { size_t len; /* http://farm{icon-farm}.static.flickr.com/{icon-server}/buddyicons/{nsid}.jpg */ sprintf(buf, "http://farm%d.static.flickr.com/%d/buddicons/%s.jpg", farm, server, nsid); len = strlen(buf); result = (char*)malloc(len + 1); memcpy(result, buf, len + 1); } else { #define MAGIC_LEN 42 result = (char*)malloc(MAGIC_LEN + 1); memcpy(result, "http://www.flickr.com/images/buddyicon.jpg", MAGIC_LEN + 1); } return result; } /** * flickcurl_photo_as_user_icon_uri: * @photo: photo object * * Get the user's icon URI * * The icon URI returned is always a 48x48 pixel JPEG * * Return value: new icon URI string or NULL on failure */ char* flickcurl_photo_as_user_icon_uri(flickcurl_photo *photo) { return flickcurl_user_icon_uri( photo->fields[PHOTO_FIELD_owner_iconfarm].integer, photo->fields[PHOTO_FIELD_owner_iconserver].integer, photo->fields[PHOTO_FIELD_owner_nsid].string); } static struct { const xmlChar* xpath; flickcurl_photo_field_type field; flickcurl_field_value_type type; } photo_fields_table[] = { { (const xmlChar*)"./@id", PHOTO_FIELD_none, VALUE_TYPE_PHOTO_ID, } , { (const xmlChar*)"./urls/url[@type = \"photopage\"]", PHOTO_FIELD_none, VALUE_TYPE_PHOTO_URI } , { (const xmlChar*)"./@media", PHOTO_FIELD_none, VALUE_TYPE_MEDIA_TYPE } , { (const xmlChar*)"./@dateuploaded", PHOTO_FIELD_dateuploaded, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./@dateupload", PHOTO_FIELD_dateuploaded, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./@farm", PHOTO_FIELD_farm, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@isfavorite", PHOTO_FIELD_isfavorite, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@license", PHOTO_FIELD_license, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@originalformat", PHOTO_FIELD_originalformat, VALUE_TYPE_STRING } , { (const xmlChar*)"./@rotation", PHOTO_FIELD_rotation, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@server", PHOTO_FIELD_server, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@tags", PHOTO_FIELD_none, VALUE_TYPE_TAG_STRING } , { (const xmlChar*)"./@owner", PHOTO_FIELD_owner_nsid, VALUE_TYPE_STRING } , { (const xmlChar*)"./@ownername", PHOTO_FIELD_owner_realname, VALUE_TYPE_STRING } , { (const xmlChar*)"./@place_id", PHOTO_FIELD_location_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./@woeid", PHOTO_FIELD_location_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./@accuracy", PHOTO_FIELD_location_accuracy, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@latitude", PHOTO_FIELD_location_latitude, VALUE_TYPE_FLOAT } , { (const xmlChar*)"./@longitude", PHOTO_FIELD_location_longitude, VALUE_TYPE_FLOAT } , { (const xmlChar*)"./@datetaken", PHOTO_FIELD_dates_taken, VALUE_TYPE_DATETIME } , { (const xmlChar*)"./@lastupdate", PHOTO_FIELD_dates_lastupdate, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./@datetakengranularity", PHOTO_FIELD_dates_takengranularity, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./dates/@lastupdate", PHOTO_FIELD_dates_lastupdate, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./dates/@posted", PHOTO_FIELD_dates_posted, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./dates/@taken", PHOTO_FIELD_dates_taken, VALUE_TYPE_DATETIME } , { (const xmlChar*)"./dates/@takengranularity", PHOTO_FIELD_dates_takengranularity, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./description", PHOTO_FIELD_description, VALUE_TYPE_STRING } , { (const xmlChar*)"./editability/@canaddmeta", PHOTO_FIELD_editability_canaddmeta, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./editability/@cancomment", PHOTO_FIELD_editability_cancomment, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./geoperms/@iscontact", PHOTO_FIELD_geoperms_iscontact, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./geoperms/@isfamily", PHOTO_FIELD_geoperms_isfamily, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./geoperms/@isfriend", PHOTO_FIELD_geoperms_isfriend, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./geoperms/@ispublic", PHOTO_FIELD_geoperms_ispublic, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./location/@accuracy", PHOTO_FIELD_location_accuracy, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./location/@latitude", PHOTO_FIELD_location_latitude, VALUE_TYPE_FLOAT } , { (const xmlChar*)"./location/@longitude", PHOTO_FIELD_location_longitude, VALUE_TYPE_FLOAT } , { (const xmlChar*)"./location/neighborhood", PHOTO_FIELD_location_neighbourhood, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighbourhood", PHOTO_FIELD_location_neighbourhood, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/locality", PHOTO_FIELD_location_locality, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighborhood", PHOTO_FIELD_location_neighbourhood, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighbourhood", PHOTO_FIELD_location_neighbourhood, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/region", PHOTO_FIELD_location_region, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/country", PHOTO_FIELD_location_country, VALUE_TYPE_STRING } , { (const xmlChar*)"./owner/@location", PHOTO_FIELD_owner_location, VALUE_TYPE_STRING } , { (const xmlChar*)"./owner/@nsid", PHOTO_FIELD_owner_nsid, VALUE_TYPE_STRING } , { (const xmlChar*)"./owner/@realname", PHOTO_FIELD_owner_realname, VALUE_TYPE_STRING } , { (const xmlChar*)"./owner/@username", PHOTO_FIELD_owner_username, VALUE_TYPE_STRING } , { (const xmlChar*)"./title", PHOTO_FIELD_title, VALUE_TYPE_STRING } , /* title can also appear as an attribute in a photo summary */ { (const xmlChar*)"./@title", PHOTO_FIELD_title, VALUE_TYPE_STRING } , { (const xmlChar*)"./visibility/@isfamily", PHOTO_FIELD_visibility_isfamily, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./visibility/@isfriend", PHOTO_FIELD_visibility_isfriend, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./visibility/@ispublic", PHOTO_FIELD_visibility_ispublic, VALUE_TYPE_BOOLEAN } , /* these can also appear in an attribute in a photo summary */ { (const xmlChar*)"./@isfamily", PHOTO_FIELD_visibility_isfamily, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@isfriend", PHOTO_FIELD_visibility_isfriend, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@ispublic", PHOTO_FIELD_visibility_ispublic, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@secret", PHOTO_FIELD_secret, VALUE_TYPE_STRING } , { (const xmlChar*)"./@originalsecret", PHOTO_FIELD_originalsecret, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/@place_id", PHOTO_FIELD_location_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/@woeid", PHOTO_FIELD_location_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighborhood/@place_id", PHOTO_FIELD_neighbourhood_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighbourhood/@place_id", PHOTO_FIELD_neighbourhood_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighborhood/@woeid", PHOTO_FIELD_neighbourhood_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/neighbourhood/@woeid", PHOTO_FIELD_neighbourhood_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/locality/@place_id", PHOTO_FIELD_locality_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/locality/@woeid", PHOTO_FIELD_locality_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/region/@place_id", PHOTO_FIELD_region_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/region/@woeid", PHOTO_FIELD_region_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/county/@place_id", PHOTO_FIELD_county_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/county/@woeid", PHOTO_FIELD_county_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/country/@place_id", PHOTO_FIELD_country_placeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./location/country/@woeid", PHOTO_FIELD_country_woeid, VALUE_TYPE_STRING } , { (const xmlChar*)"./usage/@candownload", PHOTO_FIELD_usage_candownload, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./usage/@canblog", PHOTO_FIELD_usage_canblog, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./usage/@canprint", PHOTO_FIELD_usage_canprint, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@iconserver", PHOTO_FIELD_owner_iconserver, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@iconfarm", PHOTO_FIELD_owner_iconfarm, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@o_width", PHOTO_FIELD_original_width, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@o_height", PHOTO_FIELD_original_height, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@views", PHOTO_FIELD_views, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./stats/@views", PHOTO_FIELD_views, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./stats/@comments", PHOTO_FIELD_comments, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./stats/@favorites", PHOTO_FIELD_favorites, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./comment", PHOTO_FIELD_gallery_comment, VALUE_TYPE_STRING } , { NULL, (flickcurl_photo_field_type)0, (flickcurl_field_value_type)0 } }; flickcurl_photo** flickcurl_build_photos(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* photo_count_p) { flickcurl_photo** photos = NULL; int nodes_count; int photo_count; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xmlChar full_xpath[512]; size_t xpathExpr_len; int i; xpathExpr_len = strlen((const char*)xpathExpr); memcpy(full_xpath, xpathExpr, xpathExpr_len + 1); xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); photos = (flickcurl_photo**)calloc(sizeof(flickcurl_photo*), nodes_count+1); for(i = 0, photo_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; flickcurl_photo* photo; int expri; xmlXPathContextPtr xpathNodeCtx = NULL; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } photo = (flickcurl_photo*)calloc(sizeof(flickcurl_photo), 1); /* set up a new XPath context relative to the current node */ xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); xpathNodeCtx->node = node; for(expri = 0; expri <= PHOTO_FIELD_LAST; expri++) { if(photo->fields[expri].string) free(photo->fields[expri].string); photo->fields[expri].string = NULL; photo->fields[expri].integer= (flickcurl_photo_field_type)-1; photo->fields[expri].type = VALUE_TYPE_NONE; } for(expri = 0; photo_fields_table[expri].xpath; expri++) { char *string_value; flickcurl_field_value_type datatype = photo_fields_table[expri].type; int int_value= -1; flickcurl_photo_field_type field = photo_fields_table[expri].field; time_t unix_time; int special = 0; string_value = flickcurl_xpath_eval(fc, xpathNodeCtx, photo_fields_table[expri].xpath); if(!string_value) continue; #if FLICKCURL_DEBUG > 1 fprintf(stderr, " type %d string value '%s'\n", datatype, string_value); #endif switch(datatype) { case VALUE_TYPE_PHOTO_ID: photo->id = string_value; string_value = NULL; datatype = VALUE_TYPE_NONE; break; case VALUE_TYPE_PHOTO_URI: photo->uri = string_value; string_value = NULL; datatype = VALUE_TYPE_NONE; break; case VALUE_TYPE_MEDIA_TYPE: photo->media_type = string_value; string_value = NULL; datatype = VALUE_TYPE_NONE; break; case VALUE_TYPE_UNIXTIME: case VALUE_TYPE_DATETIME: if(datatype == VALUE_TYPE_UNIXTIME) unix_time = atoi(string_value); else unix_time = curl_getdate((const char*)string_value, NULL); if(unix_time >= 0) { char* new_value = flickcurl_unixtime_to_isotime(unix_time); #if FLICKCURL_DEBUG > 1 fprintf(stderr, " date from: '%s' unix time %ld to '%s'\n", string_value, (long)unix_time, new_value); #endif free(string_value); string_value = new_value; int_value = (int)unix_time; datatype = VALUE_TYPE_DATETIME; } else /* failed to convert, make it a string */ datatype = VALUE_TYPE_STRING; break; case VALUE_TYPE_INTEGER: case VALUE_TYPE_BOOLEAN: if(!*string_value && datatype == VALUE_TYPE_BOOLEAN) { /* skip setting field with a boolean value '' */ free(string_value); special = 1; break; } int_value = atoi(string_value); break; case VALUE_TYPE_TAG_STRING: /* A space-separated list of tags */ photo->tags = flickcurl_build_tags_from_string(fc, photo, (const char*)string_value, &photo->tags_count); free(string_value); special = 1; break; case VALUE_TYPE_NONE: case VALUE_TYPE_STRING: case VALUE_TYPE_FLOAT: case VALUE_TYPE_URI: break; case VALUE_TYPE_PERSON_ID: case VALUE_TYPE_COLLECTION_ID: case VALUE_TYPE_ICON_PHOTOS: abort(); } /* If special, do not store here */ if(special) continue; photo->fields[field].string = string_value; photo->fields[field].integer= (flickcurl_photo_field_type)int_value; photo->fields[field].type = datatype; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "field %d with %s value: '%s' / %d\n", field, flickcurl_get_field_value_type_label(datatype), string_value, int_value); #endif if(fc->failed) goto tidy; } /* end for */ if(!photo->tags) photo->tags = flickcurl_build_tags(fc, photo, xpathNodeCtx, (const xmlChar*)"./tags/tag", &photo->tags_count); if(!photo->place) photo->place = flickcurl_build_place(fc, xpathNodeCtx, (const xmlChar*)"./location"); photo->video = flickcurl_build_video(fc, xpathNodeCtx, (const xmlChar*)"./video"); photo->notes = flickcurl_build_notes(fc, photo, xpathNodeCtx, (const xmlChar*)"./notes/note", &photo->notes_count); if(!photo->media_type) { #define PHOTO_STR_LEN 5 photo->media_type = (char*)malloc(PHOTO_STR_LEN + 1); memcpy(photo->media_type, "photo", PHOTO_STR_LEN + 1); } if(xpathNodeCtx) xmlXPathFreeContext(xpathNodeCtx); photos[photo_count++] = photo; } /* for photos */ if(photo_count_p) *photo_count_p = photo_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); if(fc->failed) { if(photos) flickcurl_free_photos(photos); photos = NULL; } return photos; } flickcurl_photo* flickcurl_build_photo(flickcurl* fc, xmlXPathContextPtr xpathCtx) { flickcurl_photo** photos; flickcurl_photo* result = NULL; photos = flickcurl_build_photos(fc, xpathCtx, (const xmlChar*)"/rsp/photo", NULL); if(photos) { result = photos[0]; free(photos); } return result; } /** * flickcurl_free_photos: * @photos: photo object array * * Destructor for array of photo objects */ void flickcurl_free_photos(flickcurl_photo** photos) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(photos, flickcurl_photo_array); for(i = 0; photos[i]; i++) flickcurl_free_photo(photos[i]); free(photos); } /* * flickcurl_invoke_photos_list: * @fc: Flickcurl context * @xpathExpr: Xpath to the list of photos e.g. '/rsp/photos' or '/rsp/gallery'. The /photos suffix is added internally. * @format: result format wanted * * INTERNAL - Build photos list from XML or get format content result from web service response document * * Return value: new photos list or NULL on failure */ flickcurl_photos_list* flickcurl_invoke_photos_list(flickcurl* fc, const xmlChar* xpathExpr, const char* format) { flickcurl_photos_list* photos_list = NULL; xmlXPathContextPtr xpathCtx = NULL; xmlXPathObjectPtr xpathObj = NULL; xmlXPathContextPtr xpathNodeCtx = NULL; const char *nformat; size_t format_len; photos_list = flickcurl_new_photos_list(fc); if(!photos_list) return NULL; if(format) { nformat = format; format_len = strlen(format); photos_list->content = flickcurl_invoke_get_content(fc, &photos_list->content_length); if(!photos_list->content) { fc->failed = 1; goto tidy; } } else { xmlDocPtr doc = NULL; xmlNodePtr photos_node; size_t xpathExprLen = strlen((const char*)xpathExpr); char* value; xmlChar* photosXpathExpr; #define SUFFIX "/photo" #define SUFFIX_LEN 6 nformat = "xml"; format_len = 3; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } /* set up a new XPath context for the top level list-of-photos * XML element. It may be <photos> or <gallery> or ... - the * code does not care. */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } if(!xpathObj->nodesetval || !xpathObj->nodesetval->nodeTab) { /* No <photo> elements found in content - not a failure */ goto tidy; } photos_node = xpathObj->nodesetval->nodeTab[0]; xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); if(!xpathNodeCtx) { flickcurl_error(fc, "Unable to create XPath context for XPath \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } xpathNodeCtx->node = photos_node; value = flickcurl_xpath_eval(fc, xpathNodeCtx, (const xmlChar*)"./@page"); if(value) { photos_list->page = atoi(value); free(value); } value = flickcurl_xpath_eval(fc, xpathNodeCtx, (const xmlChar*)"./@perpage"); if(value) { photos_list->per_page = atoi(value); free(value); } value = flickcurl_xpath_eval(fc, xpathNodeCtx, (const xmlChar*)"./@total"); if(value) { photos_list->total_count = atoi(value); free(value); } /* finished with these */ xmlXPathFreeContext(xpathNodeCtx); xpathNodeCtx = NULL; xmlXPathFreeObject(xpathObj); xpathObj = NULL; photosXpathExpr = (xmlChar*)malloc(xpathExprLen + SUFFIX_LEN + 1); memcpy(photosXpathExpr, xpathExpr, xpathExprLen); memcpy(photosXpathExpr + xpathExprLen, SUFFIX, SUFFIX_LEN + 1); photos_list->photos = flickcurl_build_photos(fc, xpathCtx, photosXpathExpr, &photos_list->photos_count); free(photosXpathExpr); if(!photos_list->photos) { fc->failed = 1; goto tidy; } } photos_list->format = (char*)malloc(format_len+1); if(!photos_list->format) { fc->failed = 1; goto tidy; } memcpy(photos_list->format, nformat, format_len + 1); tidy: if(xpathNodeCtx) xmlXPathFreeContext(xpathNodeCtx); if(xpathObj) xmlXPathFreeObject(xpathObj); if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /* * flickcurl_new_photos_list: * @fc: Flickcurl context * * INTERNAL - constructor for photos list */ flickcurl_photos_list* flickcurl_new_photos_list(flickcurl* fc) { flickcurl_photos_list* photos_list; photos_list = (flickcurl_photos_list*)calloc(1, sizeof(*photos_list)); if(!photos_list) return NULL; photos_list->page = -1; photos_list->per_page = -1; photos_list->total_count = -1; return photos_list; } /** * flickcurl_free_photos_list: * @photos_list: photos list object * * Destructor for photos list */ void flickcurl_free_photos_list(flickcurl_photos_list* photos_list) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(photos_list, flickcurl_photos_list); if(photos_list->format) free(photos_list->format); if(photos_list->photos) flickcurl_free_photos(photos_list->photos); if(photos_list->content) free(photos_list->content); free(photos_list); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/contacts.c�����������������������������������������������������������������������0000644�0001750�0001750�00000012215�12017302525�013107� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * contacts.c - Flickcurl method contact functions * * Copyright (C) 2007-2009, David Beckett http://www.dajobe.org/ * Copyright (C) 2007 Vanilla I. Shu * (flickcurl_free_contact, flickcurl_free_contacts, * flickcurl_build_contacts) * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_contact: * @contact_object: contact object * * Destructor for contact object */ void flickcurl_free_contact(flickcurl_contact *contact_object) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(contact_object, flickcurl_contact); if(contact_object->nsid) free(contact_object->nsid); if(contact_object->username) free(contact_object->username); if(contact_object->realname) free(contact_object->realname); free(contact_object); } /** * flickcurl_free_contacts: * @contacts_object: contact object array * * Destructor for array of contact object */ void flickcurl_free_contacts(flickcurl_contact **contacts_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(contacts_object, flickcurl_contact); for(i = 0; contacts_object[i]; i++) flickcurl_free_contact(contacts_object[i]); free(contacts_object); } flickcurl_contact** flickcurl_build_contacts(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* contact_count_p) { flickcurl_contact** contacts = NULL; int nodes_count; int contact_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do contacts */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); contacts = (flickcurl_contact**)calloc(sizeof(flickcurl_contact*), nodes_count+1); for(i = 0, contact_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_contact* contact_object; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } contact_object = (flickcurl_contact*)calloc(sizeof(flickcurl_contact), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "nsid")) contact_object->nsid = attr_value; else if(!strcmp(attr_name, "username")) contact_object->username = attr_value; else if(!strcmp(attr_name, "iconserver")) { contact_object->iconserver = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "realname")) contact_object->realname = attr_value; else if(!strcmp(attr_name, "friend")) { contact_object->is_friend = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "family")) { contact_object->is_family = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "ignored")) { contact_object->ignored = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "uploaded")) { contact_object->uploaded = atoi((const char*)attr_value); free(attr_value); } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "contact: NSID %s username %s iconserver %d realname %s friend %d family %d ignored %d uploaded %d\n", contact_object->nsid, contact_object->username, contact_object->iconserver, contact_object->realname, contact_object->is_friend, contact_object->is_family, contact_object->ignored, contact_object->uploaded); #endif contacts[contact_count++] = contact_object; } /* for nodes */ if(contact_count_p) *contact_count_p = contact_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return contacts; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/Makefile.am����������������������������������������������������������������������0000644�0001750�0001750�00000006001�12017272365�013165� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# # Makefile.am # # Copyright (C) 2007-2010, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. lib_LTLIBRARIES = libflickcurl.la include_HEADERS = flickcurl.h libflickcurl_la_SOURCES = \ activity.c \ args.c \ blog.c \ category.c \ collection.c \ common.c \ comments.c \ contacts.c \ context.c \ config.c \ exif.c \ gallery.c \ group.c \ institution.c \ md5.c \ location.c \ machinetags.c \ members.c \ method.c \ note.c \ person.c \ photo.c \ photoset.c \ place.c \ serializer.c \ shape.c \ size.c \ stat.c \ ticket.c \ user_upload_status.c \ tags.c \ video.c \ vsnprintf.c \ activity-api.c \ auth-api.c \ blogs-api.c \ commons-api.c \ collections-api.c \ contacts-api.c \ favorites-api.c \ interestingness-api.c \ galleries-api.c \ groups-api.c \ groups-members-api.c \ groups-pools-api.c \ machinetags-api.c \ people-api.c \ perms.c \ panda-api.c \ photos-api.c \ photos-comments-api.c \ photos-geo-api.c \ photos-licenses-api.c \ photos-notes-api.c \ photos-people-api.c \ photos-transform-api.c \ photos-upload-api.c \ photosets-api.c \ photosets-comments-api.c \ places-api.c \ prefs-api.c \ reflection-api.c \ stats-api.c \ tags-api.c \ test-api.c \ upload-api.c \ urls-api.c \ flickcurl_internal.h \ sha1.c \ legacy-auth.c \ oauth.c \ $(top_srcdir)/libmtwist/mt.c \ $(top_srcdir)/libmtwist/seed.c \ $(top_srcdir)/libmtwist/mtwist.h \ $(top_srcdir)/libmtwist/mtwist_internal.h \ mtwist_config.h AM_CFLAGS = -DMTWIST_CONFIG -I$(top_srcdir)/libmtwist libflickcurl_la_LIBADD = libflickcurl_la_LDFLAGS = -version-info @LIBFLICKCURL_LIBTOOL_VERSION@ if OFFLINE if RAPTOR AM_CFLAGS += @RAPTOR_CFLAGS@ libflickcurl_la_LIBADD += @RAPTOR_LIBS@ endif endif ANALYZE = clang ANALYZE_FLAGS = "--analyze" # Based on COMPILE target ANALYZE_COMMAND = $(ANALYZE) \ $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \ $(ANALYZE_FLAGS) TESTS=flickcurl_oauth_test CLEANFILES=$(TESTS) \ *.plist flickcurl_oauth_test: $(srcdir)/oauth.c libflickcurl.la $(LINK) $(DEFS) $(CPPFLAGS) -I$(srcdir) -I. -DSTANDALONE $(srcdir)/oauth.c libflickcurl.la $(LIBS) if MAINTAINER_MODE # Run Clang static analyzer over sources. analyze: $(SOURCES) @list='$(SOURCES)'; \ result=0; \ for file in $$list; do \ if echo $$file | grep '\.c$$' >/dev/null 2>&1; then \ $(RECHO) "Analyzing $$file"; \ $(ANALYZE_COMMAND) $(srcdir)/$$file; \ status=$$?; \ if test $$status != 0; then \ result=1; \ fi; \ fi; \ done; \ set -e; exit $$result endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/activity.c�����������������������������������������������������������������������0000644�0001750�0001750�00000022123�12017302525�013124� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * activity.c - Flickcurl activity functions * * Copyright (C) 2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static void flickcurl_free_activity_event(flickcurl_activity_event *activity_event) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(activity_event, flickcurl_activity_event); if(activity_event->id) free(activity_event->id); if(activity_event->type) free(activity_event->type); if(activity_event->user) free(activity_event->user); if(activity_event->username) free(activity_event->username); if(activity_event->value) free(activity_event->value); free(activity_event); } static void flickcurl_free_activity(flickcurl_activity *activity) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(activity, flickcurl_activity); if(activity->type) free(activity->type); if(activity->id) free(activity->id); if(activity->owner) free(activity->owner); if(activity->owner_name) free(activity->owner_name); if(activity->primary) free(activity->primary); if(activity->secret) free(activity->secret); if(activity->title) free(activity->title); if(activity->events) { int i; for(i = 0; activity->events[i]; i++) flickcurl_free_activity_event(activity->events[i]); } free(activity); } /** * flickcurl_free_activities: * @activities_object: activity object array * * Destructor for array of activity objects */ void flickcurl_free_activities(flickcurl_activity **activities_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(activities_object, flickcurl_activity_array); for(i = 0; activities_object[i]; i++) flickcurl_free_activity(activities_object[i]); free(activities_object); } static flickcurl_activity_event* flickcurl_build_activity_event(flickcurl* fc, xmlNodePtr node) { flickcurl_activity_event* ae; xmlAttr* attr; xmlNodePtr chnode; ae = (flickcurl_activity_event*)calloc(sizeof(flickcurl_activity_event), 1); if(!ae) return NULL; for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "type")) ae->type = attr_value; else if(!strcmp(attr_name, "commentid")) ae->id = attr_value; else if(!strcmp(attr_name, "user")) ae->user = attr_value; else if(!strcmp(attr_name, "username")) ae->username = attr_value; else if(!strcmp(attr_name, "dateadded")) { ae->date_added = atoi(attr_value); free(attr_value); } else free(attr_value); } /* end attributes */ /* Walk children nodes for value text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); ae->value = (char*)malloc(len + 1); memcpy(ae->value, chnode->content, len + 1); break; } } return ae; } flickcurl_activity** flickcurl_build_activities(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* activity_count_p) { flickcurl_activity** activities = NULL; int nodes_count; int activity_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); activities = (flickcurl_activity**)calloc(sizeof(flickcurl_activity*), nodes_count+1); for(i = 0, activity_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_activity* a; xmlNodePtr chnode; int events_count = 0; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } a = (flickcurl_activity*)calloc(sizeof(flickcurl_activity), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "type")) a->type = attr_value; else if(!strcmp(attr_name, "id")) a->id = attr_value; else if(!strcmp(attr_name, "owner")) a->owner = attr_value; else if(!strcmp(attr_name, "ownername")) a->owner_name = attr_value; else if(!strcmp(attr_name, "primary")) a->primary = attr_value; else if(!strcmp(attr_name, "secret")) a->secret = attr_value; else if(!strcmp(attr_name, "server")) { a->server = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "farm")) { a->farm = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "commentsold")) { a->comments_old = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "commentsnew")) { a->comments_new = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "notesold")) { a->notes_old = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "notesnew")) { a->notes_new = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "views")) { a->views = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "photos")) { a->photos = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "faves")) { a->faves = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "comments")) { a->comments = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "more")) { a->more = atoi(attr_value); free(attr_value); } else free(attr_value); } /* end attributes */ /* Walk children nodes for <title> or <activity> elements */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; if(chnode->type == XML_ELEMENT_NODE) { if(!strcmp(chnode_name, "title")) { size_t len = strlen((const char*)chnode->children->content); a->title = (char*)malloc(len + 1); memcpy(a->title, chnode->children->content, len + 1); } else if(!strcmp(chnode_name, "activity")) { xmlNodePtr chnode2; for(chnode2 = chnode->children; chnode2; chnode2 = chnode2->next) { const char *chnode2_name = (const char*)chnode2->name; if(chnode2->type == XML_ELEMENT_NODE && !strcmp(chnode2_name, "event")) { if(events_count < FLICKCURL_MAX_ACTIVITY_EVENTS) { flickcurl_activity_event *ae = NULL; ae = flickcurl_build_activity_event(fc, chnode2); if(ae) a->events[events_count++] = ae; } } } /* end for children of <activity> */ } } } /* end for children of <item> */ a->events[events_count] = 0; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "activity: type %s id %s owner %s name %s primary %s\n" " secret %s server %d farm %d\n" " comments %d old/new %d/%d notes old/new %d/%d\n" " views %d photos %d faves %d more %d\n" " title '%s'\n" , a->type, a->id, a->owner, a->owner_name, a->primary, a->secret, a->server, a->farm, a->comments, a->comments_old, a->comments_new, a->notes_old, a->notes_new, a->views, a->photos, a->faves, a->more, a->title); #endif activities[activity_count++] = a; } /* for nodes */ if(activity_count_p) *activity_count_p = activity_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return activities; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/Makefile.in����������������������������������������������������������������������0000644�0001750�0001750�00000105175�12157737151�013216� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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@ # # Makefile.am # # Copyright (C) 2007-2010, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } 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@ @OFFLINE_TRUE@@RAPTOR_TRUE@am__append_1 = @RAPTOR_CFLAGS@ @OFFLINE_TRUE@@RAPTOR_TRUE@am__append_2 = @RAPTOR_LIBS@ subdir = src DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/gtk-doc.m4 \ $(top_srcdir)/build/libtool.m4 \ $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" LTLIBRARIES = $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = libflickcurl_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libflickcurl_la_OBJECTS = activity.lo args.lo blog.lo category.lo \ collection.lo common.lo comments.lo contacts.lo context.lo \ config.lo exif.lo gallery.lo group.lo institution.lo md5.lo \ location.lo machinetags.lo members.lo method.lo note.lo \ person.lo photo.lo photoset.lo place.lo serializer.lo shape.lo \ size.lo stat.lo ticket.lo user_upload_status.lo tags.lo \ video.lo vsnprintf.lo activity-api.lo auth-api.lo blogs-api.lo \ commons-api.lo collections-api.lo contacts-api.lo \ favorites-api.lo interestingness-api.lo galleries-api.lo \ groups-api.lo groups-members-api.lo groups-pools-api.lo \ machinetags-api.lo people-api.lo perms.lo panda-api.lo \ photos-api.lo photos-comments-api.lo photos-geo-api.lo \ photos-licenses-api.lo photos-notes-api.lo \ photos-people-api.lo photos-transform-api.lo \ photos-upload-api.lo photosets-api.lo \ photosets-comments-api.lo places-api.lo prefs-api.lo \ reflection-api.lo stats-api.lo tags-api.lo test-api.lo \ upload-api.lo urls-api.lo sha1.lo legacy-auth.lo oauth.lo \ mt.lo seed.lo libflickcurl_la_OBJECTS = $(am_libflickcurl_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libflickcurl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(libflickcurl_la_LDFLAGS) $(LDFLAGS) \ -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/build/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libflickcurl_la_SOURCES) DIST_SOURCES = $(libflickcurl_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(include_HEADERS) ETAGS = etags CTAGS = ctags am__tty_colors = \ red=; grn=; lgn=; blu=; std= DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLICKCURL_VERSION_DECIMAL = @FLICKCURL_VERSION_DECIMAL@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBCURL_MIN_VERSION = @LIBCURL_MIN_VERSION@ LIBFLICKCURL_LIBTOOL_VERSION = @LIBFLICKCURL_LIBTOOL_VERSION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML_MIN_VERSION = @LIBXML_MIN_VERSION@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PKG_CONFIG_REQUIRES = @PKG_CONFIG_REQUIRES@ RANLIB = @RANLIB@ RAPTOR_CFLAGS = @RAPTOR_CFLAGS@ RAPTOR_LIBS = @RAPTOR_LIBS@ RAPTOR_MIN_VERSION = @RAPTOR_MIN_VERSION@ RECHO = @RECHO@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STANDARD_CFLAGS = @STANDARD_CFLAGS@ STRIP = @STRIP@ VERSION = @VERSION@ XML_CONFIG = @XML_CONFIG@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ 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@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libflickcurl.la include_HEADERS = flickcurl.h libflickcurl_la_SOURCES = \ activity.c \ args.c \ blog.c \ category.c \ collection.c \ common.c \ comments.c \ contacts.c \ context.c \ config.c \ exif.c \ gallery.c \ group.c \ institution.c \ md5.c \ location.c \ machinetags.c \ members.c \ method.c \ note.c \ person.c \ photo.c \ photoset.c \ place.c \ serializer.c \ shape.c \ size.c \ stat.c \ ticket.c \ user_upload_status.c \ tags.c \ video.c \ vsnprintf.c \ activity-api.c \ auth-api.c \ blogs-api.c \ commons-api.c \ collections-api.c \ contacts-api.c \ favorites-api.c \ interestingness-api.c \ galleries-api.c \ groups-api.c \ groups-members-api.c \ groups-pools-api.c \ machinetags-api.c \ people-api.c \ perms.c \ panda-api.c \ photos-api.c \ photos-comments-api.c \ photos-geo-api.c \ photos-licenses-api.c \ photos-notes-api.c \ photos-people-api.c \ photos-transform-api.c \ photos-upload-api.c \ photosets-api.c \ photosets-comments-api.c \ places-api.c \ prefs-api.c \ reflection-api.c \ stats-api.c \ tags-api.c \ test-api.c \ upload-api.c \ urls-api.c \ flickcurl_internal.h \ sha1.c \ legacy-auth.c \ oauth.c \ $(top_srcdir)/libmtwist/mt.c \ $(top_srcdir)/libmtwist/seed.c \ $(top_srcdir)/libmtwist/mtwist.h \ $(top_srcdir)/libmtwist/mtwist_internal.h \ mtwist_config.h AM_CFLAGS = -DMTWIST_CONFIG -I$(top_srcdir)/libmtwist $(am__append_1) libflickcurl_la_LIBADD = $(am__append_2) libflickcurl_la_LDFLAGS = -version-info @LIBFLICKCURL_LIBTOOL_VERSION@ ANALYZE = clang ANALYZE_FLAGS = "--analyze" # Based on COMPILE target ANALYZE_COMMAND = $(ANALYZE) \ $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \ $(ANALYZE_FLAGS) TESTS = flickcurl_oauth_test CLEANFILES = $(TESTS) \ *.plist all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libflickcurl.la: $(libflickcurl_la_OBJECTS) $(libflickcurl_la_DEPENDENCIES) $(EXTRA_libflickcurl_la_DEPENDENCIES) $(AM_V_CCLD)$(libflickcurl_la_LINK) -rpath $(libdir) $(libflickcurl_la_OBJECTS) $(libflickcurl_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/activity-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/activity.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/args.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/auth-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blog.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blogs-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/category.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/collection.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/collections-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/comments.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commons-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/contacts-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/contacts.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/context.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exif.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/favorites-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/galleries-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gallery.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/group.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/groups-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/groups-members-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/groups-pools-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/institution.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interestingness-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/legacy-auth.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/location.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/machinetags-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/machinetags.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md5.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/members.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/method.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/note.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/oauth.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/panda-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/people-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/perms.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/person.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photo.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-comments-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-geo-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-licenses-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-notes-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-people-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-transform-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photos-upload-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photoset.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photosets-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photosets-comments-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/place.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/places-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/prefs-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reflection-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/seed.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/serializer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha1.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shape.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/size.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stat.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stats-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tags-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tags.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ticket.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upload-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/urls-api.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/user_upload_status.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vsnprintf.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mt.lo: $(top_srcdir)/libmtwist/mt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mt.lo -MD -MP -MF $(DEPDIR)/mt.Tpo -c -o mt.lo `test -f '$(top_srcdir)/libmtwist/mt.c' || echo '$(srcdir)/'`$(top_srcdir)/libmtwist/mt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mt.Tpo $(DEPDIR)/mt.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/libmtwist/mt.c' object='mt.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mt.lo `test -f '$(top_srcdir)/libmtwist/mt.c' || echo '$(srcdir)/'`$(top_srcdir)/libmtwist/mt.c seed.lo: $(top_srcdir)/libmtwist/seed.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT seed.lo -MD -MP -MF $(DEPDIR)/seed.Tpo -c -o seed.lo `test -f '$(top_srcdir)/libmtwist/seed.c' || echo '$(srcdir)/'`$(top_srcdir)/libmtwist/seed.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/seed.Tpo $(DEPDIR)/seed.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/libmtwist/seed.c' object='seed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o seed.lo `test -f '$(top_srcdir)/libmtwist/seed.c' || echo '$(srcdir)/'`$(top_srcdir)/libmtwist/seed.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-includeHEADERS: $(include_HEADERS) @$(NORMAL_INSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ done uninstall-includeHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) 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) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(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) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(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 check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ list=' $(TESTS) '; \ $(am__tty_colors); \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ elif test -f $$tst; then dir=; \ else dir="$(srcdir)/"; fi; \ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ col=$$red; res=XPASS; \ ;; \ *) \ col=$$grn; res=PASS; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xfail=`expr $$xfail + 1`; \ col=$$lgn; res=XFAIL; \ ;; \ *) \ failed=`expr $$failed + 1`; \ col=$$red; res=FAIL; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ col=$$blu; res=SKIP; \ fi; \ echo "$${col}$$res$${std}: $$tst"; \ done; \ if test "$$all" -eq 1; then \ tests="test"; \ All=""; \ else \ tests="tests"; \ All="All "; \ fi; \ if test "$$failed" -eq 0; then \ if test "$$xfail" -eq 0; then \ banner="$$All$$all $$tests passed"; \ else \ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ fi; \ else \ if test "$$xpass" -eq 0; then \ banner="$$failed of $$all $$tests failed"; \ else \ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ fi; \ fi; \ dashes="$$banner"; \ skipped=""; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ skipped="($$skip test was not run)"; \ else \ skipped="($$skip tests were not run)"; \ fi; \ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ if test "$$failed" -eq 0; then \ col="$$grn"; \ else \ col="$$red"; \ fi; \ echo "$${col}$$dashes$${std}"; \ echo "$${col}$$banner$${std}"; \ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ test -z "$$report" || echo "$${col}$$report$${std}"; \ echo "$${col}$$dashes$${std}"; \ test "$$failed" -eq 0; \ else :; fi distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) config.h installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-includeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libLTLIBRARIES 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 -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES .MAKE: all check-am install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-generic clean-libLTLIBRARIES clean-libtool ctags \ distclean distclean-compile distclean-generic distclean-hdr \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am \ install-includeHEADERS install-info install-info-am \ install-libLTLIBRARIES 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 mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-includeHEADERS \ uninstall-libLTLIBRARIES flickcurl_oauth_test: $(srcdir)/oauth.c libflickcurl.la $(LINK) $(DEFS) $(CPPFLAGS) -I$(srcdir) -I. -DSTANDALONE $(srcdir)/oauth.c libflickcurl.la $(LIBS) # Run Clang static analyzer over sources. @MAINTAINER_MODE_TRUE@analyze: $(SOURCES) @MAINTAINER_MODE_TRUE@ @list='$(SOURCES)'; \ @MAINTAINER_MODE_TRUE@ result=0; \ @MAINTAINER_MODE_TRUE@ for file in $$list; do \ @MAINTAINER_MODE_TRUE@ if echo $$file | grep '\.c$$' >/dev/null 2>&1; then \ @MAINTAINER_MODE_TRUE@ $(RECHO) "Analyzing $$file"; \ @MAINTAINER_MODE_TRUE@ $(ANALYZE_COMMAND) $(srcdir)/$$file; \ @MAINTAINER_MODE_TRUE@ status=$$?; \ @MAINTAINER_MODE_TRUE@ if test $$status != 0; then \ @MAINTAINER_MODE_TRUE@ result=1; \ @MAINTAINER_MODE_TRUE@ fi; \ @MAINTAINER_MODE_TRUE@ fi; \ @MAINTAINER_MODE_TRUE@ done; \ @MAINTAINER_MODE_TRUE@ set -e; exit $$result # 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: ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/person.c�������������������������������������������������������������������������0000644�0001750�0001750�00000023153�12017322551�012603� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * person.c - Flickr person support calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static const char* flickcurl_person_field_label[PERSON_FIELD_LAST+1] = { "(none)", "isadmin", "ispro", "iconserver", "iconfarm", "username", "realname", "mbox_sha1sum", "location", "photosurl", "profileurl", "mobileurl", "photos_firstdate", "photos_firstdatetaken", "photos_count", "photos_views", "favedate" }; /** * flickcurl_get_person_field_label: * @field: field enum * * Get label for person field * * Return value: label string or NULL if none valid */ const char* flickcurl_get_person_field_label(flickcurl_person_field_type field) { if(field <= PERSON_FIELD_LAST) return flickcurl_person_field_label[(int)field]; return NULL; } /** * flickcurl_free_person: * @person: person object * * Destructor for person object */ void flickcurl_free_person(flickcurl_person *person) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(person, flickcurl_person); for(i = 0; i <= PERSON_FIELD_LAST; i++) { if(person->fields[i].string) free(person->fields[i].string); } if(person->nsid) free(person->nsid); free(person); } /* * The XPaths here are relative, such as prefixed by /rsp/person */ static struct { const xmlChar* xpath; flickcurl_person_field_type field; flickcurl_field_value_type type; } person_fields_table[PHOTO_FIELD_LAST + 4] = { { (const xmlChar*)"./@nsid", PERSON_FIELD_none, VALUE_TYPE_PERSON_ID, } , { (const xmlChar*)"./@isadmin", PERSON_FIELD_isadmin, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@ispro", PERSON_FIELD_ispro, VALUE_TYPE_BOOLEAN } , { (const xmlChar*)"./@iconserver", PERSON_FIELD_iconserver, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@iconfarm", PERSON_FIELD_iconfarm, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./username", PERSON_FIELD_username, VALUE_TYPE_STRING } , { (const xmlChar*)"./realname", PERSON_FIELD_realname, VALUE_TYPE_STRING } , { (const xmlChar*)"./mbox_sha1sum", PERSON_FIELD_mbox_sha1sum, VALUE_TYPE_STRING } , { (const xmlChar*)"./location", PERSON_FIELD_location, VALUE_TYPE_STRING } , { (const xmlChar*)"./photosurl", PERSON_FIELD_photosurl, VALUE_TYPE_URI } , { (const xmlChar*)"./profileurl", PERSON_FIELD_profileurl, VALUE_TYPE_URI } , { (const xmlChar*)"./mobileurl", PERSON_FIELD_mobileurl, VALUE_TYPE_URI } , { (const xmlChar*)"./photos/firstdate", PERSON_FIELD_photos_firstdate, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./photos/firstdatetaken", PERSON_FIELD_photos_firstdatetaken, VALUE_TYPE_DATETIME } , { (const xmlChar*)"./photos/count", PERSON_FIELD_photos_count, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./photos/views", PERSON_FIELD_photos_views, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@username", PERSON_FIELD_username, VALUE_TYPE_STRING } , { (const xmlChar*)"./@favedate", PERSON_FIELD_favedate, VALUE_TYPE_DATETIME } , { NULL, (flickcurl_person_field_type)0, (flickcurl_field_value_type)0 } }; flickcurl_person** flickcurl_build_persons(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* person_count_p) { flickcurl_person** persons = NULL; int nodes_count; int person_count; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xmlChar full_xpath[512]; size_t xpathExpr_len; int i; xpathExpr_len = strlen((const char*)xpathExpr); memcpy(full_xpath, xpathExpr, xpathExpr_len + 1); xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); persons = (flickcurl_person**)calloc(sizeof(flickcurl_person*), nodes_count+1); for(i = 0, person_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; flickcurl_person* person = NULL; int expri; xmlXPathContextPtr xpathNodeCtx = NULL; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } person = (flickcurl_person*)calloc(sizeof(flickcurl_person), 1); /* set up a new XPath context relative to the current node */ xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); xpathNodeCtx->node = node; for(expri = 0; expri <= PERSON_FIELD_LAST; expri++) { if(person->fields[expri].string) free(person->fields[expri].string); person->fields[expri].string = NULL; person->fields[expri].integer= (flickcurl_person_field_type)-1; person->fields[expri].type = VALUE_TYPE_NONE; } for(expri = 0; person_fields_table[expri].xpath; expri++) { flickcurl_person_field_type field = person_fields_table[expri].field; flickcurl_field_value_type datatype = person_fields_table[expri].type; char *string_value; int int_value= -1; time_t unix_time; string_value = flickcurl_xpath_eval(fc, xpathNodeCtx, person_fields_table[expri].xpath); if(!string_value) continue; switch(datatype) { case VALUE_TYPE_PERSON_ID: person->nsid = string_value; string_value = NULL; datatype = VALUE_TYPE_NONE; break; case VALUE_TYPE_UNIXTIME: case VALUE_TYPE_DATETIME: if(datatype == VALUE_TYPE_UNIXTIME) unix_time = atoi(string_value); else unix_time = curl_getdate((const char*)string_value, NULL); if(unix_time >= 0) { char* new_value = flickcurl_unixtime_to_isotime(unix_time); #if FLICKCURL_DEBUG > 1 fprintf(stderr, " date from: '%s' unix time %ld to '%s'\n", value, (long)unix_time, new_value); #endif free(string_value); string_value= new_value; int_value= (int)unix_time; datatype = VALUE_TYPE_DATETIME; } else /* failed to convert, make it a string */ datatype = VALUE_TYPE_STRING; break; case VALUE_TYPE_INTEGER: case VALUE_TYPE_BOOLEAN: int_value = atoi(string_value); break; case VALUE_TYPE_NONE: case VALUE_TYPE_STRING: case VALUE_TYPE_FLOAT: case VALUE_TYPE_URI: break; case VALUE_TYPE_PHOTO_ID: case VALUE_TYPE_PHOTO_URI: case VALUE_TYPE_MEDIA_TYPE: case VALUE_TYPE_TAG_STRING: case VALUE_TYPE_COLLECTION_ID: case VALUE_TYPE_ICON_PHOTOS: abort(); } person->fields[field].string = string_value; person->fields[field].integer= (flickcurl_person_field_type)int_value; person->fields[field].type = datatype; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "field %d with %s value: '%s' / %d\n", field, flickcurl_field_value_type_label[datatype], string_value, int_value); #endif if(fc->failed) break; } /* end for person fields */ if(fc->failed) { if(person) flickcurl_free_person(person); } else { persons[person_count++] = person; } if(xpathNodeCtx) xmlXPathFreeContext(xpathNodeCtx); if(fc->failed) goto tidy; } /* for persons */ if(person_count_p) *person_count_p = person_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); if(fc->failed) { if(persons) flickcurl_free_persons(persons); persons = NULL; } return persons; } flickcurl_person* flickcurl_build_person(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* root_xpathExpr) { flickcurl_person** persons; flickcurl_person* result = NULL; persons = flickcurl_build_persons(fc, xpathCtx, root_xpathExpr, NULL); if(persons) { result = persons[0]; free(persons); } return result; } /** * flickcurl_free_persons: * @persons: person object array * * Destructor for array of person object */ void flickcurl_free_persons(flickcurl_person** persons) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(persons, flickcurl_person_array); for(i = 0; persons[i]; i++) flickcurl_free_person(persons[i]); free(persons); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/urls-api.c�����������������������������������������������������������������������0000644�0001750�0001750�00000010420�12016712660�013025� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * urls-api.c - Flickr flickr.urls.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_urls_getGroup: * @fc: flickcurl context * @group_id: group ID * * Get the url to a group's page. * * Implements flickr.urls.getGroup (0.9) * * Return value: NSID or NULL on failure **/ char* flickcurl_urls_getGroup(flickcurl* fc, const char* group_id) { return flickcurl_call_get_one_string_field(fc, "group_id", group_id, "flickr.urls.getGroup", (const xmlChar*)"/rsp/group/@url"); } /** * flickcurl_urls_getUserPhotos: * @fc: flickcurl context * @user_id: user ID * * Get the url to a user's photos. * * Implements flickr.urls.getUserPhotos (0.9) * * Return value: NSID or NULL on failure **/ char* flickcurl_urls_getUserPhotos(flickcurl* fc, const char* user_id) { return flickcurl_call_get_one_string_field(fc, "user_id", user_id, "flickr.urls.getUserPhotos", (const xmlChar*)"/rsp/user/@url"); } /** * flickcurl_urls_getUserProfile: * @fc: flickcurl context * @user_id: user ID * * Get the url to a user's profile. * * Implements flickr.urls.getUserProfile (0.9) * * Return value: NSID or NULL on failure **/ char* flickcurl_urls_getUserProfile(flickcurl* fc, const char* user_id) { return flickcurl_call_get_one_string_field(fc, "user_id", user_id, "flickr.urls.getUserProfile", (const xmlChar*)"/rsp/user/@url"); } /** * flickcurl_urls_lookupGallery: * @fc: flickcurl context * @url: The gallery's URL. * * Get a gallery ID by url. * * Implements flickr.urls.lookupGallery (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: gallery ID or NULL on failure **/ char* flickcurl_urls_lookupGallery(flickcurl* fc, const char* url) { return flickcurl_call_get_one_string_field(fc, "url", url, "flickr.urls.lookupGallery", (const xmlChar*)"/rsp/gallery/@id"); } /** * flickcurl_urls_lookupGroup: * @fc: flickcurl context * @url: URL of group's page or photo pool * * Get a group NSID, given the url to a group's page or photo pool. * * Implements flickr.urls.lookupGroup (0.9) * * Return value: NSID or NULL on failure **/ char* flickcurl_urls_lookupGroup(flickcurl* fc, const char* url) { return flickcurl_call_get_one_string_field(fc, "url", url, "flickr.urls.lookupGroup", (const xmlChar*)"/rsp/group/@id"); } /** * flickcurl_urls_lookupUser: * @fc: flickcurl context * @url: URL of user's photo or user's profile * * Get a user NSID, given the url to a user's photos or profile. * * Implements flickr.urls.lookupUser (0.6) * * Return value: NSID or NULL on failure **/ char* flickcurl_urls_lookupUser(flickcurl* fc, const char* url) { return flickcurl_call_get_one_string_field(fc, "url", url, "flickr.urls.lookupUser", (const xmlChar*)"/rsp/user/@id"); } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/prefs-api.c����������������������������������������������������������������������0000644�0001750�0001750�00000014356�12157645243�013203� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * flickr.prefs-api.c - Flickr flickr.prefs.* API calls * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_prefs_getContentType: * @fc: flickcurl context * * Returns the default content type preference for the user. * * Implements flickr.prefs.getContentType (1.3) * * Return value: content type or <0 on failure **/ int flickcurl_prefs_getContentType(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* content_type_str = NULL; int content_type= -1; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.prefs.getContentType")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } content_type_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/person/@content_type"); if(content_type_str) { content_type = atoi(content_type_str); free(content_type_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) content_type= -1; return content_type; } /** * flickcurl_prefs_getGeoPerms: * @fc: flickcurl context * * Returns the default privacy level for geographic information attached to the user's photos. * * Possible values are: 0: no default, 1: public, 2: contacts only, 3: friends * and family only, 4: friends only, 5: family only, 6: private. * * Implements flickr.prefs.getGeoPerms (1.4) * * Return value: non-0 on failure **/ int flickcurl_prefs_getGeoPerms(flickcurl* fc) { char* v; int r= -1; v = flickcurl_call_get_one_string_field(fc, NULL, NULL, "flickr.prefs.getGeoPerms", (const xmlChar*)"/rsp/person/@geoperms"); if(v) { r = atoi(v); free(v); } return r; } /** * flickcurl_prefs_getHidden: * @fc: flickcurl context * * Returns the default hidden preference for the user. * * Implements flickr.prefs.getHidden (1.3) * * Return value: non-0 on failure **/ int flickcurl_prefs_getHidden(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* hidden_str = NULL; int hidden= -1; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.prefs.getHidden")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } hidden_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/person/@hidden"); if(hidden_str) { hidden = atoi(hidden_str); free(hidden_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) hidden= -1; return hidden; } /** * flickcurl_prefs_getPrivacy: * @fc: flickcurl context * * Returns the default privacy level preference for the user. * * Possible values are: Public (1), Friends only (2), Family only (3) * Friends and Family (4) and Private (5) * * Implements flickr.prefs.getPrivacy (1.3) * * Return value: privacy level or <0 on failure **/ int flickcurl_prefs_getPrivacy(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* privacy_level_str= NULL; int privacy_level= -1; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.prefs.getPrivacy")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } privacy_level_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/person/@privacy"); if(privacy_level_str) { privacy_level = atoi(privacy_level_str); free(privacy_level_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) privacy_level= -1; return privacy_level; } /** * flickcurl_prefs_getSafetyLevel: * @fc: flickcurl context * * Returns the default safety level preference for the user. * * Implements flickr.prefs.getSafetyLevel (1.3) * * Return value: safety level or <0 on failure **/ int flickcurl_prefs_getSafetyLevel(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* safety_level_str= NULL; int safety_level= -1; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.prefs.getSafetyLevel")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } safety_level_str = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/person/@safety_level"); if(safety_level_str) { safety_level = atoi(safety_level_str); free(safety_level_str); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) safety_level= -1; return safety_level; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/size.c���������������������������������������������������������������������������0000644�0001750�0001750�00000007767�12017302525�012263� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * size.c - Flickcurl size functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_size: * @size: size object * * Destructor for size object */ void flickcurl_free_size(flickcurl_size *size) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(size, flickcurl_size); if(size->label) free(size->label); if(size->source) free(size->source); if(size->url) free(size->url); if(size->media) free(size->media); free(size); } /** * flickcurl_free_sizes: * @sizes_object: size object array * * Destructor for array of size objects */ void flickcurl_free_sizes(flickcurl_size **sizes_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(sizes_object, flickcurl_size_array); for(i = 0; sizes_object[i]; i++) flickcurl_free_size(sizes_object[i]); free(sizes_object); } flickcurl_size** flickcurl_build_sizes(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* size_count_p) { flickcurl_size** sizes = NULL; int nodes_count; int size_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); sizes = (flickcurl_size**)calloc(sizeof(flickcurl_size*), nodes_count+1); for(i = 0, size_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_size* s; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } s = (flickcurl_size*)calloc(sizeof(flickcurl_size), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "label")) s->label = attr_value; else if(!strcmp(attr_name, "width")) { s->width = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "height")) { s->height = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "source")) { s->source = attr_value; } else if(!strcmp(attr_name, "url")) { s->url = attr_value; } else if(!strcmp(attr_name, "media")) { s->media = attr_value; } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "size: label %s width %d height %d source %s url %s\n", s->label, s->width, s->height, s->source, s->url); #endif sizes[size_count++] = s; } /* for nodes */ if(size_count_p) *size_count_p = size_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return sizes; } ���������flickcurl-1.25/src/location.c�����������������������������������������������������������������������0000644�0001750�0001750�00000007451�12075641170�013115� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * location.c - Flickcurl method location functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif /* for atof() */ #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_location: * @location: location object * * Destructor for location object */ void flickcurl_free_location(flickcurl_location *location) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(location, flickcurl_location); free(location); } flickcurl_location* flickcurl_build_location(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_location* location = NULL; int nodes_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do location */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); for(i = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } location = (flickcurl_location*)calloc(sizeof(flickcurl_location), 1); for(attr = node->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; char *attr_value; size_t attr_value_len = strlen((const char*)attr->children->content); attr_value = (char*)malloc(attr_value_len + 1); memcpy(attr_value, attr->children->content, attr_value_len + 1); if(!strcmp(attr_name, "latitude")) location->latitude = atof(attr_value); else if(!strcmp(attr_name, "longitude")) location->longitude = atof(attr_value); else if(!strcmp(attr_name, "accuracy")) location->accuracy = atoi(attr_value); free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "location: lat %f long %f accuracy %d\n", location->latitude, location->longitude, location->accuracy); #endif /* Handle only first perm */ break; } /* for nodes */ tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return location; } static const char* flickcurl_accuracy_labels[16] = { "world", "world", "country", "country", "country", "region", "region", "region", "region", "region", "city", "city", "city", "city", "city", "street" }; /** * flickcurl_get_location_accuracy_label: * @accuracy: accuracy * * Get label for an accuracy * * Return value: label string or NULL if none valid */ const char* flickcurl_get_location_accuracy_label(int accuracy) { if(accuracy >= 1 && accuracy <= 16) return flickcurl_accuracy_labels[accuracy-1]; return NULL; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/galleries-api.c������������������������������������������������������������������0000644�0001750�0001750�00000040570�12157645243�014030� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * galleries-api.c - Flickr flickr.galleries.* API calls * * Copyright (C) 2010-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_galleries_addPhoto: * @fc: flickcurl context * @gallery_id: The ID of the gallery to add a photo to as returned by flickcurl_galleries_getList() and flickcurl_galleries_getListForPhoto(). * @photo_id: The photo ID to add to the gallery. * @comment_text: A short comment or story to accompany the photo (or NULL). * * Add a photo to a gallery. * * Implements flickr.galleries.addPhoto (1.17) * * Return value: non-0 on failure **/ int flickcurl_galleries_addPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* comment_text) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; void* result = NULL; flickcurl_init_params(fc, 1); if(!gallery_id || !photo_id) return 1; flickcurl_add_param(fc, "gallery_id", gallery_id); flickcurl_add_param(fc, "photo_id", photo_id); if(comment_text) { flickcurl_add_param(fc, "comment", comment_text); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.addPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = NULL; /* your code here */ tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = NULL; return (result == NULL); } /** * flickcurl_galleries_create: * @fc: flickcurl context * @title: The name of the gallery * @description: A short description for the gallery * @primary_photo_id: The first photo to add to your gallery (or NULL) * @gallery_url_p: pointer to variable to store new gallery URL (or NULL) * * Create a new gallery for the calling user. * * Implements flickr.galleries.create (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: gallery ID or NULL on failure **/ char* flickcurl_galleries_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** gallery_url_p) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* gallery_id = NULL; flickcurl_init_params(fc, 1); if(!title || !description) return NULL; flickcurl_add_param(fc, "title", title); flickcurl_add_param(fc, "description", description); if(primary_photo_id) { flickcurl_add_param(fc, "primary_photo_id", primary_photo_id); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.create")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } gallery_id = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/gallery/@id"); if(gallery_url_p) { *gallery_url_p = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/gallery/@url"); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) gallery_id = NULL; return gallery_id; } /** * flickcurl_galleries_editMeta: * @fc: flickcurl context * @gallery_id: The gallery ID to update. * @title: The new title for the gallery. * @description: The new description for the gallery. (or NULL) * * Modify the meta-data for a gallery. * * Implements flickr.galleries.editMeta (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: non-0 on failure **/ int flickcurl_galleries_editMeta(flickcurl* fc, const char* gallery_id, const char* title, const char* description) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!gallery_id || !title) return 1; flickcurl_add_param(fc, "gallery_id", gallery_id); flickcurl_add_param(fc, "title", title); if(description) { flickcurl_add_param(fc, "description", description); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.editMeta")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_galleries_editPhoto: * @fc: flickcurl context * @gallery_id: The ID of the gallery to add a photo to. Note: this is the compound ID returned in methods like flickr.galleries.getList, and flickr.galleries.getListForPhoto. * @photo_id: The photo ID to add to the gallery. * @new_comment: The updated comment the photo. * * Edit the comment for a gallery photo. * * Implements flickr.galleries.editPhoto (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: non-0 on failure **/ int flickcurl_galleries_editPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* new_comment) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!gallery_id || !photo_id || !new_comment) return 1; flickcurl_add_param(fc, "gallery_id", gallery_id); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "comment", new_comment); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.editPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_galleries_editPhotos: * @fc: flickcurl context * @gallery_id: The id of the gallery to modify. The gallery must belong to the calling user. * @primary_photo_id: The id of the photo to use as the 'primary' photo for the gallery. This id must also be passed along in photo_ids list argument. * @photo_ids_array: Array of photo ids to include in the gallery. They will appear in the set in the order sent. This list MUST contain the primary photo id. This list of photos replaces the existing list. * * Modify the photos in a gallery. Use this method to add, remove and re-order photos. * * Implements flickr.galleries.editPhotos (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: non-0 on failure **/ int flickcurl_galleries_editPhotos(flickcurl* fc, const char* gallery_id, const char* primary_photo_id, const char** photo_ids_array) { xmlDocPtr doc = NULL; int result = 1; char* photo_ids = NULL; flickcurl_init_params(fc, 1); if(!gallery_id || !primary_photo_id || !photo_ids_array) return 1; flickcurl_add_param(fc, "gallery_id", gallery_id); flickcurl_add_param(fc, "primary_photo_id", primary_photo_id); photo_ids = flickcurl_array_join(photo_ids_array, ','); flickcurl_add_param(fc, "photo_ids", photo_ids); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.editPhotos")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(photo_ids) free(photo_ids); if(fc->failed) result = 1; return result; } /** * flickcurl_galleries_getInfo: * @fc: flickcurl context * @gallery_id: The gallery ID you are requesting information for. * * Get information for a gallery. * * Implements flickr.galleries.getInfo (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: gallery or NULL on failure **/ flickcurl_gallery* flickcurl_galleries_getInfo(flickcurl* fc, const char* gallery_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_gallery* gallery = NULL; flickcurl_gallery** galleries = NULL; flickcurl_init_params(fc, 0); if(!gallery_id) return NULL; flickcurl_add_param(fc, "gallery_id", gallery_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } galleries = flickcurl_build_galleries(fc, xpathCtx, (const xmlChar*)"/rsp/galleries/gallery", NULL); if(galleries) { gallery = galleries[0]; galleries[0] = NULL; flickcurl_free_galleries(galleries); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) gallery = NULL; return gallery; } /** * flickcurl_galleries_getList: * @fc: flickcurl context * @user_id: The NSID of the user to get a galleries list for. If none is specified, the calling user is assumed. * @per_page: Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Return the list of galleries created by a user. * * Galleries are returned sorted from newest to oldest. * * Implements flickr.galleries.getList (1.17) * * Return value: array of galleries or NULL on failure **/ flickcurl_gallery** flickcurl_galleries_getList(flickcurl* fc, const char* user_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_gallery** galleries = NULL; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 0); if(!user_id) return NULL; flickcurl_add_param(fc, "user_id", user_id); if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } galleries = flickcurl_build_galleries(fc, xpathCtx, (const xmlChar*)"/rsp/galleries/gallery", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) galleries = NULL; return galleries; } /** * flickcurl_galleries_getListForPhoto: * @fc: flickcurl context * @photo_id: The ID of the photo to fetch a list of galleries for. * @per_page: Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Return the list of galleries to which a photo has been added. * * Galleries are returned sorted by date which the photo was added to * the gallery. * * Implements flickr.galleries.getListForPhoto (1.17) * * Return value: array of galleries or NULL on failure **/ flickcurl_gallery** flickcurl_galleries_getListForPhoto(flickcurl* fc, const char* photo_id, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_gallery** galleries = NULL; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.getListForPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } galleries = flickcurl_build_galleries(fc, xpathCtx, (const xmlChar*)"/rsp/galleries/gallery", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) galleries = NULL; return galleries; } /** * flickcurl_galleries_getPhotos_params: * @fc: flickcurl context * @gallery_id: The ID of the gallery of photos to return * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Return the list of photos for a gallery * * Currently supported extras fields are: description, license, * date_upload, date_taken, owner_name, icon_server, original_format, * last_update, geo, tags, machine_tags, o_dims, views, media, * path_alias, url_sq, url_t, url_s, url_m, url_o * * Return value: list of people public photos or NULL on failure **/ flickcurl_photos_list* flickcurl_galleries_getPhotos_params(flickcurl* fc, const char* gallery_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!gallery_id) return NULL; /* API parameters */ flickcurl_add_param(fc, "gallery_id", gallery_id); /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.galleries.getPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/gallery", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_galleries_getPhotos: * @fc: flickcurl context * @gallery_id: The ID of the gallery of photos to return * @extras: A comma-delimited list of extra information to fetch for each returned record. * @per_page: Number of photos to return per page (default 100, max 500) * @page: The page of results to return (default 1) * * Return the list of photos for a gallery * * See flickcurl_galleries_getPhotos_params() for details of @extras. * * Implements flickr.galleries.getPhotos (1.18) * * Announced 2010-04-08 * http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Return value: list of photos or NULL on failure **/ flickcurl_photo** flickcurl_galleries_getPhotos(flickcurl* fc, const char* gallery_id, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_galleries_getPhotos_params(fc, gallery_id, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } ����������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/user_upload_status.c�������������������������������������������������������������0000644�0001750�0001750�00000012443�12017302525�015221� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * user_upload_status.c - Flickcurl user_upload_status functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_user_upload_status: * @u: user upload status object * * Destructor for user upload status object */ void flickcurl_free_user_upload_status(flickcurl_user_upload_status *u) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(u, flickcurl_user_upload_status); if(u->username) free(u->username); if(u->sets_remaining) free(u->sets_remaining); free(u); } flickcurl_user_upload_status* flickcurl_build_user_upload_status(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_user_upload_status* u = NULL; int nodes_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do user_upload_status */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); u = (flickcurl_user_upload_status*)calloc(sizeof(flickcurl_user_upload_status), 1); for(i = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; const char *node_name = (const char*)node->name; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } if(!strcmp(node_name, "username")) { xmlNodePtr chnode; for(chnode = node->children; chnode; chnode = chnode->next) { size_t len = strlen((const char*)chnode->content); if(chnode->type != XML_TEXT_NODE) continue; u->username = (char*)malloc(len + 1); memcpy(u->username, chnode->content, len + 1); break; } } else if(!strcmp(node_name, "bandwidth")) { for(attr = node->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; int attr_value = atoi((const char*)attr->children->content); if(!strcmp(attr_name, "maxbytes")) u->bandwidth_maxbytes = attr_value; else if(!strcmp(attr_name, "maxkb")) u->bandwidth_maxkb = attr_value; else if(!strcmp(attr_name, "usedbytes")) u->bandwidth_usedbytes = attr_value; else if(!strcmp(attr_name, "usedkb")) u->bandwidth_usedkb = attr_value; else if(!strcmp(attr_name, "remainingbytes")) u->bandwidth_remainingbytes = attr_value; else if(!strcmp(attr_name, "remainingkb")) u->bandwidth_remainingkb = attr_value; } } else if(!strcmp(node_name, "filesize")) { for(attr = node->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; int attr_value = atoi((const char*)attr->children->content); if(!strcmp(attr_name, "maxbytes")) u->filesize_maxbytes = attr_value; else if(!strcmp(attr_name, "maxkb")) u->filesize_maxkb = attr_value; } } else if(!strcmp(node_name, "sets")) { for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "created")) { u->sets_created = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "remaining")) u->sets_remaining = attr_value; } } } /* for nodes */ #if FLICKCURL_DEBUG > 1 fprintf(stderr, "user_upload_status: user %s bandwidth max %d/%d K used %d/%d K remaining %d/%d K max filesize %d/%d K sets created %d remaining %s\n", u->username, u->bandwidth_maxbytes, u->bandwidth_maxkb, u->bandwidth_usedbytes, u->bandwidth_usedkb, u->bandwidth_remainingbytes, u->bandwidth_remainingkb, u->filesize_maxbytes, u->filesize_maxkb, u->sets_created, (u->sets_remaining ? u->sets_remaining : "")); #endif tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return u; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/machinetags-api.c����������������������������������������������������������������0000644�0001750�0001750�00000026721�12157645243�014346� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * machinetags-api.c - Flickr flickr.machinetags.* API calls * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_machinetags_getNamespaces: * @fc: flickcurl context * @predicate: Limit the list of namespaces returned to those that have the following predicate (or NULL) * @per_page: Number of namespaces to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1 (or NULL) * * Return a list of unique namespaces, optionally limited by a given predicate, in alphabetical order. * * Implements flickr.machinetags.getNamespaces (1.7) * * As announced 2008-11-18 * http://tech.groups.yahoo.com/group/yws-flickr/message/4545 * and * http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/ * * Return value: array of namespaces or NULL on failure **/ flickcurl_tag_namespace** flickcurl_machinetags_getNamespaces(flickcurl* fc, const char* predicate, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char per_page_s[4]; char page_s[4]; flickcurl_tag_namespace** tag_namespaces = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "predicate", predicate); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.machinetags.getNamespaces")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tag_namespaces = flickcurl_build_tag_namespaces(fc, xpathCtx, (const xmlChar*)"/rsp/namespaces/namespace", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tag_namespaces = NULL; return tag_namespaces; } /** * flickcurl_machinetags_getPairs: * @fc: flickcurl context * @nspace: Limit the list of pairs returned to those that have the following namespace (or NULL) * @predicate: Limit the list of pairs returned to those that have the following predicate (or NULL) * @per_page: Number of pairs to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1 (or NULL) * * Return a list of unique namespace and predicate pairs, optionally limited by predicate or namespace, in alphabetical order. * * Implements flickr.machinetags.getPairs (1.7) * * As announced 2008-11-18 * http://tech.groups.yahoo.com/group/yws-flickr/message/4545 * and * http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/ * * Return value: array of pairs or NULL on failure **/ flickcurl_tag_predicate_value** flickcurl_machinetags_getPairs(flickcurl* fc, const char *nspace, const char* predicate, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char per_page_s[4]; char page_s[4]; flickcurl_tag_predicate_value** tag_pvs = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "namespace", nspace); flickcurl_add_param(fc, "predicate", predicate); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.machinetags.getPairs")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tag_pvs = flickcurl_build_tag_predicate_values(fc, xpathCtx, (const xmlChar*)"/rsp/pairs/pair", 0 /* content not used */, NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tag_pvs = NULL; return tag_pvs; } /** * flickcurl_machinetags_getPredicates: * @fc: flickcurl context * @nspace: Limit the list of predicates returned to those that have the following namespace (or NULL) * @per_page: Number of predicates to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1 (or NULL) * * Return a list of unique predicates, optionally limited by a given namespace. * * Implements flickr.machinetags.getPredicates (1.7) * * As announced 2008-11-18 * http://tech.groups.yahoo.com/group/yws-flickr/message/4545 * and * http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/ * * Return value: array of predicates or NULL on failure **/ flickcurl_tag_predicate_value** flickcurl_machinetags_getPredicates(flickcurl* fc, const char *nspace, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char per_page_s[4]; char page_s[4]; flickcurl_tag_predicate_value** tag_pvs = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "namespace", nspace); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.machinetags.getPredicates")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tag_pvs = flickcurl_build_tag_predicate_values(fc, xpathCtx, (const xmlChar*)"/rsp/predicates/predicate", 1 /* content is predicate */, NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tag_pvs = NULL; return tag_pvs; } /** * flickcurl_machinetags_getValues: * @fc: flickcurl context * @nspace: The namespace that all values should be restricted to. * @predicate: The predicate that all values should be restricted to. * @per_page: Number of values to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1 (or NULL) * * Return a list of unique values for a namespace and predicate. * * Implements flickr.machinetags.getValues (1.7) * * As announced 2008-11-18 * http://tech.groups.yahoo.com/group/yws-flickr/message/4545 * and * http://code.flickr.com/blog/2008/12/15/machine-tag-hierarchies/ * * Return value: array of values or NULL on failure **/ flickcurl_tag_predicate_value** flickcurl_machinetags_getValues(flickcurl* fc, const char *nspace, const char* predicate, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char per_page_s[4]; char page_s[4]; flickcurl_tag_predicate_value** tag_pvs = NULL; flickcurl_init_params(fc, 0); if(!nspace || !predicate) return NULL; flickcurl_add_param(fc, "namespace", nspace); flickcurl_add_param(fc, "predicate", predicate); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.machinetags.getValues")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tag_pvs = flickcurl_build_tag_predicate_values(fc, xpathCtx, (const xmlChar*)"/rsp/values/value", 2 /* content is value */, NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tag_pvs = NULL; return tag_pvs; } /** * flickcurl_machinetags_getRecentValues: * @fc: flickcurl context * @nspace: A namespace that all values should be restricted to (or NULL) * @predicate: A predicate that all values should be restricted to (or NULL) * @added_since: Only return machine tags values that have been added since this timestamp, in epoch seconds (or <0) * * Fetch recently used machine tags values. * * Implements flickr.machinetags.getRecentValues (1.12) * * Return value: array of values or NULL on failure **/ flickcurl_tag_predicate_value** flickcurl_machinetags_getRecentValues(flickcurl* fc, const char *nspace, const char* predicate, int added_since) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag_predicate_value** tag_pvs = NULL; char added_since_s[20]; flickcurl_init_params(fc, 0); if(nspace) { flickcurl_add_param(fc, "namespace", nspace); } if(predicate) { flickcurl_add_param(fc, "predicate", predicate); } if(added_since >= 0) { sprintf(added_since_s, "%d", added_since); flickcurl_add_param(fc, "added_since", added_since_s); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.machinetags.getRecentValues")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tag_pvs = flickcurl_build_tag_predicate_values(fc, xpathCtx, (const xmlChar*)"/rsp/values/value", 2 /* content is value */, NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tag_pvs = NULL; return tag_pvs; } �����������������������������������������������flickcurl-1.25/src/md5.c����������������������������������������������������������������������������0000644�0001750�0001750�00000023537�12130720371�011766� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * md5.c - MD5 Message Digest Algorithm * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * */ /* Original code notes: */ /* An independent implementation of MD5 by Colin Plumb. */ /* Original copyright message: */ /* * This code implements the MD5 message-digest algorithm. To compute * the message digest of a chunk of bytes, declare an MD5Context * structure, pass it to MD5Init, call MD5Update as needed on * buffers full of bytes, and then call MD5Final, which will fill a * supplied 16-byte array with the digest. * * Equivalent code is available from RSA Data Security, Inc. This code * has been tested against that, and is equivalent, except that you * don't need to include two pages of legalese with every copy. */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #if u32 == MISSING #undef u32 #if SIZEOF_UNSIGNED_INT == 4 typedef unsigned int u32; #elif SIZEOF_UNSIGNED_LONG == 4 typedef unsigned long u32; #else #error u32 type not defined #endif #endif /* original code from header - function names have changed */ struct MD5Context { u32 buf[4]; u32 bits[2]; unsigned char in[64]; unsigned char digest[16]; }; static void MD5Init(struct MD5Context *context); static void MD5Update(struct MD5Context *context, const unsigned char *buf, unsigned len); static void MD5Final(struct MD5Context *context); static void MD5Transform(u32 buf[4], u32 const in[16]); /* original code from C file - GNU configurised */ #ifndef WORDS_BIGENDIAN #define byteReverse(buf, len) /* Nothing */ #else static void byteReverse(unsigned char *buf, unsigned longs); /* ASM ifdef removed */ /* * Note: this code is harmless on little-endian machines. */ static void byteReverse(unsigned char *buf, unsigned longs) { u32 t; do { t = (u32) ((unsigned) buf[3] << 8 | buf[2]) << 16 | ((unsigned) buf[1] << 8 | buf[0]); *(u32 *) buf = t; buf += 4; } while (--longs); } #endif /* WORDS_BIGENDIAN */ /* * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious * initialization constants. */ static void MD5Init(struct MD5Context *ctx) { ctx->buf[0] = 0x67452301; ctx->buf[1] = 0xefcdab89; ctx->buf[2] = 0x98badcfe; ctx->buf[3] = 0x10325476; ctx->bits[0] = 0; ctx->bits[1] = 0; } /* * Update context to reflect the concatenation of another buffer full * of bytes. */ static void MD5Update(struct MD5Context *ctx, const unsigned char* buf, unsigned len) { u32 t; /* Update bitcount */ t = ctx->bits[0]; if ((ctx->bits[0] = t + ((u32) len << 3)) < t) ctx->bits[1]++; /* Carry from low to high */ ctx->bits[1] += len >> 29; t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ /* Handle any leading odd-sized chunks */ if (t) { unsigned char *p = (unsigned char *) ctx->in + t; t = 64 - t; if (len < t) { memcpy(p, buf, len); return; } memcpy(p, buf, t); byteReverse(ctx->in, 16); MD5Transform(ctx->buf, (u32 *) ctx->in); buf += t; len -= t; } /* Process data in 64-byte chunks */ while (len >= 64) { memcpy(ctx->in, buf, 64); byteReverse(ctx->in, 16); MD5Transform(ctx->buf, (u32 *) ctx->in); buf += 64; len -= 64; } /* Handle any remaining bytes of data. */ memcpy(ctx->in, buf, len); } /* * Final wrapup - pad to 64-byte boundary with the bit pattern * 1 0* (64-bit count of bits processed, MSB-first) */ /* Interface altered by DJB to write digest into pre-allocated context */ static void MD5Final(struct MD5Context *ctx) { unsigned count; unsigned char *p; /* Compute number of bytes mod 64 */ count = (ctx->bits[0] >> 3) & 0x3F; /* Set the first char of padding to 0x80. This is safe since there is always at least one byte free */ p = ctx->in + count; *p++ = 0x80; /* Bytes of padding needed to make 64 bytes */ count = 64 - 1 - count; /* Pad out to 56 mod 64 */ if (count < 8) { /* Two lots of padding: Pad the first block to 64 bytes */ memset(p, 0, count); byteReverse(ctx->in, 16); MD5Transform(ctx->buf, (u32 *) ctx->in); /* Now fill the next block with 56 bytes */ memset(ctx->in, 0, 56); } else { /* Pad block to 56 bytes */ memset(p, 0, count - 8); } byteReverse(ctx->in, 14); /* Append length in bits and transform */ ((u32 *) ctx->in)[14] = ctx->bits[0]; ((u32 *) ctx->in)[15] = ctx->bits[1]; MD5Transform(ctx->buf, (u32 *) ctx->in); byteReverse((unsigned char *) ctx->buf, 4); memcpy(ctx->digest, ctx->buf, 16); } /* The four core functions - F1 is optimized somewhat */ /* #define F1(x, y, z) (x & y | ~x & z) */ #define F1(x, y, z) (z ^ (x & (y ^ z))) #define F2(x, y, z) F1(z, x, y) #define F3(x, y, z) (x ^ y ^ z) #define F4(x, y, z) (y ^ (x | ~z)) /* This is the central step in the MD5 algorithm. */ #define MD5STEP(f, w, x, y, z, data, s) \ ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) /* * The core of the MD5 algorithm, this alters an existing MD5 hash to * reflect the addition of 16 longwords of new data. MD5Update blocks * the data and converts bytes into longwords for this routine. */ static void MD5Transform(u32 buf[4], u32 const in[16]) { register u32 a, b, c, d; a = buf[0]; b = buf[1]; c = buf[2]; d = buf[3]; MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7); MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12); MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17); MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22); MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7); MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12); MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17); MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22); MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9); MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14); MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20); MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5); MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9); MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14); MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20); MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11); MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16); MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23); MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4); MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11); MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16); MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23); MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6); MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10); MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15); MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21); MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6); MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10); MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15); MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21); buf[0] += a; buf[1] += b; buf[2] += c; buf[3] += d; } /* my code from here */ char* MD5_string(char *string); char* MD5_string(char *string) { struct MD5Context md5; size_t len = strlen(string); char* b = NULL; int i; MD5Init(&md5); MD5Update(&md5, (const unsigned char*)string, len); MD5Final(&md5); #define MD5_LEN 16 b = (char*)malloc(1+(MD5_LEN<<1)); if(!b) return NULL; for(i = 0; i < MD5_LEN; i++) sprintf(b+(i<<1), "%02x", (unsigned int)md5.digest[i]); b[i<<1] = '\0'; return b; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/group.c��������������������������������������������������������������������������0000644�0001750�0001750�00000022036�12131440600�012421� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * group.c - Flickcurl group functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_group: * @group: group object * * Destructor for group object */ void flickcurl_free_group(flickcurl_group *group) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(group, flickcurl_group); if(group->nsid) free(group->nsid); if(group->name) free(group->name); if(group->description) free(group->description); if(group->lang) free(group->lang); if(group->throttle_mode) free(group->throttle_mode); free(group); } /** * flickcurl_free_groups: * @groups_object: group object array * * Destructor for array of group object */ void flickcurl_free_groups(flickcurl_group **groups_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(groups_object, flickcurl_group_array); for(i = 0; groups_object[i]; i++) flickcurl_free_group(groups_object[i]); free(groups_object); } flickcurl_group** flickcurl_build_groups(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* group_count_p) { flickcurl_group** groups = NULL; int nodes_count; int group_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); groups = (flickcurl_group**)calloc(sizeof(flickcurl_group*), nodes_count+1); for(i = 0, group_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_group* g; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } g = (flickcurl_group*)calloc(sizeof(flickcurl_group), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "nsid") || !strcmp(attr_name, "id")) g->nsid = attr_value; else if(!strcmp(attr_name, "name")) g->name = attr_value; else if(!strcmp(attr_name, "lang")) g->lang = attr_value; else if(!strcmp(attr_name, "is_admin")) { g->is_admin = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "is_moderator")) { g->is_moderator = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "is_member")) { g->is_member = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "privacy")) { g->privacy = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "photos")) { g->photos = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "iconserver")) { g->iconserver = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "ispoolmoderated")) { g->is_pool_moderated = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "iconfarm")) { g->iconfarm = atoi(attr_value); free(attr_value); } } /* end attributes */ /* Walk children nodes for elements */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; char* value; size_t value_len; if(chnode->type != XML_ELEMENT_NODE) continue; if(!strcmp(chnode_name, "throttle")) { for(attr = chnode->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "count")) { g->throttle_count = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "mode")) g->throttle_mode = attr_value; else if(!strcmp(attr_name, "remaining")) { g->throttle_remaining = atoi(attr_value); free(attr_value); } else free(attr_value); } continue; } if(!strcmp(chnode_name, "restrictions")) { for(attr = chnode->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; char *attr_value = (char*)attr->children->content; if(!strcmp(attr_name, "photos_ok")) { g->photos_ok = atoi(attr_value); } else if(!strcmp(attr_name, "videos_ok")) { g->videos_ok = atoi(attr_value); } else if(!strcmp(attr_name, "images_ok")) { g->images_ok = atoi(attr_value); } else if(!strcmp(attr_name, "screens_ok")) { g->screens_ok = atoi(attr_value); } else if(!strcmp(attr_name, "art_ok")) { g->art_ok = atoi(attr_value); } else if(!strcmp(attr_name, "safe_ok")) { g->safe_ok = atoi(attr_value); } else if(!strcmp(attr_name, "moderate_ok")) { g->moderate_ok = atoi(attr_value); } else if(!strcmp(attr_name, "restricted_ok")) { g->restricted_ok = atoi(attr_value); } else if(!strcmp(attr_name, "has_geo")) { g->has_geo = atoi(attr_value); } } } if(!chnode->children) continue; value_len = strlen((const char*)chnode->children->content); value = (char*)malloc(value_len + 1); memcpy(value, chnode->children->content, value_len + 1); if(!strcmp(chnode_name, "name")) g->name = value; else if(!strcmp(chnode_name, "description")) g->description = value; else if(!strcmp(chnode_name, "members")) { g->members = atoi(value); free(value); } else if(!strcmp(chnode_name, "privacy")) { g->privacy = atoi(value); free(value); } else if(!strcmp(chnode_name, "rules")) { g->rules = value; } else if(!strcmp(chnode_name, "pool_count")) { g->pool_count = atoi(value); free(value); } else if(!strcmp(chnode_name, "topic_count")) { g->topic_count = atoi(value); free(value); } else free(value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "group: nsid %s name '%s'\n" " description '%s' lang '%s'\n" " rules '%s'\n" " user is? admin %d moderator %d member %d\n" " pool moderated %d privacy %d\n" " iconserver %d iconfarm %d\n" " photos %d members %d\n" " throttle count %d mode '%s' remaining %d\n" " pool count %d topic count %d\n" " restrictions photos %d videos %d images %d screens %d art %d\n" " restrictions safe %d moderate %d restricted %d\n" " restrictions has geo %d\n", g->nsid, g->name, (g->description ? g->description : ""), (g->lang ? g->lang : ""), (g->rules ? g->rules: ""), g->is_admin, g->is_moderator, g->is_member, g->is_pool_moderated, g->privacy, g->iconserver, g->iconfarm, g->photos, g->members, g->throttle_count, (g->throttle_mode ? g->throttle_mode : ""), g->throttle_remaining, g->pool_count, g->topic_count, g->photos_ok, g->videos_ok, g->images_ok, g->screens_ok, g->art_ok, g->safe_ok, g->moderate_ok, g->restricted_ok, g->has_geo ); #endif groups[group_count++] = g; } /* for nodes */ if(group_count_p) *group_count_p = group_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return groups; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/config.h.in����������������������������������������������������������������������0000644�0001750�0001750�00000010647�12157737161�013174� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* src/config.h.in. Generated from configure.ac by autoheader. */ /* Define if building universal (internal helper macro) */ #undef AC_APPLE_UNIVERSAL_BUILD /* Capture web service responses */ #undef CAPTURE /* Release version as a decimal */ #undef FLICKCURL_VERSION_DECIMAL /* vsnprint has C99 compatible return value */ #undef HAVE_C99_VSNPRINTF /* Define to 1 if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ #undef HAVE_DOPRNT /* Define to 1 if you have the <errno.h> header file. */ #undef HAVE_ERRNO_H /* Define to 1 if you have the `getopt' function. */ #undef HAVE_GETOPT /* Define to 1 if you have the <getopt.h> header file. */ #undef HAVE_GETOPT_H /* Define to 1 if you have the `getopt_long' function. */ #undef HAVE_GETOPT_LONG /* Define to 1 if you have the `gettimeofday' function. */ #undef HAVE_GETTIMEOFDAY /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET /* Define to 1 if you have the 'nanosleep' function. */ #undef HAVE_NANOSLEEP /* have Raptor RDF syntax library */ #undef HAVE_RAPTOR /* Define to 1 if your system has a GNU libc compatible `realloc' function, and to 0 otherwise. */ #undef HAVE_REALLOC /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP /* Define to 1 if you have the `strftime' function. */ #undef HAVE_STRFTIME /* Define to 1 if you have the <strings.h> header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the <string.h> header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the <time.h> header file. */ #undef HAVE_TIME_H /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the `usleep' function. */ #undef HAVE_USLEEP /* Define to 1 if you have the `vprintf' function. */ #undef HAVE_VPRINTF /* Define to 1 if you have the `vsnprintf' function. */ #undef HAVE_VSNPRINTF /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* need 'extern int optind' declaration? */ #undef NEED_OPTIND_DECLARATION /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O /* Offline mode */ #undef OFFLINE /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* The size of `unsigned int', as computed by sizeof. */ #undef SIZEOF_UNSIGNED_INT /* The size of `unsigned long', as computed by sizeof. */ #undef SIZEOF_UNSIGNED_LONG /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #undef TIME_WITH_SYS_TIME /* Define to 1 if your <sys/time.h> declares `struct tm'. */ #undef TM_IN_SYS_TIME /* Version number of package */ #undef VERSION /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ #if defined AC_APPLE_UNIVERSAL_BUILD # if defined __BIG_ENDIAN__ # define WORDS_BIGENDIAN 1 # endif #else # ifndef WORDS_BIGENDIAN # undef WORDS_BIGENDIAN # endif #endif /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to rpl_realloc if the replacement function should be used. */ #undef realloc /* Define to `unsigned int' if <sys/types.h> does not define. */ #undef size_t �����������������������������������������������������������������������������������������flickcurl-1.25/src/tags-api.c�����������������������������������������������������������������������0000644�0001750�0001750�00000031010�12210457652�012777� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * tags-api.c - Flickr flickr.tags.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_tags_getClusterPhotos: * @fc: flickcurl context * @tag: The tag that this cluster belongs to. * @cluster_id: The top three tags for the cluster, separated by dashes (just like the url). * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns the first 24 photos for a given tag cluster * * Implements flickr.tags.getClusterPhotos (1.7) * * Added to API (not announced) some time between 2008-09-04 and 2008-09-19 * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_tags_getClusterPhotos(flickcurl* fc, const char* tag, const char* cluster_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!tag || !cluster_id) return NULL; flickcurl_add_param(fc, "tag", tag); flickcurl_add_param(fc, "cluster_id", cluster_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getClusterPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_tags_getClusters: * @fc: flickcurl context * @tag: The tag to fetch clusters for. * * Gives you a list of tag clusters for the given tag. * * Implements flickr.tags.getClusters (1.5) * * "There is no pagination for this method as the number of clusters * for a single tag is capped at 5 and each cluster may contain * between 1 - 50 tags (give or take)." * * As announced 2008-07-17 * http://tech.groups.yahoo.com/group/yws-flickr/message/4218 * * Return value: NULL on failure **/ flickcurl_tag_clusters* flickcurl_tags_getClusters(flickcurl* fc, const char* tag) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag_clusters* clusters = NULL; flickcurl_init_params(fc, 0); if(!tag) return NULL; flickcurl_add_param(fc, "tag", tag); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getClusters")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } clusters = flickcurl_build_tag_clusters(fc, xpathCtx, (const xmlChar*)"/rsp/clusters/cluster"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) clusters = NULL; return clusters; } /** * flickcurl_tags_getHotList: * @fc: flickcurl context * @period: The period for which to fetch hot tags. Valid values are day and * week (defaults to day). * @tag_count: The number of tags to return. Defaults to 20. Maximum allowed * value is 200 (or -1 to leave as default) * * Returns a list of hot tags for the given period. * * Implements flickr.tags.getHotList (0.9) * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getHotList(flickcurl* fc, const char* period, int tag_count) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; char tag_count_str[10]; flickcurl_init_params(fc, 0); if(period) { if(!strcmp(period, "day") || !strcmp(period, "week")) { flickcurl_add_param(fc, "period", period); } else return NULL; } if(tag_count >= 0) { sprintf(tag_count_str, "%d", tag_count); flickcurl_add_param(fc, "count", tag_count_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getHotList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/hottags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } /** * flickcurl_tags_getListPhoto: * @fc: flickcurl context * @photo_id: photo ID * * Get the tag list for a given photo. * * Implements flickr.tags.getListPhoto (0.9) * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getListPhoto(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getListPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/photo/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } /** * flickcurl_tags_getListUser: * @fc: flickcurl context * @user_id: user NSID (or NULL) * * Get the tag list for a given user (or current user) * * Implements flickr.tags.getListUser (0.9) * * FIXME: API docs says user_id is optional but it is not. * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getListUser(flickcurl* fc, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); if(user_id) { flickcurl_add_param(fc, "user_id", user_id); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getListUser")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/who/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } /** * flickcurl_tags_getListUserPopular: * @fc: flickcurl context * @user_id: user NSID (or NULL) * @pop_count: number of popular tags to return (or <0 for default) * * Get the popular tag list for a given user (or current user) * * Implements flickr.tags.getListUserPopular (0.9) * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getListUserPopular(flickcurl* fc, const char* user_id, int pop_count) { char pop_count_str[10]; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); if(user_id) { flickcurl_add_param(fc, "user_id", user_id); } if(pop_count >= 0) { sprintf(pop_count_str, "%d", pop_count); flickcurl_add_param(fc, "count", pop_count_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getListUserPopular")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/who/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } /** * flickcurl_tags_getListUserRaw: * @fc: flickcurl context * @tag: tag to get raw version of (or NULL for all) * * Get the raw versions of a given tag (or all tags) for the currently logged-in user. * * Implements flickr.tags.getListUserRaw (0.9) * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getListUserRaw(flickcurl* fc, const char* tag) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); if(tag) { flickcurl_add_param(fc, "tag", tag); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getListUserRaw")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/who/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } /** * flickcurl_tags_getMostFrequentlyUsed: * @fc: flickcurl context * * Returns a list of most frequently used tags for a user. * * Implements flickr.tags.getMostFrequentlyUsed (1.25) * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getMostFrequentlyUsed(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getMostFrequentlyUsed")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/who/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } /** * flickcurl_tags_getRelated: * @fc: flickcurl context * @tag: tag to fetch related tags for * * Get a list of tags 'related' to the given tag, based on clustered usage analysis. * * Implements flickr.tags.getRelated (0.9) * * Return value: array of #flickcurl_tag or NULL on failure **/ flickcurl_tag** flickcurl_tags_getRelated(flickcurl* fc, const char* tag) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); if(!tag) return NULL; flickcurl_add_param(fc, "tag", tag); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.tags.getRelated")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photos-api.c���������������������������������������������������������������������0000644�0001750�0001750�00000203002�12157645243�013364� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-api.c - Flickr flickr.photos.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_addTags: * @fc: flickcurl context * @photo_id: photo ID * @tags: tags to add as a space-separated list * * Add tags to a photo. * * Implements flickr.photos.addTags (0.9) * * Return value: non-0 on failure */ int flickcurl_photos_addTags(flickcurl* fc, const char* photo_id, const char* tags) { xmlDocPtr doc = NULL; flickcurl_init_params(fc, 1); if(!photo_id || !tags) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "tags", tags); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.addTags")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; tidy: return fc->failed; } /** * flickcurl_photos_delete: * @fc: flickcurl context * @photo_id: photo ID * * Delete a photo. * * Implements flickr.photos.delete (0.9) * * Return value: non-0 on failure */ int flickcurl_photos_delete(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photo_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.delete")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_getAllContexts: * @fc: flickcurl context * @photo_id: photo ID * * Get all visible sets and pools the photo belongs to. * * Implements flickr.photos.getAllContexts (0.7) * * Returns an array of size 3 [prev, next, NULL] flickcurl_context* * or NULL on error * * Return value: prev, next contexts or NULL **/ flickcurl_context** flickcurl_photos_getAllContexts(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; flickcurl_context** contexts = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getAllContexts")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; contexts = flickcurl_build_contexts(fc, doc); tidy: if(fc->failed) contexts = NULL; return contexts; } /** * flickcurl_photos_getContactsPhotos_params: * @fc: flickcurl context * @contact_count: Number of photos to return (Default 10, maximum 50) * @just_friends: Set to non-0 to only show photos from friends and family (excluding regular contacts). * @single_photo: Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order. * @include_self: Set to non-0 to include photos from the calling user. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Fetch a list of recent photos from the calling users' contacts. * * Currently supported extras fields are: license, date_upload, * date_taken, owner_name, icon_server, original_format, last_update * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_photos_getContactsPhotos_params(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char true_s[2] = "1"; const char* format = NULL; flickcurl_init_params(fc, 0); /* API parameters */ if(contact_count > 1) { char count_s[20]; sprintf(count_s, "%d", contact_count); flickcurl_add_param(fc, "count", count_s); } if(just_friends) { flickcurl_add_param(fc, "just_friends", true_s); } if(single_photo) { flickcurl_add_param(fc, "single_photo", true_s); } if(include_self) { flickcurl_add_param(fc, "include_self", true_s); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getContactsPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_getContactsPhotos: * @fc: flickcurl context * @contact_count: Number of photos to return (Default 10, maximum 50) * @just_friends: Set to non-0 to only show photos from friends and family (excluding regular contacts). * @single_photo: Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order. * @include_self: Set to non-0 to include photos from the calling user. * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * * Fetch a list of recent photos from the calling users' contacts. * * See flickcurl_photos_getContactsPhotos() for details of parameters. * * Implements flickr.photos.getContactsPhotos (0.11) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_photos_getContactsPhotos(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, const char* extras) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = -1; list_params.page = -1; photos_list = flickcurl_photos_getContactsPhotos_params(fc, contact_count, just_friends, single_photo, include_self, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_getContactsPublicPhotos_params: * @fc: flickcurl context * @user_id: The NSID of the user to fetch photos for. * @photo_count: Number of photos to return (Default 10, maximum 50) * @just_friends: Set to non-0 to only show photos from friends and family (excluding regular contacts) * @single_photo: Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order. * @include_self: Set to non-0 to include photos from the user specified by user_id. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Fetch a list of recent public photos from a users' contacts. * * Currently supported extras fields are: license, * date_upload, date_taken, owner_name, icon_server, original_format, * last_update. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: a list of photos or NULL on failure **/ flickcurl_photos_list* flickcurl_photos_getContactsPublicPhotos_params(flickcurl* fc, const char* user_id, int photo_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char true_s[2] = "1"; char photo_count_s[10]; const char* format = NULL; flickcurl_init_params(fc, 0); if(!user_id) return NULL; /* API parameters */ flickcurl_add_param(fc, "user_id", user_id); sprintf(photo_count_s, "%d", photo_count); flickcurl_add_param(fc, "count", photo_count_s); if(just_friends) { flickcurl_add_param(fc, "just_friends", true_s); } if(single_photo) { flickcurl_add_param(fc, "single_photo", true_s); } if(include_self) { flickcurl_add_param(fc, "include_self", true_s); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getContactsPublicPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_getContactsPublicPhotos: * @fc: flickcurl context * @user_id: The NSID of the user to fetch photos for. * @photo_count: Number of photos to return (Default 10, maximum 50) * @just_friends: Set to non-0 to only show photos from friends and family (excluding regular contacts) * @single_photo: Set to non-0 to only fetch one photo (the latest) per contact, instead of all photos in chronological order. * @include_self: Set to non-0 to include photos from the user specified by user_id. * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * * Fetch a list of recent public photos from a users' contacts. * * See flickcurl_photos_getContactsPublicPhotos() for details of * parameters. * * Implements flickr.photos.getContactsPublicPhotos (0.12) * * Return value: a list of photos or NULL on failure **/ flickcurl_photo** flickcurl_photos_getContactsPublicPhotos(flickcurl* fc, const char* user_id, int photo_count, int just_friends, int single_photo, int include_self, const char* extras) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = -1; list_params.page = -1; photos_list = flickcurl_photos_getContactsPublicPhotos_params(fc, user_id, photo_count, just_friends, single_photo, include_self, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_getContext: * @fc: flickcurl context * @photo_id: photo ID * * Get next and previous photos for a photo in a photostream. * * Implements flickr.photos.getContext (0.7) * * Returns an array of size 3 [prev, next, NULL] flickcurl_context* * or NULL on error * * Return value: prev, next contexts or NULL **/ flickcurl_context** flickcurl_photos_getContext(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; flickcurl_context** contexts = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getContext")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; contexts = flickcurl_build_contexts(fc, doc); tidy: if(fc->failed) contexts = NULL; return contexts; } static int** flickcurl_build_photocounts(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* photocount_count_p) { int** photocounts = NULL; int nodes_count; int photocount_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; const int row_size = 3; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); photocounts = (int**)calloc(sizeof(int*), nodes_count+1); for(i = 0, photocount_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; int* row; int j; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } row = (int*)calloc(sizeof(int), row_size); for(j = 0; j < row_size; j++) row[j]= -1; for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "count")) { row[0] = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "fromdate")) { row[1] = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "todate")) { row[2] = atoi(attr_value); free(attr_value); } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "photocount: count %d fromdate %d todate %d\n", row[0], row[1], row[2]); #endif photocounts[photocount_count++] = row; } /* for nodes */ if(photocount_count_p) *photocount_count_p = photocount_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return photocounts; } /** * flickcurl_photos_getCounts: * @fc: flickcurl context * @dates_array: A comma delimited list of unix timestamps, denoting the periods to return counts for. They should be specified smallest first. (or NULL) * @taken_dates_array: A comma delimited list of mysql datetimes, denoting the periods to return counts for. They should be specified mallest first. (or NULL) * * Gets a list of photo counts for the given date ranges for the calling user. * * Implements flickr.photos.getCounts (0.13) * * The return array fields are: * [0] count * [1] fromdate as unixtime * [2] todate as unixtime * * Return value: array of int[3] or NULL on failure */ int** flickcurl_photos_getCounts(flickcurl* fc, const char** dates_array, const char** taken_dates_array) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int** counts = NULL; char* dates = NULL; char* taken_dates = NULL; flickcurl_init_params(fc, 0); /* one must be not empty */ if(!dates_array && !taken_dates_array) return NULL; if(dates_array) { dates = flickcurl_array_join(dates_array, ','); flickcurl_add_param(fc, "dates", dates); } if(taken_dates_array) { taken_dates = flickcurl_array_join(taken_dates_array, ','); flickcurl_add_param(fc, "taken_dates", taken_dates); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getCounts")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } counts = flickcurl_build_photocounts(fc, xpathCtx, (const xmlChar*)"/rsp/photocounts/photocount", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(counts) free(counts); counts = NULL; } if(dates) free(dates); if(taken_dates) free(taken_dates); return counts; } /** * flickcurl_photos_getExif: * @fc: flickcurl context * @photo_id: The id of the photo to fetch information for. * @secret: The secret for the photo (or NULL) * If the correct secret is passed then permissions checking is * skipped. This enables the 'sharing' of individual photos by * passing around the id and secret. * * Retrieves a list of EXIF/TIFF/GPS tags for a given photo. * * Implements flickr.photos.getExif (0.12) * * Return value: non-0 on failure **/ flickcurl_exif** flickcurl_photos_getExif(flickcurl* fc, const char* photo_id, const char* secret) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_exif** exifs = NULL; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); if(secret) { flickcurl_add_param(fc, "secret", secret); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getExif")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } exifs = flickcurl_build_exifs(fc, xpathCtx, (const xmlChar*)"/rsp/photo/exif", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) exifs = NULL; return exifs; } /** * flickcurl_photos_getFavorites: * @fc: flickcurl context * @photo_id: The ID of the photo to fetch the favoriters list for. * @page: The page of results to return (default 1) * @per_page: Number of users to return per page (default 10, max 50) * * Returns the list of people who have favorited a given photo. * * Implements flickr.photos.getFavorites (0.12) * * Return value: non-0 on failure **/ flickcurl_person** flickcurl_photos_getFavorites(flickcurl* fc, const char* photo_id, int page, int per_page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_person** persons = NULL; char per_page_s[4]; char page_s[4]; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getFavorites")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } persons = flickcurl_build_persons(fc, xpathCtx, (const xmlChar*)"/rsp/photo/person", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) persons = NULL; return persons; } /** * flickcurl_photos_getInfo2: * @fc: flickcurl context * @photo_id: photo ID * @secret: secret (or NULL) * * Get information about a photo * * Implements flickr.photos.getInfo (0.5) * * Return value: #flickcurl_photo or NULL on failure **/ flickcurl_photo* flickcurl_photos_getInfo2(flickcurl* fc, const char* photo_id, const char* secret) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_photo* photo = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "photo_id", photo_id); if(secret) flickcurl_add_param(fc, "secret", secret); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } photo = flickcurl_build_photo(fc, xpathCtx); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) photo = NULL; return photo; } /** * flickcurl_photos_getInfo: * @fc: flickcurl context * @photo_id: photo ID * * Get information about a photo * * Deprecated for flickcurl_photos_getInfo2() that allows passing the * optional secret. * * Return value: #flickcurl_photo or NULL on failure **/ flickcurl_photo* flickcurl_photos_getInfo(flickcurl* fc, const char* photo_id) { return flickcurl_photos_getInfo2(fc, photo_id, NULL); } static flickcurl_photos_list* flickcurl_get_photoslist_params(flickcurl* fc, const char* method, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char min_upload_date_s[20]; char max_upload_date_s[20]; char privacy_filter_s[20]; const char* format = NULL; flickcurl_init_params(fc, 0); /* API parameters */ if(min_upload_date > 0) { sprintf(min_upload_date_s, "%d", min_upload_date); flickcurl_add_param(fc, "min_upload_date", min_upload_date_s); } if(max_upload_date > 0) { sprintf(max_upload_date_s, "%d", max_upload_date); flickcurl_add_param(fc, "max_upload_date", max_upload_date_s); } if(min_taken_date) { flickcurl_add_param(fc, "min_taken_date", min_taken_date); } if(max_taken_date) { flickcurl_add_param(fc, "max_taken_date", max_taken_date); } if(privacy_filter >= 1 && privacy_filter <= 5) { sprintf(privacy_filter_s, "%d", privacy_filter); flickcurl_add_param(fc, "privacy_filter", privacy_filter_s); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, method)) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_getNotInSet_params: * @fc: flickcurl context * @min_upload_date: Minimum upload date. * @max_upload_date: Maximum upload date. * @min_taken_date: Minimum taken date (or NULL). * @max_taken_date: Maximum taken date (or NULL). * @privacy_filter: Return photos only matching a certain privacy level. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of your photos that are not part of any sets. * * Currently supported extras fields are: license, date_upload, date_taken, * owner_name, icon_server, original_format, last_update, geo, tags, * machine_tags. * * Return value: a list of photos or NULL on failure **/ flickcurl_photos_list* flickcurl_photos_getNotInSet_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params) { return flickcurl_get_photoslist_params(fc, "flickr.photos.getNotInSet", min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, list_params); } /** * flickcurl_photos_getNotInSet: * @fc: flickcurl context * @min_upload_date: Minimum upload date. * @max_upload_date: Maximum upload date. * @min_taken_date: Minimum taken date (or NULL). * @max_taken_date: Maximum taken date (or NULL). * @privacy_filter: Return photos only matching a certain privacy level. * Valid privacy values are: 1 public, 2 friends, 3 family, 4 friends and * family, 5 private * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @per_page: Number of photos to return per page (default 100, max 500). * @page: The page of results to return (default 1). * * Returns a list of your photos that are not part of any sets. * * See flickcurl_photos_getNotInSet_params() for details of parameters. * * Implements flickr.photos.getNotInSet (0.12) * * Return value: a list of photos or NULL on failure **/ flickcurl_photo** flickcurl_photos_getNotInSet(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_get_photoslist_params(fc, "flickr.photos.getNotInSet", min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_getPerms: * @fc: flickcurl context * @photo_id: The id of the photo to get permissions for. * * Get permissions for a photo. * * Implements flickr.photos.getPerms (0.11) * * Return value: permissions or NULL on failure **/ flickcurl_perms* flickcurl_photos_getPerms(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_perms* perms = NULL; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getPerms")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } perms = flickcurl_build_perms(fc, xpathCtx, (const xmlChar*)"/rsp/perms"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) perms = NULL; return perms; } /** * flickcurl_photos_getRecent_params: * @fc: flickcurl context * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of the latest public photos uploaded to flickr. * * Currently supported extras fields are: license, date_upload, date_taken, * owner_name, icon_server, original_format, last_update, geo, tags, * machine_tags. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_photos_getRecent_params(flickcurl* fc, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); /* No API parameters */ /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getRecent")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_getRecent: * @fc: flickcurl context * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @per_page: Number of photos to return per page (default 100, max 500) * @page: The page of results to return (default 1) * * Returns a list of the latest public photos uploaded to flickr. * * See flickcurl_photos_getRecent_params() for details of parameters. * * Implements flickr.photos.getRecent (0.12) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_photos_getRecent(flickcurl* fc, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_photos_getRecent_params(fc, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_getSizes: * @fc: flickcurl context * @photo_id: The id of the photo to fetch size information for. * * Returns the available sizes for a photo. The calling user must have permission to view the photo. * * Implements flickr.photos.getSizes (0.13) * * Return value: non-0 on failure */ flickcurl_size** flickcurl_photos_getSizes(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_size** sizes = NULL; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.getSizes")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } sizes = flickcurl_build_sizes(fc, xpathCtx, (const xmlChar*)"/rsp/sizes/size", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) sizes = NULL; return sizes; } /** * flickcurl_photos_getUntagged_params: * @fc: flickcurl context * @min_upload_date: Minimum upload date. * @max_upload_date: Maximum upload date. * @min_taken_date: Minimum taken date (or NULL) * @max_taken_date: Maximum taken date (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. * Valid privacy values are: 1 public, 2 friends, 3 family, 4 friends and * family, 5 private * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of your photos with no tags. * * Currently supported extras fields are: license, date_upload, date_taken, * owner_name, icon_server, original_format, last_update, geo, tags, * machine_tags. * * Return value: a list of photos or NULL on failure **/ flickcurl_photos_list* flickcurl_photos_getUntagged_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params) { return flickcurl_get_photoslist_params(fc, "flickr.photos.getUntagged", min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, list_params); } /** * flickcurl_photos_getUntagged: * @fc: flickcurl context * @min_upload_date: Minimum upload date. * @max_upload_date: Maximum upload date. * @min_taken_date: Minimum taken date (or NULL) * @max_taken_date: Maximum taken date (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. * Valid privacy values are: 1 public, 2 friends, 3 family, 4 friends and * family, 5 private * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @per_page: Number of photos to return per page (default 100, max 500). * @page: The page of results to return (default 1). * * Returns a list of your photos with no tags. * * See flickcurl_photos_getUntagged_params() for details of parameters. * * Implements flickr.photos.getUntagged (0.12) * * Return value: a list of photos or NULL on failure **/ flickcurl_photo** flickcurl_photos_getUntagged(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_get_photoslist_params(fc, "flickr.photos.getUntagged", min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_getWithGeoData_params: * @fc: flickcurl context * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of your geo-tagged photos. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_photos_getWithGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params) { return flickcurl_get_photoslist_params(fc, "flickr.photos.getWithGeoData", min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, list_params); } /** * flickcurl_photos_getWithGeoData: * @fc: flickcurl context * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL) * @extras: A comma-delimited list of extra information to fetch for each returned record. * @per_page: Number of photos to return per page. * @page: The page of results to return. * * Returns a list of your geo-tagged photos. * * See flickcurl_photos_getWithGeoData_params() for details of parameters. * * Implements flickr.photos.getWithGeoData (0.12) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_photos_getWithGeoData(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_photos_getWithGeoData_params(fc, min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_getWithoutGeoData_params: * @fc: flickcurl context * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of your photos which haven't been geo-tagged. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_photos_getWithoutGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params) { return flickcurl_get_photoslist_params(fc, "flickr.photos.getWithoutGeoData", min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, list_params); } /** * flickcurl_photos_getWithoutGeoData: * @fc: flickcurl context * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. Valid values are: 1 public photos; 2 private photos visible to friends; 3 private photos visible to family; 4 private photos visible to friends and family; 5 completely private photos. (or NULL) * @extras: A comma-delimited list of extra information to fetch for each returned record. * @per_page: Number of photos to return per page. * @page: The page of results to return. * * Returns a list of your photos which haven't been geo-tagged. * * See flickcurl_photos_getWithoutGeoData_params() for details of parameters. * * Implements flickr.photos.getWithoutGeoData (0.12) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_photos_getWithoutGeoData(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_photos_getWithoutGeoData_params(fc, min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_recentlyUpdated_params: * @fc: flickcurl context * @min_date: A Unix timestamp indicating the date from which modifications should be compared. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Return a list of your photos that have been recently created or which have been recently modified * * Recently modified may mean that the photo's metadata (title, * description, tags) may have been changed or a comment has been * added (or just modified somehow :-) * * Currently supported extra fields are: license, date_upload, date_taken, * owner_name, icon_server, original_format, last_update, geo, tags, * machine_tags. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_photos_recentlyUpdated_params(flickcurl* fc, int min_date, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char min_date_s[20]; const char* format = NULL; flickcurl_init_params(fc, 0); if(min_date <= 0) return NULL; /* API parameters */ if(min_date >0) { sprintf(min_date_s, "%d", min_date); flickcurl_add_param(fc, "min_date", min_date_s); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.recentlyUpdated")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_recentlyUpdated: * @fc: flickcurl context * @min_date: A Unix timestamp indicating the date from which modifications should be compared. * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @per_page: Number of photos to return per page (default 100, max 500) * @page: The page of results to return (default 1) * * Return a list of your photos that have been recently created or which have been recently modified * * See flickcurl_photos_recentlyUpdated() for details of parameters. * * Implements flickr.photos.recentlyUpdated (0.12) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_photos_recentlyUpdated(flickcurl* fc, int min_date, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_photos_recentlyUpdated_params(fc, min_date, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_removeTag: * @fc: flickcurl context * @tag_id: tag ID to remove from the photo * * Remove a tag from a photo. * * The @tag_id is returned such as from flickcurl_photos_getInfo() * * Implements flickr.photos.removeTag (0.9) * * Return value: non-0 on failure */ int flickcurl_photos_removeTag(flickcurl* fc, const char* tag_id) { xmlDocPtr doc = NULL; flickcurl_init_params(fc, 1); if(!tag_id) return 1; flickcurl_add_param(fc, "tag_id", tag_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.removeTag")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; tidy: return fc->failed; } /** * flickcurl_photos_search_params: * @fc: flickcurl context * @params: #flickcurl_search_params search parameters * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Return a photos list or raw content matching some criteria. * * Only photos visible to the calling user will be returned. To * return private or semi-private photos, the caller must be * authenticated with 'read' permissions, and have permission to view * the photos. Unauthenticated calls will only return public photos. * * Ensure the @params object is propertly initialized to zeros/NULLs * or use flickcurl_search_params_init() to initialize this. * * Flickcurl 1.15; Added in_gallery search parameter as announced * 2010-04-08 http://code.flickr.com/blog/2010/04/08/galleries-apis/ * * Flickcurl 1.14: Added geo_context and is_commons search parameters * to #flickcurl_search_params. Added more extras to docs. * * Flickcurl 1.6: Added @list_params beyond flickcurl_photos_search() * to allow returning raw content if @list_params is present and * field @format is not NULL as announced 2008-08-25 * http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/ * * NOTE: The @params fields: extras, per_page and page are ignored - * the values are taken from the @list_params fields. * * Flickcurl 1.0: Added place_id for places API as announced 2008-01-11 * http://tech.groups.yahoo.com/group/yws-flickr/message/3688 * * Optional parameter "media" that defaults to "all" but can also be * set to "photos" or "videos" to filter results by media type. * API addition 2008-04-07. * * Optional parameter "has_geo" for any photo that has been geotagged. * As announced 2008-06-27 * http://tech.groups.yahoo.com/group/yws-flickr/message/4146 * * Optional parameters "lat", "lon", "radius" and "radius_units" added * for doing radial geo queries from point (lat, lon) within * radius/radius_units. radius_units default is "km". * As announced 2008-06-27 * http://tech.groups.yahoo.com/group/yws-flickr/message/4146 * * (Experimental) Optional parameter "contacts" requires requires * that the "user_id" field also is set. Valid values are "all" or * "ff" for just friends and family. * As announced 2008-06-30 * http://tech.groups.yahoo.com/group/yws-flickr/message/4162 * * Return value: a photos list or NULL **/ flickcurl_photos_list* flickcurl_photos_search_params(flickcurl* fc, flickcurl_search_params* params, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char min_upload_date_s[15]; char max_upload_date_s[15]; char accuracy_s[3]; char safe_search_s[2]; char content_type_s[2]; char lat_s[32]; char lon_s[32]; char radius_s[32]; char woe_id_s[32]; char geo_context_s[2]; const char* format = NULL; flickcurl_init_params(fc, 0); FLICKCURL_ASSERT_OBJECT_POINTER_RETURN_VALUE(params, flickcurl_search_params, NULL); /* Search parameters */ if(params->user_id) flickcurl_add_param(fc, "user_id", params->user_id); if(params->tags) flickcurl_add_param(fc, "tags", params->tags); if(params->tag_mode) flickcurl_add_param(fc, "tag_mode", params->tag_mode); if(params->text) flickcurl_add_param(fc, "text", params->text); if(params->min_upload_date) { sprintf(min_upload_date_s, "%d", params->min_upload_date); flickcurl_add_param(fc, "min_upload_date", min_upload_date_s); } if(params->max_upload_date) { sprintf(max_upload_date_s, "%d", params->max_upload_date); flickcurl_add_param(fc, "max_upload_date", max_upload_date_s); } if(params->min_taken_date) flickcurl_add_param(fc, "min_taken_date", params->min_taken_date); if(params->max_taken_date) flickcurl_add_param(fc, "max_taken_date", params->max_taken_date); if(params->license) flickcurl_add_param(fc, "license", params->license); if(params->sort) flickcurl_add_param(fc, "sort", params->sort); if(params->privacy_filter) flickcurl_add_param(fc, "privacy_filter", params->privacy_filter); if(params->bbox) flickcurl_add_param(fc, "bbox", params->bbox); if(params->accuracy) { if(params->accuracy >= 0 && params->accuracy <= 16) { sprintf(accuracy_s, "%d", params->accuracy); flickcurl_add_param(fc, "accuracy", accuracy_s); } } if(params->safe_search) { if(params->safe_search >= 0 && params->safe_search <= 3) { sprintf(safe_search_s, "%d", params->safe_search); flickcurl_add_param(fc, "safe_search", safe_search_s); } } if(params->content_type) { if(params->content_type >= 0 && params->content_type <= 4) { sprintf(content_type_s, "%d", params->content_type); flickcurl_add_param(fc, "content_type", content_type_s); } } if(params->machine_tags) flickcurl_add_param(fc, "machine_tags", params->machine_tags); if(params->machine_tag_mode) flickcurl_add_param(fc, "machine_tag_mode", params->machine_tag_mode); if(params->group_id) flickcurl_add_param(fc, "group_id", params->group_id); if(params->place_id) flickcurl_add_param(fc, "place_id", params->place_id); if(params->media) flickcurl_add_param(fc, "media", params->media); if(params->has_geo) flickcurl_add_param(fc, "has_geo", "1"); if(params->geo_context > 0 && params->geo_context < 3) { sprintf(geo_context_s, "%d", params->geo_context); flickcurl_add_param(fc, "geo_context", geo_context_s); } if(params->radius) { if(params->lat) { sprintf(lat_s, "%f", params->lat); flickcurl_add_param(fc, "lat", lat_s); } if(params->lon) { sprintf(lon_s, "%f", params->lon); flickcurl_add_param(fc, "lon", lon_s); } if(params->radius) { sprintf(radius_s, "%f", params->radius); flickcurl_add_param(fc, "radius", radius_s); if(params->radius_units) { flickcurl_add_param(fc, "radius_units", params->radius_units); } } } if(params->contacts && params->user_id) { flickcurl_add_param(fc, "contacts", params->contacts); } if(params->woe_id > 0) { sprintf(woe_id_s, "%d", params->woe_id); flickcurl_add_param(fc, "woe_id", woe_id_s); } if(params->is_commons) flickcurl_add_param(fc, "is_commons", ""); if(params->in_gallery) flickcurl_add_param(fc, "in_gallery", ""); /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.search")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photos_search: * @fc: flickcurl context * @params: #flickcurl_search_params search parameters * * Return a list of photos matching some criteria. * * Only photos visible to the calling user will be returned. To * return private or semi-private photos, the caller must be * authenticated with 'read' permissions, and have permission to view * the photos. Unauthenticated calls will only return public photos. * * Implements flickr.photos.search (0.11) * * Flickcurl 1.0: Added place_id for places API as announced 2008-01-11 * http://tech.groups.yahoo.com/group/yws-flickr/message/3688 * * See flickcurl_photos_search_params() for details on the the search * parameters. * * Ensure the @params object is propertly initialized to zeros/NULLs * or use flickcurl_search_params_init() to initialize this. * * Return value: an array of #flickcurl_photo pointers (may be length 0) or NULL on failure **/ flickcurl_photo** flickcurl_photos_search(flickcurl* fc, flickcurl_search_params* params) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = params->extras; list_params.per_page = params->per_page; list_params.page = params->page; photos_list = flickcurl_photos_search_params(fc, params, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photos_setContentType: * @fc: flickcurl context * @photo_id: The id of the photo to set the adultness of. * @content_type: The content type of the photo: 1 for Photo, 2 for Screenshot, and 3 for Other. * * Set the content type of a photo. * * Implements flickr.photos.setContentType (0.11) * * Return value: non-0 on failure **/ int flickcurl_photos_setContentType(flickcurl* fc, const char* photo_id, int content_type) { xmlDocPtr doc = NULL; int result = 1; char content_type_str[2]; flickcurl_init_params(fc, 1); if(!photo_id || !content_type) return 1; if(content_type <1 || content_type > 3) return 1; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(content_type_str, "%d", content_type); flickcurl_add_param(fc, "content_type", content_type_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.setContentType")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_setDates: * @fc: flickcurl context * @photo_id: The id of the photo to edit dates for. * @date_posted: The date the photo was uploaded to flickr as a unix time (or -1) * @date_taken: The date the photo was taken as a unix time (or -1) * @date_taken_granularity: The granularity of the date the photo was taken: 0 second, 4 month, 6 year (or -1) * * Set one or both of the dates for a photo. * * Implements flickr.photos.setDates (0.11) * * Return value: non-0 on failure **/ int flickcurl_photos_setDates(flickcurl* fc, const char* photo_id, int date_posted, int date_taken, int date_taken_granularity) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int result = 1; char date_posted_str[20]; char* date_taken_str = NULL; char date_taken_granularity_str[3]; flickcurl_init_params(fc, 1); if(!photo_id) return 1; /* Nothing to do */ if(date_posted <0 && date_taken <0 && date_taken_granularity <0) return 0; if(date_taken_granularity > 10) return 1; flickcurl_add_param(fc, "photo_id", photo_id); if(date_posted >= 0) { /* posted date is always a unix time */ sprintf(date_posted_str, "%d", date_posted); flickcurl_add_param(fc, "date_posted", date_posted_str); } if(date_taken >= 0) { /* taken date is always a SQL timestamp */ date_taken_str = flickcurl_unixtime_to_sqltimestamp(date_taken); flickcurl_add_param(fc, "date_taken", date_taken_str); } if(date_taken_granularity >= 0) { sprintf(date_taken_granularity_str, "%d", date_taken_granularity); flickcurl_add_param(fc, "date_taken_granularity", date_taken_granularity_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.setDates")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = 0; tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = 1; if(date_taken_str) free(date_taken_str); return result; } /** * flickcurl_photos_setMeta: * @fc: flickcurl context * @photo_id: The id of the photo to set information for. * @title: The title for the photo. * @description: The description for the photo. * * Set the meta information for a photo. * * Implements flickr.photos.setMeta (0.11) * * Return value: non-0 on failure **/ int flickcurl_photos_setMeta(flickcurl* fc, const char* photo_id, const char* title, const char* description) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photo_id || !title || !description) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "title", title); flickcurl_add_param(fc, "description", description); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.setMeta")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = 0; tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = 1; return result; } /** * flickcurl_photos_setPerms: * @fc: flickcurl context * @photo_id: The id of the photo to set permissions for. * @perms: The #flickcurl_perms photo permissions * * Set permissions for a photo. * * Implements flickr.photos.setPerms (0.11) * * Return value: non-0 on failure **/ int flickcurl_photos_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int result = 1; char is_public_str[2]; char is_friend_str[2]; char is_family_str[2]; char perm_comment_str[2]; char perm_addmeta_str[2]; flickcurl_init_params(fc, 1); if(!photo_id || !perms) return 1; if(perms->perm_comment <0 || perms->perm_comment >3) return 1; if(perms->perm_addmeta <0 || perms->perm_addmeta >3) return 1; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(is_public_str, "%d", (perms->is_public ? 1 : 0)); flickcurl_add_param(fc, "is_public", is_public_str); sprintf(is_friend_str, "%d", (perms->is_friend ? 1 : 0)); flickcurl_add_param(fc, "is_friend", is_friend_str); sprintf(is_family_str, "%d", (perms->is_family ? 1 : 0)); flickcurl_add_param(fc, "is_family", is_family_str); sprintf(perm_comment_str, "%d", perms->perm_comment); flickcurl_add_param(fc, "perm_comment", perm_comment_str); sprintf(perm_addmeta_str, "%d", perms->perm_addmeta); flickcurl_add_param(fc, "perm_addmeta", perm_addmeta_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.setPerms")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = 0; tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = 1; return result; } /** * flickcurl_photos_setSafetyLevel: * @fc: flickcurl context * @photo_id: The id of the photo to set the adultness of. * @safety_level: The safety level of the photo. 1 for Safe, 2 for Moderate, and 3 for Restricted (or <0 for no change) * @hidden: >0 to hide the photo from public searches. 0 to not. <0 for no change. * * Set the safety level of a photo. * * Implements flickr.photos.setSafetyLevel (0.11) * * Return value: non-0 on failure **/ int flickcurl_photos_setSafetyLevel(flickcurl* fc, const char* photo_id, int safety_level, int hidden) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int result = 1; char safety_level_str[2]; char hidden_str[2]; flickcurl_init_params(fc, 1); if(!photo_id) return 1; if(safety_level <= 0 && hidden <0) return 0; flickcurl_add_param(fc, "photo_id", photo_id); if(safety_level >0) { sprintf(safety_level_str, "%d", safety_level); flickcurl_add_param(fc, "safety_level", safety_level_str); } if(hidden >= 0) { sprintf(hidden_str, "%d", hidden ? 1 : 0); flickcurl_add_param(fc, "hidden", hidden_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.setSafetyLevel")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = 0; tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = 1; return result; } /** * flickcurl_photos_setTags: * @fc: flickcurl context * @photo_id: photo ID * @tags: all tags for the photo as a space-separated list * * Set the tags for a photo. * * Note that this replaces all existing tags with the @tags here. * * Implements flickr.photos.setTags (0.9) * * Return value: non-0 on failure */ int flickcurl_photos_setTags(flickcurl* fc, const char* photo_id, const char* tags) { xmlDocPtr doc = NULL; flickcurl_init_params(fc, 1); if(!photo_id || !tags) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "tags", tags); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.setTags")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; tidy: return fc->failed; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/shape.c��������������������������������������������������������������������������0000644�0001750�0001750�00000017402�12017272366�012405� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * shape.c - Flickr shape support calls * * Copyright (C) 2009, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_shape: * @shape: shape object * * Destructor for shape object */ void flickcurl_free_shape(flickcurl_shapedata *shape) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(shape, flickcurl_shapedata); if(shape->data) free(shape->data); if(shape->file_urls) { for(i = 0 ; i < shape->file_urls_count; i++) free(shape->file_urls[i]); free(shape->file_urls); } free(shape); } /** * flickcurl_free_shapes: * @shapes_object: shape object array * * Destructor for array of shape object */ void flickcurl_free_shapes(flickcurl_shapedata **shapes_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(shapes_object, flickcurl_shapedata_array); for(i = 0; shapes_object[i]; i++) flickcurl_free_shape(shapes_object[i]); free(shapes_object); } /* flickcurl_shapedata fields */ typedef enum { SHAPE_NONE = 0, /* shape->created */ SHAPE_CREATED, /* shape->alpha */ SHAPE_ALPHA, /* shape->points */ SHAPE_POINTS, /* shape->edges */ SHAPE_EDGES, /* shape->data */ SHAPE_DATA, /* shape->file_urls */ SHAPE_FILE_URL, /* shape->is_donuthole */ SHAPE_IS_DONUTHOLE, /* shape->has_donuthole */ SHAPE_HAS_DONUTHOLE } shape_field_type; #define SHAPE_FIELDS_TABLE_SIZE 34 /* * The XPaths here are relative, such as prefixed by /rsp/shape */ static struct { const xmlChar* xpath; shape_field_type shape_field; } shape_fields_table[SHAPE_FIELDS_TABLE_SIZE+1] = { { (const xmlChar*)"./@created", SHAPE_CREATED, } , { (const xmlChar*)"./@alpha", SHAPE_ALPHA } , { (const xmlChar*)"./@count_points", SHAPE_POINTS } , { (const xmlChar*)"./@count_edges", SHAPE_EDGES } , { (const xmlChar*)"./@is_donuthole", SHAPE_IS_DONUTHOLE } , { (const xmlChar*)"./@has_donuthole", SHAPE_HAS_DONUTHOLE } , { (const xmlChar*)"./polylines/.", /* special */ SHAPE_DATA, } , { (const xmlChar*)"./urls/shapefile", /* special */ SHAPE_FILE_URL, } , { NULL, SHAPE_NONE } }; /* get shapedata from value */ flickcurl_shapedata** flickcurl_build_shapes(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* shape_count_p) { flickcurl_shapedata** shapes = NULL; int nodes_count; int shape_count; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; int i; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); shapes = (flickcurl_shapedata**)calloc(sizeof(flickcurl_shapedata*), nodes_count+1); for(i = 0, shape_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; int expri; xmlXPathContextPtr xpathNodeCtx = NULL; flickcurl_shapedata* shape; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } shape = (flickcurl_shapedata*)calloc(sizeof(flickcurl_shapedata), 1); /* set up a new XPath context relative to the current node */ xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); xpathNodeCtx->node = node; for(expri = 0; shape_fields_table[expri].xpath; expri++) { shape_field_type shape_field = shape_fields_table[expri].shape_field; const xmlChar* shape_xpathExpr = shape_fields_table[expri].xpath; char *value = NULL; if(shape_field == SHAPE_DATA) { shape->data = flickcurl_xpath_eval_to_tree_string(fc, xpathNodeCtx, shape_xpathExpr, &shape->data_length); continue; } value = flickcurl_xpath_eval(fc, xpathNodeCtx, shape_xpathExpr); if(!value) continue; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "field %d with value: '%s'\n", (int)shape_field, value); #endif switch(shape_field) { case SHAPE_CREATED: shape->created = atoi(value); free(value); value = NULL; break; case SHAPE_ALPHA: shape->alpha = atof(value); free(value); value = NULL; break; case SHAPE_POINTS: shape->points = atoi(value); free(value); value = NULL; break; case SHAPE_EDGES: shape->edges = atoi(value); free(value); value = NULL; break; case SHAPE_IS_DONUTHOLE: shape->is_donuthole = atoi(value); free(value); value = NULL; break; case SHAPE_HAS_DONUTHOLE: shape->has_donuthole = atoi(value); free(value); value = NULL; break; case SHAPE_DATA: /* handled above */ break; case SHAPE_FILE_URL: if(1) { int size = shape->file_urls_count; char** shapefile_urls; shapefile_urls = (char**)calloc(size+1+1, sizeof(char*)); if(shapefile_urls) { if(size) memcpy(shapefile_urls, shape->file_urls, size * sizeof(char*)); shapefile_urls[size++] = value; shapefile_urls[size] = NULL; value = NULL; shape->file_urls_count++; free(shape->file_urls); shape->file_urls = shapefile_urls; } else fc->failed = 1; if(value) { free(value); value = NULL; } } break; case SHAPE_NONE: default: flickcurl_error(fc, "Unknown shape field %d", shape_field); fc->failed = 1; } if(fc->failed) goto shapestidy; } /* end for shape fields */ shapestidy: if(xpathNodeCtx) xmlXPathFreeContext(xpathNodeCtx); shapes[shape_count++] = shape; } /* for shapes */ if(shape_count_p) *shape_count_p = shape_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); if(fc->failed) { if(shapes) flickcurl_free_shapes(shapes); shapes = NULL; } return shapes; } flickcurl_shapedata* flickcurl_build_shape(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_shapedata** shapes; flickcurl_shapedata* result = NULL; shapes = flickcurl_build_shapes(fc, xpathCtx, xpathExpr, NULL); if(shapes) { result = shapes[0]; free(shapes); } return result; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/serializer.c���������������������������������������������������������������������0000644�0001750�0001750�00000053077�12017302525�013455� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * serializer.c - Triples from photo metadata * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /* Public namespaces */ #define DC_NS "http://purl.org/dc/elements/1.1/" #define DCTERMS_NS "http://purl.org/dc/terms/" /* predicates dc:creator dc:dateSubmitted dc:rights dc:modified dc:issued * dc:created dc:description dc:title */ #define FOAF_NS "http://xmlns.com/foaf/0.1/" /* predicates foaf:maker foaf:name foaf:nick * classes foaf:Person foaf:Image */ #define GEO_NS "http://www.w3.org/2003/01/geo/wgs84_pos#" /* predicates geo:lat geo:long */ #define RDFS_NS "http://www.w3.org/2000/01/rdf-schema#" /* predicates rdfs:label */ #define RDF_NS "http://www.w3.org/1999/02/22-rdf-syntax-ns#" /* predicates rdf:type */ #define XSD_NS "http://www.w3.org/2001/XMLSchema#" /* XSD datatypes xsd:boolean xsd:dateTime xsd:double xsd:integer */ /* Flickr terminology namespaces */ #define FLICKR_NS "http://machinetags.org/ns/Flickr#" /* predicates flickr:image flickr:video flickr:width flickr:height * classes flickr:Video */ #define PLACES_NS "http://machinetags.org/ns/Places#" /* predicates places:place places:type places:name places:id places:placeid * places:url * class places:Place */ /* Machine tag namespaces */ #define BLUE_NS "http://machinetags.org/ns/Blue#" #define CELL_NS "http://machinetags.org/ns/Cell#" #define DOPPLR_NS "http://machinetags.org/ns/Dopplr#" #define FILTR_NS "http://machinetags.org/ns/Filtr#" #define GEONAMES_NS "http://machinetags.org/ns/Geonames#" #define PH_NS "http://machinetags.org/ns/Ph#" #define UPCOMING_NS "http://machinetags.org/ns/Upcoming#" struct flickrdf_nspace_s { char* prefix; char* uri; size_t prefix_len; size_t uri_len; int seen; struct flickrdf_nspace_s* next; }; typedef struct flickrdf_nspace_s flickrdf_nspace; flickrdf_nspace namespace_table[] = { { (char*)"a", (char*)"http://www.w3.org/2000/10/annotation-ns" }, { (char*)"acl", (char*)"http://www.w3.org/2001/02/acls#" }, { (char*)"blue", (char*)BLUE_NS, }, { (char*)"cell", (char*)CELL_NS, }, { (char*)"dc", (char*)DC_NS }, { (char*)"dcterms", (char*)DCTERMS_NS }, { (char*)"dopplr", (char*)DOPPLR_NS }, { (char*)"exif", (char*)"http://nwalsh.com/rdf/exif#" }, { (char*)"exifi", (char*)"http://nwalsh.com/rdf/exif-intrinsic#" }, { (char*)"flickr", (char*)FLICKR_NS }, { (char*)"filtr", (char*)FILTR_NS, }, { (char*)"foaf", (char*)FOAF_NS }, { (char*)"geo", (char*)GEO_NS, }, { (char*)"geonames", (char*)GEONAMES_NS, }, { (char*)"i", (char*)"http://www.w3.org/2004/02/image-regions#" }, { (char*)"ph", (char*)PH_NS }, { (char*)"places", (char*)PLACES_NS, }, { (char*)"rdf", (char*)RDF_NS }, { (char*)"rdfs", (char*)RDFS_NS }, { (char*)"skos", (char*)"http://www.w3.org/2004/02/skos/core" }, { (char*)"upcoming", (char*)UPCOMING_NS }, { (char*)"xsd", (char*)XSD_NS, }, { NULL, NULL } }; #define FIELD_FLAGS_PERSON 1 #define FIELD_FLAGS_STRING 2 #define FIELD_FLAGS_SQL_DATE 4 #define FIELD_FLAGS_FLOAT 8 static struct { flickcurl_photo_field_type field; const char* nspace_uri; const char* name; int flags; } field_table[] = { /* dc:available -- date that the resource will become/did become available.*/ /* dc:dateSubmitted - Date of submission of resource (e.g. thesis, articles)*/ { PHOTO_FIELD_dateuploaded, DCTERMS_NS, "dateSubmitted" }, { PHOTO_FIELD_license, DCTERMS_NS, "rights" }, /* dc:modified - date on which the resource was changed. */ { PHOTO_FIELD_dates_lastupdate, DCTERMS_NS, "modified" }, /* dc:issued - date of formal issuance (e.g. publication of the resource */ { PHOTO_FIELD_dates_posted, DCTERMS_NS, "issued" }, /* dc:created - date of creation of the resource */ { PHOTO_FIELD_dates_taken, DCTERMS_NS, "created", FIELD_FLAGS_SQL_DATE }, { PHOTO_FIELD_description, DCTERMS_NS, "description" }, { PHOTO_FIELD_location_latitude, GEO_NS, "lat", FIELD_FLAGS_FLOAT }, { PHOTO_FIELD_location_longitude, GEO_NS, "long", FIELD_FLAGS_FLOAT }, { PHOTO_FIELD_owner_realname, FOAF_NS, "name", FIELD_FLAGS_PERSON }, { PHOTO_FIELD_owner_username, FOAF_NS, "nick", FIELD_FLAGS_PERSON }, { PHOTO_FIELD_title, DCTERMS_NS, "title" }, { PHOTO_FIELD_none, NULL, NULL } }; void flickcurl_serializer_init(void) { int i; for(i = 0; namespace_table[i].prefix != NULL; i++) { namespace_table[i].uri_len = strlen(namespace_table[i].uri); namespace_table[i].prefix_len = strlen(namespace_table[i].prefix); } } void flickcurl_serializer_terminate(void) { } /** * flickcurl_new_serializer: * @fc: flickcurl object * @data: user data for factory methods * @factory: triples serializer factory * * Create a new triples serializer for generating a RDF triples * representation of a Flickr photo. * * The factory must contain the methods and the correct factory API * version as described in #flickcurl_serializer_factory * * Return value: a new serializer object or NULL on failure * */ flickcurl_serializer* flickcurl_new_serializer(flickcurl* fc, void* data, flickcurl_serializer_factory* factory) { flickcurl_serializer* serializer; if(!factory || (factory && factory->version != 1)) return NULL; serializer = (flickcurl_serializer*)malloc(sizeof(flickcurl_serializer)); if(!serializer) return NULL; serializer->fc = fc; serializer->data = data; serializer->factory = factory; return serializer; } /** * flickcurl_free_serializer: * @serializer: serializer object * * Destructor for triples serializer object */ void flickcurl_free_serializer(flickcurl_serializer* serializer) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(serializer, flickcurl_serializer); free(serializer); } static flickrdf_nspace* nspace_add_new(flickrdf_nspace* list, char* prefix, char *uri) { flickrdf_nspace* ns; ns = (flickrdf_nspace*)malloc(sizeof(flickrdf_nspace)); ns->prefix_len = strlen(prefix); ns->uri_len = strlen(uri); ns->prefix = (char*)malloc(ns->prefix_len + 1); memcpy(ns->prefix, prefix, ns->prefix_len + 1); ns->uri = (char*)malloc(ns->uri_len + 1); memcpy(ns->uri, uri, ns->uri_len + 1); ns->next = list; return ns; } static flickrdf_nspace* nspace_add_if_not_declared(flickrdf_nspace* list, const char* prefix, const char* nspace_uri) { int n; flickrdf_nspace* ns; size_t prefix_len = prefix ? strlen(prefix) : 0; size_t uri_len = nspace_uri ? strlen(nspace_uri) : 0; for(ns = list; ns; ns = ns->next) { if(nspace_uri && ns->uri_len == uri_len && !strcmp(ns->uri, nspace_uri)) break; if(prefix && ns->prefix_len == prefix_len && !strcmp(ns->prefix, prefix)) break; } if(ns) return list; ns = NULL; for(n = 0; namespace_table[n].uri; n++) { if(prefix && namespace_table[n].prefix_len == prefix_len && !strcmp(namespace_table[n].prefix, prefix)) { ns = &namespace_table[n]; break; } if(nspace_uri && namespace_table[n].uri_len == uri_len && !strcmp(namespace_table[n].uri, nspace_uri)) { ns = &namespace_table[n]; break; } } if(!ns) return list; /* ns was not found, copy it and add it to the list */ return nspace_add_new(list, ns->prefix, ns->uri); } static flickrdf_nspace* nspace_get_by_prefix(flickrdf_nspace* list, const char *prefix) { flickrdf_nspace* ns; size_t prefix_len = strlen(prefix); for(ns = list; ns; ns = ns->next) { if(ns->prefix_len == prefix_len && !strcmp(ns->prefix, prefix)) break; } return ns; } #if FLICKCURL_DEBUG > 1 static void print_nspaces(FILE* fh, const char* label, flickrdf_nspace* list) { flickrdf_nspace* ns; for(ns = list; ns; ns = ns->next) { fprintf(fh, "%s: Declaring namespace prefix %s URI %s\n", label, (ns->prefix ? ns->prefix : ":"), (ns->uri ? ns->uri : "\"\"")); } } #endif static void free_nspaces(flickrdf_nspace* list) { flickrdf_nspace* next; for(; list; list = next) { next = list->next; if(list->prefix) free(list->prefix); free(list->uri); free(list); } } /** * flickcurl_serialize_photo: * @fcs: flickcurl serializer object * @photo: photo object * * Serialize photo description to RDF triples * * Return value: non-0 on failure */ int flickcurl_serialize_photo(flickcurl_serializer* fcs, flickcurl_photo* photo) { int i; int need_person = 0; int need_foaf = 0; int need_rdfs = 0; flickrdf_nspace* nspaces = NULL; flickrdf_nspace* ns; flickcurl_serializer_factory* fsf = fcs->factory; flickcurl* fc = fcs->fc; #if FLICKCURL_DEBUG > 1 FILE* fh = stderr; const char* label = "libflickcurl"; #endif flickcurl_size** sizes = NULL; if(!photo) return 1; /* Always add XSD, RDF and Flickr namespaces */ nspaces = nspace_add_if_not_declared(nspaces, NULL, XSD_NS); nspaces = nspace_add_if_not_declared(nspaces, "rdf", RDF_NS); nspaces = nspace_add_if_not_declared(nspaces, "flickr", FLICKR_NS); if(photo->place) nspaces = nspace_add_if_not_declared(nspaces, "places", PLACES_NS); sizes = flickcurl_photos_getSizes(fc, photo->id); if(sizes) { need_foaf = 1; need_rdfs = 1; } /* mark namespaces used in fields */ for(i = PHOTO_FIELD_FIRST; i <= PHOTO_FIELD_LAST; i++) { flickcurl_photo_field_type field = (flickcurl_photo_field_type)i; flickcurl_field_value_type datatype = photo->fields[field].type; int f; if(datatype == VALUE_TYPE_NONE) continue; for(f = 0; field_table[f].field != PHOTO_FIELD_none; f++) { if(field_table[f].field != field) continue; if(field_table[f].flags & FIELD_FLAGS_PERSON) need_person = 1; nspaces = nspace_add_if_not_declared(nspaces, NULL, field_table[f].nspace_uri); break; } } /* in tags look for xmlns:PREFIX = "URI" otherwise look for PREFIX: */ for(i = 0; i < photo->tags_count; i++) { char* prefix; char *p; flickcurl_tag* tag = photo->tags[i]; if(!strncmp(tag->raw, "xmlns:", 6)) { prefix = &tag->raw[6]; for(p = prefix; *p && *p != '='; p++) ; if(!*p) /* "xmlns:PREFIX" seen */ continue; /* "xmlns:PREFIX = " seen */ *p = '\0'; nspaces = nspace_add_new(nspaces, prefix, p+1); #if FLICKCURL_DEBUG > 1 fprintf(fh, "%s: Found declaration of namespace prefix %s uri %s in tag '%s'\n", label, prefix, p+1, tag->raw); #endif *p = '='; continue; } prefix = tag->raw; for(p = prefix; *p && *p != ':'; p++) ; if(!*p) /* "PREFIX:" seen */ continue; *p = '\0'; nspaces = nspace_add_if_not_declared(nspaces, prefix, NULL); *p = ':'; } if(need_person) { need_foaf = 1; nspaces = nspace_add_if_not_declared(nspaces, "dc", DCTERMS_NS); } if(need_foaf) nspaces = nspace_add_if_not_declared(nspaces, "foaf", FOAF_NS); if(need_rdfs) nspaces = nspace_add_if_not_declared(nspaces, "rdfs", RDFS_NS); #if FLICKCURL_DEBUG > 1 print_nspaces(fh, label, nspaces); #endif /* generate seen namespace declarations */ for(ns = nspaces; ns; ns = ns->next) fsf->emit_namespace(fcs->data, ns->prefix, ns->prefix_len, ns->uri, ns->uri_len); if(need_person) { fsf->emit_triple(fcs->data, photo->uri, FLICKCURL_TERM_TYPE_RESOURCE, DCTERMS_NS, "creator", "person", FLICKCURL_TERM_TYPE_BLANK, NULL); fsf->emit_triple(fcs->data, "person", FLICKCURL_TERM_TYPE_BLANK, RDF_NS, "type", FOAF_NS "Person", FLICKCURL_TERM_TYPE_RESOURCE, NULL); fsf->emit_triple(fcs->data, "person", FLICKCURL_TERM_TYPE_BLANK, FOAF_NS, "maker", photo->uri, FLICKCURL_TERM_TYPE_RESOURCE, NULL); } /* generate triples from fields */ for(i = PHOTO_FIELD_FIRST; i <= PHOTO_FIELD_LAST; i++) { flickcurl_photo_field_type field = (flickcurl_photo_field_type)i; flickcurl_field_value_type datatype = photo->fields[field].type; int f; if(datatype == VALUE_TYPE_NONE) continue; for(f = 0; field_table[f].field != PHOTO_FIELD_none; f++) { const char* datatype_uri = NULL; char* object = NULL; char* new_object = NULL; int type= FLICKCURL_TERM_TYPE_LITERAL; if(field_table[f].field != field) continue; #if FLICKCURL_DEBUG > 1 fprintf(fh, "%s: field %s (%d) with %s value: '%s' has predicate %s%s\n", label, flickcurl_get_photo_field_label(field), field, flickcurl_get_field_value_type_label(datatype), photo->fields[field].string, field_table[f].nspace_uri, field_table[f].name); #endif object = photo->fields[field].string; if(field_table[f].flags & FIELD_FLAGS_STRING) { datatype = VALUE_TYPE_STRING; } else if(field_table[f].flags & FIELD_FLAGS_FLOAT) { datatype = VALUE_TYPE_FLOAT; } else if(field_table[f].flags & FIELD_FLAGS_SQL_DATE) { new_object = flickcurl_sqltimestamp_to_isotime(object); object = new_object; datatype = VALUE_TYPE_DATETIME; } if(field == PHOTO_FIELD_license) { flickcurl_license* license; license = flickcurl_photos_licenses_getInfo_by_id(fc, photo->fields[field].integer); if(!license) continue; if(license->url) { datatype = VALUE_TYPE_URI; object = license->url; } else { datatype = VALUE_TYPE_STRING; object = license->name; } } switch(datatype) { case VALUE_TYPE_BOOLEAN: datatype_uri= XSD_NS "boolean"; break; case VALUE_TYPE_DATETIME: datatype_uri= XSD_NS "dateTime"; break; case VALUE_TYPE_FLOAT: datatype_uri= XSD_NS "double"; break; case VALUE_TYPE_INTEGER: datatype_uri= XSD_NS "integer"; break; case VALUE_TYPE_STRING: break; case VALUE_TYPE_URI: type= FLICKCURL_TERM_TYPE_RESOURCE; break; case VALUE_TYPE_NONE: case VALUE_TYPE_PHOTO_ID: case VALUE_TYPE_PHOTO_URI: case VALUE_TYPE_UNIXTIME: case VALUE_TYPE_PERSON_ID: case VALUE_TYPE_MEDIA_TYPE: case VALUE_TYPE_TAG_STRING: case VALUE_TYPE_COLLECTION_ID: case VALUE_TYPE_ICON_PHOTOS: default: break; } if(field_table[f].flags & FIELD_FLAGS_PERSON) fsf->emit_triple(fcs->data, "person", FLICKCURL_TERM_TYPE_BLANK, field_table[f].nspace_uri, field_table[f].name, object, type, datatype_uri); else fsf->emit_triple(fcs->data, photo->uri, FLICKCURL_TERM_TYPE_RESOURCE, field_table[f].nspace_uri, field_table[f].name, object, type, datatype_uri); if(new_object) free(new_object); break; } } /* generate triples from tags */ for(i = 0; i < photo->tags_count; i++) { flickcurl_tag* tag = photo->tags[i]; char* prefix; char *p; char *f; char *v; size_t value_len; prefix = &tag->raw[0]; if(!strncmp(prefix, "xmlns:", 6)) continue; for(p = prefix; *p && *p != ':'; p++) ; if(!*p) /* No ':' found */ continue; /* ":" seen */ *p = '\0'; f = p+1; for(v = f; *v && *v != '='; v++) ; if(!*v) /* "prefix:name" seen with no value */ continue; /* zap = */ *v++ = '\0'; value_len = strlen(v); if(*v == '"') { v++; if(v[value_len-1] == '"') v[--value_len] = '\0'; } ns = nspace_get_by_prefix(nspaces, prefix); #if FLICKCURL_DEBUG > 1 fprintf(fh, "%s: tag with prefix '%s' field '%s' value '%s' namespace uri %s\n", label, prefix, f, v, ns ? ns->uri : "(No namespace)"); #endif if(!ns) continue; fsf->emit_triple(fcs->data, photo->uri, FLICKCURL_TERM_TYPE_RESOURCE, ns->uri, f, v, FLICKCURL_TERM_TYPE_LITERAL, NULL); } /* generate triples from places */ if(photo->place) { char place_bnode[7] = {'p', 'l', 'a', 'c', 'e', 'X', '\0'}; flickcurl_place* place = photo->place; for(i = (int)0; i <= (int)FLICKCURL_PLACE_LAST; i++) { char* name = place->names[i]; char* id = place->ids[i]; char* url = place->urls[i]; char* woe_id = place->woe_ids[i]; if(!name && !id && !url && !woe_id) continue; place_bnode[5] = '0'+i; fsf->emit_triple(fcs->data, photo->uri, FLICKCURL_TERM_TYPE_RESOURCE, PLACES_NS, "place", place_bnode, FLICKCURL_TERM_TYPE_BLANK, NULL); fsf->emit_triple(fcs->data, place_bnode, FLICKCURL_TERM_TYPE_BLANK, RDF_NS, "type", PLACES_NS "Place", FLICKCURL_TERM_TYPE_RESOURCE, NULL); fsf->emit_triple(fcs->data, place_bnode, FLICKCURL_TERM_TYPE_BLANK, PLACES_NS, "type", flickcurl_get_place_type_label((flickcurl_place_type)i), FLICKCURL_TERM_TYPE_LITERAL, NULL); if(name) fsf->emit_triple(fcs->data, place_bnode, FLICKCURL_TERM_TYPE_BLANK, PLACES_NS, "name", name, FLICKCURL_TERM_TYPE_LITERAL, NULL); if(id) fsf->emit_triple(fcs->data, place_bnode, FLICKCURL_TERM_TYPE_BLANK, PLACES_NS, "id", id, FLICKCURL_TERM_TYPE_LITERAL, NULL); if(woe_id) fsf->emit_triple(fcs->data, place_bnode, FLICKCURL_TERM_TYPE_BLANK, PLACES_NS, "placeid", woe_id, FLICKCURL_TERM_TYPE_LITERAL, NULL); if(url) fsf->emit_triple(fcs->data, place_bnode, FLICKCURL_TERM_TYPE_BLANK, PLACES_NS, "url", url, FLICKCURL_TERM_TYPE_RESOURCE, NULL); } } /* generate triples from sizes */ if(sizes) { for(i = 0; sizes[i]; i++) { flickcurl_size* size = sizes[i]; char buf[10]; int is_photo; const char* sizePredicate; const char* sizeClass; is_photo = (!strcmp(size->media, "photo")); sizePredicate = is_photo ? "photo" : "video"; sizeClass = is_photo ? FOAF_NS "Image" : FLICKR_NS "Video"; fsf->emit_triple(fcs->data, photo->uri, FLICKCURL_TERM_TYPE_RESOURCE, FLICKR_NS, sizePredicate, size->source, FLICKCURL_TERM_TYPE_RESOURCE, NULL); fsf->emit_triple(fcs->data, size->source, FLICKCURL_TERM_TYPE_RESOURCE, RDF_NS, "type", sizeClass, FLICKCURL_TERM_TYPE_RESOURCE, NULL); if(size->label) fsf->emit_triple(fcs->data, size->source, FLICKCURL_TERM_TYPE_RESOURCE, RDFS_NS, "label", size->label, FLICKCURL_TERM_TYPE_LITERAL, NULL); sprintf(buf, "%d", size->width); fsf->emit_triple(fcs->data, size->source, FLICKCURL_TERM_TYPE_RESOURCE, FLICKR_NS, "width", buf, FLICKCURL_TERM_TYPE_LITERAL, XSD_NS "integer"); sprintf(buf, "%d", size->height); fsf->emit_triple(fcs->data, size->source, FLICKCURL_TERM_TYPE_RESOURCE, FLICKR_NS, "height", buf, FLICKCURL_TERM_TYPE_LITERAL, XSD_NS "integer"); } flickcurl_free_sizes(sizes); } if(nspaces) free_nspaces(nspaces); if(fsf->emit_finish) fsf->emit_finish(fcs->data); return 0; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/test-api.c�����������������������������������������������������������������������0000644�0001750�0001750�00000006747�12157645243�013050� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * test-api.c - Flickr flickr.test.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_test_echo: * @fc: flickcurl context * @key: test key * @value: test value * * A testing method which echo's all parameters back in the response. * * Actually prints the returned byte count to stderr. * * Implements flickr.test.echo (0.5) * * Return value: non-0 on failure **/ int flickcurl_test_echo(flickcurl* fc, const char* key, const char* value) { xmlDocPtr doc = NULL; int rc = 0; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, key, value); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.test.echo")) { rc = 1; goto tidy; } doc = flickcurl_invoke(fc); if(!doc) { rc = 1; goto tidy; } fprintf(stderr, "Flickr echo returned %d bytes\n", fc->total_bytes); tidy: return rc; } /** * flickcurl_test_login: * @fc: flickcurl context * * A testing method which checks if the caller is logged in then * returns their username. * * Implements flickr.test.login (1.0) * * Return value: username or NULL on failure **/ char* flickcurl_test_login(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* username = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.test.login")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } username = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/user/username"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) username = NULL; return username; } /** * flickcurl_test_null: * @fc: flickcurl context * * Null test * * Implements flickr.test.null (1.0) * * Return value: non-0 on failure **/ int flickcurl_test_null(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.test.null")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); return fc->failed; } �������������������������flickcurl-1.25/src/method.c�������������������������������������������������������������������������0000644�0001750�0001750�00000007332�12017272366�012566� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * method.c - Flickcurl method functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_method: * @method: method object * * Destructor for method object */ void flickcurl_free_method(flickcurl_method *method) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(method, flickcurl_method); if(method->name) free(method->name); if(method->description) free(method->description); if(method->response) free(method->response); if(method->explanation) free(method->explanation); for(i = 0; i < method->args_count; i++) flickcurl_free_arg(method->args[i]); free(method); } typedef enum { METHOD_FIELD_name, METHOD_FIELD_needslogin, METHOD_FIELD_description, METHOD_FIELD_response, METHOD_FIELD_explanation, METHOD_FIELD_LAST = METHOD_FIELD_explanation } flickcurl_method_field_type; static struct { const xmlChar* xpath; flickcurl_method_field_type field; } method_fields_table[METHOD_FIELD_LAST + 3] = { { (const xmlChar*)"/rsp/method/@name", METHOD_FIELD_name } , { (const xmlChar*)"/rsp/method/@needslogin", METHOD_FIELD_needslogin } , { (const xmlChar*)"/rsp/method/description", METHOD_FIELD_description } , { (const xmlChar*)"/rsp/method/response", METHOD_FIELD_response } , { (const xmlChar*)"/rsp/method/explanation", METHOD_FIELD_explanation, } , { NULL, (flickcurl_method_field_type)0 } }; flickcurl_method* flickcurl_build_method(flickcurl* fc, xmlXPathContextPtr xpathCtx) { int expri; flickcurl_method* method = NULL; method = (flickcurl_method*)calloc(sizeof(flickcurl_method), 1); for(expri = 0; method_fields_table[expri].xpath; expri++) { char *string_value = flickcurl_xpath_eval(fc, xpathCtx, method_fields_table[expri].xpath); switch(method_fields_table[expri].field) { case METHOD_FIELD_name: method->name = string_value; break; case METHOD_FIELD_needslogin: method->needslogin = atoi(string_value); break; case METHOD_FIELD_description: method->description = string_value; break; case METHOD_FIELD_response: method->response = string_value; break; case METHOD_FIELD_explanation: method->explanation = string_value; break; default: abort(); } if(fc->failed) goto tidy; } /* As of 2007-04-15 - the response is different from the docs * There is no /method/arguments element */ method->args = flickcurl_build_args(fc, xpathCtx, (xmlChar*)"/rsp/arguments/argument", &method->args_count); tidy: if(fc->failed) { if(method) free(method); method = NULL; } return method; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/members.c������������������������������������������������������������������������0000644�0001750�0001750�00000010626�12017302525�012727� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * members.c - Flickcurl method member functions * * Copyright (C) 2009, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_member: * @member_object: member object * * Destructor for member object */ void flickcurl_free_member(flickcurl_member *member_object) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(member_object, flickcurl_member); if(member_object->nsid) free(member_object->nsid); if(member_object->username) free(member_object->username); free(member_object); } /** * flickcurl_free_members: * @members_object: member object array * * Destructor for array of member object */ void flickcurl_free_members(flickcurl_member **members_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(members_object, flickcurl_member); for(i = 0; members_object[i]; i++) flickcurl_free_member(members_object[i]); free(members_object); } flickcurl_member** flickcurl_build_members(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* member_count_p) { flickcurl_member** members = NULL; int nodes_count; int member_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do members */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); members = (flickcurl_member**)calloc(sizeof(flickcurl_member*), nodes_count+1); for(i = 0, member_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_member* member_object; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } member_object = (flickcurl_member*)calloc(sizeof(flickcurl_member), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "nsid")) member_object->nsid = attr_value; else if(!strcmp(attr_name, "username")) member_object->username = attr_value; else if(!strcmp(attr_name, "iconserver")) { member_object->iconserver = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "iconfarm")) { member_object->iconserver = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "membertype")) { member_object->member_type = atoi((const char*)attr_value); free(attr_value); } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "member: NSID %s username %s iconserver %d iconfarm %d member type %d\n", member_object->nsid, member_object->username, member_object->iconserver, member_object->iconfarm, member_object->member_type); #endif members[member_count++] = member_object; } /* for nodes */ if(member_count_p) *member_count_p = member_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return members; } ����������������������������������������������������������������������������������������������������������flickcurl-1.25/src/flickcurl.h����������������������������������������������������������������������0000644�0001750�0001750�00000253731�12210457652�013275� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * flickcurl.h - Flickcurl API * * Copyright (C) 2007-2013, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #ifndef FLICKCURL_H #define FLICKCURL_H #ifdef __cplusplus extern "C" { #endif /* needed for xmlDocPtr */ #include <libxml/tree.h> /** * FLICKCURL_API: * * Macro for wrapping API function call declarations. * */ #ifndef FLICKCURL_API # ifdef WIN32 # ifdef __GNUC__ # undef _declspec # define _declspec(x) __declspec(x) # endif # ifdef FLICKCURL_STATIC # define FLICKCURL_API # else # ifdef FLICKCURL_INTERNAL # define FLICKCURL_API _declspec(dllexport) # else # define FLICKCURL_API _declspec(dllimport) # endif # endif # else # define FLICKCURL_API # endif #endif /* Use gcc 3.1+ feature to allow marking of deprecated API calls. * This gives a warning during compiling. */ #if ( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3 #ifdef __APPLE_CC__ /* OSX gcc cpp-precomp is broken */ #define FLICKCURL_DEPRECATED #else #define FLICKCURL_DEPRECATED __attribute__((deprecated)) #endif #else #define FLICKCURL_DEPRECATED #endif /** * flickcurl_field_value_type: * @VALUE_TYPE_UNIXTIME: a unixtime * @VALUE_TYPE_BOOLEAN: boolean * @VALUE_TYPE_DATETIME: date time * @VALUE_TYPE_FLOAT: floating point number * @VALUE_TYPE_INTEGER: integer * @VALUE_TYPE_STRING: string * @VALUE_TYPE_URI: URI * @VALUE_TYPE_PERSON_ID: person ID * @VALUE_TYPE_PHOTO_ID: internal * @VALUE_TYPE_PHOTO_URI: internal * @VALUE_TYPE_MEDIA_TYPE: internal * @VALUE_TYPE_NONE: internal * @VALUE_TYPE_TAG_STRING: internal * @VALUE_TYPE_COLLECTION_ID: internal * @VALUE_TYPE_ICON_PHOTOS: internal * @VALUE_TYPE_LAST: internal offset to last in enum list * * Field data types */ typedef enum { VALUE_TYPE_NONE, /* empty field */ VALUE_TYPE_PHOTO_ID, /* internal */ VALUE_TYPE_PHOTO_URI, /* internal */ VALUE_TYPE_UNIXTIME, VALUE_TYPE_BOOLEAN, VALUE_TYPE_DATETIME, VALUE_TYPE_FLOAT, VALUE_TYPE_INTEGER, VALUE_TYPE_STRING, VALUE_TYPE_URI, VALUE_TYPE_PERSON_ID, /* internal */ VALUE_TYPE_MEDIA_TYPE, /* internal */ VALUE_TYPE_TAG_STRING, /* internal */ VALUE_TYPE_COLLECTION_ID, /* internal */ VALUE_TYPE_ICON_PHOTOS, /* internal */ VALUE_TYPE_LAST = VALUE_TYPE_ICON_PHOTOS } flickcurl_field_value_type; /** * flickcurl_photo_field_type: * @PHOTO_FIELD_dateuploaded: date uploaded * @PHOTO_FIELD_farm: farm number * @PHOTO_FIELD_isfavorite: is favorite boolean * @PHOTO_FIELD_license: license * @PHOTO_FIELD_originalformat: original format * @PHOTO_FIELD_rotation: rotation * @PHOTO_FIELD_server: server * @PHOTO_FIELD_dates_lastupdate: last update date * @PHOTO_FIELD_dates_posted: posted date * @PHOTO_FIELD_dates_taken: taken date * @PHOTO_FIELD_dates_takengranularity: taken granularity * @PHOTO_FIELD_description: description * @PHOTO_FIELD_editability_canaddmeta: can add metadata boolean * @PHOTO_FIELD_editability_cancomment: can comment boolean * @PHOTO_FIELD_geoperms_iscontact: geo perms are for contacts * @PHOTO_FIELD_geoperms_isfamily: geo perms are for family * @PHOTO_FIELD_geoperms_isfriend: geo perms are for frind * @PHOTO_FIELD_geoperms_ispublic: geo perms are for public * @PHOTO_FIELD_location_accuracy: location accuracy * @PHOTO_FIELD_location_latitude: location latitude * @PHOTO_FIELD_location_longitude: location longitude * @PHOTO_FIELD_owner_location: owner location * @PHOTO_FIELD_owner_nsid: owner NSID * @PHOTO_FIELD_owner_realname: owner real name * @PHOTO_FIELD_owner_username: owner user name * @PHOTO_FIELD_title: title * @PHOTO_FIELD_visibility_isfamily: visibility is for family * @PHOTO_FIELD_visibility_isfriend: visibility is for friend * @PHOTO_FIELD_visibility_ispublic: visibility is for public * @PHOTO_FIELD_secret: photo secret * @PHOTO_FIELD_originalsecret: photo original secret * @PHOTO_FIELD_location_neighbourhood: location neighbourhood * @PHOTO_FIELD_location_neighborhood: deprecated * @PHOTO_FIELD_location_locality: location locality * @PHOTO_FIELD_location_county: location county * @PHOTO_FIELD_location_region: location region * @PHOTO_FIELD_location_country: location country * @PHOTO_FIELD_location_placeid: location place ID * @PHOTO_FIELD_neighbourhood_placeid: neighborhood place ID * @PHOTO_FIELD_neighborhood_placeid: dprecated * @PHOTO_FIELD_locality_placeid: locality place ID * @PHOTO_FIELD_county_placeid: county place ID * @PHOTO_FIELD_region_placeid: region place ID * @PHOTO_FIELD_country_placeid: country place ID * @PHOTO_FIELD_location_woeid: location WOE ID * @PHOTO_FIELD_neighbourhood_woeid: neighborhood WOE ID * @PHOTO_FIELD_neighborhood_woeid: deprecated * @PHOTO_FIELD_locality_woeid: locality WOE ID * @PHOTO_FIELD_county_woeid: county WOE ID * @PHOTO_FIELD_region_woeid: region WOE ID * @PHOTO_FIELD_country_woeid: country WOE ID * @PHOTO_FIELD_usage_candownload: can download * @PHOTO_FIELD_usage_canblog: can blog * @PHOTO_FIELD_usage_canprint: can print * @PHOTO_FIELD_owner_iconserver: server of owner's icon * @PHOTO_FIELD_owner_iconfarm: farm of owner's icon * @PHOTO_FIELD_original_width: original photo width * @PHOTO_FIELD_original_height: original photo height * @PHOTO_FIELD_views: number of photo views * @PHOTO_FIELD_comments: number of photo comments * @PHOTO_FIELD_favorites: number of photo favorites * @PHOTO_FIELD_gallery_comment: comment on the photo when used in a gallery * @PHOTO_FIELD_none: internal * @PHOTO_FIELD_FIRST: internal offset to first in enum list * @PHOTO_FIELD_LAST: internal offset to last in enum list * * Fields of a flickcurl_photo* */ typedef enum { PHOTO_FIELD_none, PHOTO_FIELD_dateuploaded, PHOTO_FIELD_farm, PHOTO_FIELD_isfavorite, PHOTO_FIELD_license, PHOTO_FIELD_originalformat, PHOTO_FIELD_rotation, PHOTO_FIELD_server, PHOTO_FIELD_dates_lastupdate, PHOTO_FIELD_dates_posted, PHOTO_FIELD_dates_taken, PHOTO_FIELD_dates_takengranularity, PHOTO_FIELD_description, PHOTO_FIELD_editability_canaddmeta, PHOTO_FIELD_editability_cancomment, PHOTO_FIELD_geoperms_iscontact, PHOTO_FIELD_geoperms_isfamily, PHOTO_FIELD_geoperms_isfriend, PHOTO_FIELD_geoperms_ispublic, PHOTO_FIELD_location_accuracy, PHOTO_FIELD_location_latitude, PHOTO_FIELD_location_longitude, PHOTO_FIELD_owner_location, PHOTO_FIELD_owner_nsid, PHOTO_FIELD_owner_realname, PHOTO_FIELD_owner_username, PHOTO_FIELD_title, PHOTO_FIELD_visibility_isfamily, PHOTO_FIELD_visibility_isfriend, PHOTO_FIELD_visibility_ispublic, PHOTO_FIELD_secret, PHOTO_FIELD_originalsecret, PHOTO_FIELD_location_neighbourhood, PHOTO_FIELD_location_neighborhood = PHOTO_FIELD_location_neighbourhood, PHOTO_FIELD_location_locality, PHOTO_FIELD_location_county, PHOTO_FIELD_location_region, PHOTO_FIELD_location_country, PHOTO_FIELD_location_placeid, PHOTO_FIELD_neighbourhood_placeid, PHOTO_FIELD_neighborhood_placeid = PHOTO_FIELD_neighbourhood_placeid, PHOTO_FIELD_locality_placeid, PHOTO_FIELD_county_placeid, PHOTO_FIELD_region_placeid, PHOTO_FIELD_country_placeid, PHOTO_FIELD_location_woeid, PHOTO_FIELD_neighbourhood_woeid, PHOTO_FIELD_neighborhood_woeid = PHOTO_FIELD_neighbourhood_woeid, PHOTO_FIELD_locality_woeid, PHOTO_FIELD_county_woeid, PHOTO_FIELD_region_woeid, PHOTO_FIELD_country_woeid, PHOTO_FIELD_usage_candownload, PHOTO_FIELD_usage_canblog, PHOTO_FIELD_usage_canprint, PHOTO_FIELD_owner_iconserver, PHOTO_FIELD_owner_iconfarm, PHOTO_FIELD_original_width, PHOTO_FIELD_original_height, PHOTO_FIELD_views, PHOTO_FIELD_comments, PHOTO_FIELD_favorites, PHOTO_FIELD_gallery_comment, PHOTO_FIELD_FIRST = PHOTO_FIELD_dateuploaded, PHOTO_FIELD_LAST = PHOTO_FIELD_gallery_comment } flickcurl_photo_field_type; /** * flickcurl: * * Flickcurl session object created by flickcurl_new() and destroyed * by flickcurl_free() */ typedef struct flickcurl_s flickcurl; /* Forward structure references */ struct flickcurl_s; struct flickcurl_photo_s; struct flickcurl_shapedata_s; /** * flickcurl_arg: * @name: Argument name * @optional: boolean flag (non-0 true) if argument is optional * @description: description of argument (HTML) * * An API method argument. */ typedef struct flickcurl_arg_s { char* name; int optional; char *description; } flickcurl_arg; /** * flickcurl_method: * @name: Method name * @needslogin: boolean flag (non-0 true) if method requires login * @description: description of method * @response: example response (HTML) * @explanation: explanation of example response or NULL if missing * @args: method arguments * @args_count: number of arguments, may be 0 * * An API method */ typedef struct flickcurl_method_s { char *name; int needslogin; char *description; char *response; char *explanation; /* argument list */ flickcurl_arg** args; int args_count; } flickcurl_method; /** * flickcurl_activity_event: * @type: activty event type * @id: ID * @user: user ID * @username: user name * @value: event value * @date_added: date added * * Comment or photo activity event */ typedef struct { char *type; /* comment or note */ char *id; char *user; char *username; char *value; int date_added; } flickcurl_activity_event; /** * FLICKCURL_MAX_ACTIVITY_EVENTS: * * Max number of activity events. */ #define FLICKCURL_MAX_ACTIVITY_EVENTS 20 /** * flickcurl_activity: * @type: activity type photoset or photo * @owner: owner NSID * @owner_name: owner name * @primary: primary * @id: photo id * @secret: photo secret * @server: photo server * @farm: photo farm * @comments_old: old comments count * @comments_new: new comments count * @notes_old: old notes count * @notes_new: new notes count * @views: views count * @comments: comments count * @photos: photos count * @faves: favourites count * @more: more boolean flag * @title: title of acitivty * @events: array of events associated with this actiivty * * Comments or photos item with activity */ typedef struct { char *type; /* photoset or photo */ char *owner; char *owner_name; char *primary; /* photo info: ID/secret/server/farm */ char *id; char *secret; int server; int farm; /* counts */ int comments_old; int comments_new; int notes_old; int notes_new; int views; int comments; int photos; int faves; /* flags */ int more; char* title; /* Array of events on this item */ flickcurl_activity_event* events[FLICKCURL_MAX_ACTIVITY_EVENTS+1]; } flickcurl_activity; /** * flickcurl_comment: * @id: comment ID * @author: author ID * @authorname: author name * @datecreate: date of creation * @permalink: permanent link of comment * @text: comment text * * A photo comment. */ typedef struct flickcurl_comment_s { char* id; char* author; char* authorname; int datecreate; char* permalink; char* text; } flickcurl_comment; /** * flickcurl_perms: * @is_public: non-0 to set the photo to public else private * @is_contact: non-0 to make the photo visible to contacts when private * @is_friend: non-0 to make the photo visible to friends when private * @is_family: non-0 to make the photo visible to family when private * @perm_comment: who can add comments to the photo and it's notes. one of: 0 nobody, 1 friends & family, 2 contacts, 3 everybody * @perm_addmeta: who can add notes and tags to the photo. one of: 0 nobody / just the owner, 1 friends & family, 2 contacts, 3 everybody * * Permissions as used by flickcurl_photos_getPerms() and * flickcurl_photos_setPerms() which use public, friend, family, * perm_comment and perm-addmeta. flickcurl_photos_geo_setPerms() uses * public, contact, friend and family. * * A Photo permission. */ typedef struct { int is_public; int is_contact; int is_friend; int is_family; int perm_comment; int perm_addmeta; } flickcurl_perms; /** * flickcurl_tag_namespace: * @name: Name * @usage_count: Number of uses of this namespace * @predicates_count: Number of predicates for this namespace * * A machine tags namespace */ typedef struct { char *name; int usage_count; int predicates_count; } flickcurl_tag_namespace; /** * flickcurl_tag_predicate_value: * @usage_count: Number of uses of this predicate-value pair * @predicate: Predicate name or NULL * @used_in_namespace_count: number of namespaces this pair is used in * @value: Value or NULL * * A machine tag predicate-value pair */ typedef struct { int usage_count; char *predicate; int used_in_namespace_count; char *value; } flickcurl_tag_predicate_value; /** * flickcurl_institution: * @nsid: NSID * @date_launch: Date launched in unix timestamp format * @name: Institution name * @urls: Array of related urls. * * Flickr Commons institution * */ typedef struct { char *nsid; int date_launch; char *name; char **urls; } flickcurl_institution; /** * flickcurl_institution_url_type: * @FLICKCURL_INSTITUTION_URL_NONE: internal * @FLICKCURL_INSTITUTION_URL_SITE: site URL * @FLICKCURL_INSTITUTION_URL_LICENSE: license URL * @FLICKCURL_INSTITUTION_URL_FLICKR: flickr photos page URL * @FLICKCURL_INSTITUTION_URL_LAST: internal offset to last in enum list * * Institution URL type */ typedef enum { FLICKCURL_INSTITUTION_URL_NONE = 0, FLICKCURL_INSTITUTION_URL_SITE, FLICKCURL_INSTITUTION_URL_LICENSE, FLICKCURL_INSTITUTION_URL_FLICKR, FLICKCURL_INSTITUTION_URL_LAST = FLICKCURL_INSTITUTION_URL_FLICKR } flickcurl_institution_url_type; /** * flickcurl_location: * @latitude: The latitude from -90 to 90 * @longitude: The longitude from -180 to 180 * @accuracy: Recorded accuracy level of the location. * World level is 1, Country is ~3, Region ~6, City ~11, Street * ~16. Current range is 1-16. (<0 for unknown accuracy) * * A Location in the world with an optional accuracy */ typedef struct { double latitude; double longitude; int accuracy; } flickcurl_location; /** * flickcurl_note: * @id: note identifier (per-photo) * @author: author (may be NULL) * @authorname: author real name (may be NULL) * @x: The left coordinate of the note * @y: The top coordinate of the note * @w: The width of the note * @h: The height of the note * @text: The description of the note * * A note attached to a rectangular area on a photo. * * A Photo Note. */ typedef struct flickcurl_note_s { int id; char* author; char* authorname; unsigned int x; unsigned int y; unsigned int w; unsigned int h; char* text; } flickcurl_note; /** * flickcurl_place_type: * @FLICKCURL_PLACE_LOCATION: a general location * @FLICKCURL_PLACE_NEIGHBOURHOOD: neighborhood (narrowest place) * @FLICKCURL_PLACE_NEIGHBORHOOD: deprecated * @FLICKCURL_PLACE_LOCALITY: locality * @FLICKCURL_PLACE_COUNTY: county * @FLICKCURL_PLACE_REGION: region * @FLICKCURL_PLACE_COUNTRY: country * @FLICKCURL_PLACE_CONTINENT: continent (widest place) (Flickcurl 1.8) * @FLICKCURL_PLACE_LAST: internal offset to last in enum list * * Place type */ typedef enum { FLICKCURL_PLACE_LOCATION, FLICKCURL_PLACE_NEIGHBOURHOOD, FLICKCURL_PLACE_NEIGHBORHOOD = FLICKCURL_PLACE_NEIGHBOURHOOD, FLICKCURL_PLACE_LOCALITY, FLICKCURL_PLACE_COUNTY, FLICKCURL_PLACE_REGION, FLICKCURL_PLACE_COUNTRY, FLICKCURL_PLACE_CONTINENT, FLICKCURL_PLACE_LAST = FLICKCURL_PLACE_CONTINENT } flickcurl_place_type; /** * flickcurl_place_type_info: * @type: type enum ID * @id: web service call ID * @name: name * * Place type information */ typedef struct { flickcurl_place_type type; int id; char *name; } flickcurl_place_type_info; /** * flickcurl_place: * @names: Array of place names * @ids: Array of place IDs * @urls: Array of place urls. * @type: Location type of index 0 (the location) usually * FLICKCURL_PLACE_LOCATION but may be wider * @woe_ids: Array of WOE IDs * @location: location for this place * @count: count of photos (when used for flickcurl_places_placesForUser() ) * @shapedata: DEPRECATED for @shape->data: XML string of <shapedata> element and content elements when present (or NULL) * @shapedata_length: DEPRECATED for @shape->data_length: size of @shapedate string * @shapefile_urls: DEPRECATED for @shape->file_urls: NULL-terminated array of pointers to shapefile URLs when present (or NULL) * @shapefile_urls_count: DEPRECATED for @shape->file_urls_count: number of entries in @shapefile_urls array * @shape: shapefile data (inline data and shapefile urls) * @timezone: timezone of location in 'zoneinfo' format such as “Europe/Parisâ€. * * A Place. * * Index 0 in the array is the location itself. flickcurl_get_place_type_label() * can give labels for the array indexes of type #flickcurl_place_type. * */ typedef struct { char* names[FLICKCURL_PLACE_LAST+1]; char* ids[FLICKCURL_PLACE_LAST+1]; char* urls[FLICKCURL_PLACE_LAST+1]; flickcurl_place_type type; char* woe_ids[FLICKCURL_PLACE_LAST+1]; flickcurl_location location; int count; /* DEPRECATED shapefile fields; now are pointers into @shape */ char* shapedata; size_t shapedata_length; char** shapefile_urls; int shapefile_urls_count; struct flickcurl_shapedata_s* shape; char* timezone; } flickcurl_place; /** * flickcurl_shapedata: * @created: creation date as a UNIX timestamp * @alpha: Alpha value * @points: Number of points * @edges: Number of edges * @data: XML string of <shapedata> element and content elements when present (or NULL) * @data_length: size of @shapedate string * @file_urls: NULL-terminated array of pointers to shapefile URLs when present (or NULL) * @file_urls_count: number of entries in @shapefile_urls array * @is_donuthole: non-0 if shape IS a donut (a hole) * @has_donuthole: non-0 if shape HAS a donut inside it and it is worth calling places.getShapeHistory on it / flickcurl_places_getShapeHistory() * * Shape data for a place. * **/ typedef struct flickcurl_shapedata_s { int created; double alpha; int points; int edges; char* data; size_t data_length; char** file_urls; int file_urls_count; int is_donuthole; int has_donuthole; } flickcurl_shapedata; /** * flickcurl_tag: * @photo: Associated photo object if any * @id: tag identifier * @author: author (may be NULL) * @authorname: author real name (may be NULL) * @raw: raw tag as user typed it (may be NULL, but if so @cooked must be not NULL) * @cooked: cooked tag (may be NULL, but if so @raw must not be NULL) * @machine_tag: boolean (non-0 true) if tag is a Machine Tag * @count: tag count in a histogram (or 0) * * A tag OR a posting of a tag about a photo by a user OR a tag in a histogram * * Most of these fields may be NULL, 0 for numbers * but not all. Either @raw or @cooked MUST appear. * * A Photo Tag. */ typedef struct flickcurl_tag_s { struct flickcurl_photo_s* photo; char* id; char* author; char* authorname; char* raw; char* cooked; int machine_tag; int count; } flickcurl_tag; /** * flickcurl_tag_cluster: * @count: number of tags * @tags: tags in this cluster * * A cluster (set) of tag names */ typedef struct { int count; char** tags; } flickcurl_tag_cluster; /** * flickcurl_tag_clusters: * @count: number of tag clusters * @clusters: tag clusters * * A set of clusters of tag names */ typedef struct { int count; flickcurl_tag_cluster** clusters; } flickcurl_tag_clusters; /** * flickcurl_photo_field: * @string: string field value * @integer: integer field value * @type: field type * * Field of a photo structure */ typedef struct { char* string; flickcurl_photo_field_type integer; flickcurl_field_value_type type; } flickcurl_photo_field; /** * flickcurl_video: * @ready: video is ready flag * @failed: video failed * @pending: video pending * @duration: video duration in seconds * @width: video width * @height: video height * * A video. * **/ typedef struct { int ready; int failed; int pending; int duration; int width; int height; } flickcurl_video; /** * flickcurl_photo: * @id: photo/video ID * @uri: photo/video page URI * @tags: array of tags (may be NULL) * @tags_count: size of tags array * @fields: metadata fields * @place: place * @video: video (may be NULL) * @media_type: "photo" or "video" * @notes: array of notes (may be NULL) * @notes_count: size of notes array * * A photo or video. * */ typedef struct flickcurl_photo_s { char *id; char *uri; flickcurl_tag** tags; int tags_count; flickcurl_photo_field fields[PHOTO_FIELD_LAST + 1]; flickcurl_place* place; flickcurl_video* video; char *media_type; flickcurl_note** notes; int notes_count; } flickcurl_photo; /** * flickcurl_license: * @id: license ID * @url: license URL * @name: license short name * * A photo license. * */ typedef struct { /* license id */ int id; /* license url or NULL if none */ char *url; /* license name */ char *name; } flickcurl_license; /** * flickcurl_contact: * @nsid: NSID * @username: user name * @iconserver: icon server * @realname: real name * @is_friend: is friend boolean * @is_family: is family boolean * @ignored: ignored * @uploaded: count of number of photos uploaded (for flickcurl_contacts_getListRecentlyUploaded() ) * * A contact. */ typedef struct flickcurl_contact_s { char *nsid; char *username; int iconserver; char *realname; int is_friend; int is_family; int ignored; int uploaded; } flickcurl_contact; /** * flickcurl_context_type: * @FLICKCURL_CONTEXT_SET: context is a set * @FLICKCURL_CONTEXT_POOL: context is a pool * @FLICKCURL_CONTEXT_PREV: context is a previous photo * @FLICKCURL_CONTEXT_NEXT: context is a next photo * @FLICKCURL_CONTEXT_NONE: internal * @FLICKCURL_CONTEXT_LAST: internal offset to last in enum list * * Types of photo context: relationship between photo and another item */ typedef enum { FLICKCURL_CONTEXT_NONE, FLICKCURL_CONTEXT_SET, /* other thing is a set */ FLICKCURL_CONTEXT_POOL, /* other thing is a pool */ FLICKCURL_CONTEXT_PREV, /* other thing is a previous photo */ FLICKCURL_CONTEXT_NEXT, /* other thing is a next photo */ FLICKCURL_CONTEXT_LAST = FLICKCURL_CONTEXT_NEXT } flickcurl_context_type; /** * flickcurl_context: * @type: Type of context * @id: ID * @secret: secret * @server: server * @farm: farm * @title: use title * @url: url * @thumb: thumbnail * * Photo use context. */ typedef struct { flickcurl_context_type type; char* id; char* secret; /* may be NULL */ int server; /* may be 0 */ int farm; /* may be 0 */ char* title; /* may be NULL */ char* url; /* may be NULL */ char* thumb; /* may be NULL */ } flickcurl_context; /** * flickcurl_exif: * @tagspace: Tagspace name * @tagspaceid: ID of tagspace * @tag: tag ID * @label: tag label * @raw: raw tag name * @clean: pretty-formatted tag name * * An EXIF tag. */ typedef struct { char* tagspace; int tagspaceid; int tag; char* label; char* raw; char* clean; } flickcurl_exif; /** * flickcurl_group: * @nsid: NSID * @name: Group Name * @description: Description * @lang: Language * @is_admin: user is a group admin * @is_pool_moderated: is the pool moderated * @is_eighteenplus: NOT USED (will always be 0) * @privacy: privacy level * @photos: photos in group count * @iconserver: icon server ID * @members: member count * @throttle_count: throttle count * @throttle_mode: throttle mode (day, ...) * @throttle_remaining: throttle remaining * @iconfarm: icon farm ID * @is_moderator: user is a moderator * @is_member: user is a member * @rules: group rules * @pool_count: pool count * @topic_count: topic count * @photos_ok: photos are ok * @videos_ok: videos are ok * @images_ok: images are ok * @screens_ok: screens are ok * @art_ok: art is ok * @safe_ok: safe content is ok * @moderate_ok: moderate content is ok * @restricted_ok: restricted content is ok * @has_geo: has geolocation * * A group. */ typedef struct { char* nsid; char* name; char* description; char* lang; int is_admin; int is_pool_moderated; int is_eighteenplus; int privacy; int photos; int iconserver; int members; int throttle_count; char* throttle_mode; int throttle_remaining; int iconfarm; int is_moderator; int is_member; char* rules; int pool_count; int topic_count; int photos_ok; int videos_ok; int images_ok; int screens_ok; int art_ok; int safe_ok; int moderate_ok; int restricted_ok; int has_geo; } flickcurl_group; /** * flickcurl_blog: * @id: ID * @name: Group Name * @needs_password: needs password * @url: URL * * A blog. */ typedef struct { char* id; char* name; int needs_password; char* url; } flickcurl_blog; /** * flickcurl_blog_service: * @id: ID * @name: Service Name * * A blog service. */ typedef struct { char* id; char* name; } flickcurl_blog_service; /** * flickcurl_category: * @id: category ID * @name: Name * @path: path to category * @count: count * * A category. */ struct flickcurl_category_s { char* id; char* name; char* path; int count; struct flickcurl_category_s** categories; int categories_count; flickcurl_group** groups; int groups_count; }; typedef struct flickcurl_category_s flickcurl_category; /** * flickcurl_gallery: * @id: gallery ID * @url: URL of gallery * @owner: owner NSID * @date_create: creation date of gallery * @date_update: update / last modified date of gallery * @primary_photo: primary photo for the gallery * @count_photos: number of photos in the gallery * @count_videos: number of photos in the gallery * @title: Gallery title * @description: Gallery description * * A photo gallery. * * The list of photos in the gallery is available via the API calls * flickcurl_galleries_getPhotos() or * flickcurl_galleries_getPhotos_params() * */ typedef struct { char *id; char *url; char *owner; int date_create; int date_update; flickcurl_photo* primary_photo; int count_photos; int count_videos; char *title; char *description; } flickcurl_gallery; /** * flickcurl_photoset: * @id: photoset ID * @primary: primary photo ID * @secret: secret * @server: server * @farm: farm * @photos_count: count of photos in set * @title: title of photoset * @description: description of photoset (may be NULL) * @photos: photos in a photoset (may be NULL) * @owner: owner NSID * * A photoset. * */ typedef struct { char *id; char *primary; char *secret; int server; int farm; int photos_count; char* title; char *description; struct flickcurl_photo_s** photos; char *owner; } flickcurl_photoset; /** * flickcurl_collection: * @id: ID * @child_count: children?? * @date_created: date created * @iconlarge: large icon url * @iconsmall: small icon url * @server: server ID * @secret: secret * @title: title * @description: description * @photos: icon photos * @photos_count: number of icon photos * @collections: sub-collections * @collections_count: number of sub-collections * @sets: photo sets * @sets_count: number of photo sets * * A photo collection. May contain collections OR sets but not both. */ struct flickcurl_collection_s { char* id; int child_count; int date_created; char *iconlarge; char *iconsmall; int server; char *secret; char *title; char *description; flickcurl_photo **photos; int photos_count; struct flickcurl_collection_s** collections; int collections_count; struct flickcurl_photoset_s** sets; int sets_count; }; typedef struct flickcurl_collection_s flickcurl_collection; /** * flickcurl_person_field_type: * @PERSON_FIELD_isadmin: is admin field boolean * @PERSON_FIELD_ispro: is pro field boolean * @PERSON_FIELD_iconserver: icon server integer * @PERSON_FIELD_iconfarm: icon farm integer * @PERSON_FIELD_username: username * @PERSON_FIELD_realname: real name * @PERSON_FIELD_mbox_sha1sum: Email SHA1 sum * @PERSON_FIELD_location: location * @PERSON_FIELD_photosurl: photos URL * @PERSON_FIELD_profileurl: profile URL * @PERSON_FIELD_mobileurl: mobile URL * @PERSON_FIELD_photos_firstdate: photos first date * @PERSON_FIELD_photos_firstdatetaken: photos first date taken * @PERSON_FIELD_photos_count: photos count * @PERSON_FIELD_photos_views: photos views * @PERSON_FIELD_favedate: favorite date * @PERSON_FIELD_none: internal * @PERSON_FIELD_FIRST: internal offset to first in enum list * @PERSON_FIELD_LAST: internal offset to last in enum list * * Fields of a flickcurl_person* */ typedef enum { PERSON_FIELD_none, PERSON_FIELD_isadmin, /* boolean */ PERSON_FIELD_ispro, /* boolean */ PERSON_FIELD_iconserver, /* integer */ PERSON_FIELD_iconfarm, /* integer - not in API docs */ PERSON_FIELD_username, /* string */ PERSON_FIELD_realname, /* string */ PERSON_FIELD_mbox_sha1sum, /* string */ PERSON_FIELD_location, /* string */ PERSON_FIELD_photosurl, /* string */ PERSON_FIELD_profileurl, /* string */ PERSON_FIELD_mobileurl, /* string - not in API docs */ PERSON_FIELD_photos_firstdate, /* dateTime */ PERSON_FIELD_photos_firstdatetaken, /* dateTime */ PERSON_FIELD_photos_count, /* integer */ PERSON_FIELD_photos_views, /* integer - not in API docs */ PERSON_FIELD_favedate, /* dateTime - flickr.photos.getFavorites() */ PERSON_FIELD_FIRST = PERSON_FIELD_isadmin, PERSON_FIELD_LAST = PERSON_FIELD_favedate } flickcurl_person_field_type; /** * flickcurl_person_field: * @string: string field value * @integer: integer field value * @type: field type * * Field of a person structure */ typedef struct { char* string; flickcurl_person_field_type integer; flickcurl_field_value_type type; } flickcurl_person_field; /** * flickcurl_person: * @nsid: user NSID * @fields: person fields * * A user. */ typedef struct { char *nsid; flickcurl_person_field fields[PERSON_FIELD_LAST + 1]; } flickcurl_person; /** * flickcurl_photos_list: * @format: requested content format or NULL if a list of photos was wanted. On the result from API calls this is set to the requested feed format or "xml" if none was given. * @photos: list of photos if @format is NULL. Also may be NULL on failure. * @photos_count: number of photos in @photos array if @format is NULL. Undefined on failure * @content: raw content if @format is not NULL. Also may be NULL on failure. * @content_length: size of @content if @format is not NULL. Undefined on failure * @page: current photo list page * @per_page: current photo list per-page * @total_count: total number of photos available of which the current @page and @per_page is a slice * * Photos List result. */ typedef struct { char *format; flickcurl_photo** photos; int photos_count; char* content; size_t content_length; int page; int per_page; int total_count; } flickcurl_photos_list; /** * flickcurl_photos_list_params: * @version: structure version (currently 1) * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>. <code>'media</code> will return an extra media=VALUE for VALUE "photo" or "video". API addition 2008-04-07. (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * @format: Feed format. If given, the photos list result will return raw content. This paramter is EXPERIMENTAL as annouced 2008-08-25 http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/ The current formats are <code>feed-rss_100</code> for RSS 1.0, <code>feed-rss_200</code> for RSS 2.0, <code>feed-atom_10</code> for Atom 1.0, <code>feed-georss</code> for RSS 2.0 with GeoRSS and W3C Geo for geotagged photos, <code>feed-geoatom</code> for Atom 1.0 with GeoRSS and W3C Geo for geotagged photos, <code>feed-geordf</code> for RSS 1.0 with GeoRSS and W3C Geo for geotagged photos, <code>feed-kml</code> for KML 2.1, <code>feed-kml_nl</code> for KML 2.1 network link (or NULL) * * Photos List API parameters for multiple functions that return * a #flickcurl_photos_list * * Use flickcurl_get_extras_format_info() to enumerate the list of * known extra values and flickcurl_get_feed_format_info() to * enumerate the list of known format values. */ typedef struct { /* NOTE: Bump @version and update * flickcurl_photos_list_params_init() when adding fields */ int version; /* 1 */ const char* format; const char* extras; int per_page; int page; } flickcurl_photos_list_params; /** * flickcurl_upload_params: * @photo_file: photo filename * @title: title or NULL * @description: description of photo (HTML) (or NULL) * @tags: space-separated list of tags (or NULL) * @is_public: is public photo boolean (non-0 true) * @is_friend: is friend photo boolean (non-0 true) * @is_family: is family photo boolean (non-0 true) * @safety_level: <=0 default, 1=safe, 2=moderate, 3=restricted * @content_type: <=0 default, 1=photo, 2=screenshot, 3=other/artwork * @hidden: <=0 default, 1=in global search, 2=hidden from publish searches (Flickcurl 1.22+) * * Photo upload parameters */ typedef struct { const char* photo_file; const char *title; const char *description; const char *tags; int is_public; int is_friend; int is_family; int safety_level; int content_type; /* Flickcurl 1.22+ */ int hidden; } flickcurl_upload_params; /** * flickcurl_upload_status: * @photoid: photo ID that was uploaded/replaced (upload only) * @secret: secret of photo uploaded (replace only) * @originalsecret: secret of original photo (replace only) * @ticketid: ticket ID for asynchronous upload (replace only) * * An upload response. * */ typedef struct { char *photoid; char *secret; char *originalsecret; char *ticketid; } flickcurl_upload_status; /** * flickcurl_search_params: * @user_id: The NSID of the user who's photo to search (or "me" or NULL). * @tags: A comma-delimited list of tags (or NULL) * @tag_mode: Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified (or NULL) * @text: Free text search (or NULL) * @min_upload_date: Minimum upload date as a unix timestamp (or 0) * @max_upload_date: Maximum upload date as a unix timestamp (or 0) * @min_taken_date: Minimum taken date in the form of a mysql datetime (or NULL) * @max_taken_date: Maximum taken date in the form of a mysql datetime (or NULL) * @license: Comma-separated list of photo licenses (or NULL) * @sort: The order in which to sort returned photos. Defaults to date-posted-desc. The possible values are: date-posted-asc, date-posted-desc, date-taken-asc, date-taken-desc, interestingness-desc, interestingness-asc, and relevance (or NULL) * @privacy_filter: Return photos only matching a certain privacy level. * @bbox: A comma-delimited list of 4 values defining the Bounding Box of the area that will be searched. * @accuracy: Recorded accuracy level of the location information. Current range is 1-16 * @safe_search: Safe search setting: 1 safe, 2 moderate, 3 restricted (or 0). * @content_type: Content Type setting: 1 for photos only, 2 for screenshots only, 3 for 'other' only, 4 for all types. (or 0) * @machine_tags: Machine tag search syntax * @machine_tag_mode: Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified. * @group_id: The id of a group who's pool to search. If specified, only matching photos posted to the group's pool will be returned. (or NULL) * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>. (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or 0) * @place_id: A Flickr place id. (only used if bbox argument isn't present). Experimental. Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters - If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future) (or NULL) * @media: "photos" or "videos" (or NULL) * @has_geo: non-0 if a photo has been geotagged (or 0) * @lat: A valid latitude, in decimal format, for doing radial geo queries (or ignored if radius is 0.0) * @lon: A valid longitude, in decimal format, for doing radial geo queries (or ignored if radius is 0.0) * @radius: A valid radius used for geo queries, greater than zero and less than 20 miles (or 32 kilometers), for use with point-based geo queries. The default value is 5 (km) (or 0.0 for not used) * @radius_units: The unit of measure when doing radial geo queries. Valid options are "mi" (miles) and "km" (kilometers). The default is "km" (or NULL) * @contacts: (Experimental) Requires @user_id field be set and limits queries to photos beloing to that user's photos. Valid arguments are 'all' or 'ff' for just friends and family. * @woe_id: A 32-bit identifier that uniquely represents spatial entities. (not used if bbox argument is present). Same restrictions as @place_id (or 0) * @geo_context: A numeric value representing the photo's geotagginess beyond latitude and longitude. The current list of context IDs is 0: not defined, 1: indoors and 2: outdoors. Geo queries require some sort of limiting agent in order to prevent the database from crying (or 0) * @is_commons: Limit the scope of the search to only photos that are part of the Flickr Commons project. Default is false (or 0) * @in_gallery: Limit the scope of the search to only photos that are in a gallery. Default is false, search all photos. * * Search parameters for flickcurl_photos_search() */ typedef struct { char* user_id; char* tags; char* tag_mode; char* text; int min_upload_date; int max_upload_date; char* min_taken_date; char* max_taken_date; char* license; char* sort; char* privacy_filter; char* bbox; int accuracy; int safe_search; int content_type; char* machine_tags; char* machine_tag_mode; char* group_id; char* extras; int per_page; int page; char* place_id; char* media; int has_geo; double lat; double lon; double radius; char* radius_units; char* contacts; int woe_id; int geo_context; int is_commons; int in_gallery; } flickcurl_search_params; /** * flickcurl_stat: * @views: number of views of item * @comments: number of comments on item * @favorites: number of item favorites * @name: name assocated with stat (e.g. domain name) * @url: URL associated with stat (e.g. referrer URL) * @searchterms: search term assocated with stat * * Statistics object */ typedef struct { int views; int comments; int favorites; char *name; char *url; char *searchterms; } flickcurl_stat; /** * flickcurl_view_stats * @total: total view * @photos: number of photo views * @photostreams: number of photostream views * @sets: number of set views * @collections: number of collection views * * Total views statistics */ typedef struct { int total; int photos; int photostreams; int sets; int collections; } flickcurl_view_stats; /** * flickcurl_size: * @label: label * @width: width in pixels * @height: height in pixels * @source: raw image source URL * @url: url of photo page * @media: 'photo' or 'video' * * A photo at a size. * * Supported sizes and their letter suffixes used in the @source and * the @url fields are as follows: * * s: small square 75x75. * q: large square 150x150 (2011-03-12 or later). * t: thumbnail, 100 on longest side. * m: small, 240 on longest side. * n: small, 320 on longest side (2011-03-12 or later). * -: medium, 500 on longest side. * z: medium 640, 640 on longest side. * b: large, 1024 on longest side*. * o: original image, either a jpg, gif or png, depending on source format. * * The 'q' and 'n' sizes were announced 2011-03-12 in * http://tech.groups.yahoo.com/group/yws-flickr/message/7483 * */ typedef struct { char *label; int width; int height; char *source; char *url; char* media; } flickcurl_size; /** * flickcurl_ticket: * @id: ticket ID * @photoID: photoID * @complete: complete flag * @invalid: invalid flag * * An aysnchronous photo upload ticket. * */ typedef struct { int id; int photoid; int complete; int invalid; } flickcurl_ticket; /** * flickcurl_user_upload_status: * @username: user name * @bandwidth_maxbytes: max bytes * @bandwidth_maxkb: max kbytes * @bandwidth_usedbytes: used bytes * @bandwidth_usedkb: used kbytes * @bandwidth_remainingbytes: remaining bytes * @bandwidth_remainingkb: remaining kbytes * @filesize_maxbytes: max file size in bytes * @filesize_maxkb: max file size in kbytes * @sets_created: number of sets created * @sets_remaining: remaining sets: 0, 1, 2, 3 or "lots" * * A user's upload status * */ typedef struct { char* username; int bandwidth_maxbytes; int bandwidth_maxkb; int bandwidth_usedbytes; int bandwidth_usedkb; int bandwidth_remainingbytes; int bandwidth_remainingkb; int filesize_maxbytes; int filesize_maxkb; int sets_created; char* sets_remaining; } flickcurl_user_upload_status; /** * flickcurl_serializer: * * Serializer from Photo and metadata to RDF triples */ struct flickcurl_serializer_s; /** * flickcurl_term_type: * @FLICKCURL_TERM_TYPE_RESOURCE: resource/URI term * @FLICKCURL_TERM_TYPE_BLANK: blank node/anonymous term * @FLICKCURL_TERM_TYPE_LITERAL: literal term * * Triple part types * * These are the same enumeration values as used by Raptor V2 * raptor_term_type enumeration and Raptor V1 raptor_identifier_type * enumeration. */ typedef enum { FLICKCURL_TERM_TYPE_RESOURCE = 1, FLICKCURL_TERM_TYPE_BLANK = 2, FLICKCURL_TERM_TYPE_LITERAL = 5 } flickcurl_term_type; /** * flickcurl_serializer_factory: * @version: API version * @emit_namespace: (V1) emit namespace callback * @emit_triple: (V1) emit a triple * @emit_finish: (V1) finish emitting * * Triples serializer factory * * API version 1 is all that is supported. */ typedef struct { int version; void (*emit_namespace)(void* user_data, const char* prefix, size_t prefix_len, const char* uri, size_t uri_len); void (*emit_triple)(void* user_data, const char* subject, int subject_type, const char* predicate_nspace, const char* predicate_name, const char *object, int object_type, const char *datatype_uri); void (*emit_finish)(void* user_data); } flickcurl_serializer_factory; typedef struct flickcurl_serializer_s flickcurl_serializer; FLICKCURL_API flickcurl_serializer* flickcurl_new_serializer(flickcurl* fc, void* data, flickcurl_serializer_factory* factory); FLICKCURL_API void flickcurl_free_serializer(flickcurl_serializer* serializer); FLICKCURL_API int flickcurl_serialize_photo(flickcurl_serializer* fcs, flickcurl_photo* photo); /** * flickcurl_member: * @nsid: NSID * @username: User name * @iconserver: icon server * @iconfarm: icon farm * @member_type: member type - 1: narwhal, 2: member, 3: moderator 4: admin * * Member in a group */ typedef struct { char *nsid; char *username; int iconserver; int iconfarm; int member_type; } flickcurl_member; /* callback handlers */ /** * flickcurl_message_handler: * @user_data: user data pointer * @message: error message * * Flickcurl Message handler callback. */ typedef void (*flickcurl_message_handler)(void *user_data, const char *message); /** * flickcurl_tag_handler: * @user_data: user data pointer * @tag: tag * * Flickcurl Tag handler callback. */ typedef void (*flickcurl_tag_handler)(void *user_data, flickcurl_tag* tag); /** * flickcurl_curl_setopt_handler: * @user_data: user data pointer * @curl_handle: curl CURL* handle * * Flickcurl curl options handle callback. * * For use with flickcurl_set_curl_setopt_handler() to set curl * handle options once Flickcurl has created the CURL* handle * internally. * * NOTE: The type of @curl_handle is void* so that curl headers are * optional when compiling against flickcurl. * * WARNING: This callback is called with two void args in the order * curl handler user data, curl handle (CURL* pointer) - take care in * getting them correct in implementation. * */ typedef void (*flickcurl_curl_setopt_handler)(void *user_data, void *curl_handle); /* library constants */ FLICKCURL_API extern const char* const flickcurl_short_copyright_string; FLICKCURL_API extern const char* const flickcurl_copyright_string; FLICKCURL_API extern const char* const flickcurl_license_string; FLICKCURL_API extern const char* const flickcurl_home_url_string; FLICKCURL_API extern const char* const flickcurl_version_string; FLICKCURL_API extern const char* const flickcurl_flickr_service_uri; FLICKCURL_API extern const char* const flickcurl_flickr_upload_service_uri; FLICKCURL_API extern const char* const flickcurl_flickr_replace_service_uri; FLICKCURL_API extern const char* const flickcurl_flickr_oauth_request_token_uri; FLICKCURL_API extern const char* const flickcurl_flickr_oauth_authorize_uri; FLICKCURL_API extern const char* const flickcurl_flickr_oauth_access_token_uri; /* library init - call once before creating anything */ FLICKCURL_API int flickcurl_init(void); /* library cleanup - call once before exit */ FLICKCURL_API void flickcurl_finish(void); /* flickcurl* object constructor */ FLICKCURL_API flickcurl* flickcurl_new(void); FLICKCURL_API flickcurl* flickcurl_new_with_handle(void* curl_handle); /* flickcurl* object destructor */ FLICKCURL_API void flickcurl_free(flickcurl *fc); /* flickcurl* object set methods */ FLICKCURL_API void flickcurl_set_curl_setopt_handler(flickcurl *fc, flickcurl_curl_setopt_handler curl_handler, void* curl_handler_data); FLICKCURL_API void flickcurl_set_service_uri(flickcurl *fc, const char *uri); FLICKCURL_API void flickcurl_set_upload_service_uri(flickcurl *fc, const char *uri); FLICKCURL_API void flickcurl_set_replace_service_uri(flickcurl *fc, const char *uri); FLICKCURL_API void flickcurl_set_api_key(flickcurl* fc, const char *api_key); FLICKCURL_API void flickcurl_set_auth_token(flickcurl *fc, const char* auth_token); FLICKCURL_API void flickcurl_set_data(flickcurl *fc, void* data, size_t data_length); FLICKCURL_API void flickcurl_set_error_handler(flickcurl* fc, flickcurl_message_handler error_handler, void *error_data); FLICKCURL_API void flickcurl_set_http_accept(flickcurl* fc, const char *value); FLICKCURL_API void flickcurl_set_proxy(flickcurl* fc, const char *proxy); FLICKCURL_API void flickcurl_set_request_delay(flickcurl *fc, long delay_msec); FLICKCURL_API void flickcurl_set_shared_secret(flickcurl* fc, const char *secret); FLICKCURL_API void flickcurl_set_sign(flickcurl *fc); FLICKCURL_API void flickcurl_set_tag_handler(flickcurl* fc, flickcurl_tag_handler tag_handler, void *tag_data); FLICKCURL_API void flickcurl_set_user_agent(flickcurl* fc, const char *user_agent); FLICKCURL_API void flickcurl_set_write(flickcurl *fc, int is_write); FLICKCURL_API void flickcurl_set_xml_data(flickcurl *fc, xmlDocPtr doc); FLICKCURL_API int flickcurl_get_current_request_wait(flickcurl *fc); /* flickcurl* object set methods */ FLICKCURL_API const char* flickcurl_get_api_key(flickcurl *fc); FLICKCURL_API const char* flickcurl_get_shared_secret(flickcurl *fc); FLICKCURL_API const char* flickcurl_get_auth_token(flickcurl *fc); /* other flickcurl class destructors */ FLICKCURL_API void flickcurl_free_collection(flickcurl_collection *collection); FLICKCURL_API void flickcurl_free_collections(flickcurl_collection** collections); FLICKCURL_API void flickcurl_free_gallery(flickcurl_gallery *gallery); FLICKCURL_API void flickcurl_free_tag_namespace(flickcurl_tag_namespace *tag_nspace); FLICKCURL_API void flickcurl_free_tag_namespaces(flickcurl_tag_namespace** tag_nspaces); FLICKCURL_API void flickcurl_free_tag(flickcurl_tag *t); FLICKCURL_API void flickcurl_free_tags(flickcurl_tag **tags); FLICKCURL_API void flickcurl_free_tag_clusters(flickcurl_tag_clusters *tcs); FLICKCURL_API void flickcurl_free_photo(flickcurl_photo *photo); FLICKCURL_API void flickcurl_free_photos(flickcurl_photo** photos); FLICKCURL_API void flickcurl_free_photos_list(flickcurl_photos_list* photos_list); FLICKCURL_API void flickcurl_free_photoset(flickcurl_photoset *photoset); FLICKCURL_API void flickcurl_free_photosets(flickcurl_photoset **photosets_object); /* void flickcurl_free_license(flickcurl_person *license); */ FLICKCURL_API void flickcurl_free_person(flickcurl_person *person); FLICKCURL_API void flickcurl_free_persons(flickcurl_person** persons); FLICKCURL_API void flickcurl_free_context(flickcurl_context *context); FLICKCURL_API void flickcurl_free_contexts(flickcurl_context** contexts); FLICKCURL_API void flickcurl_free_institution(flickcurl_institution *institution); FLICKCURL_API void flickcurl_free_institutions(flickcurl_institution **institutions_object); FLICKCURL_API void flickcurl_free_perms(flickcurl_perms *perms); FLICKCURL_API void flickcurl_free_location(flickcurl_location *location); FLICKCURL_API void flickcurl_free_exif(flickcurl_exif *exif); FLICKCURL_API void flickcurl_free_exifs(flickcurl_exif **exifs_object); FLICKCURL_API void flickcurl_free_ticket(flickcurl_ticket *ticket); FLICKCURL_API void flickcurl_free_tickets(flickcurl_ticket **tickets_object); FLICKCURL_API void flickcurl_free_user_upload_status(flickcurl_user_upload_status *u); FLICKCURL_API void flickcurl_free_place(flickcurl_place* place); FLICKCURL_API void flickcurl_free_places(flickcurl_place** places_object); FLICKCURL_API void flickcurl_free_place_type_infos(flickcurl_place_type_info **ptis_object); FLICKCURL_API void flickcurl_free_shape(flickcurl_shapedata *shape); FLICKCURL_API void flickcurl_free_shapes(flickcurl_shapedata **shapes_object); FLICKCURL_API void flickcurl_free_video(flickcurl_video *video); FLICKCURL_API void flickcurl_free_tag_predicate_value(flickcurl_tag_predicate_value* tag_pv); FLICKCURL_API void flickcurl_free_tag_predicate_values(flickcurl_tag_predicate_value **tag_pvs); /* utility methods */ /* get an image URL for a photo in some size */ FLICKCURL_API char* flickcurl_photo_as_source_uri(flickcurl_photo *photo, const char c); /* get a photo ID from an image URL */ FLICKCURL_API char* flickcurl_source_uri_as_photo_id(const char *uri); /* get a page URL for a photo */ FLICKCURL_API char* flickcurl_photo_as_page_uri(flickcurl_photo *photo); /* get a owner icon URL for a photo */ FLICKCURL_API char* flickcurl_user_icon_uri(int farm, int server, char *nsid); FLICKCURL_API char* flickcurl_photo_as_user_icon_uri(flickcurl_photo *photo); /* get a short URL for a photo ID - http://flic.kr */ FLICKCURL_API char* flickcurl_photo_id_as_short_uri(char *photo_id); /* get a short URL for a photo object - http://flic.kr */ FLICKCURL_API char* flickcurl_photo_as_short_uri(flickcurl_photo *photo); /* get labels for various field/types */ FLICKCURL_API const char* flickcurl_get_photo_field_label(flickcurl_photo_field_type field); FLICKCURL_API const char* flickcurl_get_person_field_label(flickcurl_person_field_type field); FLICKCURL_API const char* flickcurl_get_field_value_type_label(flickcurl_field_value_type datatype); FLICKCURL_API const char* flickcurl_get_context_type_field_label(flickcurl_context_type type); FLICKCURL_API const char* flickcurl_get_content_type_label(int content_type); FLICKCURL_API int flickcurl_get_content_type_from_string(const char* content_type_string); FLICKCURL_API const char* flickcurl_get_safety_level_label(int safety_level); FLICKCURL_API int flickcurl_get_safety_level_from_string(const char* safety_level_string); FLICKCURL_API const char* flickcurl_get_hidden_label(int hidden); FLICKCURL_API int flickcurl_get_hidden_from_string(const char* hidden_string); FLICKCURL_API int flickcurl_get_feed_format_info(int feed_format, const char** name_p, const char** label_p, const char** mime_type_p); FLICKCURL_API int flickcurl_get_extras_format_info(int extras_format, const char** name_p, const char** label_p); FLICKCURL_API int flickcurl_photos_list_params_init(flickcurl_photos_list_params* list_params); FLICKCURL_API int flickcurl_search_params_init(flickcurl_search_params* params); /** * set_config_var_handler: * @userdata: user data pointer * @key: key * @value: value * * Handler to get variables returned from an 'INI' style configuration file */ typedef void (*set_config_var_handler)(void* userdata, const char* key, const char* value); FLICKCURL_API FLICKCURL_DEPRECATED int read_ini_config(const char* filename, const char* section, void* user_data, set_config_var_handler handler); FLICKCURL_API int flickcurl_config_read_ini(flickcurl* fc, const char* filename, const char* section, void* user_data, set_config_var_handler handler); FLICKCURL_API void flickcurl_config_var_handler(void* userdata, const char* key, const char* value); FLICKCURL_API int flickcurl_config_write_ini(flickcurl *fc, const char* filename, const char* section); /* Flickr API calls */ /* flickr.activity */ FLICKCURL_API flickcurl_activity** flickcurl_activity_userComments(flickcurl* fc, int per_page, int page); FLICKCURL_API flickcurl_activity** flickcurl_activity_userPhotos(flickcurl* fc, const char* timeframe, int per_page, int page); FLICKCURL_API void flickcurl_free_activities(flickcurl_activity **activities_object); /* flickr.auth */ FLICKCURL_API char* flickcurl_auth_checkToken(flickcurl* fc, const char* token); FLICKCURL_API char* flickcurl_auth_getFrob(flickcurl* fc); FLICKCURL_API char* flickcurl_auth_getFullToken(flickcurl* fc, const char* frob); FLICKCURL_API char* flickcurl_auth_getToken(flickcurl* fc, const char* frob); FLICKCURL_API int flickcurl_auth_oauth_getAccessToken(flickcurl* fc); FLICKCURL_API const char* flickcurl_get_oauth_token(flickcurl *fc); FLICKCURL_API void flickcurl_set_oauth_token(flickcurl *fc, const char* token); FLICKCURL_API const char* flickcurl_get_oauth_token_secret(flickcurl* fc); FLICKCURL_API void flickcurl_set_oauth_token_secret(flickcurl* fc, const char *secret); FLICKCURL_API const char* flickcurl_get_oauth_client_key(flickcurl *fc); FLICKCURL_API const char* flickcurl_get_oauth_client_secret(flickcurl *fc); FLICKCURL_API void flickcurl_set_oauth_client_key(flickcurl *fc, const char* client_key); FLICKCURL_API void flickcurl_set_oauth_client_secret(flickcurl *fc, const char* client_secret); FLICKCURL_API const char* flickcurl_get_oauth_request_token(flickcurl* fc); FLICKCURL_API const char* flickcurl_get_oauth_request_token_secret(flickcurl* fc); FLICKCURL_API void flickcurl_set_oauth_request_token(flickcurl *fc, const char* token); FLICKCURL_API void flickcurl_set_oauth_request_token_secret(flickcurl *fc, const char* secret); FLICKCURL_API const char* flickcurl_get_oauth_username(flickcurl* fc); FLICKCURL_API const char* flickcurl_get_oauth_user_nsid(flickcurl* fc); /* OAuth flow requests */ FLICKCURL_API int flickcurl_oauth_create_request_token(flickcurl* fc, const char* callback); FLICKCURL_API char* flickcurl_oauth_get_authorize_uri(flickcurl* fc); FLICKCURL_API int flickcurl_oauth_create_access_token(flickcurl* fc, const char* verifier); /* flickr.blogs */ FLICKCURL_API flickcurl_blog** flickcurl_blogs_getList(flickcurl* fc); FLICKCURL_API int flickcurl_blogs_postPhoto(flickcurl* fc, const char* blog_id, const char* photo_id, const char* title, const char* description, const char* blog_password); FLICKCURL_API void flickcurl_free_blogs(flickcurl_blog **blogs_object); FLICKCURL_API flickcurl_blog_service** flickcurl_blogs_getServices(flickcurl* fc); FLICKCURL_API void flickcurl_free_blog_services(flickcurl_blog_service **blog_services_object); /* flickr.collections */ FLICKCURL_API flickcurl_collection* flickcurl_collections_getInfo(flickcurl* fc, const char* collection_id); FLICKCURL_API flickcurl_collection* flickcurl_collections_getTree(flickcurl* fc, const char* collection_id, const char* user_id); /* flickr.commons */ FLICKCURL_API flickcurl_institution** flickcurl_commons_getInstitutions(flickcurl* fc); const char* flickcurl_get_institution_url_type_label(flickcurl_institution_url_type url_type); /* flickr.favorites */ FLICKCURL_API int flickcurl_favorites_add(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_photos_list** flickcurl_favorites_getContext(flickcurl* fc, const char* photo_id, const char* user_id, int num_prev, int num_next, const char* extras); FLICKCURL_API flickcurl_photo** flickcurl_favorites_getList(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_favorites_getList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_favorites_getPublicList(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_favorites_getPublicList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params); FLICKCURL_API int flickcurl_favorites_remove(flickcurl* fc, const char* photo_id); /* flickr.galleries */ FLICKCURL_API int flickcurl_galleries_addPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* comment_text); FLICKCURL_API char* flickcurl_galleries_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** gallery_url_p); FLICKCURL_API int flickcurl_galleries_editMeta(flickcurl* fc, const char* gallery_id, const char* title, const char* description); FLICKCURL_API int flickcurl_galleries_editPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* new_comment); FLICKCURL_API int flickcurl_galleries_editPhotos(flickcurl* fc, const char* gallery_id, const char* primary_photo_id, const char** photo_ids_array); FLICKCURL_API flickcurl_gallery* flickcurl_galleries_getInfo(flickcurl* fc, const char* gallery_id); FLICKCURL_API flickcurl_gallery** flickcurl_galleries_getList(flickcurl* fc, const char* user_id, int per_page, int page); FLICKCURL_API flickcurl_gallery** flickcurl_galleries_getListForPhoto(flickcurl* fc, const char* photo_id, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_galleries_getPhotos_params(flickcurl* fc, const char* gallery_id, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_galleries_getPhotos(flickcurl* fc, const char* gallery_id, const char* extras, int per_page, int page); FLICKCURL_API void flickcurl_free_galleries(flickcurl_gallery **galleries_object); /* flickr.groups */ FLICKCURL_API void flickcurl_free_category(flickcurl_category *category); FLICKCURL_API void flickcurl_free_categories(flickcurl_category **categories_object); FLICKCURL_API flickcurl_category* flickcurl_groups_browse(flickcurl* fc, int cat_id); FLICKCURL_API flickcurl_group* flickcurl_groups_getInfo(flickcurl* fc, const char* group_id, const char* lang); FLICKCURL_API int flickcurl_groups_join(flickcurl* fc, const char* group_id, const char* accept_rules); FLICKCURL_API int flickcurl_groups_joinRequest(flickcurl* fc, const char* group_id, const char* message, const char* accept_rules); FLICKCURL_API int flickcurl_groups_leave(flickcurl* fc, const char* group_id, const char* delete_photos); FLICKCURL_API flickcurl_group** flickcurl_groups_search(flickcurl* fc, const char* text, int per_page, int page); /* flickr.groups.members */ FLICKCURL_API void flickcurl_free_member(flickcurl_member *member_object); FLICKCURL_API void flickcurl_free_members(flickcurl_member **members_object); FLICKCURL_API flickcurl_member** flickcurl_groups_members_getList(flickcurl* fc, const char* group_id, const char* membertypes, int per_page, int page); /* flickr.groups.pools */ FLICKCURL_API int flickcurl_groups_pools_add(flickcurl* fc, const char* photo_id, const char* group_id); FLICKCURL_API flickcurl_context** flickcurl_groups_pools_getContext(flickcurl* fc, const char* photo_id, const char* group_id); FLICKCURL_API flickcurl_group** flickcurl_groups_pools_getGroups(flickcurl* fc, int page, int per_page); FLICKCURL_API flickcurl_photo** flickcurl_groups_pools_getPhotos(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_groups_pools_getPhotos_params(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, flickcurl_photos_list_params* list_params); FLICKCURL_API int flickcurl_groups_pools_remove(flickcurl* fc, const char* photo_id, const char* group_id); FLICKCURL_API void flickcurl_free_group(flickcurl_group *group); FLICKCURL_API void flickcurl_free_groups(flickcurl_group **groups_object); /* flickr.interestingness */ FLICKCURL_API flickcurl_photo** flickcurl_interestingness_getList(flickcurl* fc, const char* date, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_interestingness_getList_params(flickcurl* fc, const char* date, flickcurl_photos_list_params* list_params); /* flickr.machinetags */ FLICKCURL_API flickcurl_tag_namespace** flickcurl_machinetags_getNamespaces(flickcurl* fc, const char* predicate, int per_page, int page); FLICKCURL_API flickcurl_tag_predicate_value** flickcurl_machinetags_getPairs(flickcurl* fc, const char *nspace, const char* predicate, int per_page, int page); FLICKCURL_API flickcurl_tag_predicate_value** flickcurl_machinetags_getPredicates(flickcurl* fc, const char *nspace, int per_page, int page); FLICKCURL_API flickcurl_tag_predicate_value** flickcurl_machinetags_getValues(flickcurl* fc, const char *nspace, const char* predicate, int per_page, int page); FLICKCURL_API flickcurl_tag_predicate_value** flickcurl_machinetags_getRecentValues(flickcurl* fc, const char *nspace, const char* predicate, int added_since); /* flickr.panda */ FLICKCURL_API char** flickcurl_panda_getList(flickcurl* fc); FLICKCURL_API flickcurl_photo** flickcurl_panda_getPhotos(flickcurl *fc, const char *panda_name); /* flickr.photo.getSizes */ FLICKCURL_API void flickcurl_free_size(flickcurl_size *size); FLICKCURL_API void flickcurl_free_sizes(flickcurl_size **sizes_object); /* flickr.people */ FLICKCURL_API char* flickcurl_people_findByEmail(flickcurl* fc, const char* email); FLICKCURL_API char* flickcurl_people_findByUsername(flickcurl* fc, const char* username); FLICKCURL_API flickcurl_group** flickcurl_people_getGroups(flickcurl* fc, const char* user_id, const char* extras); FLICKCURL_API flickcurl_person* flickcurl_people_getInfo(flickcurl* fc, const char* user_id); FLICKCURL_API flickcurl_photos_list* flickcurl_people_getPhotos_params(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_people_getPhotos(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_people_getPhotosOf_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_people_getPhotosOf(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_group** flickcurl_people_getPublicGroups(flickcurl* fc, const char* user_id); FLICKCURL_API flickcurl_photo** flickcurl_people_getPublicPhotos(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_people_getPublicPhotos_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_user_upload_status* flickcurl_people_getUploadStatus(flickcurl* fc); /* flickr.photos */ FLICKCURL_API int flickcurl_photos_addTags(flickcurl* fc, const char* photo_id, const char* tags); FLICKCURL_API int flickcurl_photos_delete(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_context** flickcurl_photos_getAllContexts(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_photo** flickcurl_photos_getContactsPhotos(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, const char* extras); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getContactsPhotos_params(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_photos_getContactsPublicPhotos(flickcurl* fc, const char* user_id, int photo_count, int just_friends, int single_photo, int include_self, const char* extras); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getContactsPublicPhotos_params(flickcurl* fc, const char* user_id, int photo_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_context** flickcurl_photos_getContext(flickcurl* fc, const char* photo_id); FLICKCURL_API int** flickcurl_photos_getCounts(flickcurl* fc, const char** dates_array, const char** taken_dates_array); FLICKCURL_API flickcurl_exif** flickcurl_photos_getExif(flickcurl* fc, const char* photo_id, const char* secret); FLICKCURL_API flickcurl_person** flickcurl_photos_getFavorites(flickcurl* fc, const char* photo_id, int page, int per_page); FLICKCURL_API flickcurl_photo* flickcurl_photos_getInfo2(flickcurl *fc, const char* photo_id, const char* secret); FLICKCURL_API FLICKCURL_DEPRECATED flickcurl_photo* flickcurl_photos_getInfo(flickcurl *fc, const char* photo_id); FLICKCURL_API flickcurl_photo** flickcurl_photos_getNotInSet(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getNotInSet_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_perms* flickcurl_photos_getPerms(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_photo** flickcurl_photos_getRecent(flickcurl* fc, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getRecent_params(flickcurl* fc, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_size** flickcurl_photos_getSizes(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_photo** flickcurl_photos_getUntagged(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getUntagged_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_photos_getWithGeoData(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getWithGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_photos_getWithoutGeoData(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_getWithoutGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_photos_recentlyUpdated(flickcurl* fc, int min_date, const char* extras, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_recentlyUpdated_params(flickcurl* fc, int min_date, flickcurl_photos_list_params* list_params); FLICKCURL_API int flickcurl_photos_removeTag(flickcurl* fc, const char* tag_id); FLICKCURL_API flickcurl_photo** flickcurl_photos_search(flickcurl* fc, flickcurl_search_params* params); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_search_params(flickcurl* fc, flickcurl_search_params* params, flickcurl_photos_list_params* list_params); FLICKCURL_API int flickcurl_photos_setContentType(flickcurl* fc, const char* photo_id, int content_type); FLICKCURL_API int flickcurl_photos_setDates(flickcurl* fc, const char* photo_id, int date_posted, int date_taken, int date_taken_granularity); FLICKCURL_API int flickcurl_photos_setMeta(flickcurl* fc, const char* photo_id, const char* title, const char* description); FLICKCURL_API int flickcurl_photos_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms); FLICKCURL_API int flickcurl_photos_setSafetyLevel(flickcurl* fc, const char* photo_id, int safety_level, int hidden); FLICKCURL_API int flickcurl_photos_setTags(flickcurl* fc, const char* photo_id, const char* tags); /* flickr.photos.people */ FLICKCURL_API int flickcurl_photos_people_add(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h); FLICKCURL_API int flickcurl_photos_people_delete(flickcurl* fc, const char* photo_id, const char* user_id); FLICKCURL_API int flickcurl_photos_people_deleteCoords(flickcurl* fc, const char* photo_id, const char* user_id); FLICKCURL_API int flickcurl_photos_people_editCoords(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h); FLICKCURL_API flickcurl_person** flickcurl_photos_people_getList(flickcurl* fc, const char* photo_id); /* flickr.places */ FLICKCURL_API flickcurl_place** flickcurl_places_find(flickcurl* fc, const char* query); FLICKCURL_API flickcurl_place* flickcurl_places_findByLatLon(flickcurl* fc, double lat, double lon, int accuracy); FLICKCURL_API FLICKCURL_DEPRECATED flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic(flickcurl* fc, const char* place_id, const char* woe_id); FLICKCURL_API flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic2(flickcurl* fc, const char* place_id, int woe_id); FLICKCURL_API FLICKCURL_DEPRECATED flickcurl_place* flickcurl_places_getInfo(flickcurl* fc, const char* place_id, const char* woe_id); FLICKCURL_API flickcurl_place* flickcurl_places_getInfo2(flickcurl* fc, const char* place_id, const int woe_id); FLICKCURL_API flickcurl_place** flickcurl_places_getTopPlacesList(flickcurl* fc, flickcurl_place_type place_type, const char* date, int woe_id, const char* place_id); FLICKCURL_API flickcurl_place* flickcurl_places_getInfoByUrl(flickcurl* fc, const char* url); FLICKCURL_API flickcurl_place* flickcurl_places_resolvePlaceId(flickcurl* fc, const char* place_id); FLICKCURL_API flickcurl_place* flickcurl_places_resolvePlaceURL(flickcurl* fc, const char* url); FLICKCURL_API const char* flickcurl_get_place_type_label(flickcurl_place_type place_type); flickcurl_place_type flickcurl_get_place_type_by_label(const char* place_label); FLICKCURL_API flickcurl_place_type_info** flickcurl_places_getPlaceTypes(flickcurl* fc); FLICKCURL_API flickcurl_shapedata** flickcurl_places_getShapeHistory(flickcurl* fc, const char* place_id, int woe_id); FLICKCURL_API flickcurl_place** flickcurl_places_placesForBoundingBox(flickcurl* fc, flickcurl_place_type place_type, double minimum_longitude, double minimum_latitude, double maximum_longitude, double maximum_latitude); FLICKCURL_API flickcurl_place** flickcurl_places_placesForContacts(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold, const char* contacts, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date); FLICKCURL_API int flickcurl_places_placesForTags(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, const char* threshold, const char* tags, const char* tag_mode, const char* machine_tags, const char* machine_tag_mode, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date); FLICKCURL_API flickcurl_place** flickcurl_places_placesForUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold); FLICKCURL_API FLICKCURL_DEPRECATED flickcurl_place** flickcurl_places_forUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold); FLICKCURL_API flickcurl_tag** flickcurl_places_tagsForPlace(flickcurl* fc, int woe_id, const char* place_id, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date); int flickcurl_place_type_to_id(flickcurl_place_type place_type); flickcurl_place_type flickcurl_place_id_to_type(int place_type_id); /* flickr.contacts */ FLICKCURL_API void flickcurl_free_contact(flickcurl_contact *contact_object); FLICKCURL_API void flickcurl_free_contacts(flickcurl_contact **contacts_object); FLICKCURL_API flickcurl_contact** flickcurl_contacts_getList(flickcurl* fc, const char* filter, int page, int per_page); FLICKCURL_API flickcurl_contact** flickcurl_contacts_getListRecentlyUploaded(flickcurl* fc, int date_lastupload, const char* filter); FLICKCURL_API flickcurl_contact** flickcurl_contacts_getPublicList(flickcurl* fc, const char* user_id, int page, int per_page); FLICKCURL_API flickcurl_contact** flickcurl_contacts_getTaggingSuggestions(flickcurl* fc, const char* include_self, const char* include_address_book, int page, int per_page); /* flickr.photos.comments */ FLICKCURL_API void flickcurl_free_comment(flickcurl_comment *comment_object); FLICKCURL_API void flickcurl_free_comments(flickcurl_comment **comments_object); FLICKCURL_API char* flickcurl_photos_comments_addComment(flickcurl* fc, const char* photo_id, const char* comment_text); FLICKCURL_API int flickcurl_photos_comments_deleteComment(flickcurl* fc, const char* comment_id); FLICKCURL_API int flickcurl_photos_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text); FLICKCURL_API flickcurl_comment** flickcurl_photos_comments_getList(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_comments_getRecentForContacts_params(flickcurl* fc, int date_lastcomment, const char* contacts_filter, flickcurl_photos_list_params* list_params); /* flickr.photos.geo */ FLICKCURL_API int flickcurl_photos_geo_batchCorrectLocation(flickcurl* fc, flickcurl_location* location, const char* place_id, int woe_id); FLICKCURL_API int flickcurl_photos_geo_correctLocation(flickcurl* fc, const char* photo_id, const char* place_id, int woe_id); FLICKCURL_API flickcurl_location* flickcurl_photos_geo_getLocation(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_perms* flickcurl_photos_geo_getPerms(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_photos_list* flickcurl_photos_geo_photosForLocation_params(flickcurl* fc, flickcurl_location* location, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_photo** flickcurl_photos_geo_photosForLocation(flickcurl* fc, flickcurl_location* location, const char* extras, int per_page, int page); FLICKCURL_API int flickcurl_photos_geo_removeLocation(flickcurl* fc, const char* photo_id); FLICKCURL_API int flickcurl_photos_geo_setContext(flickcurl* fc, const char* photo_id, int context); FLICKCURL_API int flickcurl_photos_geo_setLocation(flickcurl* fc, const char* photo_id, flickcurl_location* location); FLICKCURL_API int flickcurl_photos_geo_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms); FLICKCURL_API const char* flickcurl_get_location_accuracy_label(int accuracy); /* flickr.photos.licenses */ FLICKCURL_API flickcurl_license** flickcurl_photos_licenses_getInfo(flickcurl *fc); FLICKCURL_API flickcurl_license* flickcurl_photos_licenses_getInfo_by_id(flickcurl *fc, int id); FLICKCURL_API int flickcurl_photos_licenses_setLicense(flickcurl* fc, const char* photo_id, int license_id); /* flickr.photos.notes */ FLICKCURL_API char* flickcurl_photos_notes_add(flickcurl* fc, const char* photo_id, int note_x, int note_y, int note_w, int note_h, const char* note_text); FLICKCURL_API int flickcurl_photos_notes_delete(flickcurl* fc, const char* note_id); FLICKCURL_API int flickcurl_photos_notes_edit(flickcurl* fc, const char* note_id, int note_x, int note_y, int note_w, int note_h, const char* note_text); FLICKCURL_API /* flickr.photos.upload */ FLICKCURL_API flickcurl_ticket** flickcurl_photos_upload_checkTickets(flickcurl* fc, const char** tickets_ids); /* flickr.photos.transform */ FLICKCURL_API int flickcurl_photos_transform_rotate(flickcurl* fc, const char* photo_id, int degrees); /* flickr.photosets */ FLICKCURL_API int flickcurl_photosets_addPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id); FLICKCURL_API char* flickcurl_photosets_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** photoset_url_p); FLICKCURL_API int flickcurl_photosets_delete(flickcurl* fc, const char* photoset_id); FLICKCURL_API int flickcurl_photosets_editMeta(flickcurl* fc, const char* photoset_id, const char* title, const char* description); FLICKCURL_API int flickcurl_photosets_editPhotos(flickcurl* fc, const char* photoset_id, const char* primary_photo_id, const char** photo_ids_array); FLICKCURL_API flickcurl_context** flickcurl_photosets_getContext(flickcurl* fc, const char* photo_id, const char* photoset_id); FLICKCURL_API flickcurl_photoset* flickcurl_photosets_getInfo(flickcurl* fc, const char* photoset_id); FLICKCURL_API flickcurl_photoset** flickcurl_photosets_getList(flickcurl* fc, const char* user_id); FLICKCURL_API flickcurl_photo** flickcurl_photosets_getPhotos(flickcurl* fc, const char* photoset_id, const char* extras, int privacy_filter, int per_page, int page); FLICKCURL_API flickcurl_photos_list* flickcurl_photosets_getPhotos_params(flickcurl* fc, const char* photoset_id, int privacy_filter, flickcurl_photos_list_params* list_params); FLICKCURL_API int flickcurl_photosets_orderSets(flickcurl* fc, const char** photoset_ids_array); FLICKCURL_API int flickcurl_photosets_removePhoto(flickcurl* fc, const char* photoset_id, const char* photo_id); FLICKCURL_API int flickcurl_photosets_removePhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array); FLICKCURL_API int flickcurl_photosets_reorderPhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array); FLICKCURL_API int flickcurl_photosets_setPrimaryPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id); /* flickr.photosets.comments */ FLICKCURL_API char* flickcurl_photosets_comments_addComment(flickcurl* fc, const char* photoset_id, const char* comment_text); FLICKCURL_API int flickcurl_photosets_comments_deleteComment(flickcurl* fc, const char* comment_id); FLICKCURL_API int flickcurl_photosets_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text); FLICKCURL_API flickcurl_comment** flickcurl_photosets_comments_getList(flickcurl* fc, const char* photoset_id); /* flickr.prefs */ FLICKCURL_API int flickcurl_prefs_getContentType(flickcurl* fc); FLICKCURL_API int flickcurl_prefs_getGeoPerms(flickcurl* fc); FLICKCURL_API int flickcurl_prefs_getHidden(flickcurl* fc); FLICKCURL_API int flickcurl_prefs_getPrivacy(flickcurl* fc); FLICKCURL_API int flickcurl_prefs_getSafetyLevel(flickcurl* fc); /* flickr.reflection */ FLICKCURL_API void flickcurl_free_method(flickcurl_method *method); FLICKCURL_API char** flickcurl_reflection_getMethods(flickcurl* fc); FLICKCURL_API flickcurl_method* flickcurl_reflection_getMethodInfo(flickcurl* fc, const char* name); /* flickr.stats */ FLICKCURL_API int flickcurl_stats_getCSVFiles(flickcurl* fc); FLICKCURL_API flickcurl_stat** flickcurl_stats_getCollectionDomains(flickcurl* fc, const char* date, const char* collection_id, int per_page, int page); FLICKCURL_API flickcurl_stat** flickcurl_stats_getCollectionReferrers(flickcurl* fc, const char* date, const char* domain, const char* collection_id, int per_page, int page); FLICKCURL_API int flickcurl_stats_getCollectionStats(flickcurl* fc, const char* date, const char* collection_id); FLICKCURL_API flickcurl_stat** flickcurl_stats_getPhotoDomains(flickcurl* fc, const char* date, const char* photo_id, int per_page, int page); FLICKCURL_API flickcurl_stat** flickcurl_stats_getPhotoReferrers(flickcurl* fc, const char* date, const char* domain, const char* photo_id, int per_page, int page); FLICKCURL_API flickcurl_stat* flickcurl_stats_getPhotoStats(flickcurl* fc, const char* date, const char* photo_id); FLICKCURL_API flickcurl_stat** flickcurl_stats_getPhotosetDomains(flickcurl* fc, const char* date, const char* photoset_id, int per_page, int page); FLICKCURL_API flickcurl_stat** flickcurl_stats_getPhotosetReferrers(flickcurl* fc, const char* date, const char* domain, const char* photoset_id, int per_page, int page); FLICKCURL_API int flickcurl_stats_getPhotosetStats(flickcurl* fc, const char* date, const char* photoset_id); FLICKCURL_API flickcurl_stat** flickcurl_stats_getPhotostreamDomains(flickcurl* fc, const char* date, int per_page, int page); FLICKCURL_API flickcurl_stat** flickcurl_stats_getPhotostreamReferrers(flickcurl* fc, const char* date, const char* domain, int per_page, int page); FLICKCURL_API int flickcurl_stats_getPhotostreamStats(flickcurl* fc, const char* date); FLICKCURL_API flickcurl_photo** flickcurl_stats_getPopularPhotos(flickcurl* fc, const char* date, const char* sort, int per_page, int page, const char* extras); FLICKCURL_API flickcurl_view_stats* flickcurl_stats_getTotalViews(flickcurl* fc, const char* date); FLICKCURL_API void flickcurl_free_stat(flickcurl_stat *stat); FLICKCURL_API void flickcurl_free_stats(flickcurl_stat **stats_object); FLICKCURL_API void flickcurl_free_view_stats(flickcurl_view_stats *view_stats); /* flickr.tag */ FLICKCURL_API flickcurl_photos_list* flickcurl_tags_getClusterPhotos(flickcurl* fc, const char* tag, const char* cluster_id, flickcurl_photos_list_params* list_params); FLICKCURL_API flickcurl_tag_clusters* flickcurl_tags_getClusters(flickcurl* fc, const char* tag); FLICKCURL_API flickcurl_tag** flickcurl_tags_getHotList(flickcurl* fc, const char* period, int tag_count); FLICKCURL_API flickcurl_tag** flickcurl_tags_getListPhoto(flickcurl* fc, const char* photo_id); FLICKCURL_API flickcurl_tag** flickcurl_tags_getListUser(flickcurl* fc, const char* user_id); FLICKCURL_API flickcurl_tag** flickcurl_tags_getListUserPopular(flickcurl* fc, const char* user_id, int pop_count); FLICKCURL_API flickcurl_tag** flickcurl_tags_getListUserRaw(flickcurl* fc, const char* tag); FLICKCURL_API flickcurl_tag** flickcurl_tags_getMostFrequentlyUsed(flickcurl* fc); FLICKCURL_API flickcurl_tag** flickcurl_tags_getRelated(flickcurl* fc, const char* tag); /* flickr.test */ FLICKCURL_API int flickcurl_test_echo(flickcurl* fc, const char* key, const char* value); FLICKCURL_API char* flickcurl_test_login(flickcurl* fc); FLICKCURL_API int flickcurl_test_null(flickcurl* fc); /* flickr.urls */ FLICKCURL_API char* flickcurl_urls_getGroup(flickcurl* fc, const char* group_id); FLICKCURL_API char* flickcurl_urls_getUserPhotos(flickcurl* fc, const char* user_id); FLICKCURL_API char* flickcurl_urls_getUserProfile(flickcurl* fc, const char* user_id); FLICKCURL_API char* flickcurl_urls_lookupGallery(flickcurl* fc, const char* url); FLICKCURL_API char* flickcurl_urls_lookupGroup(flickcurl* fc, const char* url); FLICKCURL_API char* flickcurl_urls_lookupUser(flickcurl* fc, const char* url); /* Upload API */ FLICKCURL_API FLICKCURL_DEPRECATED flickcurl_upload_status* flickcurl_photos_upload(flickcurl* fc, const char* photo_file, const char *title, const char *description, const char *tags, int is_public, int is_friend, int is_family); FLICKCURL_API flickcurl_upload_status* flickcurl_photos_upload_params(flickcurl* fc, flickcurl_upload_params* params); FLICKCURL_API flickcurl_upload_status* flickcurl_photos_replace(flickcurl* fc, const char* photo_file, const char *photo_id, int async); FLICKCURL_API void flickcurl_free_upload_status(flickcurl_upload_status* status); FLICKCURL_API FLICKCURL_DEPRECATED void flickcurl_upload_status_free(flickcurl_upload_status* status); FLICKCURL_API char* flickcurl_array_join(const char *array[], char delim); FLICKCURL_API char** flickcurl_array_split(const char *str, char delim); FLICKCURL_API void flickcurl_array_free(char *array[]); /* ignore these */ /** * FLICKCURL_DEPRECATED: * * deprecated */ /** * flickcurl_category_s: * @id: ignore * @name: ignore * @path: ignore * @count: ignore * @categories: ignore * @categories_count: ignore * @groups: ignore * @groups_count: ignore * * category_s */ /** * flickcurl_photo_s: * * photo_s */ /** * flickcurl_s: * * flickcurl_s */ /** * flickcurl_serializer_s: * * flickcurl_serializer_s */ /** * flickcurl_shapedata_s: * * flickcurl_shapedata_s */ #ifdef __cplusplus } #endif #endif ���������������������������������������flickcurl-1.25/src/groups-members-api.c�������������������������������������������������������������0000644�0001750�0001750�00000007074�12157645243�015032� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * groups-members-api.c - Flickr flickr.groups.members.* API calls * * Copyright (C) 2009-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_groups_members_getList: * @fc: flickcurl context * @group_id: Return a list of members for this group. The group must be viewable by the Flickr member on whose behalf the API call is made. * @membertypes: Comma separated list of member types: 2: member, 3: moderator 4: admin. By default returns all types. (Returning super rare member type "1: narwhal" isn't supported by this API method) (or NULL) * @per_page: Number of members to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500 (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1 (or < 0) * * Get a list of the members of a group. * * The call must be signed on behalf of a Flickr member, and the * ability to see the group membership will be determined by the * Flickr member's group privileges. * * Implements flickr.groups.members.getList (1.9) * as announced as an experimental API on 2009-02-24: * http://tech.groups.yahoo.com/group/yws-flickr/message/4749 * * Return value: list of members or NULL on failure **/ flickcurl_member** flickcurl_groups_members_getList(flickcurl* fc, const char* group_id, const char* membertypes, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_member** members = NULL; int members_count = 0; char per_page_s[10]; char page_s[10]; flickcurl_init_params(fc, 0); if(!group_id) return NULL; flickcurl_add_param(fc, "group_id", group_id); if(membertypes) { flickcurl_add_param(fc, "membertypes", membertypes); } if(per_page >= 0) { sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); } if(page >= 0) { sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.members.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } members = flickcurl_build_members(fc, xpathCtx, (xmlChar*)"/rsp/members/member", &members_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) members = NULL; return members; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/ticket.c�������������������������������������������������������������������������0000644�0001750�0001750�00000007525�12017302525�012564� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * ticket.c - Flickcurl ticket functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_ticket: * @ticket: ticket object * * Destructor for ticket object */ void flickcurl_free_ticket(flickcurl_ticket *ticket) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(ticket, flickcurl_ticket); free(ticket); } /** * flickcurl_free_tickets: * @tickets_object: ticket object array * * Destructor for array of ticket objects */ void flickcurl_free_tickets(flickcurl_ticket **tickets_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(tickets_object, flickcurl_ticket_array); for(i = 0; tickets_object[i]; i++) flickcurl_free_ticket(tickets_object[i]); free(tickets_object); } flickcurl_ticket** flickcurl_build_tickets(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* ticket_count_p) { flickcurl_ticket** tickets = NULL; int nodes_count; int ticket_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max ticket - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); tickets = (flickcurl_ticket**)calloc(sizeof(flickcurl_ticket*), nodes_count+1); for(i = 0, ticket_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_ticket* t; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } t = (flickcurl_ticket*)calloc(sizeof(flickcurl_ticket), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) { t->id = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "complete")) { t->complete = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "photoid")) { t->photoid = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "invalid")) { t->invalid = atoi(attr_value); free(attr_value); } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "ticket: label %s width %d height %d source %s url %s\n", t->label, t->width, t->height, t->source, t->url); #endif tickets[ticket_count++] = t; } /* for nodes */ if(ticket_count_p) *ticket_count_p = ticket_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return tickets; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/collection.c���������������������������������������������������������������������0000644�0001750�0001750�00000023622�12017322551�013431� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * collection.c - Flickcurl collection functions * * Copyright (C) 2009-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_collection: * @collection: collection * * Destructor collection */ void flickcurl_free_collection(flickcurl_collection *collection) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(collection, flickcurl_collection); if(collection->collections) { int i; for(i = 0; collection->collections[i]; i++) flickcurl_free_collection(collection->collections[i]); } if(collection->photos) flickcurl_free_photos(collection->photos); if(collection->description) free(collection->description); if(collection->title) free(collection->title); if(collection->secret) free(collection->secret); if(collection->iconsmall) free(collection->iconsmall); if(collection->iconlarge) free(collection->iconlarge); if(collection->id) free(collection->id); free(collection); } typedef enum { COLLECTION_FIELD_id, COLLECTION_FIELD_child_count, COLLECTION_FIELD_date_created, COLLECTION_FIELD_iconlarge, COLLECTION_FIELD_iconsmall, COLLECTION_FIELD_server, COLLECTION_FIELD_secret, COLLECTION_FIELD_title, COLLECTION_FIELD_description, COLLECTION_FIELD_iconphotos } flickcurl_collection_field_type; /* * The XPaths here are relative, such as prefixed by /rsp/person */ static struct { const xmlChar* xpath; flickcurl_collection_field_type field; flickcurl_field_value_type type; } collection_fields_table[PHOTO_FIELD_LAST + 4] = { { (const xmlChar*)"./@id", COLLECTION_FIELD_id, VALUE_TYPE_COLLECTION_ID, } , { (const xmlChar*)"./@child_count", COLLECTION_FIELD_child_count, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@datecreate", COLLECTION_FIELD_date_created, VALUE_TYPE_UNIXTIME } , { (const xmlChar*)"./@iconlarge", COLLECTION_FIELD_iconlarge, VALUE_TYPE_STRING } , { (const xmlChar*)"./@iconsmall", COLLECTION_FIELD_iconsmall, VALUE_TYPE_STRING } , { (const xmlChar*)"./@server", COLLECTION_FIELD_server, VALUE_TYPE_INTEGER } , { (const xmlChar*)"./@secret", COLLECTION_FIELD_secret, VALUE_TYPE_STRING } , { (const xmlChar*)"./title", COLLECTION_FIELD_title, VALUE_TYPE_STRING } , { (const xmlChar*)"./description", COLLECTION_FIELD_description, VALUE_TYPE_STRING } , { (const xmlChar*)"./iconphotos/photo", COLLECTION_FIELD_iconphotos, VALUE_TYPE_ICON_PHOTOS } , { NULL, (flickcurl_collection_field_type)0, (flickcurl_field_value_type)0 } }; flickcurl_collection** flickcurl_build_collections(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* collection_count_p) { flickcurl_collection** collections = NULL; int nodes_count; int collection_count; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xmlChar full_xpath[512]; size_t xpathExpr_len; int i; xpathExpr_len = strlen((const char*)xpathExpr); memcpy(full_xpath, xpathExpr, xpathExpr_len + 1); xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); collections = (flickcurl_collection**)calloc(sizeof(flickcurl_collection*), nodes_count+1); for(i = 0, collection_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; flickcurl_collection* collection; int expri; xmlXPathContextPtr xpathNodeCtx = NULL; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } collection = (flickcurl_collection*)calloc(sizeof(flickcurl_collection), 1); /* set up a new XPath context relative to the current node */ xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); xpathNodeCtx->node = node; for(expri = 0; collection_fields_table[expri].xpath; expri++) { flickcurl_collection_field_type field = collection_fields_table[expri].field; flickcurl_field_value_type datatype = collection_fields_table[expri].type; const xmlChar *field_xpath = collection_fields_table[expri].xpath; char *string_value; int int_value= -1; time_t unix_time; if(datatype == VALUE_TYPE_ICON_PHOTOS) { collection->photos = flickcurl_build_photos(fc, xpathNodeCtx, field_xpath, &collection->photos_count); continue; } string_value = flickcurl_xpath_eval(fc, xpathNodeCtx, field_xpath); if(!string_value) continue; switch(datatype) { case VALUE_TYPE_UNIXTIME: case VALUE_TYPE_DATETIME: if(datatype == VALUE_TYPE_UNIXTIME) unix_time = atoi(string_value); else unix_time = curl_getdate((const char*)string_value, NULL); if(unix_time >= 0) { #if FLICKCURL_DEBUG > 1 char* new_value = flickcurl_unixtime_to_isotime(unix_time); fprintf(stderr, " date from: '%s' unix time %ld to '%s'\n", value, (long)unix_time, new_value); #endif int_value = (int)unix_time; } else { /* else failed to convert */ int_value = -1; } break; case VALUE_TYPE_INTEGER: case VALUE_TYPE_BOOLEAN: int_value = atoi(string_value); break; case VALUE_TYPE_COLLECTION_ID: case VALUE_TYPE_NONE: case VALUE_TYPE_STRING: case VALUE_TYPE_FLOAT: case VALUE_TYPE_URI: break; case VALUE_TYPE_ICON_PHOTOS: case VALUE_TYPE_PHOTO_ID: case VALUE_TYPE_PHOTO_URI: case VALUE_TYPE_MEDIA_TYPE: case VALUE_TYPE_TAG_STRING: case VALUE_TYPE_PERSON_ID: abort(); } switch(field) { case COLLECTION_FIELD_id: collection->id = string_value; break; case COLLECTION_FIELD_child_count: collection->child_count = int_value; break; case COLLECTION_FIELD_date_created: collection->date_created = int_value; free(string_value); break; case COLLECTION_FIELD_iconlarge: collection->iconlarge = string_value; break; case COLLECTION_FIELD_iconsmall: collection->iconsmall = string_value; break; case COLLECTION_FIELD_server: collection->server = int_value; break; case COLLECTION_FIELD_secret: collection->secret = string_value; break; case COLLECTION_FIELD_title: collection->title = string_value; break; case COLLECTION_FIELD_description: collection->description = string_value; break; case COLLECTION_FIELD_iconphotos: fprintf(stderr, "Do not know how to handle iconphotos field yet\n"); break; } if(fc->failed) { if(collection) flickcurl_free_collection(collection); goto tidy; } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "Collection id %s secret %s server %d\n" " Title %s\n" " Description %s\n" " Large icon %s\n" " Small Icon %s\n", collection->id, collection->secret, collection->server, collection->title, collection->description, collection->iconlarge, collection->iconsmall); #endif collections[collection_count++] = collection; } /* for collections */ if(collection_count_p) *collection_count_p = collection_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); if(fc->failed) { if(collections) flickcurl_free_collections(collections); collections = NULL; } return collections; } flickcurl_collection* flickcurl_build_collection(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* root_xpathExpr) { flickcurl_collection** collections; flickcurl_collection* result = NULL; collections = flickcurl_build_collections(fc, xpathCtx, root_xpathExpr, NULL); if(collections) { result = collections[0]; free(collections); } return result; } /** * flickcurl_free_collections: * @collections: collection object array * * Destructor for array of collection object */ void flickcurl_free_collections(flickcurl_collection** collections) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(collections, flickcurl_collection_array); for(i = 0; collections[i]; i++) flickcurl_free_collection(collections[i]); free(collections); } ��������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/contacts-api.c�������������������������������������������������������������������0000644�0001750�0001750�00000022215�12175637064�013675� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * contacts-api.c - Flickr flickr.contacts.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * Copyright (C) 2007 Vanilla I. Shu <vanilla -at- fatpipi.cirx.org> * (flickcurl_contacts_getList, flickcurl_contacts_getPublicList) * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_contacts_getList: * @fc: flickcurl context * @filter: An optional filter of the results. The following values are valid: friends, family, both or neither (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. (or NULL) * * Get a list of contacts for the calling user. * * Implements flickr.contacts.getList (0.11) * * Return value: NULL on failure **/ flickcurl_contact** flickcurl_contacts_getList(flickcurl* fc, const char* filter, int page, int per_page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_contact** contacts = NULL; int contacts_count = 0; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 1); if(filter) { flickcurl_add_param(fc, "filter", filter); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.contacts.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } contacts = flickcurl_build_contacts(fc, xpathCtx, (xmlChar*)"/rsp/contacts/contact", &contacts_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) contacts = NULL; return contacts; } /** * flickcurl_contacts_getListRecentlyUploaded: * @fc: flickcurl context * @date_lastupload: Limits the results to contacts that have uploaded photos since this date (in the form of a Unix timestamp). The default, and maximum, offset is 1 hour. (or < 0) * @filter: Limit the result set to all contacts or only those who are friends or family. Valid options are: ff: friends and family, all: all your contacts. Default value is "all". (or NULL) * * Return a list of contacts for a user who have recently uploaded * photos along with the total count of photos uploaded. * * This API added 2009-01-14 as announced in * http://tech.groups.yahoo.com/group/yws-flickr/message/4668 * * Implements flickr.contacts.getListRecentlyUploaded (1.8) * * Return value: NULL on failure **/ flickcurl_contact** flickcurl_contacts_getListRecentlyUploaded(flickcurl* fc, int date_lastupload, const char* filter) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_contact** contacts = NULL; int contacts_count = 0; char date_lastupload_str[20]; flickcurl_init_params(fc, 0); if(date_lastupload >= 0) { sprintf(date_lastupload_str, "%d", date_lastupload); flickcurl_add_param(fc, "date_lastupload", date_lastupload_str); } if(filter) { flickcurl_add_param(fc, "filter", filter); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.contacts.getListRecentlyUploaded")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } contacts = flickcurl_build_contacts(fc, xpathCtx, (xmlChar*)"/rsp/contacts/contact", &contacts_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) contacts = NULL; return contacts; } /** * flickcurl_contacts_getPublicList: * @fc: flickcurl context * @user_id: The NSID of the user to fetch the contact list for. * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. (or NULL) * * Get the contact list for a user. * * Implements flickr.contacts.getPublicList (0.11) * * Return value: list of contacts or NULL on failure **/ flickcurl_contact** flickcurl_contacts_getPublicList(flickcurl* fc, const char* user_id, int page, int per_page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_contact** contacts = NULL; int contacts_count = 0; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 1); if (!user_id) return NULL; flickcurl_add_param(fc, "user_id", user_id); if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.contacts.getPublicList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } contacts = flickcurl_build_contacts(fc, xpathCtx, (xmlChar*)"/rsp/contacts/contact", &contacts_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) contacts = NULL; return contacts; } /** * flickcurl_contacts_getTaggingSuggestions: * @fc: flickcurl context * @include_self: Return calling user in the list of suggestions. Default: true. (or NULL) * @include_address_book: Include suggestions from the user's address book. Default: false (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * @per_page: Number of contacts to return per page. If this argument is omitted, all contacts will be returned. (or < 0) * * Get suggestions for tagging people in photos based on the calling user's contacts. * * Implements flickr.contacts.getTaggingSuggestions (1.25) * * NOTE: Parameter order is @page, @per_page like all other * flickr.contacts.* calls, NOT @per_page, @page like in the API * docs. * * Return value: list of contacts or NULL on failure **/ flickcurl_contact** flickcurl_contacts_getTaggingSuggestions(flickcurl* fc, const char* include_self, const char* include_address_book, int page, int per_page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_contact** contacts = NULL; int contacts_count = 0; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 0); if(include_self) flickcurl_add_param(fc, "include_self", include_self); if(include_address_book) flickcurl_add_param(fc, "include_address_book", include_address_book); if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.contacts.getTaggingSuggestions")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } contacts = flickcurl_build_contacts(fc, xpathCtx, (xmlChar*)"/rsp/contacts/contact", &contacts_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) contacts = NULL; return contacts; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/config.c�������������������������������������������������������������������������0000644�0001750�0001750�00000017170�12016712660�012547� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * config.c - INI configuration file handling * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <ctype.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #ifdef HAVE_ERRNO_H #include <errno.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> #undef CONFIG_DEBUG /** * flickcurl_config_read_ini: * @fc: flickcurl config * @filename: filename * @section: section name to use * @user_data: user data pointer for handler (usually the @fc ) * @handler: config variable handler function (usually flickcurl_config_var_handler() ) * * Read flickcurl library configuration in .INI format from a filename * * Return value: non-0 on failure */ int flickcurl_config_read_ini(flickcurl* fc, const char* filename, const char* section, void* user_data, set_config_var_handler handler) { FILE* fh; #define INI_BUF_SIZE 255 char buf[INI_BUF_SIZE+1]; int in_section = 0; int lineno = 1; size_t section_len; if(!fc || !filename || !section || !handler) return 1; if(access((const char*)filename, R_OK)) { flickcurl_error(fc, "Failed to access config file %s for reading", filename); return 1; } fh = fopen(filename, "r"); if(!fh) { flickcurl_error(fc, "Failed to open %s for reading - %s", filename, strerror(errno)); return 1; } section_len = strlen(section); while(!feof(fh)) { size_t len; char *line; char *p; int warned = 0; int c = -1; int lastch = -1; for(line = buf, len = 0; !feof(fh); lastch = c) { c = fgetc(fh); if(c == '\n') { /* Line endings: \n or \r\n (\r is removed after this loop) */ lineno++; break; } else if (lastch == '\r') { /* Line ending: \r - need to put back this character */ ungetc(c, fh); line--; len--; lineno++; break; } if(len > INI_BUF_SIZE) { if(!warned++) fprintf(stderr, "flickcurl_config_read_ini(): line %d too long - truncated\n", lineno); continue; } *line++ = c; len++; } *line = '\0'; if(!len) continue; #ifdef CONFIG_DEBUG fprintf(stderr, "Line 1 >>%s<<\n", line); #endif /* remove leading spaces */ for(line = buf; *line && (*line == ' ' || *line == '\t'); line++, len--) ; /* remove trailing \r, \n or \r\n */ if(line[len-1] == '\n') line[(len--)-1] = '\0'; if(line[len-1] == '\r') line[(len--)-1] = '\0'; #ifdef CONFIG_DEBUG fprintf(stderr, "Line 2 >>%s<<\n", line); #endif /* skip if empty line or all white space OR starts with a comment */ if(!*line || *line == '#') continue; #ifdef CONFIG_DEBUG fprintf(stderr, "Line 3 >>%s<<\n", line); #endif /* Wait for a line '['application']' */ if(!in_section) { if(*line == '[' && line[len-1] == ']' && (len - 2) == section_len && !strncmp(line + 1, section, len - 2) ) in_section = 1; continue; } /* End at a line starting with '[' */ if(*line == '[') break; #ifdef CONFIG_DEBUG fprintf(stderr, "Line 4 >>%s<<\n", line); #endif p = strchr(line, '='); if(p) { char *kchar; *p = '\0'; /* remove trailing spaces at end of key */ kchar = (p-1); while(kchar >= line && isspace(*kchar)) *kchar-- = '\0'; /* remove leading spaces at start of value */ p++; while(*p && isspace(*p)) p++; #ifdef CONFIG_DEBUG fprintf(stderr, "Found key '%s' value '%s'\n", line, p); #endif if(handler) handler(user_data, line, p); } } fclose(fh); return 0; } /** * read_ini_config: * @filename: filename * @section: section name to use * @user_data: user data pointer for handler * @handler: config variable handler function * * @Deprecated for flickcurl_config_read_ini() * * Read .INI config * * Return value: non-0 on failure */ int read_ini_config(const char* filename, const char* section, void* user_data, set_config_var_handler handler) { return flickcurl_config_read_ini(NULL, filename, section, user_data, handler); } /** * flickcurl_config_var_handler: * @userdata: user data pointing to #flickcurl object * @key: var key * @value: var value * * Standard handler for flickcurl_config_read_ini() * */ void flickcurl_config_var_handler(void* userdata, const char* key, const char* value) { flickcurl *fc = (flickcurl *)userdata; if(!strcmp(key, "api_key")) flickcurl_set_api_key(fc, value); else if(!strcmp(key, "secret")) flickcurl_set_shared_secret(fc, value); else if(!strcmp(key, "auth_token")) flickcurl_set_auth_token(fc, value); else if(!strcmp(key, "oauth_client_key")) flickcurl_set_oauth_client_key(fc, value); else if(!strcmp(key, "oauth_client_secret")) flickcurl_set_oauth_client_secret(fc, value); else if(!strcmp(key, "oauth_token")) flickcurl_set_oauth_token(fc, value); else if(!strcmp(key, "oauth_token_secret")) flickcurl_set_oauth_token_secret(fc, value); } /** * flickcurl_config_write_ini: * @fc: #flickcurl object * @filename: filename * @section: section name to use * * Write flickcurl library configuration in INI file format to the given file * * Return value: non-0 on failure * */ int flickcurl_config_write_ini(flickcurl *fc, const char* filename, const char* section) { const char* s; FILE *fh; if(!fc || !filename || !section) return 1; fh = fopen(filename, "w"); if(!fh) { flickcurl_error(fc, "Failed to write to configuration file %s - %s", filename, strerror(errno)); return 1; } fputc('[', fh); fputs(section, fh); fputc(']', fh); s = flickcurl_get_oauth_token(fc); if(s) { /* OAuth token and secret */ fputs("\noauth_token=", fh); fputs(s, fh); s = flickcurl_get_oauth_token_secret(fc); if(s) { fputs("\noauth_token_secret=", fh); fputs(s, fh); } s = flickcurl_get_oauth_client_key(fc); if(s) { fputs("\noauth_client_key=", fh); fputs(s, fh); } s = flickcurl_get_oauth_client_secret(fc); if(s) { fputs("\noauth_client_secret=", fh); fputs(s, fh); } } else { /* Legacy Flickr auth */ s = flickcurl_get_auth_token(fc); if(s) { fputs("\noauth_token=", fh); fputs(s, fh); } s = flickcurl_get_shared_secret(fc); if(s) { fputs("\noauth_secret=", fh); fputs(s, fh); } s = flickcurl_get_api_key(fc); if(s) { fputs("\napi_key=", fh); fputs(s, fh); } } fputs("\n", fh); fclose(fh); return 0; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/panda-api.c����������������������������������������������������������������������0000644�0001750�0001750�00000013243�12157645243�013141� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * flickr.panda-api.c - Flickr flickr.panda.* API calls * * Copyright (C) 2009-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static char** flickcurl_build_pandas(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* panda_count_p) { char** pandas = NULL; int nodes_count; int panda_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); pandas = (char**)calloc(sizeof(char*), nodes_count+1); for(i = 0, panda_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; char *panda = NULL; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } /* Use first text child node of <panda> as panda name */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); panda = (char*)malloc(len + 1); memcpy(panda, chnode->content, len + 1); break; } } if(panda) { #if FLICKCURL_DEBUG > 1 fprintf(stderr, "panda: %s\n", panda); #endif pandas[panda_count++] = panda; } } /* for nodes */ if(panda_count_p) *panda_count_p = panda_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return pandas; } /** * flickcurl_panda_getList: * @fc: flickcurl context * * Get the current list of Flickr Pandas * * Can be used with flickcurl_panda_getPhotos() to get photos for the * given <ulink url="http://www.flickr.com/explore/panda">Flickr Panda</ulink> * * Announced 2009-03-03 * http://code.flickr.com/blog/2009/03/03/panda-tuesday-the-history-of-the-panda-new-apis-explore-and-you/ * * Implements flickr.panda.getList (1.9) * * Return value: non-0 on failure **/ char** flickcurl_panda_getList(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char **pandas = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.panda.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } pandas = flickcurl_build_pandas(fc, xpathCtx, (const xmlChar*)"/rsp/pandas/panda", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(pandas) free(pandas); pandas = NULL; } return pandas; } /** * flickcurl_panda_getPhotos: * @fc: flickcurl context * @panda_name: The name of the panda to ask for photos from. * * Ask the Flickr Pandas for a list of recent public (and "safe") photos. * * Use flickcurl_panda_getList() to get the list of * <ulink url="http://www.flickr.com/explore/panda">Flickr Pandas</ulink> * * Announced 2009-03-03 * http://code.flickr.com/blog/2009/03/03/panda-tuesday-the-history-of-the-panda-new-apis-explore-and-you/ * * Only "supports the following extras: ownername, license, * date_upload, date_taken, tags, machine_tags, views, media" - * Sergey M., Flickr staff 2011-09-16 * http://tech.groups.yahoo.com/group/yws-flickr/message/7203 * * Implements flickr.panda.getPhotos (1.9) * * Return value: photos array or NULL on failure **/ flickcurl_photo** flickcurl_panda_getPhotos(flickcurl *fc, const char *panda_name) { flickcurl_photo** photos = NULL; flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!panda_name) return NULL; flickcurl_add_param(fc, "panda_name", panda_name); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.panda.getPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); if(!photos_list) fc->failed = 1; tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } if(photos_list) { photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); } return photos; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/legacy-auth.c��������������������������������������������������������������������0000644�0001750�0001750�00000016524�12157645243�013517� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * legacy-auth.c - Flickr Legacy authentication * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static int compare_args(const void *a, const void *b) { return strcmp(*(char**)a, *(char**)b); } static void flickcurl_sort_args(flickcurl *fc) { qsort((void*)fc->parameters, fc->count, sizeof(char*[2]), compare_args); } int flickcurl_legacy_prepare_common(flickcurl *fc, const char* service_uri, const char* method, const char* upload_field, const char* upload_value, int parameters_in_url, int need_auth) { int i; char *md5_string = NULL; size_t* values_len = NULL; unsigned int fc_uri_len = 0; unsigned int full_uri_len = 0; if(!service_uri) return 1; /* If one is given, both are required */ if((upload_field || upload_value) && (!upload_field || !upload_value)) return 1; fc->failed = 0; fc->error_code = 0; if(fc->error_msg) { free(fc->error_msg); fc->error_msg = NULL; } if(fc->param_fields) { for(i = 0; fc->param_fields[i]; i++) { free(fc->param_fields[i]); free(fc->param_values[i]); } free(fc->param_fields); free(fc->param_values); fc->param_fields = NULL; fc->param_values = NULL; fc->parameter_count = 0; } if(fc->upload_field) { free(fc->upload_field); fc->upload_field = NULL; } if(fc->upload_value) { free(fc->upload_value); fc->upload_value = NULL; } if(!fc->secret) { flickcurl_error(fc, "No legacy Flickr auth secret"); return 1; } if(!fc->api_key) { flickcurl_error(fc, "No API Key (OAuth Client Key)"); return 1; } if(fc->method) free(fc->method); if(method) { size_t len = strlen(method); fc->method = (char*)malloc(len + 1); memcpy(fc->method, method, len + 1); } else fc->method = NULL; if(fc->method) flickcurl_add_param(fc, "method", fc->method); flickcurl_add_param(fc, "api_key", fc->api_key); if(need_auth && fc->auth_token) flickcurl_add_param(fc, "auth_token", fc->auth_token); flickcurl_end_params(fc); /* +1 for api_sig +1 for NULL terminating pointer */ fc->param_fields = (char**)calloc(fc->count + 2, sizeof(char*)); fc->param_values = (char**)calloc(fc->count + 2, sizeof(char*)); values_len = (size_t*)calloc(fc->count + 2, sizeof(size_t)); if((need_auth && fc->auth_token) || fc->sign) flickcurl_sort_args(fc); fc_uri_len = strlen(service_uri); full_uri_len = fc_uri_len; if(parameters_in_url) /* for ? */ full_uri_len++; /* Save away the parameters and calculate the value lengths */ for(i = 0; fc->parameters[i][0]; i++) { size_t param_len = strlen(fc->parameters[i][0]); if(fc->parameters[i][1]) values_len[i] = strlen(fc->parameters[i][1]); else { values_len[i] = 0; fc->parameters[i][1] = ""; } fc->param_fields[i] = (char*)malloc(param_len + 1); memcpy(fc->param_fields[i], fc->parameters[i][0], param_len + 1); fc->param_values[i] = (char*)malloc(values_len[i] + 1); memcpy(fc->param_values[i], fc->parameters[i][1], values_len[i] + 1); /* 3x value len is conservative URI %XX escaping on every char */ full_uri_len += param_len + 1 /* = */ + 3 * values_len[i]; } if(upload_field) { size_t len = strlen(upload_field); fc->upload_field = (char*)malloc(len + 1); memcpy(fc->upload_field, upload_field, len + 1); len = strlen(upload_value); fc->upload_value = (char*)malloc(len + 1); memcpy(fc->upload_value, upload_value, len + 1); } if((need_auth && fc->auth_token) || fc->sign) { size_t secret_len; size_t buf_len = 0; char *buf; char *p; secret_len = strlen(fc->secret); buf_len = secret_len; for(i = 0; fc->parameters[i][0]; i++) buf_len += strlen(fc->parameters[i][0]) + values_len[i]; buf = (char*)malloc(buf_len + 1); p = buf; memcpy(p, fc->secret, secret_len); p += secret_len; for(i = 0; fc->parameters[i][0]; i++) { size_t len = strlen(fc->parameters[i][0]); memcpy(p, fc->parameters[i][0], len); p += len; memcpy(p, fc->parameters[i][1], values_len[i]); p += values_len[i]; } *p = '\0'; #ifdef FLICKCURL_DEBUG fprintf(stderr, "MD5 Buffer '%s'\n", buf); #endif md5_string = MD5_string(buf); flickcurl_add_param(fc, "api_sig", md5_string); fc->count--; /* Add a new parameter pair */ values_len[fc->count] = 32; /* MD5 is always 32 */ fc->param_fields[fc->count] = (char*)malloc(7+1); /* 7 = strlen(api_sig) */ memcpy(fc->param_fields[fc->count], fc->parameters[fc->count][0], 7 + 1); fc->param_values[fc->count] = (char*)malloc(32+1); /* 32 = MD5 */ memcpy(fc->param_values[fc->count], fc->parameters[fc->count][1], 32 + 1); full_uri_len += 7 /* "api_sig" */ + 1 /* = */ + 32 /* MD5 value: never escaped */; fc->count++; #ifdef FLICKCURL_DEBUG fprintf(stderr, "Signature: '%s'\n", fc->parameters[fc->count - 1][1]); #endif free(buf); flickcurl_end_params(fc); } /* add &s between parameters */ full_uri_len += fc->count - 1; /* reuse or grow uri buffer */ if(fc->uri_len < full_uri_len) { free(fc->uri); fc->uri = (char*)malloc(full_uri_len + 1); fc->uri_len = full_uri_len; } memcpy(fc->uri, service_uri, fc_uri_len); fc->uri[fc_uri_len] = '\0'; if(parameters_in_url) { char* p = fc->uri + fc_uri_len; *p++ = '?'; for(i = 0; fc->parameters[i][0]; i++) { char *value = (char*)fc->parameters[i][1]; int value_is_escaped = 0; size_t len; if(!fc->parameters[i][1]) continue; len = strlen(fc->parameters[i][0]); memcpy(p, fc->parameters[i][0], len); p += len; *p++ = '='; len = values_len[i]; if(!strcmp(fc->parameters[i][0], "method")) { /* do not touch method name */ } else { value = curl_escape(value, len); len = strlen(value); value_is_escaped = 1; } memcpy(p, value, len); p += len; if(value_is_escaped) curl_free(value); *p++ = '&'; } /* zap last & and terminate fc->url */ *--p = '\0'; } #ifdef FLICKCURL_DEBUG fprintf(stderr, "URI is '%s'\n", fc->uri); FLICKCURL_ASSERT((strlen(fc->uri) != fc_uri_len), "Final URI does not match expected length"); #endif if(md5_string) free(md5_string); if(values_len) free(values_len); return 0; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photos-comments-api.c������������������������������������������������������������0000644�0001750�0001750�00000016254�12157645243�015222� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-comments-api.c - Flickr flickr.photos.comments.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_comments_addComment: * @fc: flickcurl context * @photo_id: The id of the photo to add a comment to. * @comment_text: Text of the comment * * Add comment to a photo as the currently authenticated user. * * Implements flickr.photos.comments.addComment (0.10) * * Return value: new comment ID or non-NULL on failure **/ char* flickcurl_photos_comments_addComment(flickcurl* fc, const char* photo_id, const char* comment_text) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* id = NULL; flickcurl_init_params(fc, 1); if(!photo_id || !comment_text) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "comment_text", comment_text); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.comments.addComment")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } id = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/comment/@id"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) id = NULL; return id; } /** * flickcurl_photos_comments_deleteComment: * @fc: flickcurl context * @comment_id: The id of the comment to edit. * * Delete a comment as the currently authenticated user. * * Implements flickr.photos.comments.deleteComment (0.10) * * Return value: non-0 on failure **/ int flickcurl_photos_comments_deleteComment(flickcurl* fc, const char* comment_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!comment_id) return 1; flickcurl_add_param(fc, "comment_id", comment_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.comments.deleteComment")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_comments_editComment: * @fc: flickcurl context * @comment_id: The id of the comment to edit. * @comment_text: Update the comment to this text. * * Edit the text of a comment as the currently authenticated user. * * Implements flickr.photos.comments.editComment (0.10) * * Return value: non-0 on failure **/ int flickcurl_photos_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!comment_id || !comment_text) return 1; flickcurl_add_param(fc, "comment_id", comment_id); flickcurl_add_param(fc, "comment_text", comment_text); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.comments.editComment")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_comments_getList: * @fc: flickcurl context * @photo_id: The id of the photo to fetch comments for. * * Returns the comments for a photo * * Implements flickr.photos.comments.getList (0.10) * * Return value: array of comments or NULL on failure **/ flickcurl_comment** flickcurl_photos_comments_getList(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_comment** comments = NULL; int comments_count = 0; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.comments.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } comments = flickcurl_build_comments(fc, xpathCtx, (xmlChar*)"/rsp/comments/comment", &comments_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) comments = NULL; return comments; } /** * flickcurl_photos_comments_getRecentForContacts_params: * @fc: flickcurl context * @date_lastcomment: Limits the resultset to photos that have been commented on since this date. The date should be in the form of a Unix timestamp. The default, and maximum, offset is (1) hour (or <0) * @contacts_filter: A comma-separated list of contact NSIDs to limit the scope of the query to (or NULL) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Return the list of photos belonging to your contacts that have * been commented on recently. * * Implements flickr.photos.comments.getRecentForContacts (1.12) * * Return value: list of photos or NULL on failure **/ flickcurl_photos_list* flickcurl_photos_comments_getRecentForContacts_params(flickcurl* fc, int date_lastcomment, const char* contacts_filter, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; char date_lastcomment_str[20]; flickcurl_init_params(fc, 0); /* API parameters */ if(date_lastcomment >= 0) { sprintf(date_lastcomment_str, "%d", date_lastcomment); flickcurl_add_param(fc, "date_lastcomment", date_lastcomment_str); } if(contacts_filter) { flickcurl_add_param(fc, "contacts_filter", contacts_filter); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.comments.getRecentForContacts")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: return photos_list; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photos-upload-api.c��������������������������������������������������������������0000644�0001750�0001750�00000004766�12157645243�014666� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * flickr.photos.upload-api.c - Flickr flickr.photos.upload.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_upload_checkTickets: * @fc: flickcurl context * @tickets_ids: Array of ticket ids * * Checks the status of one or more asynchronous photo upload tickets. * * Implements flickr.photos.upload.checkTickets (0.13) * * Return value: non-0 on failure **/ flickcurl_ticket** flickcurl_photos_upload_checkTickets(flickcurl* fc, const char** tickets_ids) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_ticket** tickets = NULL; char* tickets_ids_string = NULL; flickcurl_init_params(fc, 0); if(!tickets_ids) return NULL; tickets_ids_string = flickcurl_array_join(tickets_ids, ','); flickcurl_add_param(fc, "tickets", tickets_ids_string); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.upload.checkTickets")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tickets = flickcurl_build_tickets(fc, xpathCtx, (const xmlChar*)"/rsp/uploader/ticket", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tickets = NULL; if(tickets_ids_string) free(tickets_ids_string); return tickets; } ����������flickcurl-1.25/src/comments.c�����������������������������������������������������������������������0000644�0001750�0001750�00000011670�12017302525�013122� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * comments.c - Flickcurl method comment functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_comment: * @comment_object: comment object * * Destructor for comment object */ void flickcurl_free_comment(flickcurl_comment *comment_object) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(comment_object, flickcurl_comment); if(comment_object->id) free(comment_object->id); if(comment_object->author) free(comment_object->author); if(comment_object->authorname) free(comment_object->authorname); if(comment_object->permalink) free(comment_object->permalink); if(comment_object->text) free(comment_object->text); free(comment_object); } /** * flickcurl_free_comments: * @comments_object: comment object array * * Destructor for array of comment object */ void flickcurl_free_comments(flickcurl_comment **comments_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(comments_object, flickcurl_comment_array); for(i = 0; comments_object[i]; i++) flickcurl_free_comment(comments_object[i]); free(comments_object); } flickcurl_comment** flickcurl_build_comments(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* comment_count_p) { flickcurl_comment** comments = NULL; int nodes_count; int comment_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do comments */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); comments = (flickcurl_comment**)calloc(sizeof(flickcurl_comment*), nodes_count+1); for(i = 0, comment_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_comment* comment_object; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } comment_object = (flickcurl_comment*)calloc(sizeof(flickcurl_comment), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) comment_object->id = attr_value; else if(!strcmp(attr_name, "author")) comment_object->author = attr_value; else if(!strcmp(attr_name, "authorname")) comment_object->authorname = attr_value; else if(!strcmp(attr_name, "datecreate")) { comment_object->datecreate = atoi((const char*)attr_value); free(attr_value); } else if(!strcmp(attr_name, "permalink")) comment_object->permalink = attr_value; else free(attr_value); } /* Walk children nodes for comment text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); comment_object->text = (char*)malloc(len + 1); memcpy(comment_object->text, chnode->content, len +1); break; } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "comment: ID %s author %s authorname %s datecreate %d permalink %s text '%s'\n", comment_object->id, comment_object->author, comment_object->authorname, comment_object->datecreate, comment_object->permalink, comment_object->text); #endif comments[comment_count++] = comment_object; } /* for nodes */ if(comment_count_p) *comment_count_p = comment_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return comments; } ������������������������������������������������������������������������flickcurl-1.25/src/video.c��������������������������������������������������������������������������0000644�0001750�0001750�00000007002�11313565136�012404� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * video.c - Flickr video support calls * * Copyright (C) 2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_video: * @video: video object * * Destructor for video object */ void flickcurl_free_video(flickcurl_video *video) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(video, flickcurl_video); free(video); } flickcurl_video* flickcurl_build_video(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_video* v = NULL; int nodes_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; int count = 0; /* Now do video */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); v = (flickcurl_video*)calloc(1, sizeof(flickcurl_video)); if(!v) { flickcurl_error(fc, "Unable to allocate the memory needed for video."); fc->failed = 1; goto tidy; } for(i = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; const char *node_name = (const char*)node->name; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } if(strcmp(node_name, "video")) continue; count++; for(attr = node->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; int attr_value = atoi((const char*)attr->children->content); if(!strcmp(attr_name, "ready")) v->ready = attr_value; else if(!strcmp(attr_name, "failed")) v->failed = attr_value; else if(!strcmp(attr_name, "pending")) v->pending = attr_value; else if(!strcmp(attr_name, "duration")) v->duration = attr_value; else if(!strcmp(attr_name, "width")) v->width = attr_value; else if(!strcmp(attr_name, "height")) v->height = attr_value; } } /* for nodes */ if(!count) { flickcurl_free_video(v); v = NULL; } #if FLICKCURL_DEBUG > 1 else { fprintf(stderr, "video: ready %d failed %d pending %d duration %d width %d height %d\n", v->ready, v->failed, v->pending, v->duration, v->width, v->height); } #endif tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return v; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/commons-api.c��������������������������������������������������������������������0000644�0001750�0001750�00000004417�12157645243�013534� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * commons-api.c - Flickr flickr.commons.* API calls * * Commons API announced 2009-01-29 * http://flickr.com/groups/api/discuss/72157613093793775/ * * Copyright (C) 2009-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_commons_getInstitutions: * @fc: flickcurl context * * Retrieves a list of the current Commons institutions. * * Implements flickr.commons.getInstitutions (1.8) * * Return value: non-0 on failure **/ flickcurl_institution** flickcurl_commons_getInstitutions(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_institution** institutions = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.commons.getInstitutions")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } institutions = flickcurl_build_institutions(fc, xpathCtx, (const xmlChar*)"/rsp/institutions/institution", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) institutions = NULL; return institutions; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photos-notes-api.c���������������������������������������������������������������0000644�0001750�0001750�00000012376�12157645243�014526� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-notes-api.c - Flickr flickr.photos.notes.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_notes_add: * @fc: flickcurl context * @photo_id: The id of the photo to add a note to * @note_x: The left coordinate of the note * @note_y: The top coordinate of the note * @note_w: The width of the note * @note_h: The height of the note * @note_text: The description of the note * * Add a note to a photo. * * Coordinates and sizes are in pixels, based on the 500px image size * shown on individual photo pages. * * Implements flickr.photos.notes.add (0.12) * * Return value: note ID or NULL on failure **/ char* flickcurl_photos_notes_add(flickcurl* fc, const char* photo_id, int note_x, int note_y, int note_w, int note_h, const char* note_text) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char *id = NULL; char note_x_s[10]; char note_y_s[10]; char note_w_s[10]; char note_h_s[10]; flickcurl_init_params(fc, 1); if(!photo_id || !note_text) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(note_x_s, "%d", note_x); flickcurl_add_param(fc, "note_x", note_x_s); sprintf(note_y_s, "%d", note_y); flickcurl_add_param(fc, "note_y", note_y_s); sprintf(note_w_s, "%d", note_w); flickcurl_add_param(fc, "note_w", note_w_s); sprintf(note_h_s, "%d", note_h); flickcurl_add_param(fc, "note_h", note_h_s); flickcurl_add_param(fc, "note_text", note_text); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.notes.add")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } id = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/note/@id"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) id = NULL; return id; } /** * flickcurl_photos_notes_delete: * @fc: flickcurl context * @note_id: The id of the note to delete * * Delete a note from a photo. * * Implements flickr.photos.notes.delete (0.12) * * Return value: non-0 on failure **/ int flickcurl_photos_notes_delete(flickcurl* fc, const char* note_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!note_id) return 1; flickcurl_add_param(fc, "note_id", note_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.notes.delete")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photos_notes_edit: * @fc: flickcurl context * @note_id: The id of the note to edit * @note_x: The left coordinate of the note * @note_y: The top coordinate of the note * @note_w: The width of the note * @note_h: The height of the note * @note_text: The description of the note * * Edit a note on a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages. * * Implements flickr.photos.notes.edit (0.12) * * Return value: non-0 on failure **/ int flickcurl_photos_notes_edit(flickcurl* fc, const char* note_id, int note_x, int note_y, int note_w, int note_h, const char* note_text) { xmlDocPtr doc = NULL; int result = 1; char note_x_s[10]; char note_y_s[10]; char note_w_s[10]; char note_h_s[10]; flickcurl_init_params(fc, 1); if(!note_id || !note_text) return 1; flickcurl_add_param(fc, "note_id", note_id); sprintf(note_x_s, "%d", note_x); flickcurl_add_param(fc, "note_x", note_x_s); sprintf(note_y_s, "%d", note_y); flickcurl_add_param(fc, "note_y", note_y_s); sprintf(note_w_s, "%d", note_w); flickcurl_add_param(fc, "note_w", note_w_s); sprintf(note_h_s, "%d", note_h); flickcurl_add_param(fc, "note_h", note_h_s); flickcurl_add_param(fc, "note_text", note_text); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.notes.edit")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/upload-api.c���������������������������������������������������������������������0000644�0001750�0001750�00000020657�12157645243�013351� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * upload-api.c - Flickr photo upload API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #ifdef HAVE_ERRNO_H #include <errno.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_upload_params: * @fc: flickcurl context * @params: upload parameters * * Uploads a photo with safety level and content type * * Return value: #flickcurl_upload_status or NULL on failure **/ flickcurl_upload_status* flickcurl_photos_upload_params(flickcurl* fc, flickcurl_upload_params* params) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_upload_status* status = NULL; char is_public_s[2]; char is_friend_s[2]; char is_family_s[2]; char safety_level_s[2]; char content_type_s[2]; char hidden_s[2]; flickcurl_init_params(fc, 1); if(!params->photo_file) return NULL; if(access((const char*)params->photo_file, R_OK)) { flickcurl_error(fc, "Photo file %s cannot be read: %s", params->photo_file, strerror(errno)); return NULL; } is_public_s[0] = params->is_public ? '1' : '0'; is_public_s[1] = '\0'; is_friend_s[0] = params->is_friend ? '1' : '0'; is_friend_s[1] = '\0'; is_family_s[0] = params->is_family ? '1' : '0'; is_family_s[1] = '\0'; if(params->safety_level >= 1 && params->safety_level <= 3) { safety_level_s[0] = '0' + params->safety_level; safety_level_s[1] = '\0'; } else params->safety_level = -1; if(params->content_type >= 1 && params->content_type <= 3) { content_type_s[0] = '0' + params->content_type; content_type_s[1] = '\0'; } else params->content_type = -1; if(params->hidden >= 1 && params->hidden <= 2 ) { hidden_s[0] = '0' + params->hidden; hidden_s[1] = '\0'; } else { params->hidden = -1; } if(params->title) { flickcurl_add_param(fc, "title", params->title); } if(params->description) { flickcurl_add_param(fc, "description", params->description); } if(params->tags) { flickcurl_add_param(fc, "tags", params->tags); } if(params->safety_level >= 0) { flickcurl_add_param(fc, "safety_level", safety_level_s); } if(params->content_type >= 0) { flickcurl_add_param(fc, "content_type", content_type_s); } flickcurl_add_param(fc, "is_public", is_public_s); flickcurl_add_param(fc, "is_friend", is_friend_s); flickcurl_add_param(fc, "is_family", is_family_s); if(params->hidden >= 0) { flickcurl_add_param(fc, "hidden", hidden_s); } flickcurl_end_params(fc); if(flickcurl_prepare_upload(fc, fc->upload_service_uri, "photo", params->photo_file)) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } status = (flickcurl_upload_status*)calloc(1, sizeof(flickcurl_upload_status)); status->photoid = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/photoid"); /* when async is true */ status->ticketid = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/ticketid"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(status) free(status); status = NULL; } return status; } /** * flickcurl_photos_upload: * @fc: flickcurl context * @photo_file: photo filename * @title: title or NULL * @description: description of photo (HTML) (or NULL) * @tags: space-separated list of tags (or NULL) * @is_public: is public photo boolean (non-0 true) * @is_friend: is friend photo boolean (non-0 true) * @is_family: is family photo boolean (non-0 true) * * Uploads a photo * * Implements Uploading Photos (0.10) * * See flickcurl_photos_upload_params() to set additional upload * parameters such as safety level and content type. * * @deprecated: Replaced by flickcurl_photos_upload_params() with * #flickcurl_upload_params argument. * * Return value: #flickcurl_upload_status or NULL on failure **/ flickcurl_upload_status* flickcurl_photos_upload(flickcurl* fc, const char* photo_file, const char *title, const char *description, const char *tags, int is_public, int is_friend, int is_family) { flickcurl_upload_params params; memset(¶ms, '\0', sizeof(flickcurl_upload_params)); params.photo_file = photo_file; params.title = title; params.description = description; params.tags = tags; params.is_public = is_public; params.is_friend = is_friend; params.is_family = is_family; params.safety_level= -1; params.content_type= -1; params.hidden = -1; return flickcurl_photos_upload_params(fc, ¶ms); } /** * flickcurl_photos_replace: * @fc: flickcurl context * @photo_file: photo filename * @photo_id: photo ID to replace * @async: upload asynchronously boolean (non-0 true) * * Replace a photo with a new file. * * Implements Replacing Photos (0.10) * Implements Asynchronous Uploading (0.10) * * Return value: #flickcurl_upload_status or NULL on failure **/ flickcurl_upload_status* flickcurl_photos_replace(flickcurl* fc, const char* photo_file, const char *photo_id, int async) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_upload_status* status = NULL; char async_s[2]; flickcurl_init_params(fc, 1); if(!photo_file || !photo_id) return NULL; if(access((const char*)photo_file, R_OK)) { flickcurl_error(fc, "Photo file %s cannot be read: %s", photo_file, strerror(errno)); return NULL; } async_s[0] = async ? '1' : '0'; async_s[1] = '\0'; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "async", async_s); flickcurl_end_params(fc); if(flickcurl_prepare_upload(fc, fc->replace_service_uri, "photo", photo_file)) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } status = (flickcurl_upload_status*)calloc(1, sizeof(flickcurl_upload_status)); status->secret = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/photoid/@secret"); status->originalsecret = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/photoid/@originalsecret"); /* when async is true */ status->ticketid = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/ticketid"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(status) free(status); status = NULL; } return status; } /** * flickcurl_free_upload_status: * @status: status object * * Destructor - free a #flickcurl_upload_status **/ void flickcurl_free_upload_status(flickcurl_upload_status* status) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(status, flickcurl_upload_status); if(status->photoid) free(status->photoid); if(status->secret) free(status->secret); if(status->originalsecret) free(status->originalsecret); if(status->ticketid) free(status->ticketid); } void flickcurl_upload_status_free(flickcurl_upload_status* status) { flickcurl_free_upload_status(status); } ���������������������������������������������������������������������������������flickcurl-1.25/src/photoset.c�����������������������������������������������������������������������0000644�0001750�0001750�00000013536�12017302525�013145� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photoset.c - Flickcurl photoset functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_photoset: * @photoset: photoset object * * Destructor for photoset object */ void flickcurl_free_photoset(flickcurl_photoset *photoset) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(photoset, flickcurl_photoset); if(photoset->id) free(photoset->id); if(photoset->primary) free(photoset->primary); if(photoset->secret) free(photoset->secret); if(photoset->title) free(photoset->title); if(photoset->description) free(photoset->description); if(photoset->owner) free(photoset->owner); free(photoset); } /** * flickcurl_free_photosets: * @photosets_object: photoset object array * * Destructor for array of photoset object */ void flickcurl_free_photosets(flickcurl_photoset **photosets_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(photosets_object, flickcurl_photoset_array); for(i = 0; photosets_object[i]; i++) flickcurl_free_photoset(photosets_object[i]); free(photosets_object); } flickcurl_photoset** flickcurl_build_photosets(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* photoset_count_p) { flickcurl_photoset** photosets = NULL; int nodes_count; int photoset_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); photosets = (flickcurl_photoset**)calloc(sizeof(flickcurl_photoset*), nodes_count+1); for(i = 0, photoset_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_photoset* ps; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } ps = (flickcurl_photoset*)calloc(sizeof(flickcurl_photoset), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) ps->id = attr_value; else if(!strcmp(attr_name, "primary")) ps->primary = attr_value; else if(!strcmp(attr_name, "secret")) { ps->secret = attr_value; } else if(!strcmp(attr_name, "server")) { ps->server = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "farm")) { ps->farm = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "photos")) { ps->photos_count = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "owner")) ps->owner = attr_value; else free(attr_value); } /* Walk children nodes for <title> or <description> elements */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; if(chnode->type == XML_ELEMENT_NODE) { if(!strcmp(chnode_name, "title")) { if(chnode->children) { size_t len = strlen((const char*)chnode->children->content); ps->title = (char*)malloc(len + 1); memcpy(ps->title, chnode->children->content, len + 1); } } else if(!strcmp(chnode_name, "description")) { if(chnode->children) { size_t len = strlen((const char*)chnode->children->content); ps->description = (char*)malloc(len + 1); memcpy(ps->description, chnode->children->content, len + 1); } } } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "photoset: id %s primary '%s' secret %s server %d farm %d photos count %d title '%s' description '%s'\n", ps->id, ps->primary, ps->secret, ps->server, ps->farm, ps->photos_count, ps->title, (ps->description ? ps->description : "(No description)")); #endif photosets[photoset_count++] = ps; } /* for nodes */ if(photoset_count_p) *photoset_count_p = photoset_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return photosets; } flickcurl_photoset* flickcurl_build_photoset(flickcurl* fc, xmlXPathContextPtr xpathCtx) { flickcurl_photoset** photosets; flickcurl_photoset* result = NULL; photosets = flickcurl_build_photosets(fc, xpathCtx, (const xmlChar*)"/rsp/photoset", NULL); if(photosets) { result = photosets[0]; free(photosets); } return result; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/activity-api.c�������������������������������������������������������������������0000644�0001750�0001750�00000011102�12157645243�013702� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * activity-api.c - Flickr flickr.activity.* API calls * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_activity_userComments: * @fc: flickcurl context * @per_page: Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50. * @page: The page of results to return. If this argument is omitted, it defaults to 1. * * Returns a list of recent activity on photos commented on by the calling user. * * Implements flickr.activity.userComments (1.0) * * Return value: non-0 on failure **/ flickcurl_activity** flickcurl_activity_userComments(flickcurl* fc, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_activity** activities = NULL; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 0); if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.activity.userComments")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } activities = flickcurl_build_activities(fc, xpathCtx, (const xmlChar*)"/rsp/items/item", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) activities = NULL; return activities; } /** * flickcurl_activity_userPhotos: * @fc: flickcurl context * @timeframe: The timeframe in which to return updates for. This can be specified in days (<code>'2d'</code>) or hours (<code>'4h'</code>). The default behavoir is to return changes since the beginning of the previous user session. (or NULL) * @per_page: Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50. (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or NULL) * * Returns a list of recent activity on photos belonging to the calling user. Do not poll this method more than once an hour. * * Implements flickr.activity.userPhotos (1.0) * * Return value: non-0 on failure **/ flickcurl_activity** flickcurl_activity_userPhotos(flickcurl* fc, const char* timeframe, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_activity** activities = NULL; char page_str[10]; char per_page_str[10]; flickcurl_init_params(fc, 0); if(timeframe) { flickcurl_add_param(fc, "timeframe", timeframe); } if(page >= 0) { sprintf(page_str, "%d", page); flickcurl_add_param(fc, "page", page_str); } if(per_page >= 0) { sprintf(per_page_str, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.activity.userPhotos")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } activities = flickcurl_build_activities(fc, xpathCtx, (const xmlChar*)"/rsp/items/item", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) activities = NULL; return activities; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/favorites-api.c������������������������������������������������������������������0000644�0001750�0001750�00000031757�12157645243�014072� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * favorites-api.c - Flickr flickr.favorites.* API calls * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_favorites_add: * @fc: flickcurl context * @photo_id: The id of the photo to add to the user's favorites. * * Adds a photo to a user's favorites list. * * Implements flickr.favorites.add (1.0) * * Return value: non-0 on failure **/ int flickcurl_favorites_add(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 1); if(!photo_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.favorites.add")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); return fc->failed; } /** * flickcurl_favorites_getContext: * @fc: flickcurl context * @photo_id: The id of the photo to fetch the context for. * @user_id: The user who counts the photo as a favorite. * @num_prev: number of previous photos to return (?) (or < 0) * @num_next: number of next photos to return (?) (or < 0) * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_z, url_l, url_o (or NULL) * * Returns next and previous favorites for a photo in a user's favorites. * * Implements flickr.favorites.getContext (1.22) * * Return value: NULL-terminated array of photo lists (prev, next) or non-0 on failure **/ flickcurl_photos_list** flickcurl_favorites_getContext(flickcurl* fc, const char* photo_id, const char* user_id, int num_prev, int num_next, const char* extras) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_photos_list** photos_lists = NULL; char num_prev_str[10]; char num_next_str[10]; int i; flickcurl_init_params(fc, 0); if(!photo_id || !user_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "user_id", user_id); if(num_prev >= 0) { sprintf(num_prev_str, "%d", num_prev); flickcurl_add_param(fc, "num_prev", num_prev_str); } if(num_next >= 0) { sprintf(num_next_str, "%d", num_next); flickcurl_add_param(fc, "num_next", num_next_str); } /* this is the only standard photos response parameter supported * so using flickcurl_append_photos_list_params() is not really needed */ if(extras) { flickcurl_add_param(fc, "extras", extras); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.favorites.getContext")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } /* 3 lists of photo lists: prev, next and NULL to end the list */ photos_lists = (flickcurl_photos_list**)calloc(sizeof(flickcurl_photos_list*), 3); /* Decode the prev and next into photo lists */ for(i = 0; i < 2; i++) { const xmlChar* xpathExpr = (i == 0) ? (const xmlChar*)"/rsp/prevphoto" : (const xmlChar*)"/rsp/nextphoto"; flickcurl_photos_list* photos_list; xmlXPathObjectPtr xpathObj = NULL; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } if(!xpathObj->nodesetval || !xpathObj->nodesetval->nodeTab) { /* No elements found in content - probably not a failure */ xmlXPathFreeObject(xpathObj); continue; } photos_list = flickcurl_new_photos_list(fc); if(!photos_list) { fc->failed = 1; goto tidy; } photos_list->page = -1; photos_list->per_page = -1; photos_list->total_count = -1; photos_list->photos = flickcurl_build_photos(fc, xpathCtx, xpathExpr, &photos_list->photos_count); xmlXPathFreeObject(xpathObj); photos_lists[i] = photos_list; } photos_lists[2] = NULL; tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) { if(photos_lists) free(photos_lists); photos_lists = NULL; } return photos_lists; } /** * flickcurl_favorites_getList_params: * @fc: flickcurl context * @user_id: The NSID of the user to fetch the favorites list for. If this argument is omitted, the favorites list for the calling user is returned. (or NULL) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of the user's favorite photos. * * Flickcurl 1.6: Added @list_params beyond flickcurl_favorites_getList() * to allow returning raw content if @list_params is present and * field @format is not NULL as announced 2008-08-25 * http://code.flickr.com/blog/2008/08/25/api-responses-as-feeds/ * * Only photos which the calling user has permission to see are returned. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_favorites_getList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); /* API parameters */ if(user_id) { flickcurl_add_param(fc, "user_id", user_id); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.favorites.getList")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_favorites_getList: * @fc: flickcurl context * @user_id: The NSID of the user to fetch the favorites list for. If this argument is omitted, the favorites list for the calling user is returned. (or NULL) * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags. (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or NULL) * * Returns a list of the user's favorite photos. * * See flickcurl_favorites_getList_params() for details of parameters. * * Implements flickr.favorites.getList (1.0) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_favorites_getList(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_favorites_getList_params(fc, user_id, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_favorites_getPublicList_params: * @fc: flickcurl context * @user_id: The user to fetch the favorites list for. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of favorite public photos for the given user. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_favorites_getPublicList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!user_id) return NULL; /* API parameters */ flickcurl_add_param(fc, "user_id", user_id); /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.favorites.getPublicList")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_favorites_getPublicList: * @fc: flickcurl context * @user_id: The user to fetch the favorites list for. * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags. (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or NULL) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or NULL) * * Returns a list of favorite public photos for the given user. * * See flickcurl_favorites_getPublicList_params() for details of parameters. * * Implements flickr.favorites.getPublicList (1.0) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_favorites_getPublicList(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_favorites_getPublicList_params(fc, user_id, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_favorites_remove: * @fc: flickcurl context * @photo_id: The id of the photo to remove from the user's favorites. * * Removes a photo from a user's favorites list. * * Implements flickr.favorites.remove (1.0) * * Return value: non-0 on failure **/ int flickcurl_favorites_remove(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 1); if(!photo_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.favorites.remove")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); return fc->failed; } �����������������flickcurl-1.25/src/people-api.c���������������������������������������������������������������������0000644�0001750�0001750�00000051763�12210457652�013346� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * people-api.c - Flickr flickr.people.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_people_findByEmail: * @fc: flickcurl context * @email: user email address * * Get a user's NSID, given their email address * * Implements flickr.people.findByEmail (0.8) * * Return value: NSID or NULL on failure **/ char* flickcurl_people_findByEmail(flickcurl* fc, const char* email) { return flickcurl_call_get_one_string_field(fc, "find_email", email, "flickr.people.findByEmail", (const xmlChar*)"/rsp/user/@nsid"); } /** * flickcurl_people_findByUsername: * @fc: flickcurl context * @username: username * * Get a user's NSID, given their username address * * Implements flickr.people.findByUsername (0.8) * * Return value: NSID or NULL on failure **/ char* flickcurl_people_findByUsername(flickcurl* fc, const char* username) { return flickcurl_call_get_one_string_field(fc, "username", username, "flickr.people.findByUsername", (const xmlChar*)"/rsp/user/@nsid"); } /** * flickcurl_people_getGroups: * @fc: flickcurl context * @user_id: The NSID of the user to fetch groups for. * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: privacy, throttle, restrictions (or NULL) * * Returns the list of groups a user is a member of. * * Implements flickr.people.getGroups (1.25) * * Return value: list of groups or NULL on failure **/ flickcurl_group** flickcurl_people_getGroups(flickcurl* fc, const char* user_id, const char* extras) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_group** groups = NULL; flickcurl_init_params(fc, 0); if(!user_id) return NULL; flickcurl_add_param(fc, "user_id", user_id); if(extras) flickcurl_add_param(fc, "extras", extras); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getGroups")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } groups = flickcurl_build_groups(fc, xpathCtx, (const xmlChar*)"/rsp/groups/group", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) groups = NULL; return groups; } /** * flickcurl_people_getInfo: * @fc: flickcurl context * @user_id: user NSID * * Get information about a person * * Implements flickr.people.getInfo (0.6) * * NSID can be found by flickcurl_people_findByEmail() or * flickcurl_people_findByUsername(). * * Return value: #flickcurl_person object or NULL on failure **/ flickcurl_person* flickcurl_people_getInfo(flickcurl* fc, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_person* person = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "user_id", user_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } person = flickcurl_build_person(fc, xpathCtx, (const xmlChar*)"/rsp/person"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) person = NULL; return person; } /** * flickcurl_people_getPublicGroups: * @fc: flickcurl context * @user_id: The NSID of the user to fetch groups for. * * Returns the list of public groups a user is a member of. * * Implements flickr.people.getPublicGroups (0.13) * * Return value: list of groups or NULL on failure **/ flickcurl_group** flickcurl_people_getPublicGroups(flickcurl* fc, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_group** groups = NULL; flickcurl_init_params(fc, 0); if(!user_id) return NULL; flickcurl_add_param(fc, "user_id", user_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getPublicGroups")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } groups = flickcurl_build_groups(fc, xpathCtx, (const xmlChar*)"/rsp/groups/group", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) groups = NULL; return groups; } /** * flickcurl_people_getPublicPhotos_params: * @fc: flickcurl context * @user_id: The NSID of the user who's photos to return. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Get a list of public photos for the given user. * * Currently supported extras fields are: license, date_upload, * date_taken, owner_name, icon_server, original_format, * last_update, geo, tags, machine_tags. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: list of people public photos or NULL on failure **/ flickcurl_photos_list* flickcurl_people_getPublicPhotos_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!user_id) return NULL; /* API parameters */ flickcurl_add_param(fc, "user_id", user_id); /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getPublicPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_people_getPublicPhotos: * @fc: flickcurl context * @user_id: The NSID of the user who's photos to return. * @extras: A comma-delimited list of extra information to fetch for each returned record. * @per_page: Number of photos to return per page (default 100, max 500) * @page: The page of results to return (default 1) * * Get a list of public photos for the given user. * * See flickcurl_people_getPublicPhotos_params() for details of extras. * * Implements flickr.people.getPublicPhotos (0.12) * * Return value: list of photos or NULL on failure **/ flickcurl_photo** flickcurl_people_getPublicPhotos(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_people_getPublicPhotos_params(fc, user_id, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_people_getUploadStatus: * @fc: flickcurl context * * Returns information for the calling user related to photo uploads. * * Implements flickr.people.getUploadStatus (0.13) * * Return value: non-0 on failure **/ flickcurl_user_upload_status* flickcurl_people_getUploadStatus(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_user_upload_status* status = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getUploadStatus")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } status = flickcurl_build_user_upload_status(fc, xpathCtx, (const xmlChar*)"/rsp/user/*"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) status = NULL; return status; } /** * flickcurl_people_getPhotos_params: * @fc: flickcurl context * @user_id: The NSID of the user who's photos to return. A value of "me" will return the calling user's photos. * @safe_search: Safe search setting: 1 for safe, 2 for moderate, 3 for restricted. (Please note: Un-authed calls can only see Safe content.) (or < 0) * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @content_type: Content Type setting: 1 for photos only, 2 for screenshots only, 3 for 'other' only, 4 for photos and screenshots, 5 for screenshots and 'other', 6 for photos and 'other', 7 for photos, screenshots, and 'other' (all) (or < 0) * @privacy_filter: Return photos only matching a certain privacy level. This only applies when making an authenticated call to view photos you own. Valid values are: 1 public photos, 2 private photos visible to friends, 3 private photos visible to family, 4 private photos visible to friends & family, 5 completely private photos (or < 0) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Get photos from the given user's photostream. * * Only photos visible to the calling user will be returned. This * method must be authenticated; to return public photos for a user, * use flickcurl_people_getPublicPhotos(). * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_people_getPhotos_params(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; char safe_search_s[4]; char content_type_s[4]; char privacy_filter_s[4]; flickcurl_init_params(fc, 0); if(!user_id) return NULL; flickcurl_add_param(fc, "user_id", user_id); if(safe_search >= 0 && safe_search < 10) { sprintf(safe_search_s, "%d", safe_search); flickcurl_add_param(fc, "safe_search", safe_search_s); } if(min_upload_date) { flickcurl_add_param(fc, "min_upload_date", min_upload_date); } if(max_upload_date) { flickcurl_add_param(fc, "max_upload_date", max_upload_date); } if(min_taken_date) { flickcurl_add_param(fc, "min_taken_date", min_taken_date); } if(max_taken_date) { flickcurl_add_param(fc, "max_taken_date", max_taken_date); } if(content_type >= 0 && content_type < 10) { sprintf(content_type_s, "%d", content_type); flickcurl_add_param(fc, "content_type", content_type_s); } if(privacy_filter >= 0 && privacy_filter < 10) { sprintf(privacy_filter_s, "%d", privacy_filter); flickcurl_add_param(fc, "privacy_filter", privacy_filter_s); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_people_getPhotos: * @fc: flickcurl context * @user_id: The NSID of the user who's photos to return. A value of "me" will return the calling user's photos. * @safe_search: Safe search setting: 1 for safe, 2 for moderate, 3 for restricted. (Please note: Un-authed calls can only see Safe content.) (or < 0) * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @content_type: Content Type setting: 1 for photos only, 2 for screenshots only, 3 for 'other' only, 4 for photos and screenshots, 5 for screenshots and 'other', 6 for photos and 'other', 7 for photos, screenshots, and 'other' (all) (or < 0) * @privacy_filter: Return photos only matching a certain privacy level. This only applies when making an authenticated call to view photos you own. Valid values are: 1 public photos, 2 private photos visible to friends, 3 private photos visible to family, 4 private photos visible to friends & family, 5 completely private photo (or < 0) * @extras: A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code> (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Get photos from the given user's photostream. * * Only photos visible to the calling user will be returned. This * method must be authenticated; to return public photos for a user, * use flickcurl_people_getPublicPhotos(). * * Implements flickr.people.getPhotos (1.18) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_people_getPhotos(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_people_getPhotos_params(fc, user_id, safe_search, min_upload_date, max_upload_date, min_taken_date, max_taken_date, content_type, privacy_filter, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_people_getPhotosOf_params: * @fc: flickcurl context * @user_id: The NSID of the user who's photo to search. A value of "me" will search against the calling user's photos for authenticated calls. * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns a list of photos containing a particular Flickr member. * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: photos list or NULL on failure **/ flickcurl_photos_list* flickcurl_people_getPhotosOf_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); if(!user_id) return photos_list; flickcurl_add_param(fc, "user_id", user_id); /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.people.getPhotosOf")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_people_getPhotosOf: * @fc: flickcurl context * @user_id: The NSID of the user who's photo to search. A value of "me" will search against the calling user's photos for authenticated calls. * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. (or < 0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or < 0) * * Returns a list of photos containing a particular Flickr member. * * Implements flickr.people.getPhotosOf (1.17) * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: photos array or NULL on failure **/ flickcurl_photo** flickcurl_people_getPhotosOf(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_people_getPhotosOf_params(fc, user_id, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } �������������flickcurl-1.25/src/photos-transform-api.c�����������������������������������������������������������0000644�0001750�0001750�00000004220�12157645243�015376� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-transform-api.c - Flickr flickr.photos.transform.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_transform_rotate: * @fc: flickcurl context * @photo_id: The id of the photo to rotate. * @degrees: The amount of degrees by which to rotate the photo (clockwise) from it's current orientation. Valid values are 90, 180 and 270. * * Rotate a photo. * * Implements flickr.photos.transform.rotate (0.13) * * Return value: non-0 on failure **/ int flickcurl_photos_transform_rotate(flickcurl* fc, const char* photo_id, int degrees) { xmlDocPtr doc = NULL; char degrees_str[4]; int result = 0; flickcurl_init_params(fc, 0); if(!photo_id || !(degrees == 90 || degrees == 180 || degrees == 270)) return 1; flickcurl_add_param(fc, "photo_id", photo_id); sprintf(degrees_str, "%d", degrees); flickcurl_add_param(fc, "degrees", degrees_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.transform.rotate")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/exif.c���������������������������������������������������������������������������0000644�0001750�0001750�00000011166�12017302525�012230� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * exif.c - Flickcurl EXIF functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_exif: * @exif: exif object * * Destructor for exif object */ void flickcurl_free_exif(flickcurl_exif *exif) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(exif, flickcurl_exif); if(exif->tagspace) free(exif->tagspace); if(exif->label) free(exif->label); if(exif->raw) free(exif->raw); if(exif->clean) free(exif->clean); free(exif); } /** * flickcurl_free_exifs: * @exifs_object: array of exif objects * * Destructor for array of exif objects */ void flickcurl_free_exifs(flickcurl_exif **exifs_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(exifs_object, flickcurl_exif_array); for(i = 0; exifs_object[i]; i++) flickcurl_free_exif(exifs_object[i]); free(exifs_object); } flickcurl_exif** flickcurl_build_exifs(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* exif_count_p) { flickcurl_exif** exifs = NULL; int nodes_count; int exif_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do exifs */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); exifs = (flickcurl_exif**)calloc(sizeof(flickcurl_exif*), nodes_count+1); for(i = 0, exif_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_exif* e; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } e = (flickcurl_exif*)calloc(sizeof(flickcurl_exif), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "tagspace")) e->tagspace = attr_value; else if(!strcmp(attr_name, "tagspaceid")) { e->tagspaceid = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "tag")) { e->tag = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "label")) e->label = attr_value; else free(attr_value); } /* Walk children nodes for <raw> or <clean> elements */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; if(chnode->type == XML_ELEMENT_NODE) { if(!strcmp(chnode_name, "raw")) { size_t len = strlen((const char*)chnode->children->content); e->raw = (char*)malloc(len + 1); memcpy(e->raw, chnode->children->content, len + 1); } else if(!strcmp(chnode_name, "clean")) { size_t len = strlen((const char*)chnode->children->content); e->clean = (char*)malloc(len + 1); memcpy(e->clean, chnode->children->content, len + 1); } } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "exif: tagspace %s tagspace ID %d tag %d label '%s' raw '%s' clean '%s'\n", e->tagspace, e->tagspaceid, e->tag, e->label, e->raw, e->clean); #endif exifs[exif_count++] = e; } /* for nodes */ if(exif_count_p) *exif_count_p = exif_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return exifs; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photos-people-api.c��������������������������������������������������������������0000644�0001750�0001750�00000022470�12157645243�014656� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photos-people-api.c - Flickr flickr.photos.people.* API calls * * Copyright (C) 2010-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photos_people_add: * @fc: flickcurl context * @photo_id: The id of the photo to add a person to. * @user_id: The NSID of the user to add to the photo. * @person_x: The left-most pixel co-ordinate of the box around the person. (or < 0) * @person_y: The top-most pixel co-ordinate of the box around the person. (or < 0) * @person_w: The width (in pixels) of the box around the person. (or < 0) * @person_h: The height (in pixels) of the box around the person. (or < 0) * * Add a person to a photo. Coordinates and sizes of boxes are optional; they are measured in pixels, based on the 500px image size shown on individual photo pages. * * Implements flickr.photos.people.add (1.17) * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: non-0 on failure **/ int flickcurl_photos_people_add(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int rc = 0; char person_x_str[10]; char person_y_str[10]; char person_w_str[10]; char person_h_str[10]; flickcurl_init_params(fc, 1); if(!photo_id || !user_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "user_id", user_id); if(person_x >= 0) { sprintf(person_x_str, "%d", person_x); flickcurl_add_param(fc, "person_x", person_x_str); } if(person_y >= 0) { sprintf(person_y_str, "%d", person_y); flickcurl_add_param(fc, "person_y", person_y_str); } if(person_w >= 0) { sprintf(person_w_str, "%d", person_w); flickcurl_add_param(fc, "person_w", person_w_str); } if(person_h >= 0) { sprintf(person_h_str, "%d", person_h); flickcurl_add_param(fc, "person_h", person_h_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.people.add")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) rc = 1; return rc; } /** * flickcurl_photos_people_delete: * @fc: flickcurl context * @photo_id: The id of the photo to remove a person from. * @user_id: The NSID of the person to remove from the photo. * * Remove a person from a photo. * * Implements flickr.photos.people.delete (1.17) * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: non-0 on failure **/ int flickcurl_photos_people_delete(flickcurl* fc, const char* photo_id, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; void* result = NULL; flickcurl_init_params(fc, 1); if(!photo_id || !user_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "user_id", user_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.people.delete")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = NULL; return (result == NULL); } /** * flickcurl_photos_people_deleteCoords: * @fc: flickcurl context * @photo_id: The id of the photo to edit a person in. * @user_id: The NSID of the person whose bounding box you want to remove. * * Remove the bounding box from a person in a photo * * Implements flickr.photos.people.deleteCoords (1.17) * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: non-0 on failure **/ int flickcurl_photos_people_deleteCoords(flickcurl* fc, const char* photo_id, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; void* result = NULL; flickcurl_init_params(fc, 1); if(!photo_id || !user_id) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "user_id", user_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.people.deleteCoords")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = NULL; return (result == NULL); } /** * flickcurl_photos_people_editCoords: * @fc: flickcurl context * @photo_id: The id of the photo to edit a person in. * @user_id: The NSID of the person to edit in a photo. * @person_x: The left-most pixel co-ordinate of the box around the person. * @person_y: The top-most pixel co-ordinate of the box around the person. * @person_w: The width (in pixels) of the box around the person. * @person_h: The height (in pixels) of the box around the person. * * Edit the bounding box of an existing person on a photo. * * Implements flickr.photos.people.editCoords (1.17) * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: non-0 on failure **/ int flickcurl_photos_people_editCoords(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int rc = 0; char person_x_str[10]; char person_y_str[10]; char person_w_str[10]; char person_h_str[10]; flickcurl_init_params(fc, 1); if(!photo_id || !user_id || person_x < 0 || person_y < 0 || person_w <0 || person_h < 0) return 1; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "user_id", user_id); sprintf(person_x_str, "%d", person_x); flickcurl_add_param(fc, "person_x", person_x_str); sprintf(person_y_str, "%d", person_y); flickcurl_add_param(fc, "person_y", person_y_str); sprintf(person_w_str, "%d", person_w); flickcurl_add_param(fc, "person_w", person_w_str); sprintf(person_h_str, "%d", person_h); flickcurl_add_param(fc, "person_h", person_h_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.people.editCoords")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) rc = 1; return rc; } /** * flickcurl_photos_people_getList: * @fc: flickcurl context * @photo_id: The id of the photo to get a list of people for. * * Get a list of people in a given photo. * * Implements flickr.photos.people.getList (1.17) * * Announced 2010-01-21 * http://code.flickr.com/blog/2010/01/21/people-in-photos-the-api-methods/ * * Return value: list of persons or NULL on failure **/ flickcurl_person** flickcurl_photos_people_getList(flickcurl* fc, const char* photo_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_person** people = NULL; flickcurl_init_params(fc, 0); if(!photo_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photos.people.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } people = flickcurl_build_persons(fc, xpathCtx, (const xmlChar*)"/rsp/people/person", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) people = NULL; return people; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/flickcurl_internal.h�������������������������������������������������������������0000644�0001750�0001750�00000040205�12157645243�015164� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * flickcurl_internal.h - Flickcurl internal API calls * * All API calls and defines here many change in any release. * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <libxml/tree.h> #include <libxml/xpath.h> #include <curl/curl.h> #include <curl/easy.h> #include <mtwist_config.h> #include <mtwist.h> #if defined (OFFLINE) && defined (CAPTURE) #error "Cannot define both OFFLINE and CAPTURE" #endif #ifdef FLICKCURL_DEBUG #ifndef FLICKCURL_ASSERT_DIE #define FLICKCURL_ASSERT_DIE abort(); #endif #else /* No debugging messages */ #ifndef FLICKCURL_ASSERT_DIE #define FLICKCURL_ASSERT_DIE #endif #endif #ifdef FLICKCURL_DISABLE_ASSERT_MESSAGES #define FLICKCURL_ASSERT_REPORT(line) #else #define FLICKCURL_ASSERT_REPORT(msg) fprintf(stderr, "%s:%d: (%s) assertion failed: " msg "\n", __FILE__, __LINE__, __func__); #endif #ifdef FLICKCURL_DISABLE_ASSERT #define FLICKCURL_ASSERT(condition, msg) #define FLICKCURL_ASSERT_RETURN(condition, msg, ret) #define FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(pointer, type) do { \ if(!pointer) \ return; \ } while(0) #define FLICKCURL_ASSERT_OBJECT_POINTER_RETURN_VALUE(pointer, type, ret) do { \ if(!pointer) \ return ret; \ } while(0) #else #define FLICKCURL_ASSERT(condition, msg) do { \ if(condition) { \ FLICKCURL_ASSERT_REPORT(msg) \ FLICKCURL_ASSERT_DIE \ } \ } while(0) #define FLICKCURL_ASSERT_RETURN(condition, msg, ret) do { \ if(condition) { \ FLICKCURL_ASSERT_REPORT(msg) \ FLICKCURL_ASSERT_DIE \ return ret; \ } \ } while(0) #define FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(pointer, type) do { \ if(!pointer) { \ FLICKCURL_ASSERT_REPORT("object pointer of type " #type " is NULL.") \ FLICKCURL_ASSERT_DIE \ return; \ } \ } while(0) #define FLICKCURL_ASSERT_OBJECT_POINTER_RETURN_VALUE(pointer, type, ret) do { \ if(!pointer) { \ FLICKCURL_ASSERT_REPORT("object pointer of type " #type " is NULL.") \ FLICKCURL_ASSERT_DIE \ return ret; \ } \ } while(0) #endif /* flickcurl.c */ /* Prepare Flickr API request - GET or POST with URI parameters with auth */ int flickcurl_prepare(flickcurl *fc, const char* method); /* Prepare Flickr API request - GET or POST with URI parameters without auth */ int flickcurl_prepare_noauth(flickcurl *fc, const char* method); /* Prepare Flickr API request - POST with form-data parameters */ int flickcurl_prepare_upload(flickcurl *fc, const char* url, const char* upload_field, const char* upload_value); /* Invoke Flickr API at URi prepared above and get back an XML document DOM */ xmlDocPtr flickcurl_invoke(flickcurl *fc); /* Invoke Flickr API at URi prepared above and get back raw content */ char* flickcurl_invoke_get_content(flickcurl *fc, size_t* size_p); /* Invoke URI prepared above and get back 'count' key/values */ char** flickcurl_invoke_get_form_content(flickcurl *fc, int* count_p); void flickcurl_free_form(char **form, int count); /* args.c */ void flickcurl_free_arg(flickcurl_arg *arg); flickcurl_arg** flickcurl_build_args(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* arg_count_p); /* blog.c */ flickcurl_blog** flickcurl_build_blogs(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* blog_count_p); flickcurl_blog_service** flickcurl_build_blog_services(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* blog_services_count_p); /* collection.c */ flickcurl_collection** flickcurl_build_collections(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* collection_count_p); flickcurl_collection* flickcurl_build_collection(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* root_xpathExpr); /* common.c */ /* invoke an error */ void flickcurl_error(flickcurl* fc, const char *message, ...); /* Convert a unix timestamp into an ISO dateTime string */ char* flickcurl_unixtime_to_isotime(time_t unix_time); /* Convert a unix timestamp into an SQL timestamp string */ char* flickcurl_unixtime_to_sqltimestamp(time_t unix_time); /* Convert a SQL timestamp to an ISO dateTime string */ char* flickcurl_sqltimestamp_to_isotime(const char* timestamp); /* Evaluate an XPath to get the string value */ char* flickcurl_xpath_eval(flickcurl *fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); char* flickcurl_xpath_eval_to_tree_string(flickcurl* fc, xmlXPathContextPtr xpathNodeCtx, const xmlChar* xpathExpr, size_t* length_p); char* flickcurl_call_get_one_string_field(flickcurl* fc, const char* key, const char* value, const char* method, const xmlChar* xpathExpr); int flickcurl_append_photos_list_params(flickcurl* fc, flickcurl_photos_list_params* list_params, const char** format_p); void flickcurl_init_params(flickcurl *fc, int is_write); void flickcurl_add_param(flickcurl *fc, const char* key, const char* value); void flickcurl_end_params(flickcurl *fc); /* activity.c */ flickcurl_activity** flickcurl_build_activities(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* activity_count_p); /* category.c */ flickcurl_category** flickcurl_build_categories(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* category_count_p); /* comments.c */ flickcurl_comment** flickcurl_build_comments(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* comment_count_p); /* contacts.c */ flickcurl_contact** flickcurl_build_contacts(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* contact_count_p); /* context.c */ flickcurl_context** flickcurl_build_contexts(flickcurl* fc, xmlDocPtr doc); /* exif.c */ flickcurl_exif** flickcurl_build_exifs(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* exif_count_p); /* activity.c */ flickcurl_gallery** flickcurl_build_galleries(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* gallery_count_p); /* group.c */ flickcurl_group** flickcurl_build_groups(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* group_count_p); /* institution.c */ flickcurl_institution** flickcurl_build_institutions(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* institution_count_p); flickcurl_institution* flickcurl_build_institution(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* location.c */ flickcurl_location* flickcurl_build_location(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* machinetags.c */ flickcurl_tag_namespace** flickcurl_build_tag_namespaces(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* namespace_count_p); flickcurl_tag_namespace* flickcurl_build_tag_namespace(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* root_xpathExpr); flickcurl_tag_predicate_value** flickcurl_build_tag_predicate_values(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int content_mode, int* predicate_value_count_p); /* user_upload_status.c */ flickcurl_user_upload_status* flickcurl_build_user_upload_status(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* md5.c - MD5 as hex string */ extern char* MD5_string(char *string); /* members.c */ flickcurl_member** flickcurl_build_members(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* member_count_p); /* method.c */ flickcurl_method* flickcurl_build_method(flickcurl* fc, xmlXPathContextPtr xpathCtx); /* note.c */ void flickcurl_free_note(flickcurl_note *note); flickcurl_note** flickcurl_build_notes(flickcurl* fc, flickcurl_photo* photo, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* note_count_p); /* perms.c */ flickcurl_perms* flickcurl_build_perms(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* person.c */ flickcurl_person** flickcurl_build_persons(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* person_count_p); flickcurl_person* flickcurl_build_person(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* root_xpathExpr); /* photo.c */ flickcurl_photos_list* flickcurl_new_photos_list(flickcurl* fc); flickcurl_photo** flickcurl_build_photos(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* photo_count_p); flickcurl_photo* flickcurl_build_photo(flickcurl* fc, xmlXPathContextPtr xpathCtx); flickcurl_photos_list* flickcurl_invoke_photos_list(flickcurl* fc, const xmlChar* xpathExpr, const char* format); /* photoset.c */ flickcurl_photoset** flickcurl_build_photosets(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* photoset_count_p); flickcurl_photoset* flickcurl_build_photoset(flickcurl* fc, xmlXPathContextPtr xpathCtx); /* place.c */ flickcurl_place** flickcurl_build_places(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* place_count_p); flickcurl_place* flickcurl_build_place(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); flickcurl_place_type_info** flickcurl_build_place_types(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* place_type_count_p); /* shape.c */ flickcurl_shapedata** flickcurl_build_shapes(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* shape_count_p); flickcurl_shapedata* flickcurl_build_shape(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* size.c */ flickcurl_size** flickcurl_build_sizes(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* size_count_p); /* stat.c */ flickcurl_stat** flickcurl_build_stats(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* stat_count_p); /* tags.c */ flickcurl_tag** flickcurl_build_tags(flickcurl* fc, flickcurl_photo* photo, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* tag_count_p); flickcurl_tag** flickcurl_build_tags_from_string(flickcurl* fc, flickcurl_photo* photo, const char *string, int *tag_count_p); flickcurl_tag_clusters* flickcurl_build_tag_clusters(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* ticket.c */ flickcurl_ticket** flickcurl_build_tickets(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* ticket_count_p); /* vsnprintf.c */ extern char* my_vsnprintf(const char *message, va_list arguments); /* video.c */ flickcurl_video* flickcurl_build_video(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr); /* flickcurl_photos_search_params */ #define FLICKCURL_MAX_PARAM_COUNT 30 #define FLICKCURL_MAX_LIST_PARAM_COUNT 4 #define FLICKCURL_MAX_OAUTH_PARAM_COUNT 8 #define FLICKCURL_TOTAL_PARAM_COUNT (FLICKCURL_MAX_PARAM_COUNT + FLICKCURL_MAX_LIST_PARAM_COUNT + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1) struct flickcurl_chunk_s { char* content; size_t size; struct flickcurl_chunk_s *prev; }; typedef struct flickcurl_chunk_s flickcurl_chunk; typedef struct { /* client credentials */ char* client_key; /* AKA consumer key or the Flickr API key */ size_t client_key_len; char* client_secret; size_t client_secret_len; /* temporary credentials */ char* request_token; size_t request_token_len; char* request_token_secret; size_t request_token_secret_len; const char* verifier; /* OAuth verifier - always shared */ size_t verifier_len; /* token credentials */ char* token; /* AKA access token */ size_t token_len; char* token_secret; size_t token_secret_len; /* username and user_nsid */ char* username; size_t username_len; char* user_nsid; size_t user_nsid_len; /* callback URI or NULL for "oob" */ const char* callback; /* always shared */ size_t callback_len; /* Generally leave as NULL to make it new each time */ char* nonce; /* Generally leave as 0 to make it use current time with gettimeofday() */ time_t timestamp; /* HMAC-SHA1 key */ unsigned char *key; size_t key_len; /* HMAC-SHA1 data */ unsigned char* data; size_t data_len; } flickcurl_oauth_data; struct flickcurl_s { int total_bytes; /* Something failed */ int failed; /* Flickr API error code */ int error_code; /* Flickr API error message */ char* error_msg; int status_code; char** param_fields; char** param_values; int parameter_count; char* upload_field; char* upload_value; /* uri buffer for internal use of size @uri_len */ char* uri; CURL* curl_handle; char error_buffer[CURL_ERROR_SIZE]; int curl_init_here; char* user_agent; /* proxy URL string or NULL for none */ char* proxy; void* error_data; flickcurl_message_handler error_handler; char *http_accept; /* XML parser */ xmlParserCtxtPtr xc; /* The next three fields need to be set before authenticated * operations can be done (in most cases). */ /* Flickr legacy auth token secret - flickcurl_set_shared_secret() */ char* secret; /* Flickr application/api key - flickcurl_set_api_key() * * Not owned freed here - a pointer into od.client_key * * FIXME: remove at some point */ char* api_key; /* Flickr legacy auth token - flickcurl_set_auth_token() */ char* auth_token; /* API call must be signed even if 'auth_token' is NULL - flickcurl_set_sign() */ int sign; /* Flickr API method to invoke - set by flickcurl_prepare */ char* method; flickcurl_tag_handler tag_handler; void* tag_data; /* licenses returned by flickr.photos.licenses.getInfo * as initialised by flickcurl_read_licenses() */ flickcurl_license** licenses; /* Time the last request was made */ struct timeval last_request_time; /* Delay between HTTP requests in microseconds - default is none (0) */ long request_delay; /* write = POST, else read = GET */ int is_write; /* data to send in a request */ void* data; size_t data_length; int data_is_xml; /* if non-0, us xmlFree(fc->data) else free(fc->data) */ #ifdef CAPTURE FILE* fh; #endif /* if non-0 then run content through an XML parser and make a DOM in @xc */ int xml_parse_content; /* if non-0 then save content */ int save_content; /* saved content */ /* reverse-ordered list of chunks of data read */ flickcurl_chunk* chunks; /* count of chunks */ int chunks_count; /* Web Service URI that is called */ char *service_uri; /* Upload Web Service URI that is called */ char *upload_service_uri; /* Replace Web Service URI that is called */ char *replace_service_uri; unsigned int uri_len; flickcurl_curl_setopt_handler curl_setopt_handler; void* curl_setopt_handler_data; /* OAuth request token Web Service URI */ char *oauth_request_token_uri; /* OAuth authorize URI */ char *oauth_authorize_uri; /* OAuth access token Web Service URI */ char *oauth_access_token_uri; /* Used for OAuth nonce generation */ mtwist* mt; flickcurl_oauth_data od; const char *parameters[FLICKCURL_TOTAL_PARAM_COUNT][2]; int count; }; struct flickcurl_serializer_s { flickcurl* fc; void *data; flickcurl_serializer_factory* factory; }; void flickcurl_serializer_init(void); void flickcurl_serializer_terminate(void); /* sha1.c */ #define SHA1_DIGEST_LENGTH 20 unsigned char* flickcurl_hmac_sha1(const void *data, size_t data_len, const void *key, size_t key_len); /* legacy-auth.c */ int flickcurl_legacy_prepare_common(flickcurl *fc, const char* url, const char* method, const char* upload_field, const char* upload_value, int parameters_in_url, int need_auth); /* oauth.c */ void flickcurl_oauth_free(flickcurl_oauth_data* od); char* flickcurl_oauth_compute_signature(flickcurl_oauth_data* od, size_t* len_p); int flickcurl_oauth_prepare_common(flickcurl *fc, const char* url, const char* method, const char* upload_field, const char* upload_value, int parameters_in_url, int need_auth); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/mtwist_config.h������������������������������������������������������������������0000644�0001750�0001750�00000000664�11653030441�014157� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Flickcurl configure wrapper for libmtwist * * Includes configuration file * Adjusts symbols to be all flickcurl_ prefixed */ #include <config.h> #define mtwist_new flickcurl_mtwist_new #define mtwist_free flickcurl_mtwist_free #define mtwist_init flickcurl_mtwist_init #define mtwist_u32rand flickcurl_mtwist_u32rand #define mtwist_drand flickcurl_mtwist_drand #define mtwist_seed_from_system flickcurl_mtwist_seed_from_system ����������������������������������������������������������������������������flickcurl-1.25/src/args.c���������������������������������������������������������������������������0000644�0001750�0001750�00000006701�12017307612�012232� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * args.c - Flickcurl method arg functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> void flickcurl_free_arg(flickcurl_arg *arg) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(arg, flickcurl_arg); if(arg->name) free(arg->name); if(arg->description) free(arg->description); free(arg); } flickcurl_arg** flickcurl_build_args(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* arg_count_p) { flickcurl_arg** args = NULL; int nodes_count; int arg_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do args */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); args = (flickcurl_arg**)calloc(sizeof(flickcurl_arg*), nodes_count+1); for(i = 0, arg_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_arg* arg; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } arg = (flickcurl_arg*)calloc(sizeof(flickcurl_arg), 1); for(attr = node->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; if(!strcmp(attr_name, "name")) { size_t len = strlen((const char*)attr->children->content); arg->name = (char*)malloc(len + 1); memcpy(arg->name, attr->children->content, len + 1); } else if(!strcmp(attr_name, "optional")) arg->optional = atoi((const char*)attr->children->content); } /* Walk children nodes for description text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); arg->description = (char*)malloc(len + 1); memcpy(arg->description, (const char*)chnode->content, len + 1); break; } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "arg: name %s %s description '%s'\n", arg->name, (arg->optional? "" : "(required)"), arg->description); #endif args[arg_count++] = arg; } /* for nodes */ if(arg_count_p) *arg_count_p = arg_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return args; } ���������������������������������������������������������������flickcurl-1.25/src/note.c���������������������������������������������������������������������������0000644�0001750�0001750�00000010234�12017302525�012235� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * note.c - Flickcurl note functions * * Copyright (C) 2010, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_note: * @note: note object * * Destructor for note object */ void flickcurl_free_note(flickcurl_note *note) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(note, flickcurl_note); if(note->author) free(note->author); if(note->authorname) free(note->authorname); if(note->text) free(note->text); free(note); } flickcurl_note** flickcurl_build_notes(flickcurl* fc, flickcurl_photo* photo, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* note_count_p) { flickcurl_note** notes = NULL; int nodes_count; int note_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do notes */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); notes = (flickcurl_note**)calloc(sizeof(flickcurl_note*), nodes_count+1); for(i = 0, note_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_note* n; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } n = (flickcurl_note*)calloc(sizeof(flickcurl_note), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) { n->id = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "author")) n->author = attr_value; else if(!strcmp(attr_name, "authorname")) n->authorname = attr_value; else if(!strcmp(attr_name, "x")) { n->x = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "y")) { n->y = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "w")) { n->w = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "h")) { n->h = atoi(attr_value); free(attr_value); } else free(attr_value); } /* Walk children nodes for text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); n->text = (char*)malloc(len + 1); memcpy(n->text, chnode->content, len + 1); } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "note: id %d author ID %s name %s x %d y %d w %d h %d text '%s'\n", n->id, n->author, n->authorname, n->x, n->y, n->w, n->h, n->text); #endif notes[note_count++] = n; } /* for nodes */ if(note_count_p) *note_count_p = note_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return notes; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/groups-api.c���������������������������������������������������������������������0000644�0001750�0001750�00000021666�12161342675�013403� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * groups-api.c - Flickr flickr.groups.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_groups_browse: * @fc: flickcurl context * @cat_id: The category id to fetch a list of groups and sub-categories for. If not specified, it defaults to zero, the root of the category tree. (or NULL) * * Browse the group category tree, finding groups and sub-categories. * * Implements flickr.groups.browse (0.13) * * Return value: non-0 on failure **/ flickcurl_category* flickcurl_groups_browse(flickcurl* fc, int cat_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_category* category = NULL; char cat_id_str[10]; flickcurl_init_params(fc, 0); if(cat_id >= 0) { sprintf(cat_id_str, "%d", cat_id); flickcurl_add_param(fc, "cat_id", cat_id_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.browse")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } category = (flickcurl_category*)calloc(sizeof(flickcurl_category), 1); category->categories = flickcurl_build_categories(fc, xpathCtx, (const xmlChar*)"/rsp/category/subcat", &category->categories_count); category->groups = flickcurl_build_groups(fc, xpathCtx, (const xmlChar*)"/rsp/category/group", &category->groups_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) category = NULL; return category; } /** * flickcurl_groups_getInfo: * @fc: flickcurl context * @group_id: The NSID of the group to fetch information for. * @lang: The language of the group name and description to fetch. If the language is not found, the primary language of the group will be returned (or NULL) * * Get information about a group. * * Implements flickr.groups.getInfo (0.13) * * Return value: non-0 on failure **/ flickcurl_group* flickcurl_groups_getInfo(flickcurl* fc, const char* group_id, const char* lang) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_group **groups = NULL; flickcurl_group *group = NULL; flickcurl_init_params(fc, 0); if(!group_id) return NULL; flickcurl_add_param(fc, "group_id", group_id); if(lang) { flickcurl_add_param(fc, "lang", lang); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } groups = flickcurl_build_groups(fc, xpathCtx, (const xmlChar*)"/rsp/group", NULL); if(groups) { group = groups[0]; free(groups); groups = NULL; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) group = NULL; return group; } /** * flickcurl_groups_join: * @fc: flickcurl context * @group_id: The NSID of the Group in question * @accept_rules: If the group has rules, they must be displayed to the user prior to joining. Passing a true value for this argument specifies that the application has displayed the group rules to the user, and that the user has agreed to them. (See flickr.groups.getInfo). Probably takes a '1' or '0' value (or NULL) * * Join a public group as a member. * * Implements flickr.groups.join (1.25) * * Return value: non-0 on failure **/ int flickcurl_groups_join(flickcurl* fc, const char* group_id, const char* accept_rules) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 0); if(!group_id) return 1; flickcurl_add_param(fc, "group_id", group_id); if(accept_rules) flickcurl_add_param(fc, "accept_rules", accept_rules); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.join")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_groups_joinRequest: * @fc: flickcurl context * @group_id: The NSID of the group to request joining. * @message: Message to the administrators. * @accept_rules: If the group has rules, they must be displayed to the user prior to joining. Passing a true value for this argument specifies that the application has displayed the group rules to the user, and that the user has agreed to them. (See flickr.groups.getInfo). Probably takes a '1' or '0' value. * * Request to join a group that is invitation-only. * * Implements flickr.groups.joinRequest (1.25) * * Return value: non-0 on failure **/ int flickcurl_groups_joinRequest(flickcurl* fc, const char* group_id, const char* message, const char* accept_rules) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 0); if(!group_id || !message || !accept_rules) return 1; flickcurl_add_param(fc, "group_id", group_id); flickcurl_add_param(fc, "message", message); flickcurl_add_param(fc, "accept_rules", accept_rules); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.joinRequest")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_groups_leave: * @fc: flickcurl context * @group_id: The NSID of the Group to leave * @delete_photos: Delete all photos by this user from the group. Probably takes a '1' or '0' value (or NULL) * * Leave a group. * * If the user is the only administrator left, and there are other * members, the oldest member will be promoted to administrator. * * If the user is the last person in the group, the group will be deleted. * * Implements flickr.groups.leave (1.25) * * Return value: non-0 on failure **/ int flickcurl_groups_leave(flickcurl* fc, const char* group_id, const char* delete_photos) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 0); if(!group_id) return 1; flickcurl_add_param(fc, "group_id", group_id); if(delete_photos) flickcurl_add_param(fc, "delete_photos", delete_photos); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.leave")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_groups_search: * @fc: flickcurl context * @text: The text to search for. * @per_page: Number of groups to return per page, default 100, max 500 (or NULL) * @page: The page of results to return, default 1 (or NULL) * * Search for groups. 18+ groups will only be returned for * authenticated calls where the authenticated user is over 18. * * Implements flickr.groups.search (0.13) * * Return value: non-0 on failure **/ flickcurl_group** flickcurl_groups_search(flickcurl* fc, const char* text, int per_page, int page) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_group **groups = NULL; char per_page_s[10]; char page_s[10]; flickcurl_init_params(fc, 0); if(!text) return NULL; flickcurl_add_param(fc, "text", text); sprintf(per_page_s, "%d", per_page); flickcurl_add_param(fc, "per_page", per_page_s); sprintf(page_s, "%d", page); flickcurl_add_param(fc, "page", page_s); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.groups.search")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } groups = flickcurl_build_groups(fc, xpathCtx, (const xmlChar*)"/rsp/groups/group", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) groups = NULL; return groups; } ��������������������������������������������������������������������������flickcurl-1.25/src/tags.c���������������������������������������������������������������������������0000644�0001750�0001750�00000023263�12075641170�012242� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * tag.c - Flickcurl tag functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_tag: * @t: tag object * * Destructor for tag object */ void flickcurl_free_tag(flickcurl_tag *t) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(t, flickcurl_tag); if(t->id) free(t->id); if(t->author) free(t->author); if(t->authorname) free(t->authorname); if(t->raw) free(t->raw); if(t->cooked) free(t->cooked); free(t); } /** * flickcurl_free_tags: * @tags: tag object array * * Destructor for array of tag objects */ void flickcurl_free_tags(flickcurl_tag **tags) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(tags, flickcurl_tag_array); for(i = 0; tags[i]; i++) flickcurl_free_tag(tags[i]); free(tags); } flickcurl_tag** flickcurl_build_tags(flickcurl* fc, flickcurl_photo* photo, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* tag_count_p) { flickcurl_tag** tags = NULL; int nodes_count; int tag_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do tags */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); tags = (flickcurl_tag**)calloc(sizeof(flickcurl_tag*), nodes_count+1); for(i = 0, tag_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_tag* t; int saw_clean = 0; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } t = (flickcurl_tag*)calloc(sizeof(flickcurl_tag), 1); t->photo = photo; for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) t->id = attr_value; else if(!strcmp(attr_name, "author")) t->author = attr_value; else if(!strcmp(attr_name, "authorname")) t->authorname = attr_value; else if(!strcmp(attr_name, "raw")) t->raw = attr_value; else if(!strcmp(attr_name, "clean")) { t->cooked = attr_value; /* If we see @clean we are expecting * <tag clean = "cooked"><raw>raw</raw></tag> */ saw_clean = 1; } else if(!strcmp(attr_name, "machine_tag")) { t->machine_tag = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "count")) { t->count = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "score")) { /* from tags.getHotList <tag score = "NN">TAG</tag> */ t->count = atoi(attr_value); free(attr_value); } else free(attr_value); } /* Walk children nodes for <raw> element or text */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; if(chnode->type == XML_ELEMENT_NODE) { if(saw_clean && !strcmp(chnode_name, "raw")) { size_t len = strlen((const char*)chnode->children->content); t->raw = (char*)malloc(len + 1); memcpy(t->raw, chnode->children->content, len + 1); } } else if(chnode->type == XML_TEXT_NODE) { if(!saw_clean) { size_t len = strlen((const char*)chnode->content); t->cooked = (char*)malloc(len + 1); memcpy(t->cooked, chnode->content, len + 1); } } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "tag: id %s author ID %s name %s raw '%s' cooked '%s' count %d\n", t->id, t->author, t->authorname, t->raw, t->cooked, t->count); #endif if(fc->tag_handler) fc->tag_handler(fc->tag_data, t); tags[tag_count++] = t; } /* for nodes */ if(tag_count_p) *tag_count_p = tag_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return tags; } flickcurl_tag** flickcurl_build_tags_from_string(flickcurl* fc, flickcurl_photo* photo, const char *string, int *tag_count_p) { flickcurl_tag** tags = NULL; int nodes_count; int tag_count; int i; nodes_count = 0; for(i = 0; string[i]; i++) { if(string[i] == ' ') nodes_count++; } tags = (flickcurl_tag**)calloc(sizeof(flickcurl_tag*), nodes_count+1); for(i = 0, tag_count = 0; i < nodes_count; i++) { flickcurl_tag* t; const char *p = string; size_t len; t = (flickcurl_tag*)calloc(sizeof(flickcurl_tag), 1); t->photo = photo; while(*p && *p != ' ') p++; len = p-string; t->cooked = (char*)malloc(len + 1); memcpy(t->cooked, string, len); t->cooked[len] = '\0'; if(fc->tag_handler) fc->tag_handler(fc->tag_data, t); tags[tag_count++] = t; /* move past space */ string = p+1; } if(tag_count_p) *tag_count_p = tag_count; return tags; } /* * flickcurl_free_tag_cluster: * @tc: tag cluster object * * INTERNAL - Destructor for tag cluster object */ static void flickcurl_free_tag_cluster(flickcurl_tag_cluster *tc) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(tc, flickcurl_tag_cluster); if(tc->tags) { int i; for(i = 0; tc->tags[i]; i++) free(tc->tags[i]); free(tc->tags); } free(tc); } /** * flickcurl_free_tag_clusters: * @tcs: tag clusters object * * Destructor for tag clusters object */ void flickcurl_free_tag_clusters(flickcurl_tag_clusters *tcs) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(tcs, flickcurl_tag_clusters); if(tcs->clusters) { int i; for(i = 0; tcs->clusters[i]; i++) flickcurl_free_tag_cluster(tcs->clusters[i]); free(tcs->clusters); } free(tcs); } flickcurl_tag_clusters* flickcurl_build_tag_clusters(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_tag_clusters* tcs = NULL; int nodes_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } tcs = (flickcurl_tag_clusters*)calloc(sizeof(flickcurl_tag_clusters), 1); /* <cluster> XML element nodes */ nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); tcs->clusters = (flickcurl_tag_cluster**)calloc(sizeof(flickcurl_tag_cluster*), nodes_count+1); for(i = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; xmlNodePtr chnode; flickcurl_tag_cluster* tc = NULL; int tags_count= -1; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } tc = (flickcurl_tag_cluster*)calloc(sizeof(flickcurl_tag_cluster), 1); if(!tc) { fc->failed = 1; break; } /* get <cluster @total> */ for(attr = node->properties; attr; attr = attr->next) { const char *attr_name = (const char*)attr->name; const char *attr_value = (const char*)attr->children->content; if(!strcmp(attr_name, "total")) tags_count = atoi(attr_value); } if(tags_count <= 0) { free(tc); continue; } tc->tags = (char**)calloc(sizeof(char*), tags_count+1); /* Walk children nodes of <cluster> for <tag> elements */ for(chnode = node->children; chnode; chnode = chnode->next) { const char *chnode_name = (const char*)chnode->name; if(chnode->type == XML_ELEMENT_NODE && !strcmp(chnode_name, "tag")) { size_t len = strlen((const char*)chnode->children->content); char *tag_name = (char*)malloc(len + 1); memcpy(tag_name, (const char*)chnode->children->content, len + 1); tc->tags[tc->count++] = tag_name; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "cluster #%d tag #%d: %s\n", tcs->count, tc->count, tag_name); #endif } } tc->tags[tc->count] = NULL; tcs->clusters[tcs->count++] = tc; } /* for <cluster> nodes */ tcs->clusters[tcs->count] = NULL; tidy: if(fc->failed) { if(tcs) flickcurl_free_tag_clusters(tcs); tcs = NULL; } if(xpathObj) xmlXPathFreeObject(xpathObj); return tcs; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/auth-api.c�����������������������������������������������������������������������0000644�0001750�0001750�00000016043�12157645243�013020� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * auth-api.c - Flickr flickr.auth.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_auth_checkToken: * @fc: flickcurl context * @token: token string * * Get the credentials attached to an authentication token. * * Implements flickr.auth.checkToken (0.9) * Must be signed. * * FIXME: Cannot confirm this works, get intermittent results. * * Return value: permissions string or NULL on failure **/ char* flickcurl_auth_checkToken(flickcurl* fc, const char* token) { char *perms = NULL; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); if(!token) return NULL; flickcurl_add_param(fc, "auth_token", (char*)token); flickcurl_end_params(fc); flickcurl_set_sign(fc); if(flickcurl_prepare(fc, "flickr.auth.checkToken")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(xpathCtx) { perms = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/auth/perms"); xmlXPathFreeContext(xpathCtx); } tidy: return perms; } /** * flickcurl_auth_getFrob: * @fc: flickcurl context * * Get a frob to be used during authentication * * Implements flickr.auth.getFrob (0.9) * Must be signed. Does not require authentication. * * Return value: frob string or NULL on failure **/ char* flickcurl_auth_getFrob(flickcurl* fc) { char *frob = NULL; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); flickcurl_set_sign(fc); if(flickcurl_prepare(fc, "flickr.auth.getFrob")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(xpathCtx) { frob = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/frob"); xmlXPathFreeContext(xpathCtx); } tidy: return frob; } /** * flickcurl_auth_getFullToken: * @fc: flickcurl context * @frob: frob string * * Turn a frob into an auth_token * * Implements flickr.auth.getFullToken (0.5) * Must be signed. * * Return value: token string or NULL on failure **/ char* flickcurl_auth_getFullToken(flickcurl* fc, const char* frob) { char *auth_token = NULL; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "mini_token", (char*)frob); flickcurl_end_params(fc); flickcurl_set_sign(fc); if(flickcurl_prepare(fc, "flickr.auth.getFullToken")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(xpathCtx) { auth_token = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/auth/token"); xmlXPathFreeContext(xpathCtx); } tidy: return auth_token; } /** * flickcurl_auth_getToken: * @fc: flickcurl context * @frob: frob string * * Get the auth token for the given frob, if one has been attached. * * Implements flickr.auth.getToken (0.9) * Must be signed. * * Return value: token string or NULL on failure **/ char* flickcurl_auth_getToken(flickcurl* fc, const char* frob) { char *auth_token = NULL; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "frob", (char*)frob); flickcurl_end_params(fc); flickcurl_set_sign(fc); if(flickcurl_prepare(fc, "flickr.auth.getToken")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(xpathCtx) { auth_token = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/auth/token"); xmlXPathFreeContext(xpathCtx); } tidy: return auth_token; } /** * flickcurl_auth_oauth_getAccessToken: * @fc: flickcurl context * * Exchange tokens from the legacy Flickr auth to ones for OAuth * * Calling this method will delete the legacy auth tokens used to * make the request since they will expire within 24 hours of this * call. * * The OAuth token and secret should be saved and can be read from * flickcurl_get_oauth_token() and flickcurl_get_oauth_token_secret() * * Implements flickr.auth.oauth.getAccessToken (1.23) * * Return value: non-0 on failure **/ int flickcurl_auth_oauth_getAccessToken(flickcurl* fc) { flickcurl_oauth_data* od = &fc->od; xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; int rc = 0; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); flickcurl_set_sign(fc); if(flickcurl_prepare(fc, "flickr.auth.oauth.getAccessToken")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } if(xpathCtx) { char* auth_token; char* auth_token_secret; auth_token = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/auth/access_token[@oauth_token]"); auth_token_secret = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/auth/access_token[@oauth_token_secret]"); #ifdef FLICKCURL_DEBUG fprintf(stderr, "Exchanged legacy auth tokens for OAuth access token '%s' secret token '%s'\n", auth_token, auth_token_secret); #endif /* Old shared secret becomes OAuth client_secret (paired with client_key) */ od->client_secret = fc->secret; fc->secret = NULL; /* Remove legacy Flickr auth token - not valid or needed */ if(fc->auth_token) { free(fc->auth_token); fc->auth_token = NULL; } /* Store OAuth token and token secret in the oauth structure */ od->token = auth_token; od->token_len = strlen(auth_token); od->token_secret = auth_token_secret; od->token_secret_len = strlen(auth_token_secret); xmlXPathFreeContext(xpathCtx); xpathCtx = NULL; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) rc = 1; return rc; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/places-api.c���������������������������������������������������������������������0000644�0001750�0001750�00000110626�12157645243�013330� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * places-api.c - Flickr flickr.places.* API calls * * Places API announced 2008-01-11 * http://tech.groups.yahoo.com/group/yws-flickr/message/3688 * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_places_find: * @fc: flickcurl context * @query: The query string to use for place ID lookups * * Return a list of place IDs for a query string. * * The flickr.places.find method is NOT a geocoder. It will round up * to the nearest place type to which place IDs apply. For example, * if you pass it a street level address it will return the city that * contains the address rather than the street, or building, itself. * * This API announced 2008-01-18 * http://tech.groups.yahoo.com/group/yws-flickr/message/3716 * * Implements flickr.places.find (1.1) * * Return value: array of places or NULL on failure **/ flickcurl_place** flickcurl_places_find(flickcurl* fc, const char* query) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place** places = NULL; flickcurl_init_params(fc, 0); if(!query) return NULL; flickcurl_add_param(fc, "query", query); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.find")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } places = flickcurl_build_places(fc, xpathCtx, (const xmlChar*)"/rsp/places/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) places = NULL; return places; } /** * flickcurl_places_findByLatLon: * @fc: flickcurl context * @lat: The latitude whose valid range is -90 to 90. Anything more than 4 decimal places will be truncated. * @lon: The longitude whose valid range is -180 to 180. Anything more than 4 decimal places will be truncated. * @accuracy: Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. The default is 16. * * Return a place ID for a latitude, longitude and accuracy triple. * * The flickr.places.findByLatLon method is not meant to be a * (reverse) geocoder in the traditional sense. It is designed to * allow users to find photos for "places" and will round up to the * nearest place type to which corresponding place IDs apply. * * This API announced 2008-01-23 * http://tech.groups.yahoo.com/group/yws-flickr/message/3735 * * Implements flickr.places.findByLatLon (1.1) * * Return value: non-0 on failure **/ flickcurl_place* flickcurl_places_findByLatLon(flickcurl* fc, double lat, double lon, int accuracy) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place* place = NULL; char lat_str[20]; char lon_str[20]; char accuracy_str[4]; flickcurl_init_params(fc, 0); if(accuracy < 0 || accuracy > 16) accuracy = 16; sprintf(lat_str, "%f", lat); flickcurl_add_param(fc, "lat", lat_str); sprintf(lon_str, "%f", lon); flickcurl_add_param(fc, "lon", lon_str); sprintf(accuracy_str, "%d", accuracy); flickcurl_add_param(fc, "accuracy", accuracy_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.findByLatLon")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } place = flickcurl_build_place(fc, xpathCtx, (const xmlChar*)"/rsp/places/place"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) place = NULL; return place; } /** * flickcurl_places_getChildrenWithPhotosPublic: * @fc: flickcurl context * @place_id: A Places ID. (While optional, you must pass either a valid Places ID or a WOE ID.) (or NULL) * @woe_id: A Where On Earth (WOE) ID. (While optional, you must pass either a valid Places ID or a WOE ID.) (or NULL) * * Return a list of locations with public photos that are parented by a Where on Earth (WOE) or Places ID. * * Implements flickr.places.getChildrenWithPhotosPublic (1.7) * * @deprecated: Replaced by flickcurl_places_getChildrenWithPhotosPublic2() with integer woe_id argument. * * Return value: array of places or NULL on failure **/ flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic(flickcurl* fc, const char* place_id, const char* woe_id) { int woe_id_i = -1; if(woe_id) woe_id_i = atoi(woe_id); return flickcurl_places_getChildrenWithPhotosPublic2(fc, place_id, woe_id_i); } /** * flickcurl_places_getChildrenWithPhotosPublic2: * @fc: flickcurl context * @place_id: A Places ID (or NULL) * @woe_id: A Where On Earth (WOE) ID (or <0) * * Return a list of locations with public photos that are parented by a Where on Earth (WOE) or Places ID. * * You must pass either a valid Places ID or a WOE ID. * * Replaces flickcurl_places_getChildrenWithPhotosPublic() with integer @woe_id arg. * * Return value: array of places or NULL on failure **/ flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic2(flickcurl* fc, const char* place_id, int woe_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place** places = NULL; char woe_id_str[10]; flickcurl_init_params(fc, 0); if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } else if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } else return NULL; flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.getChildrenWithPhotosPublic")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } places = flickcurl_build_places(fc, xpathCtx, (const xmlChar*)"/rsp/places/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) places = NULL; return places; } /** * flickcurl_places_getInfo: * @fc: flickcurl context * @place_id: A Places ID (or NULL) * @woe_id: A Where On Earth (WOE) ID. (or NULL) * * Get information about a place. * * While optional, you must pass either a valid Places ID or a WOE ID. * * Implements flickr.places.getInfo (1.7) * * Announced 2008-10-30 * http://code.flickr.com/blog/2008/10/30/the-shape-of-alpha/ * and in detail 2008-11-05 * http://tech.groups.yahoo.com/group/yws-flickr/message/4510 * * @deprecated: Replaced by flickcurl_places_getInfo2() with integer woe_id argument. * * Return value: new place object or NULL on failure **/ flickcurl_place* flickcurl_places_getInfo(flickcurl* fc, const char* place_id, const char* woe_id) { int woe_id_i = -1; if(woe_id) woe_id_i = atoi(woe_id); return flickcurl_places_getInfo2(fc, place_id, woe_id_i); } /** * flickcurl_places_getInfo2: * @fc: flickcurl context * @place_id: A Places ID. (or NULL) * @woe_id: A Where On Earth (WOE) ID (or <0) * * Get information about a place. * * While optional, you must pass either a valid Places ID or a WOE ID. * * Replaces flickcurl_places_getInfo() with integer woe_id argument. * * Return value: new place object or NULL on failure **/ flickcurl_place* flickcurl_places_getInfo2(flickcurl* fc, const char* place_id, int woe_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place* place = NULL; char woe_id_str[10]; flickcurl_init_params(fc, 0); if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } else if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } else return NULL; flickcurl_end_params(fc); if(flickcurl_prepare_noauth(fc, "flickr.places.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } place = flickcurl_build_place(fc, xpathCtx, (const xmlChar*)"/rsp/place"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) place = NULL; return place; } /** * flickcurl_places_getInfoByUrl: * @fc: flickcurl context * @url: A flickr.com/places URL in the form of /country/region/city. For example: /Canada/Quebec/Montreal * * Lookup information about a place, by its flickr.com/places URL. * * Implements flickr.places.getInfoByUrl (1.7) * * Announced 2008-10-30 * http://code.flickr.com/blog/2008/10/30/the-shape-of-alpha/ * and in detail 2008-11-05 * http://tech.groups.yahoo.com/group/yws-flickr/message/4510 * * Return value: new place object or NULL on failure **/ flickcurl_place* flickcurl_places_getInfoByUrl(flickcurl* fc, const char* url) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place* place = NULL; flickcurl_init_params(fc, 0); if(!url) return NULL; flickcurl_add_param(fc, "url", url); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.getInfoByUrl")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } place = flickcurl_build_place(fc, xpathCtx, (const xmlChar*)"/rsp/place"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) place = NULL; return place; } /** * flickcurl_places_getPlaceTypes: * @fc: flickcurl context * * Get a list of available place types * * Implements flickr.places.getPlaceTypes (1.8) * * Return value: array of #flickcurl_place_type_info or NULL on failure **/ flickcurl_place_type_info** flickcurl_places_getPlaceTypes(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place_type_info** place_types = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.getPlaceTypes")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } place_types = flickcurl_build_place_types(fc, xpathCtx, (const xmlChar*)"/rsp/place_types/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) place_types = NULL; return place_types; } /** * flickcurl_places_getShapeHistory: * @fc: flickcurl context * @place_id: A Flickr Places ID (or NULL) * @woe_id: A Where On Earth (WOE) ID (or <0) * * Return an historical list of all the shape data generated for a * Places or Where on Earth (WOE) ID. * * While optional, you must pass either a valid Places ID or a WOE ID. * * Implements flickr.places.getShapeHistory (1.8) * * Announced 2009-01-12 in * http://tech.groups.yahoo.com/group/yws-flickr/message/4669 * * Addition of donut holes announced 2009-05-06 * http://code.flickr.com/blog/2009/05/06/the-absence-and-the-anchor/ * * Return value: NULL on failure **/ flickcurl_shapedata** flickcurl_places_getShapeHistory(flickcurl* fc, const char* place_id, int woe_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_shapedata** shapes = NULL; char woe_id_str[20]; flickcurl_init_params(fc, 0); if(!place_id && woe_id < 0) return NULL; if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.getShapeHistory")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } shapes = flickcurl_build_shapes(fc, xpathCtx, (const xmlChar*)"/rsp/shapes/shapedata|/rsp/shapes/shape", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) shapes = NULL; return shapes; } /** * flickcurl_places_getTopPlacesList: * @fc: flickcurl context * @place_type: The place type to cluster photos by. Valid place types are : neighbourhood, locality, region, country and continent * @date: A valid date in YYYY-MM-DD format. The default is yesterday. (or NULL) * @woe_id: Limit your query to only those top places belonging to a specific Where on Earth (WOE) identifier. (or NULL) * @place_id: Limit your query to only those top places belonging to a specific Flickr Places identifier. (or NULL) * * Return the top 100 most geotagged places for a day. * * Implements flickr.places.getTopPlacesList (1.12) * * Return value: array of places or NULL on failure **/ flickcurl_place** flickcurl_places_getTopPlacesList(flickcurl* fc, flickcurl_place_type place_type, const char* date, int woe_id, const char* place_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place** places = NULL; char woe_id_str[10]; int place_type_id; char place_type_id_str[3]; flickcurl_init_params(fc, 0); place_type_id = flickcurl_place_type_to_id(place_type); if(place_type_id < 0) return NULL; sprintf(place_type_id_str, "%d", place_type_id); flickcurl_add_param(fc, "place_type_id", place_type_id_str); if(date) { flickcurl_add_param(fc, "date", date); } if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } else if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.getTopPlacesList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } places = flickcurl_build_places(fc, xpathCtx, (const xmlChar*)"/rsp/places/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) places = NULL; return places; } /** * flickcurl_places_placesForBoundingBox: * @fc: flickcurl context * @place_type: The place type to cluster photos by * @minimum_longitude: Bound Box bottom-left corner longitude * @minimum_latitude: Bound Box bottom-left corner latitude * @maximum_longitude: Bound Box top-right corner longitude * @maximum_latitude: Bound Box top-right corner latitude * * Return all the locations of a matching place type for a bounding box. * * The maximum allowable size of a bounding box (the distance between * the SW and NE corners) is governed by the place type you are * requesting. Allowable sizes are as follows: * neighbourhood: 3km (1.8mi), locality: 7km (4.3mi), county: 50km (31mi), * region: 200km (124mi), country: 500km (310mi), continent: 1500km (932mi) * * Implements flickr.places.placesForBoundingBox (1.8) * * Return value: non-0 on failure **/ flickcurl_place** flickcurl_places_placesForBoundingBox(flickcurl* fc, flickcurl_place_type place_type, double minimum_longitude, double minimum_latitude, double maximum_longitude, double maximum_latitude) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place** places = NULL; char place_type_id_str[3]; int place_type_id = -1; char bbox[255]; flickcurl_init_params(fc, 0); place_type_id = flickcurl_place_type_to_id(place_type); if(place_type_id < 0) return NULL; sprintf(bbox, "%f,%f,%f,%f", minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude); flickcurl_add_param(fc, "bbox", bbox); /* deliberately not using deprecated parameter place_type */ /* flickcurl_add_param(fc, "place_type", place_type); */ sprintf(place_type_id_str, "%d", place_type_id); flickcurl_add_param(fc, "place_type_id", place_type_id_str); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.placesForBoundingBox")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } places = flickcurl_build_places(fc, xpathCtx, (const xmlChar*)"/rsp/places/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) places = NULL; return places; } /** * flickcurl_places_placesForContacts: * @fc: flickcurl context * @place_type: A specific place type to cluster photos by. * @woe_id: A Where on Earth ID to use to filter photo clusters (or NULL) * @place_id: A Places ID to use to filter photo clusters (or NULL) * @threshold: The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used. * @contacts: Search your contacts. Either 'all' or 'ff' for just friends and family. (Default is 'all') (or NULL) * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned (or <0) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned (or <0) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned (or <0) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned (or <0) * * Return a list of the top 100 unique places clustered by a given * placetype for a user's contacts. * * One of @woe_id or @place_id must be given. * * Implements flickr.places.placesForContacts (1.8) * * Return value: non-0 on failure **/ flickcurl_place** flickcurl_places_placesForContacts(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold, const char* contacts, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place** places = NULL; char place_type_id_str[3]; int place_type_id; char min_upload_date_s[20]; char max_upload_date_s[20]; char min_taken_date_s[20]; char max_taken_date_s[20]; char woe_id_str[10]; char threshold_str[10]; flickcurl_init_params(fc, 0); if(!woe_id && !place_id) return NULL; place_type_id = flickcurl_place_type_to_id(place_type); if(place_type_id < 0) return NULL; /* deliberately not using deprecated parameter place_type */ /* flickcurl_add_param(fc, "place_type", place_type); */ sprintf(place_type_id_str, "%d", place_type_id); flickcurl_add_param(fc, "place_type_id", place_type_id_str); if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } sprintf(threshold_str, "%d", threshold); flickcurl_add_param(fc, "threshold", threshold_str); if(contacts) { flickcurl_add_param(fc, "contacts", contacts); } if(min_upload_date >= 0) { sprintf(min_upload_date_s, "%d", min_upload_date); flickcurl_add_param(fc, "min_upload_date", min_upload_date_s); } if(max_upload_date >= 0) { sprintf(max_upload_date_s, "%d", max_upload_date); flickcurl_add_param(fc, "max_upload_date", max_upload_date_s); } if(min_taken_date >= 0) { sprintf(min_taken_date_s, "%d", min_taken_date); flickcurl_add_param(fc, "min_taken_date", min_taken_date_s); } if(max_taken_date >= 0) { sprintf(max_taken_date_s, "%d", max_taken_date); flickcurl_add_param(fc, "max_taken_date", max_taken_date_s); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.placesForContacts")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } places = flickcurl_build_places(fc, xpathCtx, (const xmlChar*)"/rsp/places/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) places = NULL; return places; } /** * flickcurl_places_placesForTags: * @fc: flickcurl context * @place_type: The place type to cluster photos by * @woe_id: A Where on Earth ID to use to filter photo clusters (or NULL) * @place_id: A Places ID to use to filter photo clusters (or NULL) * @threshold: The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used. * @tags: A comma-delimited list of tags. Photos with one or more of the tags listed will be returned. (or NULL) * @tag_mode: Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified. (or NULL) * @machine_tags: Multiple machine tags may be queried by passing a comma-separated list. The number of machine tags you can pass in a single query depends on the tag mode (AND or OR) that you are querying with. "AND" queries are limited to (16) machine tags. "OR" queries are limited to (8). See below. (or NULL) * @machine_tag_mode: Either 'any' for an OR combination of tags, or 'all' for an AND combination. Defaults to 'any' if not specified. (or NULL) * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned (or NULL) * * Return a list of the top 100 unique places clustered by a given * placetype for set of tags or machine tags. * * Machine tags extra information. Aside from passing in a fully * formed machine tag, there is a special syntax for searching on * specific properties : * * <itemizedlist> * <listitem>Find photos using the 'dc' namespace : <literal>"machine_tags" => "dc:"</literal></listitem> * <listitem> Find photos with a title in the 'dc' namespace : <literal>"machine_tags" => "dc:title = "</literal></listitem> * <listitem>Find photos titled "mr. camera" in the 'dc' namespace : <literal>"machine_tags" => "dc:title = \"mr. camera\"</literal></listitem> * <listitem>Find photos whose value is "mr. camera" : <literal>"machine_tags" => "*:* = \"mr. camera\""</literal></listitem> * <listitem>Find photos that have a title, in any namespace : <literal>"machine_tags" => "*:title = "</literal></listitem> * <listitem>Find photos that have a title, in any namespace, whose value is "mr. camera" : <literal>"machine_tags" => "*:title = \"mr. camera\""</literal></listitem> * <listitem>Find photos, in the 'dc' namespace whose value is "mr. camera" : <literal>"machine_tags" => "dc:* = \"mr. camera\""</literal></listitem> * </itemizedlist> * * Implements flickr.places.placesForTags (1.8) * * Return value: non-0 on failure **/ int flickcurl_places_placesForTags(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, const char* threshold, const char* tags, const char* tag_mode, const char* machine_tags, const char* machine_tag_mode, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; void* result = NULL; char place_type_id_str[3]; int place_type_id; char woe_id_str[10]; flickcurl_init_params(fc, 0); place_type_id = flickcurl_place_type_to_id(place_type); if(place_type_id < 0) return 1; sprintf(place_type_id_str, "%d", place_type_id); flickcurl_add_param(fc, "place_type_id", place_type_id_str); sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); flickcurl_add_param(fc, "place_id", place_id); flickcurl_add_param(fc, "threshold", threshold); flickcurl_add_param(fc, "tags", tags); flickcurl_add_param(fc, "tag_mode", tag_mode); flickcurl_add_param(fc, "machine_tags", machine_tags); flickcurl_add_param(fc, "machine_tag_mode", machine_tag_mode); flickcurl_add_param(fc, "min_upload_date", min_upload_date); flickcurl_add_param(fc, "max_upload_date", max_upload_date); flickcurl_add_param(fc, "min_taken_date", min_taken_date); flickcurl_add_param(fc, "max_taken_date", max_taken_date); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.placesForTags")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } result = NULL; /* your code here */ tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) result = NULL; return (result == NULL); } /** * flickcurl_places_resolvePlaceId: * @fc: flickcurl context * @place_id: A Places ID * * Find places information by Place ID * * Implements flickr.places.resolvePlaceId (1.0) * * Return value: new place object or NULL on failure **/ flickcurl_place* flickcurl_places_resolvePlaceId(flickcurl* fc, const char* place_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place* place = NULL; flickcurl_init_params(fc, 0); if(!place_id) return NULL; flickcurl_add_param(fc, "place_id", place_id); flickcurl_end_params(fc); if(flickcurl_prepare_noauth(fc, "flickr.places.resolvePlaceId")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } place = flickcurl_build_place(fc, xpathCtx, (const xmlChar*)"/rsp/location"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) place = NULL; return place; } /** * flickcurl_places_resolvePlaceURL: * @fc: flickcurl context * @url: A Places URL. Place URLs are of the form /country/region/city * * Find Places information by Place URL * * Implements flickr.places.resolvePlaceURL (1.0) * * Return value: non-0 on failure **/ flickcurl_place* flickcurl_places_resolvePlaceURL(flickcurl* fc, const char* url) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place* place = NULL; flickcurl_init_params(fc, 0); if(!url) return NULL; flickcurl_add_param(fc, "url", url); flickcurl_end_params(fc); if(flickcurl_prepare_noauth(fc, "flickr.places.resolvePlaceURL")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } place = flickcurl_build_place(fc, xpathCtx, (const xmlChar*)"/rsp/location"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) place = NULL; return place; } /** * flickcurl_places_placesForUser: * @fc: flickcurl context * @place_type: A specific place type to cluster photos by. Valid places types are neighbourhood, locality, region or country * @woe_id: A Where on Earth ID to use to filter photo clusters. (or <0) * @place_id: A Places ID to use to filter photo clusters. (or NULL) * @threshold: The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used. (or <0) * * Return a list of the top 100 unique places clustered by a given place type for a user. * * This API added 2008-09-04 as announced in * http://code.flickr.com/blog/2008/09/04/whos-on-first/ * * Implements flickr.places.placesForUser (1.6) * * Return value: non-0 on failure **/ flickcurl_place** flickcurl_places_placesForUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_place** places = NULL; const char* place_type_str; char woe_id_str[20]; char threshold_str[4]; flickcurl_init_params(fc, 0); place_type_str = flickcurl_get_place_type_label(place_type); if(!place_type_str) { flickcurl_error(fc, "Invalid place type %d", place_type); return NULL; } if(place_type != FLICKCURL_PLACE_NEIGHBOURHOOD && place_type != FLICKCURL_PLACE_LOCALITY && place_type != FLICKCURL_PLACE_REGION && place_type != FLICKCURL_PLACE_COUNTRY) { flickcurl_error(fc, "Place type '%s' (%d) is not valid for places.forUser", place_type_str, place_type); return NULL; } flickcurl_add_param(fc, "place_type", place_type_str); if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } if(threshold >= 0) { sprintf(threshold_str, "%d", threshold); flickcurl_add_param(fc, "threshold", threshold_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.placesForUser")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } places = flickcurl_build_places(fc, xpathCtx, (const xmlChar*)"/rsp/places/place", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) places = NULL; return places; } /** * flickcurl_places_forUser: * @fc: flickcurl context * @place_type: A specific place type to cluster photos by. Valid places types are neighbourhood, locality, region or country * @woe_id: A Where on Earth ID to use to filter photo clusters. (or <0) * @place_id: A Places ID to use to filter photo clusters. (or NULL) * @threshold: The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used. (or <0) * * Return a list of the top 100 unique places clustered by a given place type for a user. * * @deprecated: Use flickcurl_places_placesForUser() * * Return value: non-0 on failure **/ flickcurl_place** flickcurl_places_forUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char *place_id, int threshold) { return flickcurl_places_placesForUser(fc, place_type, woe_id, place_id, threshold); } /** * flickcurl_places_tagsForPlace: * @fc: flickcurl context * @woe_id: A Where on Earth identifier to use to filter photo clusters (or <0) * @place_id: A Flickr Places identifier to use to filter photo clusters (or NULL) * @min_upload_date: Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @max_upload_date: Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. (or NULL) * @min_taken_date: Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * @max_taken_date: Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. (or NULL) * * Return a list of the top 100 unique tags for a Flickr Places or * Where on Earth (WOE) ID * * (While optional, you must pass either a valid Places ID or a WOE ID.) * * Implements flickr.places.tagsForPlace (1.8) * * Return value: NULL on failure **/ flickcurl_tag** flickcurl_places_tagsForPlace(flickcurl* fc, int woe_id, const char* place_id, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char woe_id_str[20]; char min_upload_date_str[20]; char max_upload_date_str[20]; char min_taken_date_str[20]; char max_taken_date_str[20]; flickcurl_tag** tags = NULL; flickcurl_init_params(fc, 0); if(woe_id < 0 && !place_id) return NULL; if(woe_id >= 0) { sprintf(woe_id_str, "%d", woe_id); flickcurl_add_param(fc, "woe_id", woe_id_str); } if(place_id) { flickcurl_add_param(fc, "place_id", place_id); } if(min_upload_date) { sprintf(min_upload_date_str, "%d", min_upload_date); flickcurl_add_param(fc, "min_upload_date", min_upload_date_str); } if(min_upload_date) { sprintf(min_upload_date_str, "%d", min_upload_date); flickcurl_add_param(fc, "max_upload_date", max_upload_date_str); } if(max_upload_date) { sprintf(max_upload_date_str, "%d", max_upload_date); flickcurl_add_param(fc, "min_taken_date", min_taken_date_str); } if(min_taken_date) { sprintf(min_taken_date_str, "%d", min_taken_date); flickcurl_add_param(fc, "max_taken_date", max_taken_date_str); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.places.tagsForPlace")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tags = flickcurl_build_tags(fc, NULL, xpathCtx, (xmlChar*)"/rsp/tags/tag", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) tags = NULL; return tags; } ����������������������������������������������������������������������������������������������������������flickcurl-1.25/src/blogs-api.c����������������������������������������������������������������������0000644�0001750�0001750�00000010711�12157645243�013161� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * blogs-api.c - Flickr flickr.blogs.* API calls * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_blogs_getList: * @fc: flickcurl context * * Get a list of configured blogs for the calling user. * * Implements flickr.blogs.getList (1.0) * * Return value: non-0 on failure **/ flickcurl_blog** flickcurl_blogs_getList(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_blog** blogs = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.blogs.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } blogs = flickcurl_build_blogs(fc, xpathCtx, (const xmlChar*)"/rsp/blogs/blog", NULL); tidy: if(fc->failed) blogs = NULL; return blogs; } /** * flickcurl_blogs_getServices: * @fc: flickcurl context * * Return a list of Flickr supported blogging services * * Implements flickr.blogs.getServices (1.12) * * Return value: list of services or NULL on failure **/ flickcurl_blog_service** flickcurl_blogs_getServices(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_blog_service **services = NULL; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.blogs.getServices")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } services = flickcurl_build_blog_services(fc, xpathCtx, (const xmlChar*)"/rsp/services/service", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) services = NULL; return services; } /** * flickcurl_blogs_postPhoto: * @fc: flickcurl context * @blog_id: The id of the blog to post to * @photo_id: The id of the photo to blog * @title: The blog post title * @description: The blog post body * @blog_password: The password for the blog (used when the blog does not have a stored password) (or NULL) * * Post a photo to a blog/ * * Implements flickr.blogs.postPhoto (1.0) * * Return value: non-0 on failure **/ int flickcurl_blogs_postPhoto(flickcurl* fc, const char* blog_id, const char* photo_id, const char* title, const char* description, const char* blog_password) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_init_params(fc, 0); if(!blog_id || !photo_id || !title || !description) return 1; flickcurl_add_param(fc, "blog_id", blog_id); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "title", title); flickcurl_add_param(fc, "description", description); if(blog_password) { flickcurl_add_param(fc, "blog_password", blog_password); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.blogs.postPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); return fc->failed; } �������������������������������������������������������flickcurl-1.25/src/category.c�����������������������������������������������������������������������0000644�0001750�0001750�00000010055�12017302525�013106� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * category.c - Flickcurl category functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_category: * @category: category object * * Destructor for category object */ void flickcurl_free_category(flickcurl_category *category) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(category, flickcurl_category); if(category->id) free(category->id); if(category->name) free(category->name); if(category->categories) flickcurl_free_categories(category->categories); if(category->groups) flickcurl_free_groups(category->groups); free(category); } /** * flickcurl_free_categories: * @categories_object: category object array * * Destructor for array of category object */ void flickcurl_free_categories(flickcurl_category **categories_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(categories_object, flickcurl_category); for(i = 0; categories_object[i]; i++) flickcurl_free_category(categories_object[i]); free(categories_object); } flickcurl_category** flickcurl_build_categories(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* category_count_p) { flickcurl_category** categories = NULL; int nodes_count; int category_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); categories = (flickcurl_category**)calloc(sizeof(flickcurl_category*), nodes_count+1); for(i = 0, category_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_category* c; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } c = (flickcurl_category*)calloc(sizeof(flickcurl_category), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) c->id = attr_value; else if(!strcmp(attr_name, "name")) c->name = attr_value; else if(!strcmp(attr_name, "path")) c->path = attr_value; else if(!strcmp(attr_name, "count")) { c->count = atoi(attr_value); free(attr_value); } else free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "category: id %s name '%s' path '%s' count %d\n", c->id, c->name, c->path, c->count); #endif categories[category_count++] = c; } /* for nodes */ if(category_count_p) *category_count_p = category_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return categories; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/stat.c���������������������������������������������������������������������������0000644�0001750�0001750�00000010630�12017302525�012243� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * stat.c - Flickcurl statistic functions * * Copyright (C) 2010, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_stat: * @stat: stat object * * Destructor for stat object */ void flickcurl_free_stat(flickcurl_stat *stat) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(stat, flickcurl_stat); if(stat->name) free(stat->name); if(stat->url) free(stat->url); if(stat->searchterms) free(stat->searchterms); free(stat); } /** * flickcurl_free_stats: * @stats_object: stat object array * * Destructor for array of stat objects */ void flickcurl_free_stats(flickcurl_stat **stats_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(stats_object, flickcurl_stat_array); for(i = 0; stats_object[i]; i++) flickcurl_free_stat(stats_object[i]); free(stats_object); } /** * flickcurl_free_view_stats: * @view_stats: view stat object * * Destructor for view stat object */ void flickcurl_free_view_stats(flickcurl_view_stats *view_stats) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(view_stats, flickcurl_view_stats); free(view_stats); } flickcurl_stat** flickcurl_build_stats(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* stat_count_p) { flickcurl_stat** stats = NULL; int nodes_count; int stat_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); stats = (flickcurl_stat**)calloc(sizeof(flickcurl_stat*), nodes_count+1); for(i = 0, stat_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_stat* s; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } s = (flickcurl_stat*)calloc(sizeof(flickcurl_stat), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "views")) { s->views = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "comments")) { s->comments = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "favorites")) { s->favorites = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "name")) s->name = attr_value; else if(!strcmp(attr_name, "url")) s->url = attr_value; else if(!strcmp(attr_name, "searchterms")) s->searchterms = attr_value; else free(attr_value); } /* end attributes */ #if FLICKCURL_DEBUG > 1 fprintf(stderr, "statistic: views %d comments %d favorites %d name %s url %s searchterms %s\n", s->views, s->comments, s->favorites, s->name, s->url ? s->url : "", s->searchterms ? s->searchterms : ""); #endif stats[stat_count++] = s; } /* for nodes */ if(stat_count_p) *stat_count_p = stat_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return stats; } ��������������������������������������������������������������������������������������������������������flickcurl-1.25/src/collections-api.c����������������������������������������������������������������0000644�0001750�0001750�00000007462�12157645243�014402� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * collections-api.c - Flickr flickr.collections.* API calls * * Copyright (C) 2009-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_collections_getInfo: * @fc: flickcurl context * @collection_id: The ID of the collection to fetch information for. * * Returns information for a single collection. Currently can only * be called by the collection owner, this may change. * * Implements flickr.collections.getInfo (1.12) * * Return value: a collection or NULL on failure **/ flickcurl_collection* flickcurl_collections_getInfo(flickcurl* fc, const char* collection_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_collection* collection = NULL; flickcurl_init_params(fc, 0); if(!collection_id) return NULL; flickcurl_add_param(fc, "collection_id", collection_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.collections.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } collection = flickcurl_build_collection(fc, xpathCtx, (const xmlChar*)"/rsp/collection"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) collection = NULL; return collection; } /** * flickcurl_collections_getTree: * @fc: flickcurl context * @collection_id: The ID of the collection to fetch a tree for, or zero to fetch the root collection. Defaults to zero. (or NULL) * @user_id: The ID of the account to fetch the collection tree for. Deafults to the calling user. (or NULL) * * Returns a tree (or sub tree) of collections belonging to a given user. * * Implements flickr.collections.getTree (1.12) * * Return value: a collection or NULL on failure **/ flickcurl_collection* flickcurl_collections_getTree(flickcurl* fc, const char* collection_id, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_collection* collection = NULL; flickcurl_init_params(fc, 0); if(collection_id) { flickcurl_add_param(fc, "collection_id", collection_id); } if(user_id) { flickcurl_add_param(fc, "user_id", user_id); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.collections.getTree")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } collection = flickcurl_build_collection(fc, xpathCtx, (const xmlChar*)"/rsp/collections/collection"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) collection = NULL; return collection; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/institution.c��������������������������������������������������������������������0000644�0001750�0001750�00000017543�12017272366�013704� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * institution.c - Flickr institution support calls * * Copyright (C) 2009, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_institution: * @institution: institution object * * Destructor for institution object */ void flickcurl_free_institution(flickcurl_institution *institution) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(institution, flickcurl_institution); if(institution->nsid) free(institution->nsid); if(institution->name) free(institution->name); if(institution->urls) { for(i = 0 ; i <= FLICKCURL_INSTITUTION_URL_LAST; i++) free(institution->urls[i]); free(institution->urls); } free(institution); } /** * flickcurl_free_institutions: * @institutions_object: institution object array * * Destructor for array of institution object */ void flickcurl_free_institutions(flickcurl_institution **institutions_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(institutions_object, flickcurl_institution_array); for(i = 0; institutions_object[i]; i++) flickcurl_free_institution(institutions_object[i]); free(institutions_object); } /* flickcurl_institution fields */ typedef enum { INSTITUTION_NONE = 0, /* institution->nsid */ INSTITUTION_NSID, /* institution->date_launch */ INSTITUTION_DATE_LAUNCH, /* institution->name */ INSTITUTION_NAME, /* institution->urls[{urls type}] */ INSTITUTION_URL } institution_field_type; #define INSTITUTION_FIELDS_TABLE_SIZE 34 /* * The XPaths here are relative, such as prefixed by /rsp/institution */ static struct { const xmlChar* xpath; flickcurl_institution_url_type institution_url_type; institution_field_type institution_field; } institution_fields_table[INSTITUTION_FIELDS_TABLE_SIZE+1] = { { (const xmlChar*)"./@nsid", FLICKCURL_INSTITUTION_URL_NONE, INSTITUTION_NSID } , { (const xmlChar*)"./@date_launch", FLICKCURL_INSTITUTION_URL_NONE, INSTITUTION_DATE_LAUNCH } , { (const xmlChar*)"./name", FLICKCURL_INSTITUTION_URL_NONE, INSTITUTION_NAME } , { (const xmlChar*)"./urls/url[@type = 'site']", FLICKCURL_INSTITUTION_URL_SITE, INSTITUTION_URL } , { (const xmlChar*)"./urls/url[@type = 'license']", FLICKCURL_INSTITUTION_URL_LICENSE, INSTITUTION_URL } , { (const xmlChar*)"./urls/url[@type = 'flickr']", FLICKCURL_INSTITUTION_URL_FLICKR, INSTITUTION_URL } , { NULL, FLICKCURL_INSTITUTION_URL_NONE, INSTITUTION_NONE } }; /* get shapedata from value */ flickcurl_institution** flickcurl_build_institutions(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* institution_count_p) { flickcurl_institution** institutions = NULL; int nodes_count; int institution_count; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; int i; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); institutions = (flickcurl_institution**)calloc(sizeof(flickcurl_institution*), nodes_count+1); for(i = 0, institution_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; int expri; xmlXPathContextPtr xpathNodeCtx = NULL; flickcurl_institution* institution; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } institution = (flickcurl_institution*)calloc(sizeof(flickcurl_institution), 1); institution->urls = (char**)calloc(FLICKCURL_INSTITUTION_URL_LAST+1, sizeof(char*)); /* set up a new XPath context relative to the current node */ xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); xpathNodeCtx->node = node; for(expri = 0; expri <= FLICKCURL_INSTITUTION_URL_LAST; expri++) { if(institution->urls[expri]) { free(institution->urls[expri]); institution->urls[expri] = NULL; } } for(expri = 0; institution_fields_table[expri].xpath; expri++) { flickcurl_institution_url_type institution_url_type = institution_fields_table[expri].institution_url_type; institution_field_type institution_field = institution_fields_table[expri].institution_field; const xmlChar* institution_xpathExpr = institution_fields_table[expri].xpath; char *value = NULL; value = flickcurl_xpath_eval(fc, xpathNodeCtx, institution_xpathExpr); if(!value) continue; switch(institution_field) { case INSTITUTION_NSID: institution->nsid = value; break; case INSTITUTION_DATE_LAUNCH: institution->date_launch = atoi(value); value = NULL; break; case INSTITUTION_NAME: institution->name = value; break; case INSTITUTION_URL: institution->urls[(int)institution_url_type] = value; break; case INSTITUTION_NONE: default: flickcurl_error(fc, "Unknown institution URL type %d", (int)institution_url_type); fc->failed = 1; } if(fc->failed) goto institutionstidy; } /* end for institution fields */ institutionstidy: if(xpathNodeCtx) xmlXPathFreeContext(xpathNodeCtx); institutions[institution_count++] = institution; } /* for institutions */ if(institution_count_p) *institution_count_p = institution_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); if(fc->failed) { if(institutions) flickcurl_free_institutions(institutions); institutions = NULL; } return institutions; } flickcurl_institution* flickcurl_build_institution(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_institution** institutions; flickcurl_institution* result = NULL; institutions = flickcurl_build_institutions(fc, xpathCtx, xpathExpr, NULL); if(institutions) { result = institutions[0]; free(institutions); } return result; } static const char* flickcurl_institution_url_type_label[FLICKCURL_INSTITUTION_URL_LAST+1] = { "(none)", "site", "license", "flickr" }; /** * flickcurl_get_institution_url_type_label: * @url_type: institution url enum * * Get label for institution url type * * Return value: label string or NULL if none valid */ const char* flickcurl_get_institution_url_type_label(flickcurl_institution_url_type url_type) { if(url_type <= FLICKCURL_INSTITUTION_URL_LAST) return flickcurl_institution_url_type_label[(int)url_type]; return NULL; } �������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/place.c��������������������������������������������������������������������������0000644�0001750�0001750�00000041132�12017302525�012355� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * place.c - Flickr place support calls * * Copyright (C) 2008-2009, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static const char* flickcurl_place_type_label[FLICKCURL_PLACE_LAST+1] = { "location", "neighbourhood", "locality", "county", "region", "country", "continent" }; /** * flickcurl_get_place_type_label: * @place_type: place type * * Get label for a place type * * Return value: label string or NULL if none valid */ const char* flickcurl_get_place_type_label(flickcurl_place_type place_type) { if(place_type <= FLICKCURL_PLACE_LAST) return flickcurl_place_type_label[(int)place_type]; return NULL; } /** * flickcurl_get_place_type_by_label: * @place_label: place type * * Get a place type by label * * Return value: place type */ flickcurl_place_type flickcurl_get_place_type_by_label(const char* place_label) { int i; for(i = 0; flickcurl_place_type_label[i]; i++) { if(!strcmp(flickcurl_place_type_label[i], place_label)) return (flickcurl_place_type)i; } return FLICKCURL_PLACE_LOCATION; } /** * flickcurl_free_place: * @place: place object * * Destructor for place object */ void flickcurl_free_place(flickcurl_place *place) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(place, flickcurl_place); for(i = 0; i <= FLICKCURL_PLACE_LAST; i++) { if(place->names[i]) free(place->names[i]); if(place->ids[i]) free(place->ids[i]); if(place->urls[i]) free(place->urls[i]); if(place->woe_ids[i]) free(place->woe_ids[i]); } if(place->shape) flickcurl_free_shape(place->shape); if(place->timezone) free(place->timezone); free(place); } /** * flickcurl_free_places: * @places_object: place object array * * Destructor for array of place object */ void flickcurl_free_places(flickcurl_place **places_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(places_object, flickcurl_place_array); for(i = 0; places_object[i]; i++) flickcurl_free_place(places_object[i]); free(places_object); } /* flickcurl_place fields */ typedef enum { PLACE_NONE = 0, /* place->names[place_type] */ PLACE_NAME, /* place->ids[place_type] */ PLACE_ID, /* place->urls[place_type] */ PLACE_URL, /* place->woe_ids[place_type] */ PLACE_WOE_ID, /* place->type */ PLACE_TYPE, /* place->latitude */ PLACE_LATITUDE, /* place->longitude */ PLACE_LONGITUDE, /* place->count */ PLACE_PHOTO_COUNT, /* place->shape: source of derived DEPRECATED fields: * shapedata, shapedata_length, shapfile_urls and shapefile_urls_count */ PLACE_SHAPE, /* place->timezone */ PLACE_TIMEZONE } place_field_type; #define PLACE_FIELDS_TABLE_SIZE 35 /* * The XPaths here are relative, such as prefixed by /rsp/place */ static struct { const xmlChar* xpath; flickcurl_place_type place_type; place_field_type place_field; } place_fields_table[PLACE_FIELDS_TABLE_SIZE+1] = { { (const xmlChar*)"./@name", FLICKCURL_PLACE_LOCATION, PLACE_NAME, } , { (const xmlChar*)".", FLICKCURL_PLACE_LOCATION, PLACE_NAME, } , { (const xmlChar*)"./@place_id", FLICKCURL_PLACE_LOCATION, PLACE_ID } , { (const xmlChar*)"./@place_url", FLICKCURL_PLACE_LOCATION, PLACE_URL } , { (const xmlChar*)"./@woeid", FLICKCURL_PLACE_LOCATION, PLACE_WOE_ID } , { (const xmlChar*)"./@timezone", FLICKCURL_PLACE_LOCATION, PLACE_TIMEZONE } , { (const xmlChar*)"./neighborhood/@place_id", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_ID, } , { (const xmlChar*)"./neighbourhood/@place_id", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_ID, } , { (const xmlChar*)"./neighborhood/@woeid", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_WOE_ID, } , { (const xmlChar*)"./neighbourhood/@woeid", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_WOE_ID, } , { (const xmlChar*)"./neighborhood/@place_url", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_URL, } , { (const xmlChar*)"./neighbourhood/@place_url", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_URL, } , { (const xmlChar*)"./neighborhood", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_NAME, } , { (const xmlChar*)"./neighbourhood", FLICKCURL_PLACE_NEIGHBOURHOOD, PLACE_NAME, } , { (const xmlChar*)"./locality/@place_id", FLICKCURL_PLACE_LOCALITY, PLACE_ID, } , { (const xmlChar*)"./locality/@place_url", FLICKCURL_PLACE_LOCALITY, PLACE_URL, } , { (const xmlChar*)"./locality/@woeid", FLICKCURL_PLACE_LOCALITY, PLACE_WOE_ID, } , { (const xmlChar*)"./locality", FLICKCURL_PLACE_LOCALITY, PLACE_NAME, } , { (const xmlChar*)"./county/@place_id", FLICKCURL_PLACE_COUNTY, PLACE_ID, } , { (const xmlChar*)"./county/@place_url", FLICKCURL_PLACE_COUNTY, PLACE_URL, } , { (const xmlChar*)"./county/@woeid", FLICKCURL_PLACE_COUNTY, PLACE_WOE_ID, } , { (const xmlChar*)"./county", FLICKCURL_PLACE_COUNTY, PLACE_NAME, } , { (const xmlChar*)"./region/@place_id", FLICKCURL_PLACE_REGION, PLACE_ID, } , { (const xmlChar*)"./region/@place_url", FLICKCURL_PLACE_REGION, PLACE_URL, } , { (const xmlChar*)"./region/@woeid", FLICKCURL_PLACE_REGION, PLACE_WOE_ID, } , { (const xmlChar*)"./region", FLICKCURL_PLACE_REGION, PLACE_NAME, } , { (const xmlChar*)"./country/@place_id", FLICKCURL_PLACE_COUNTRY, PLACE_ID, } , { (const xmlChar*)"./country/@place_url", FLICKCURL_PLACE_COUNTRY, PLACE_URL, } , { (const xmlChar*)"./country/@woeid", FLICKCURL_PLACE_COUNTRY, PLACE_WOE_ID, } , { (const xmlChar*)"./country", FLICKCURL_PLACE_COUNTRY, PLACE_NAME, } , { (const xmlChar*)"./@place_type", /* special */ (flickcurl_place_type)0, PLACE_TYPE, } , { (const xmlChar*)"./@latitude", /* special */ (flickcurl_place_type)0, PLACE_LATITUDE, } , { (const xmlChar*)"./@longitude", /* special */ (flickcurl_place_type)0, PLACE_LONGITUDE, } , { (const xmlChar*)"./@photo_count", /* special */ (flickcurl_place_type)0, PLACE_PHOTO_COUNT, } , { (const xmlChar*)"./shapedata", /* special */ (flickcurl_place_type)0, PLACE_SHAPE, } , { NULL, (flickcurl_place_type)0, PLACE_NONE } }; /* get shapedata from value */ flickcurl_place** flickcurl_build_places(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* place_count_p) { flickcurl_place** places = NULL; int nodes_count; int place_count; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; int i; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); places = (flickcurl_place**)calloc(sizeof(flickcurl_place*), nodes_count+1); for(i = 0, place_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; int expri; xmlXPathContextPtr xpathNodeCtx = NULL; flickcurl_place* place; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } place = (flickcurl_place*)calloc(sizeof(flickcurl_place), 1); place->type = FLICKCURL_PLACE_LOCATION; /* set up a new XPath context relative to the current node */ xpathNodeCtx = xmlXPathNewContext(xpathCtx->doc); xpathNodeCtx->node = node; for(expri = 0; expri <= FLICKCURL_PLACE_LAST; expri++) { if(place->names[expri]) { free(place->names[expri]); place->names[expri] = NULL; } if(place->ids[expri]) { free(place->ids[expri]); place->ids[expri] = NULL; } if(place->urls[expri]) { free(place->urls[expri]); place->urls[expri] = NULL; } } for(expri = 0; place_fields_table[expri].xpath; expri++) { flickcurl_place_type place_type = place_fields_table[expri].place_type; place_field_type place_field = place_fields_table[expri].place_field; const xmlChar* place_xpathExpr = place_fields_table[expri].xpath; char *value = NULL; if(place_field == PLACE_SHAPE) { place->shape = flickcurl_build_shape(fc, xpathNodeCtx, place_xpathExpr); if(place->shape) { /* copy pointers to DEPRECATED fields */ place->shapedata = place->shape->data; place->shapedata_length = place->shape->data_length; place->shapefile_urls = place->shape->file_urls; place->shapefile_urls_count = place->shape->file_urls_count; } continue; } value = flickcurl_xpath_eval(fc, xpathNodeCtx, place_xpathExpr); if(!value) continue; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "field %d array #%d with value: '%s'\n", place_type, (int)place_field, value); #endif switch(place_field) { case PLACE_NAME: place->names[(int)place_type] = value; break; case PLACE_ID: place->ids[(int)place_type] = value; break; case PLACE_WOE_ID: place->woe_ids[(int)place_type] = value; break; case PLACE_URL: place->urls[(int)place_type] = value; break; case PLACE_TYPE: place->type = flickcurl_get_place_type_by_label(value); free(value); value = NULL; break; case PLACE_LATITUDE: place->location.accuracy= -1; place->location.latitude = atof(value); free(value); value = NULL; break; case PLACE_LONGITUDE: place->location.accuracy= -1; place->location.longitude = atof(value); free(value); value = NULL; break; case PLACE_PHOTO_COUNT: place->count = atoi(value); free(value); value = NULL; break; case PLACE_TIMEZONE: place->timezone = value; break; case PLACE_SHAPE: /* handled above */ break; case PLACE_NONE: default: flickcurl_error(fc, "Unknown place type %d", (int)place_field); fc->failed = 1; } if(fc->failed) goto placestidy; } /* end for place fields */ placestidy: if(xpathNodeCtx) xmlXPathFreeContext(xpathNodeCtx); places[place_count++] = place; } /* for places */ if(place_count_p) *place_count_p = place_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); if(fc->failed) { if(places) flickcurl_free_places(places); places = NULL; } return places; } flickcurl_place* flickcurl_build_place(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_place** places; flickcurl_place* result = NULL; places = flickcurl_build_places(fc, xpathCtx, xpathExpr, NULL); if(places) { result = places[0]; free(places); } return result; } /** * flickcurl_place_type_to_id: * @place_type: place type * * Turn a place type into a place ID * * Return value: place ID for type or <0 on failure */ int flickcurl_place_type_to_id(flickcurl_place_type place_type) { int place_type_id = -1; if(place_type == FLICKCURL_PLACE_NEIGHBORHOOD) place_type_id = 22; else if(place_type == FLICKCURL_PLACE_LOCALITY) place_type_id = 7; else if(place_type == FLICKCURL_PLACE_REGION) place_type_id = 8; else if(place_type == FLICKCURL_PLACE_COUNTRY) place_type_id = 12; else if(place_type == FLICKCURL_PLACE_CONTINENT) place_type_id = 29; else place_type_id = -1; return place_type_id; } /** * flickcurl_place_id_to_type: * @place_type_id: place type ID * * Turn a place type into a place ID * * Return value: place type for fID or FLICKCURL_PLACE_LOCATION on failure */ flickcurl_place_type flickcurl_place_id_to_type(int place_type_id) { flickcurl_place_type place_type = FLICKCURL_PLACE_LOCATION; if(place_type_id == 22) place_type = FLICKCURL_PLACE_NEIGHBORHOOD; else if(place_type_id == 7) place_type = FLICKCURL_PLACE_LOCALITY; else if(place_type_id == 8) place_type = FLICKCURL_PLACE_REGION; else if(place_type_id == 12) place_type = FLICKCURL_PLACE_COUNTRY; else if(place_type_id == 29) place_type = FLICKCURL_PLACE_CONTINENT; else place_type = FLICKCURL_PLACE_LOCATION; return place_type; } flickcurl_place_type_info** flickcurl_build_place_types(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* place_type_count_p) { flickcurl_place_type_info** place_types = NULL; int nodes_count; int place_type_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do place_types */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); place_types = (flickcurl_place_type_info**)calloc(nodes_count + 1, sizeof(flickcurl_place_type_info*)); for(i = 0, place_type_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_place_type_info* pt; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } pt = (flickcurl_place_type_info*)calloc(1, sizeof(*pt)); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) { pt->id = atoi(attr_value); free(attr_value); pt->type = flickcurl_place_id_to_type(pt->id); } else free(attr_value); } /* Walk children nodes for name text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); pt->name = (char*)malloc(len + 1); memcpy(pt->name, chnode->content, len + 1); } } //#if FLICKCURL_DEBUG > 1 fprintf(stderr, "place_type: id %d type %d name %s\n", pt->id, pt->type, pt->name); //#endif place_types[place_type_count++] = pt; } /* for nodes */ if(place_type_count_p) *place_type_count_p = place_type_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return place_types; } /** * flickcurl_free_place_type_infos: * @ptis_object: list of place type info * * Destructor for place type info list */ void flickcurl_free_place_type_infos(flickcurl_place_type_info **ptis_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(ptis_object, flickcurl_place_type_info); for(i = 0; ptis_object[i]; i++) { flickcurl_place_type_info *pti = ptis_object[i]; char * n = pti->name; if(n) free(n); free(pti); } free(ptis_object); } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/sha1.c���������������������������������������������������������������������������0000644�0001750�0001750�00000025443�12131440600�012126� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * sha1.c - SHA1 Message Digest Algorithm and HMAC-SHA1 * * Copyright (C) 2011, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * Based on the public domain version with the credits below. * */ /* SHA-1 in C By Steve Reid <sreid@sea-to-sky.net> 100% Public Domain ----------------- Modified 7/98 By James H. Brown <jbrown@burgoyne.com> Still 100% Public Domain Corrected a problem which generated improper hash values on 16 bit machines Routine SHA1Update changed from void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int len) to void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned long len) The 'len' parameter was declared an int which works fine on 32 bit machines. However, on 16 bit machines an int is too small for the shifts being done against it. This caused the hash function to generate incorrect values if len was greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update(). Since the file IO in main() reads 16K at a time, any file 8K or larger would be guaranteed to generate the wrong hash (e.g. Test Vector #3, a million "a"s). I also changed the declaration of variables i & j in SHA1Update to unsigned long from unsigned int for the same reason. These changes should make no difference to any 32 bit implementations since an int and a long are the same size in those environments. -- I also corrected a few compiler warnings generated by Borland C. 1. Added #include <process.h> for exit() prototype 2. Removed unused variable 'j' in SHA1Final 3. Changed exit(0) to return(0) at end of main. ALL changes I made can be located by searching for comments containing 'JHB' ----------------- Modified 8/98 By Steve Reid <sreid@sea-to-sky.net> Still 100% public domain 1- Removed #include <process.h> and used return() instead of exit() 2- Fixed overwriting of finalcount in SHA1Final() (discovered by Chris Hall) 3- Changed email address from steve@edmweb.com to sreid@sea-to-sky.net */ /* Test Vectors (from FIPS PUB 180-1) "abc" A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" 84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1 A million repetitions of "a" 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <stdio.h> #include <string.h> #include <stdarg.h> #include <stdint.h> #include <flickcurl.h> #include <flickcurl_internal.h> #define u32 uint32_t /* #define SHA1HANDSOFF * Copies data before messing with it. */ /* Using return() instead of exit() - SWR */ typedef struct { u32 state[5]; u32 count[2]; unsigned char buffer[64]; unsigned char digest[SHA1_DIGEST_LENGTH]; } SHA1Context; static void SHA1Transform(u32 state[5], const unsigned char buffer[64]); static void SHA1Init(SHA1Context* context); static void SHA1Update(SHA1Context* context, const unsigned char* data, size_t len); /* JHB */ static void SHA1Final(SHA1Context* context); #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) /* blk0() and blk() perform the initial expand. */ /* I got the idea of expanding during the round function from SSLeay */ #ifdef WORDS_BIGENDIAN #define blk0(i) block->l[i] #else #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \ |(rol(block->l[i],8)&0x00FF00FF)) #endif #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \ ^block->l[(i+2)&15]^block->l[i&15],1)) /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */ #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); /* Hash a single 512-bit block. This is the core of the algorithm. */ static void SHA1Transform(u32 state[5], const unsigned char buffer[64]) { u32 a, b, c, d, e; typedef union { unsigned char c[64]; u32 l[16]; } CHAR64LONG16; CHAR64LONG16* block; #ifdef SHA1HANDSOFF static unsigned char workspace[64]; block = (CHAR64LONG16*)workspace; memcpy(block, buffer, 64); #else block = (CHAR64LONG16*)buffer; #endif /* Copy context->state[] to working vars */ a = state[0]; b = state[1]; c = state[2]; d = state[3]; e = state[4]; /* 4 rounds of 20 operations each. Loop unrolled. */ R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3); R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15); R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27); R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35); R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39); R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43); R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47); R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51); R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55); R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59); R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63); R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67); R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71); R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75); R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79); /* Add the working vars back into context.state[] */ state[0] += a; state[1] += b; state[2] += c; state[3] += d; state[4] += e; /* Wipe variables */ /* a = b = c = d = e = 0; */ /* CLANG: useless */ } /* SHA1Init - Initialize new context */ static void SHA1Init(SHA1Context* context) { /* SHA1 initialization constants */ context->state[0] = 0x67452301; context->state[1] = 0xEFCDAB89; context->state[2] = 0x98BADCFE; context->state[3] = 0x10325476; context->state[4] = 0xC3D2E1F0; context->count[0] = context->count[1] = 0; } /* Run your data through this. */ static void SHA1Update(SHA1Context* context, const unsigned char* data, size_t len) /* JHB */ { u32 i, j; /* JHB */ j = (context->count[0] >> 3) & 63; if ((context->count[0] += len << 3) < (len << 3)) context->count[1]++; context->count[1] += (len >> 29); if ((j + len) > 63) { memcpy(&context->buffer[j], data, (i = 64-j)); SHA1Transform(context->state, context->buffer); for ( ; i + 63 < len; i += 64) { SHA1Transform(context->state, &data[i]); } j = 0; } else i = 0; memcpy(&context->buffer[j], &data[i], len - i); } /* Add padding and return the message digest. */ static void SHA1Final(SHA1Context* context) { u32 i; /* JHB */ unsigned char finalcount[8]; for (i = 0; i < 8; i++) { finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)] >> ((3-(i & 3)) * 8) ) & 255); /* Endian independent */ } SHA1Update(context, (const unsigned char*)"\200", 1); while ((context->count[0] & 504) != 448) { SHA1Update(context, (const unsigned char*)"\0", 1); } SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */ for (i = 0; i < SHA1_DIGEST_LENGTH; i++) { context->digest[i] = (unsigned char) ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255); } /* Wipe variables */ /* i = 0; */ /* JHB */ /* CLANG: useless */ memset(context->buffer, 0, 64); memset(context->state, 0, SHA1_DIGEST_LENGTH); memset(context->count, 0, 8); memset(finalcount, 0, 8); /* SWR */ #ifdef SHA1HANDSOFF /* make SHA1Transform overwrite it's own static vars */ SHA1Transform(context->state, context->buffer); #endif } /* DJB code from here */ #define IPAD_CHAR 0x36 #define OPAD_CHAR 0x5c #define HMAC_SHA1_BLOCKSIZE 64 /* * flickcurl_hmac_sha1: * @data: data * @data_size: size of data in bytes * @key: key * @key_len: size of key in bytes * * INTERNAL - Calculate the HMAC-SHA1 digest of key and data * * Based on specification at http://tools.ietf.org/html/rfc2104 * Section 2. "Definition of HMAC" where B=64 H=SHA1 L=SHA1_DIGEST_LENGTH (20) * * Return value: buffer of size SHA1_DIGEST_LENGTH or NULL on failure */ unsigned char* flickcurl_hmac_sha1(const void *data, size_t data_len, const void *key, size_t key_len) { unsigned int i; SHA1Context inner; SHA1Context outer; SHA1Context key_hash; unsigned char kpad[HMAC_SHA1_BLOCKSIZE]; unsigned char* result; if(!key || !data) return NULL; result = (unsigned char*)malloc(SHA1_DIGEST_LENGTH); if(!result) return NULL; if(key_len > HMAC_SHA1_BLOCKSIZE) { /* When key (K) is > blocksize, key := sha1-hash(key) */ SHA1Init(&key_hash); SHA1Update(&key_hash, (const unsigned char*)key, key_len); SHA1Final(&key_hash); key = key_hash.digest; key_len = SHA1_DIGEST_LENGTH; } memset(kpad, '\0', sizeof(kpad)); memcpy(kpad, key, key_len); for(i = 0; i < HMAC_SHA1_BLOCKSIZE; i++) kpad[i] ^= IPAD_CHAR; /* inner := sha1-hash(ipad // message) */ SHA1Init(&inner); SHA1Update(&inner, kpad, HMAC_SHA1_BLOCKSIZE); SHA1Update(&inner, (const unsigned char*)data, data_len); SHA1Final(&inner); memset(kpad, '\0', sizeof(kpad)); memcpy(kpad, key, key_len); for(i = 0; i < HMAC_SHA1_BLOCKSIZE; i++) kpad[i] ^= OPAD_CHAR; /* final outer := sha1-hash(opad // inner) */ SHA1Init(&outer); SHA1Update(&outer, kpad, HMAC_SHA1_BLOCKSIZE); /* Result of inner hash is in inner.digest of size SHA1_DIGEST_LENGTH */ SHA1Update(&outer, inner.digest, SHA1_DIGEST_LENGTH); SHA1Final(&outer); /* copy final digest into result buffer */ memcpy(result, outer.digest, SHA1_DIGEST_LENGTH); return result; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/blog.c���������������������������������������������������������������������������0000644�0001750�0001750�00000015325�12017302525�012221� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * blog.c - Flickcurl blog functions * * Copyright (C) 2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> static void flickcurl_free_blog(flickcurl_blog *blog) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(blog, flickcurl_blog); if(blog->id) free(blog->id); if(blog->name) free(blog->name); free(blog); } /** * flickcurl_free_blogs: * @blogs_object: blog object array * * Destructor for array of blog objects */ void flickcurl_free_blogs(flickcurl_blog **blogs_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(blogs_object, flickcurl_blog_array); for(i = 0; blogs_object[i]; i++) flickcurl_free_blog(blogs_object[i]); free(blogs_object); } flickcurl_blog** flickcurl_build_blogs(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* blog_count_p) { flickcurl_blog** blogs = NULL; int nodes_count; int blog_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); blogs = (flickcurl_blog**)calloc(sizeof(flickcurl_blog*), nodes_count+1); for(i = 0, blog_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_blog* b; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } b = (flickcurl_blog*)calloc(sizeof(flickcurl_blog), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) b->id = attr_value; else if(!strcmp(attr_name, "name")) b->name = attr_value; else if(!strcmp(attr_name, "needspassword")) { b->needs_password = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "url")) b->url = attr_value; else free(attr_value); } /* end attributes */ #if FLICKCURL_DEBUG > 1 fprintf(stderr, "blog: id %s name '%s' needs password '%d' url '%s'\n", b->id, b->name, b->needs_password, b->url); #endif blogs[blog_count++] = b; } /* for nodes */ if(blog_count_p) *blog_count_p = blog_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return blogs; } static void flickcurl_free_blog_service(flickcurl_blog_service *blog_service) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(blog_service, flickcurl_blog_service); if(blog_service->id) free(blog_service->id); if(blog_service->name) free(blog_service->name); free(blog_service); } /** * flickcurl_free_blog_services: * @blog_services_object: blog services object array * * Destructor for array of blog services objects */ void flickcurl_free_blog_services(flickcurl_blog_service **blog_services_object) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(blog_services_object, flickcurl_blog_service_array); for(i = 0; blog_services_object[i]; i++) flickcurl_free_blog_service(blog_services_object[i]); free(blog_services_object); } flickcurl_blog_service** flickcurl_build_blog_services(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* blog_services_count_p) { flickcurl_blog_service** blog_services = NULL; int nodes_count; int blog_services_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); blog_services = (flickcurl_blog_service**)calloc(sizeof(flickcurl_blog_service*), nodes_count+1); for(i = 0, blog_services_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_blog_service* b; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } b = (flickcurl_blog_service*)calloc(sizeof(flickcurl_blog_service), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) b->id = attr_value; else free(attr_value); } /* end attributes */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); b->name = (char*)malloc(len + 1); memcpy(b->name, chnode->content, len + 1); } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "blog service: id %s name '%s'\n", b->id, b->name); #endif blog_services[blog_services_count++] = b; } /* for nodes */ if(blog_services_count_p) *blog_services_count_p = blog_services_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return blog_services; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/context.c������������������������������������������������������������������������0000644�0001750�0001750�00000012220�12017302525�012751� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * context.c - Flickcurl context functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /* This is the element name and the label - lazy */ static const char* flickcurl_context_type_element[FLICKCURL_CONTEXT_LAST+2] = { "---", "set", "pool", "prevphoto", "nextphoto", NULL }; /** * flickcurl_get_context_type_field_label: * @type: context type * * Get label for context type * * Return value: label string or NULL if none valid */ const char* flickcurl_get_context_type_field_label(flickcurl_context_type type) { if(type > FLICKCURL_CONTEXT_NONE && type <= FLICKCURL_CONTEXT_LAST) return flickcurl_context_type_element[(int)type]; return NULL; } /** * flickcurl_free_context: * @context: context object * * Destructor for context object */ void flickcurl_free_context(flickcurl_context *context) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(context, flickcurl_context); if(context->id) free(context->id); if(context->secret) free(context->secret); if(context->title) free(context->title); if(context->url) free(context->url); if(context->thumb) free(context->thumb); free(context); } /** * flickcurl_free_contexts: * @contexts: context object array * * Destructor for array of context object */ void flickcurl_free_contexts(flickcurl_context** contexts) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(contexts, flickcurl_context_array); for(i = 0; contexts[i]; i++) flickcurl_free_context(contexts[i]); free(contexts); } flickcurl_context** flickcurl_build_contexts(flickcurl* fc, xmlDocPtr doc) { flickcurl_context** contexts = NULL; xmlNodePtr xnp; xmlNodePtr node; int i; int count = 0; int nodes_count = 0; xnp = xmlDocGetRootElement(doc); /* count root element children */ for(node = xnp->children; node; node = node->next) { if(node->type == XML_ELEMENT_NODE) nodes_count++; } contexts = (flickcurl_context**)calloc(sizeof(flickcurl_context*), nodes_count + 1); /* walk children elements of root element */ xnp = xmlDocGetRootElement(doc); for(i = 0, node = xnp->children; node; i++, node = node->next) { xmlAttr* attr; flickcurl_context* context; flickcurl_context_type type = FLICKCURL_CONTEXT_NONE; int j; #if FLICKCURL_DEBUG > 1 fprintf(stderr, "XML node name %s XML type %d\n", node->name, node->type); #endif if(node->type != XML_ELEMENT_NODE) continue; for(j = 0; j <= FLICKCURL_CONTEXT_LAST; j++) { if(!strcmp((const char*)node->name, flickcurl_context_type_element[j])) { type = (flickcurl_context_type)j; break; } } if(type == FLICKCURL_CONTEXT_NONE) continue; context = (flickcurl_context*)calloc(sizeof(flickcurl_context), 1); context->type = type; for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) context->id = attr_value; else if(!strcmp(attr_name, "secret")) context->secret = attr_value; else if(!strcmp(attr_name, "server")) { context->server = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "farm")) { context->farm = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "title")) context->title = attr_value; else if(!strcmp(attr_name, "url")) context->url = attr_value; else if(!strcmp(attr_name, "thumb")) context->thumb = attr_value; else free(attr_value); } /* for attributes */ #if FLICKCURL_DEBUG > 1 fprintf(stderr, "context: id %s secret %s server %d farm %d title '%s'\n url '%s'\n thumb '%s'\n", context->id, (context->secret ? context->secret : "NULL"), context->server, context->farm, (context->title ? context->title : "NULL"), context->url, context->thumb ); #endif contexts[count++] = context; } /* for nodes */ contexts[count] = NULL; return contexts; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/perms.c��������������������������������������������������������������������������0000644�0001750�0001750�00000007050�12017302525�012420� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * perms.c - Flickcurl method perms functions * * Copyright (C) 2007-2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_perms: * @perms: perms object * * Destructor for perms object */ void flickcurl_free_perms(flickcurl_perms *perms) { FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(perms, flickcurl_perms); free(perms); } flickcurl_perms* flickcurl_build_perms(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr) { flickcurl_perms* perms = NULL; int nodes_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do perms */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); for(i = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } perms = (flickcurl_perms*)calloc(sizeof(flickcurl_perms), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "id")) ; /* perms->id = attr_value; */ else if(!strcmp(attr_name, "ispublic")) perms->is_public = atoi(attr_value); else if(!strcmp(attr_name, "iscontact")) perms->is_contact = atoi(attr_value); else if(!strcmp(attr_name, "isfriend")) perms->is_friend = atoi(attr_value); else if(!strcmp(attr_name, "isfamily")) perms->is_family = atoi(attr_value); else if(!strcmp(attr_name, "permcomment")) perms->perm_comment = atoi(attr_value); else if(!strcmp(attr_name, "permaddmeta")) perms->perm_addmeta = atoi(attr_value); free(attr_value); } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "perms: ispublic %d iscontact %d isfriend %d isfamily %d permcomment %d permaddmeta %d\n", perms->is_public, perms->is_contact, perms->is_friend, perms->is_family, perms->perm_comment, perms->perm_addmeta); #endif /* Handle only first perm */ break; } /* for nodes */ tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return perms; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photosets-api.c������������������������������������������������������������������0000644�0001750�0001750�00000045721�12157645243�014114� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photosets-api.c - Flickr flickr.photosets.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photosets_addPhoto: * @fc: flickcurl context * @photoset_id: The id of the photoset to add a photo to. * @photo_id: The id of the photo to add to the set. * * Add a photo to the end of an existing photoset. * * Implements flickr.photosets.addPhoto (0.13) * * Return value: non-0 on failure **/ int flickcurl_photosets_addPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photoset_id || !photo_id) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.addPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_create: * @fc: flickcurl context * @title: A title for the photoset. * @description: A description of the photoset which may contain limited html (or NULL) * @primary_photo_id: The id of the photo to represent this set. The photo must belong to the calling user. * @photoset_url_p: pointer to variable to store new photoset URL (or NULL) * * Create a new photoset for the calling user. * * Implements flickr.photosets.create (0.13) * * Return value: photoset ID or NULL on failure **/ char* flickcurl_photosets_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** photoset_url_p) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* photoset_id = NULL; flickcurl_init_params(fc, 1); if(!title || !primary_photo_id) return NULL; flickcurl_add_param(fc, "title", title); if(description) { flickcurl_add_param(fc, "description", description); } flickcurl_add_param(fc, "primary_photo_id", primary_photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.create")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } photoset_id = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/photoset/@id"); if(photoset_url_p) { *photoset_url_p = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/photoset/@url"); } tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) photoset_id = NULL; return photoset_id; } /** * flickcurl_photosets_delete: * @fc: flickcurl context * @photoset_id: The id of the photoset to delete. Must be owned by the calling user. * * Delete a photoset. * * Implements flickr.photosets.delete (0.13) * * Return value: non-0 on failure **/ int flickcurl_photosets_delete(flickcurl* fc, const char* photoset_id) { xmlDocPtr doc = NULL; flickcurl_init_params(fc, 1); if(!photoset_id) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.delete")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; tidy: return fc->failed; } /** * flickcurl_photosets_editMeta: * @fc: flickcurl context * @photoset_id: The id of the photoset to modify. * @title: The new title for the photoset. * @description: A description of the photoset which may contain limited html (or NULL) * * Modify the meta-data for a photoset. * * Implements flickr.photosets.editMeta (0.13) * * Return value: non-0 on failure **/ int flickcurl_photosets_editMeta(flickcurl* fc, const char* photoset_id, const char* title, const char* description) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photoset_id || !title) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_add_param(fc, "title", title); if(description) { flickcurl_add_param(fc, "description", description); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.editMeta")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_editPhotos: * @fc: flickcurl context * @photoset_id: The id of the photoset to modify. Must belong to the calling user. * @primary_photo_id: The id of the photo to use as the 'primary' photo for the set. This id must also be passed along in photo_ids list argument. * @photo_ids_array: Array of photo ids to include in the set. They will appear in the set in the order sent. This list MUST contain the primary photo id. All photos must belong to the owner of the set. This list of photos replaces the existing list. Call flickr.photosets.addPhoto to append a photo to a set. * * Modify the photos in a photoset. * * Use this method to add, remove and re-order photos. * * Implements flickr.photosets.editPhotos (0.13) * * Return value: non-0 on failure **/ int flickcurl_photosets_editPhotos(flickcurl* fc, const char* photoset_id, const char* primary_photo_id, const char** photo_ids_array) { xmlDocPtr doc = NULL; int result = 1; char* photo_ids = NULL; flickcurl_init_params(fc, 1); if(!photoset_id || !primary_photo_id || !photo_ids_array) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_add_param(fc, "primary_photo_id", primary_photo_id); photo_ids = flickcurl_array_join(photo_ids_array, ','); flickcurl_add_param(fc, "photo_ids", photo_ids); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.editPhotos")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; if(photo_ids) free(photo_ids); return result; } /** * flickcurl_photosets_getContext: * @fc: flickcurl context * @photo_id: photo ID * @photoset_id: photoset ID * * Get next and previous photos for a photo in a set. * * Implements flickr.photosets.getContext (0.7) * * Return value: an array of size 3 [prev, next, NULL] flickcurl_context* * or NULL on error **/ flickcurl_context** flickcurl_photosets_getContext(flickcurl* fc, const char* photo_id, const char* photoset_id) { xmlDocPtr doc = NULL; flickcurl_context** contexts = NULL; flickcurl_init_params(fc, 0); if(!photo_id || !photoset_id) return NULL; flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.getContext")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; contexts = flickcurl_build_contexts(fc, doc); tidy: if(fc->failed) contexts = NULL; return contexts; } /** * flickcurl_photosets_getInfo: * @fc: flickcurl context * @photoset_id: The ID of the photoset to fetch information for. * * Gets information about a photoset. * * Implements flickr.photosets.getInfo (0.13) * * Return value: non-0 on failure **/ flickcurl_photoset* flickcurl_photosets_getInfo(flickcurl* fc, const char* photoset_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_photoset* photoset = NULL; flickcurl_init_params(fc, 0); if(!photoset_id) return NULL; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.getInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } photoset = flickcurl_build_photoset(fc, xpathCtx); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) photoset = NULL; return photoset; } /** * flickcurl_photosets_getList: * @fc: flickcurl context * @user_id: The NSID of the user to get a photoset list for. If none is specified, the calling user is assumed (or NULL) * * Returns the photosets belonging to the specified user. * * Implements flickr.photosets.getList (0.13) * * Return value: array of photoset IDs or NULL on failure **/ flickcurl_photoset** flickcurl_photosets_getList(flickcurl* fc, const char* user_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_photoset** photoset_list = NULL; flickcurl_init_params(fc, 0); if(user_id) { flickcurl_add_param(fc, "user_id", user_id); } flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } photoset_list = flickcurl_build_photosets(fc, xpathCtx, (const xmlChar*)"/rsp/photosets/photoset", NULL); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) photoset_list = NULL; return photoset_list; } /** * flickcurl_photosets_getPhotos_params: * @fc: flickcurl context * @photoset_id: The id of the photoset to return the photos for. * @privacy_filter: Return photos only matching a certain privacy level 1-5 (or <0) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Get the list of photos in a set. * * Currently supported extra fields are: license, date_upload, * date_taken, owner_name, icon_server, original_format, * last_update. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: list of photos or NULL on failure **/ flickcurl_photos_list* flickcurl_photosets_getPhotos_params(flickcurl* fc, const char* photoset_id, int privacy_filter, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; char privacy_filter_str[2]; const char* format = NULL; flickcurl_init_params(fc, 0); if(!photoset_id) return NULL; /* API parameters */ flickcurl_add_param(fc, "photoset_id", photoset_id); if(privacy_filter >= 1 && privacy_filter <= 5) { sprintf(privacy_filter_str, "%d", privacy_filter); flickcurl_add_param(fc, "privacy_filter", privacy_filter_str); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.getPhotos")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photoset", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_photosets_getPhotos: * @fc: flickcurl context * @photoset_id: The id of the photoset to return the photos for. * @extras: A comma-delimited list of extra information to fetch for each returned record (or NULL) * @privacy_filter: Return photos only matching a certain privacy level 1-5 (or <0) * @per_page: Number of photos to return per page. If this argument is omitted, it defaults to 500. The maximum allowed value is 500. (or <0) * @page: The page of results to return. If this argument is omitted, it defaults to 1. (or <0) * * Get the list of photos in a set. * * See flickcurl_photosets_getPhotos_params() for details of parameters. * * Implements flickr.photosets.getPhotos (0.13) * * Return value: list of photos or NULL on failure **/ flickcurl_photo** flickcurl_photosets_getPhotos(flickcurl* fc, const char* photoset_id, const char* extras, int privacy_filter, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_photosets_getPhotos_params(fc, photoset_id, privacy_filter, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } /** * flickcurl_photosets_orderSets: * @fc: flickcurl context * @photoset_ids_array: Array of photoset IDs, ordered with the set to show first, first in the list. Any set IDs not given in the list will be set to appear at the end of the list, ordered by their IDs. * * Set the order of photosets for the calling user. * * Implements flickr.photosets.orderSets (0.13) * * Return value: non-0 on failure **/ int flickcurl_photosets_orderSets(flickcurl* fc, const char** photoset_ids_array) { xmlDocPtr doc = NULL; int result = 1; char* photoset_ids; flickcurl_init_params(fc, 0); if(!photoset_ids_array) return 1; photoset_ids = flickcurl_array_join(photoset_ids_array, ','); flickcurl_add_param(fc, "photoset_ids", photoset_ids); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.orderSets")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; if(photoset_ids) free(photoset_ids); return result; } /** * flickcurl_photosets_removePhoto: * @fc: flickcurl context * @photoset_id: The id of the photoset to remove a photo from. * @photo_id: The id of the photo to remove from the set. * * Remove a photo from a photoset. * * Implements flickr.photosets.removePhoto (0.13) * * Return value: non-0 on failure **/ int flickcurl_photosets_removePhoto(flickcurl* fc, const char* photoset_id, const char* photo_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photoset_id || !photo_id) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.removePhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_removePhotos: * @fc: flickcurl context * @photoset_id: The id of the photoset to remove photos from. * @photo_ids_array: Array of photo ids to remove from the photoset. * * Remove multiple photos from a photoset. * * Implements flickr.photosets.removePhotos (1.19) * * Return value: non-0 on failure **/ int flickcurl_photosets_removePhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array) { xmlDocPtr doc = NULL; int result = 1; char* photo_ids = NULL; flickcurl_init_params(fc, 1); if(!photoset_id || !photo_ids_array) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); photo_ids = flickcurl_array_join(photo_ids_array, ','); flickcurl_add_param(fc, "photo_ids", photo_ids); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.removePhotos")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(photo_ids) free(photo_ids); if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_reorderPhotos: * @fc: flickcurl context * @photoset_id: The id of the photoset to reorder. The photoset must belong to the calling user. * @photo_ids_array: Array of Ordered list of photo ids. Photos that are not in the list will keep their original order * * (null) * * Implements flickr.photosets.reorderPhotos (1.19) * * Return value: non-0 on failure **/ int flickcurl_photosets_reorderPhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array) { xmlDocPtr doc = NULL; int result = 1; char* photo_ids = NULL; flickcurl_init_params(fc, 0); if(!photoset_id || !photo_ids_array) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); photo_ids = flickcurl_array_join(photo_ids_array, ','); flickcurl_add_param(fc, "photo_ids", photo_ids); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.reorderPhotos")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(photo_ids) free(photo_ids); if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_setPrimaryPhoto: * @fc: flickcurl context * @photoset_id: The id of the photoset to set primary photo to. * @photo_id: The id of the photo to set as primary. * * Set photoset primary photo * * Implements flickr.photosets.setPrimaryPhoto (1.19) * * Return value: non-0 on failure **/ int flickcurl_photosets_setPrimaryPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!photoset_id || !photo_id) return 1; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_add_param(fc, "photo_id", photo_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.setPrimaryPhoto")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } �����������������������������������������������flickcurl-1.25/src/interestingness-api.c������������������������������������������������������������0000644�0001750�0001750�00000007620�12157645243�015304� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * interestingness-api.c - Flickr flickr.interestingness.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_interestingness_getList_params: * @fc: flickcurl context * @date: A specific date, formatted as YYYY-MM-DD, to return interesting photos for. (or NULL) * @list_params: #flickcurl_photos_list_params result parameters (or NULL) * * Returns the list of interesting photos for the most recent day or a user-specified date. * * Optional extra type 'media' that will return an extra media = VALUE * for VALUE "photo" or "video". API addition 2008-04-07. * * Return value: non-0 on failure **/ flickcurl_photos_list* flickcurl_interestingness_getList_params(flickcurl* fc, const char* date, flickcurl_photos_list_params* list_params) { flickcurl_photos_list* photos_list = NULL; const char* format = NULL; flickcurl_init_params(fc, 0); /* API parameters */ if(date) { flickcurl_add_param(fc, "date", date); } /* Photos List parameters */ flickcurl_append_photos_list_params(fc, list_params, &format); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.interestingness.getList")) goto tidy; photos_list = flickcurl_invoke_photos_list(fc, (const xmlChar*)"/rsp/photos", format); tidy: if(fc->failed) { if(photos_list) flickcurl_free_photos_list(photos_list); photos_list = NULL; } return photos_list; } /** * flickcurl_interestingness_getList: * @fc: flickcurl context * @date: A specific date, formatted as YYYY-MM-DD, to return interesting photos for. (or NULL) * @extras: A comma-delimited list of extra information to fetch for each returned record. See #flickcurl_photos_list_params for the full list (or NULL) * @per_page: Number of photos to return per page default 100, max 500 * @page: The page of results to return, default 1 * * Returns the list of interesting photos for the most recent day or a user-specified date. * * See flickcurl_interestingness_getList() for full description of arguments. * * Implements flickr.interestingness.getList (0.13) * * Return value: non-0 on failure **/ flickcurl_photo** flickcurl_interestingness_getList(flickcurl* fc, const char* date, const char* extras, int per_page, int page) { flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list; flickcurl_photo** photos; memset(&list_params, '\0', sizeof(list_params)); list_params.format = NULL; list_params.extras = extras; list_params.per_page = per_page; list_params.page = page; photos_list = flickcurl_interestingness_getList_params(fc, date, &list_params); if(!photos_list) return NULL; photos = photos_list->photos; photos_list->photos = NULL; /* photos array is now owned by this function */ flickcurl_free_photos_list(photos_list); return photos; } ����������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/reflection-api.c�����������������������������������������������������������������0000644�0001750�0001750�00000010202�12157645243�014200� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * reflection-api.c - Flickr flickr.reflection.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_reflection_getMethods: * @fc: flickcurl context * * Get the list of available API method names * * Implements flickr.reflection.getMethods (0.10) * * Return value: arry of names or NULL on failure **/ char** flickcurl_reflection_getMethods(flickcurl* fc) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; const xmlChar* xpathExpr = NULL; int i; int size; char **methods = NULL; int count; flickcurl_init_params(fc, 0); flickcurl_end_params(fc); if(flickcurl_prepare_noauth(fc, "flickr.reflection.getMethods")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } xpathExpr = (const xmlChar*)"/rsp/methods/method"; xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; size = xmlXPathNodeSetGetLength(nodes); methods = (char**)calloc(1+size, sizeof(char*)); count = 0; for(i = 0; i < size; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } /* Walk children nodes for description text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); methods[count] = (char*)malloc(len + 1); memcpy(methods[count], chnode->content, len + 1); count++; break; } } } /* for nodes */ methods[count] = NULL; tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(xpathObj) xmlXPathFreeObject(xpathObj); return methods; } /** * flickcurl_reflection_getMethodInfo: * @fc: flickcurl context * @name: method name * * Get information about an API method * * Implements flickr.reflection.getMethodInfo (0.10) * * Return value: #flickcurl_method or NULL on failure **/ flickcurl_method* flickcurl_reflection_getMethodInfo(flickcurl* fc, const char* name) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_method* method = NULL; flickcurl_init_params(fc, 0); flickcurl_add_param(fc, "method_name", name); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.reflection.getMethodInfo")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } method = flickcurl_build_method(fc, xpathCtx); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) method = NULL; return method; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/photosets-comments-api.c���������������������������������������������������������0000644�0001750�0001750�00000013030�12157645243�015723� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * photosets-comments-api.c - Flickr flickr.photosets.comments.* API calls * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_photosets_comments_addComment: * @fc: flickcurl context * @photoset_id: The id of the photoset to add a comment to. * @comment_text: Text of the comment * * Add a comment to a photoset. * * Implements flickr.photosets.comments.addComment (0.10) * * Return value: new comment ID or non-NULL on failure **/ char* flickcurl_photosets_comments_addComment(flickcurl* fc, const char* photoset_id, const char* comment_text) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; char* id = NULL; flickcurl_init_params(fc, 1); if(!photoset_id || !comment_text) return NULL; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_add_param(fc, "comment_text", comment_text); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.comments.addComment")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } id = flickcurl_xpath_eval(fc, xpathCtx, (const xmlChar*)"/rsp/comment/@id"); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) id = NULL; return id; } /** * flickcurl_photosets_comments_deleteComment: * @fc: flickcurl context * @comment_id: The id of the comment to delete from a photoset. * * Delete a photoset comment as the currently authenticated user. * * Implements flickr.photosets.comments.deleteComment (0.10) * * Return value: non-0 on failure **/ int flickcurl_photosets_comments_deleteComment(flickcurl* fc, const char* comment_id) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!comment_id) return 1; flickcurl_add_param(fc, "comment_id", comment_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.comments.deleteComment")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_comments_editComment: * @fc: flickcurl context * @comment_id: The id of the comment to edit. * @comment_text: Update the comment to this text. * * Edit the text of a comment as the currently authenticated user. * * Implements flickr.photosets.comments.editComment (0.10) * * Return value: non-0 on failure **/ int flickcurl_photosets_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text) { xmlDocPtr doc = NULL; int result = 1; flickcurl_init_params(fc, 1); if(!comment_id || !comment_text) return 1; flickcurl_add_param(fc, "comment_id", comment_id); flickcurl_add_param(fc, "comment_text", comment_text); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.comments.editComment")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; result = 0; tidy: if(fc->failed) result = 1; return result; } /** * flickcurl_photosets_comments_getList: * @fc: flickcurl context * @photoset_id: The id of the photoset to fetch comments for. * * Returns the comments for a photoset. * * Implements flickr.photosets.comments.getList (0.10) * * Return value: array of comments or NULL on failure **/ flickcurl_comment** flickcurl_photosets_comments_getList(flickcurl* fc, const char* photoset_id) { xmlDocPtr doc = NULL; xmlXPathContextPtr xpathCtx = NULL; flickcurl_comment** comments = NULL; int comments_count = 0; flickcurl_init_params(fc, 0); if(!photoset_id) return NULL; flickcurl_add_param(fc, "photoset_id", photoset_id); flickcurl_end_params(fc); if(flickcurl_prepare(fc, "flickr.photosets.comments.getList")) goto tidy; doc = flickcurl_invoke(fc); if(!doc) goto tidy; xpathCtx = xmlXPathNewContext(doc); if(!xpathCtx) { flickcurl_error(fc, "Failed to create XPath context for document"); fc->failed = 1; goto tidy; } comments = flickcurl_build_comments(fc, xpathCtx, (xmlChar*)"/rsp/comments/comment", &comments_count); tidy: if(xpathCtx) xmlXPathFreeContext(xpathCtx); if(fc->failed) comments = NULL; return comments; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/oauth.c��������������������������������������������������������������������������0000644�0001750�0001750�00000105530�12157645243�012430� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * oauth.c - OAuth 1.0 for Flickr * * Copyright (C) 2011-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /* Only used in the test in this file so needs to be in the library */ int flickcurl_oauth_build_key(flickcurl_oauth_data* od); #ifndef STANDALONE /* * flickcurl_base64_encode_digit: * @c: input digit 0..63 * * INTERNAL - base64 encode a digit * * Note: this the output is not URL safe since '+' and '/' will need * %-escaping * * Return value: base64 encoded char of input value */ static char flickcurl_base64_encode_digit(unsigned char c) { if(c < 26) return 'A' + c; else if(c < 52) return 'a' + (c - 26); else if(c < 62) return '0' + (c - 52); else if(c == 62) return '+'; else return '/'; } /* * flickcurl_base64_encode: * @data: The data to base64 encode * @len: The size of the data in src * @out_len_p: pointer to store output length (or NULL) * * INTERNAL - Base64 encode data into a new string. * * Return value: base64 encoded string or NULL on failure */ static char* flickcurl_base64_encode(const unsigned char *data, size_t len, size_t *out_len_p) { char* out; char* p; unsigned int i; if(!data) return NULL; /* len + 1 to round up for partial sizes when (len % 3) is not 0 */ out = (char*)calloc(sizeof(char), (len + 1) * 4/3 + 1); if(!out) return NULL; /* Encode 1-3 input bytes at a time (8, 16 or 24 input bits) into * 2-4 output chars */ p = out; for(i = 0; i < len; i += 3) { unsigned char in_char_1 = data[i]; unsigned char in_char_2 = ((i + 1) < len) ? data[i + 1] : 0; unsigned char in_char_3 = ((i + 2) < len) ? data[i + 2] : 0; unsigned char out_digit_1; unsigned char out_digit_2; unsigned char out_digit_3; unsigned char out_digit_4; out_digit_1 = in_char_1 >> 2; out_digit_2 = ((in_char_1 & 0x03) << 4) | (in_char_2 >> 4); out_digit_3 = ((in_char_2 & 0x0f) << 2) | (in_char_3 >> 6); out_digit_4 = in_char_3 & 0x3f; *p++ = flickcurl_base64_encode_digit(out_digit_1); *p++ = flickcurl_base64_encode_digit(out_digit_2); if((i + 1) < len) *p++ = flickcurl_base64_encode_digit(out_digit_3); else *p++ = '='; if((i + 2) < len) *p++ = flickcurl_base64_encode_digit(out_digit_4); else *p++ = '='; } *p = '\0'; if(out_len_p) *out_len_p = p - out; return out; } /* * flickcurl_oauth_free: * @od: oauth data * * INTERNAL - Free OAuth data * */ void flickcurl_oauth_free(flickcurl_oauth_data* od) { if(od->client_key) free(od->client_key); if(od->client_secret) free(od->client_secret); if(od->request_token) free(od->request_token); if(od->request_token_secret) free(od->request_token_secret); /* od->verifier always shared */ if(od->token) free(od->token); if(od->token_secret) free(od->token_secret); /* od->callback always shared */ if(od->nonce) free(od->nonce); if(od->key) free(od->key); if(od->data) free(od->data); if(od->username) free(od->username); if(od->user_nsid) free(od->user_nsid); } /* * flickcurl_oauth_build_key: * @od: oauth data * * INTERNAL - Build OAuth 1.0 key * * KEY * http://tools.ietf.org/html/rfc5849#section-3.4.2 * key = concat(client-credentials-secret, '&', token-credentials-secret) * * Stores result in od->key and od->key_len * * Return value: non-0 on failure */ int flickcurl_oauth_build_key(flickcurl_oauth_data* od) { unsigned char *p; if(od->key) free(od->key); od->key_len = od->client_secret_len + 1; if(od->request_token_secret_len) od->key_len += od->request_token_secret_len; else od->key_len += od->token_secret_len; od->key = (unsigned char*)malloc(od->key_len + 1); /* for NUL */ if(!od->key) return 1; p = od->key; if(od->client_secret_len) { memcpy(p, od->client_secret, od->client_secret_len); p += od->client_secret_len; } *p++ = '&'; if(od->request_token_secret_len) { memcpy(p, od->request_token_secret, od->request_token_secret_len); p += od->request_token_secret_len; } else if(od->token_secret_len) { memcpy(p, od->token_secret, od->token_secret_len); p += od->token_secret_len; } *p = '\0'; /* Not part of HMAC-SHA1 data */ return 0; } /* * flickcurl_oauth_compute_signature: * @od: oauth data * @len_p: pointer to store size of result * * INTERNAL - Compute OAuth signature over 'key' and 'data' fields of @od * * Result: signature string or NULL on failure * */ char* flickcurl_oauth_compute_signature(flickcurl_oauth_data* od, size_t* len_p) { unsigned char *s1; char *result; s1 = flickcurl_hmac_sha1(od->data, od->data_len, od->key, od->key_len); if(!s1) return NULL; result = flickcurl_base64_encode(s1, SHA1_DIGEST_LENGTH, len_p); free(s1); return result; } static int compare_args(const void *a, const void *b) { return strcmp(*(char**)a, *(char**)b); } static void flickcurl_sort_args(flickcurl *fc) { qsort((void*)fc->parameters, fc->count, sizeof(char*[2]), compare_args); } /* * flickcurl_oauth_prepare_common: * ... * * INTERNAL - prepare an oauth request */ int flickcurl_oauth_prepare_common(flickcurl *fc, const char* service_uri, const char* method, const char* upload_field, const char* upload_value, int parameters_in_url, int need_auth) { flickcurl_oauth_data* od = &fc->od; int i; char *signature_string = NULL; size_t* values_len = NULL; unsigned int fc_uri_len = 0; /* length of URI path */ unsigned int full_uri_len = 0; /* includes ? and paramters */ char* nonce = NULL; int free_nonce = 0; char* timestamp = NULL; int rc = 0; int is_oauth_method = 0; char *p; if(!service_uri) return 1; /* If one is given, both are required */ if((upload_field || upload_value) && (!upload_field || !upload_value)) return 1; fc->failed = 0; fc->error_code = 0; if(fc->error_msg) { free(fc->error_msg); fc->error_msg = NULL; } if(fc->param_fields) { for(i = 0; fc->param_fields[i]; i++) { free(fc->param_fields[i]); free(fc->param_values[i]); } free(fc->param_fields); free(fc->param_values); fc->param_fields = NULL; fc->param_values = NULL; fc->parameter_count = 0; } if(fc->upload_field) { free(fc->upload_field); fc->upload_field = NULL; } if(fc->upload_value) { free(fc->upload_value); fc->upload_value = NULL; } if(fc->method) free(fc->method); if(method) { size_t len = strlen(method); fc->method = (char*)malloc(len + 1); memcpy(fc->method, method, len + 1); is_oauth_method = !strncmp(method, "flickr.oauth.", 13); } else fc->method = NULL; /* OAuth parameters * * oauth_callback <URL> or "oob" [request token request] * oauth_consumer_key API key * oauth_nonce <random value - different each time> * oauth_signature [ADDED AFTER COMPUTING] * oauth_signature_method "HMAC-SHA1" * oauth_timestamp <value of gettimeofday()> * oauth_version "1.0" * * oauth_verifier verifier [access token request] * oauth_token access token or request token */ if(fc->method && !is_oauth_method) flickcurl_add_param(fc, "method", fc->method); if(od->callback) flickcurl_add_param(fc, "oauth_callback", od->callback); flickcurl_add_param(fc, "oauth_consumer_key", od->client_key); nonce = (char*)od->nonce; if(!nonce) { nonce = (char*)malloc(20); free_nonce = 1; sprintf(nonce, "%ld", mtwist_u32rand(fc->mt)); } flickcurl_add_param(fc, "oauth_nonce", nonce); /* oauth_signature - computed over these fields */ flickcurl_add_param(fc, "oauth_signature_method", "HMAC-SHA1"); timestamp = (char*)malloc(20); if(od->timestamp) sprintf(timestamp, "%ld", (long)od->timestamp); else { struct timeval tp; (void)gettimeofday(&tp, NULL); sprintf(timestamp, "%ld", (long)tp.tv_sec); } flickcurl_add_param(fc, "oauth_timestamp", timestamp); flickcurl_add_param(fc, "oauth_version", "1.0"); if(od->token) flickcurl_add_param(fc, "oauth_token", od->token); else if(od->request_token) flickcurl_add_param(fc, "oauth_token", od->request_token); if(od->verifier) flickcurl_add_param(fc, "oauth_verifier", od->verifier); flickcurl_end_params(fc); /* +FLICKCURL_FLICKCURL_MAX_OAUTH_PARAM_COUNT for oauth fields +1 for NULL terminating pointer */ fc->param_fields = (char**)calloc(fc->count + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1, sizeof(char*)); fc->param_values = (char**)calloc(fc->count + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1, sizeof(char*)); values_len = (size_t*)calloc(fc->count + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1, sizeof(size_t)); if((need_auth && (od->client_secret || od->token_secret)) || fc->sign) flickcurl_sort_args(fc); fc_uri_len = strlen(service_uri); full_uri_len = fc_uri_len; if(parameters_in_url) full_uri_len++; /* Save away the parameters and calculate the value lengths */ for(i = 0; fc->parameters[i][0]; i++) { size_t param_len = strlen(fc->parameters[i][0]); if(fc->parameters[i][1]) values_len[i] = strlen(fc->parameters[i][1]); else { values_len[i] = 0; fc->parameters[i][1] = ""; } fc->param_fields[i] = (char*)malloc(param_len + 1); memcpy(fc->param_fields[i], fc->parameters[i][0], param_len + 1); fc->param_values[i] = (char*)malloc(values_len[i] + 1); memcpy(fc->param_values[i], fc->parameters[i][1], values_len[i] + 1); /* 3x value len is conservative URI %XX escaping on every char */ full_uri_len += param_len + 1 /* = */ + 3 * values_len[i]; } if(upload_field) { size_t len = strlen(upload_field); fc->upload_field = (char*)malloc(len + 1); memcpy(fc->upload_field, upload_field, len + 1); len = strlen(upload_value); fc->upload_value = (char*)malloc(len + 1); memcpy(fc->upload_value, upload_value, len + 1); } if(((need_auth && (od->client_secret || od->token_secret))) || fc->sign) { char *buf = NULL; size_t buf_len = 0; char *param_buf = NULL; size_t param_buf_len = 0; size_t vlen = 0; char *escaped_value = NULL; const char* http_method; size_t http_method_len; size_t escaped_value_len; for(i = 0; fc->parameters[i][0]; i++) param_buf_len += strlen(fc->parameters[i][0]) + 3 + (3 * values_len[i]) + 3; param_buf = (char*)malloc(param_buf_len + 1); *param_buf = '\0'; p = param_buf; for(i = 0; fc->parameters[i][0]; i++) { size_t len = strlen(fc->parameters[i][0]); if(i > 0) *p++ = '&'; memcpy(p, fc->parameters[i][0], len); p += len; *p++ = '='; escaped_value = curl_escape(fc->parameters[i][1], 0); escaped_value_len = strlen(escaped_value); memcpy(p, escaped_value, escaped_value_len); p += escaped_value_len; curl_free(escaped_value); } *p = '\0'; http_method = (upload_field || fc->is_write) ? "POST" : "GET"; http_method_len = (upload_field || fc->is_write) ? 4 : 3; buf_len = http_method_len; buf_len += 1; /* & */ buf_len += (3 * strlen(service_uri)); buf_len += 1; /* & */ buf_len += param_buf_len * 3; buf = (char*)malloc(buf_len + 1); p = buf; memcpy(p, http_method, http_method_len); p += http_method_len; *p++ = '&'; escaped_value = curl_escape(service_uri, 0); escaped_value_len = strlen(escaped_value); memcpy(p, escaped_value, escaped_value_len); p += escaped_value_len; curl_free(escaped_value); *p++ = '&'; escaped_value = curl_escape(param_buf, 0); escaped_value_len = strlen(escaped_value); memcpy(p, escaped_value, escaped_value_len); p += escaped_value_len; curl_free(escaped_value); *p = '\0'; free(param_buf); if(flickcurl_oauth_build_key(od)) { #ifdef FLICKCURL_DEBUG fprintf(stderr, "flickcurl_oauth_build_key() failed\n"); #endif rc = 1; goto tidy; } /* build data */ od->data = (unsigned char*)buf; od->data_len = strlen((const char*)od->data); #ifdef FLICKCURL_DEBUG fprintf(stderr, "data for signature (%d bytes)\n %s\n", (int)od->data_len, (char*)od->data); #endif signature_string = flickcurl_oauth_compute_signature(od, &vlen); /* set by flickcurl_oauth_build_key() above */ free(od->key); od->key = NULL; flickcurl_add_param(fc, "oauth_signature", signature_string); fc->count--; /* Add a new parameter pair */ values_len[fc->count] = vlen; /* 15 = strlen(oauth_signature) */ fc->param_fields[fc->count] = (char*)malloc(15 + 1); memcpy(fc->param_fields[fc->count], fc->parameters[fc->count][0], 15 + 1); fc->param_values[fc->count] = (char*)malloc(vlen + 1); memcpy(fc->param_values[fc->count], fc->parameters[fc->count][1], vlen + 1); full_uri_len += 15 /* "oauth_signature" */ + 1 /* = */ + vlen; fc->count++; #ifdef FLICKCURL_DEBUG fprintf(stderr, "HMAC-SHA1 signature:\n %s\n", signature_string); #endif free(od->data); od->data = NULL; od->data_len = 0; flickcurl_end_params(fc); } /* add &s between fc->parameters */ full_uri_len += fc->count - 1; /* reuse or grow uri buffer */ if(fc->uri_len < full_uri_len) { free(fc->uri); fc->uri = (char*)malloc(full_uri_len + 1); fc->uri_len = full_uri_len; } /* fc_uri_len is strlen(service_uri) at this point */ memcpy(fc->uri, service_uri, fc_uri_len); p = fc->uri + fc_uri_len; *p = '\0'; if(parameters_in_url) { *p++ = '?'; for(i = 0; fc->parameters[i][0]; i++) { char *value = (char*)fc->parameters[i][1]; size_t len; if(!fc->parameters[i][1]) continue; len = strlen(fc->parameters[i][0]); memcpy(p, fc->parameters[i][0], len); p += len; *p++ = '='; value = curl_escape(value, values_len[i]); len = strlen(value); memcpy(p, value, len); p += len; curl_free(value); *p++ = '&'; } /* zap last & and terminate fc->url */ *--p = '\0'; } #ifdef FLICKCURL_DEBUG fprintf(stderr, "Request URI:\n %s\n", fc->uri); do { size_t m_len = strlen(fc->uri); if(m_len > full_uri_len) { fprintf(stderr, "%s:%d: (%s) assertion failed: Final URI len %zu is larger than buffer %zu\n", __FILE__, __LINE__, __func__, m_len, (size_t)full_uri_len); FLICKCURL_ASSERT_DIE } } while(0); #endif tidy: if(signature_string) free(signature_string); if(values_len) free(values_len); if(nonce && free_nonce) free(nonce); if(timestamp) free(timestamp); return rc; } /** * flickcurl_oauth_create_request_token: * @fc: flickcurl object * @callback: callback URL or NULL for out of band * * Request an OAuth request token from Flickr for the application API Key/secret * * Requires the OAuth Client key (API key) and Client secret to have * been set with flickcurl_set_oauth_client_key() and * flickcurl_set_oauth_client_secret() respectively. * * Calls the Flickr OAuth endpoint to get a request token for the * given callback or uses out-of-band if @callback is NULL. * * On success, stores the request token in the @fc structure. * * Return value: non-0 on failure */ int flickcurl_oauth_create_request_token(flickcurl* fc, const char* callback) { flickcurl_oauth_data* od = &fc->od; char* request_token = NULL; char* request_token_secret = NULL; char** form = NULL; int rc = 0; const char* uri = fc->oauth_request_token_uri; int i; int count; flickcurl_end_params(fc); /* Require signature */ flickcurl_set_sign(fc); if(!callback || !*callback) callback = "oob"; od->callback = callback; rc = flickcurl_oauth_prepare_common(fc, uri, /* method */ "flickr.oauth.request_token", /* upload_field */ NULL, /* upload_value */ NULL, /* parameters_in_url */ 1, /* need_auth */ 1); od->callback = NULL; if(rc) goto tidy; form = flickcurl_invoke_get_form_content(fc, &count); if(!form) { rc = 1; goto tidy; } #ifdef FLICKCURL_DEBUG fprintf(stderr, "OAuth request token request %s response was %d params\n", uri, count); #endif for(i = 0; i < (2 * count); i += 2) { if(!strcmp(form[i], "oauth_token")) { request_token = form[i+1]; } else if(!strcmp(form[i], "oauth_token_secret")) { request_token_secret = form[i+1]; } } if(request_token && request_token_secret) { /* Take copies that are owned by od */ size_t len = strlen(request_token); od->request_token = (char*)malloc(len + 1); memcpy(od->request_token, request_token, len + 1); od->request_token_len = len; len = strlen(request_token_secret); od->request_token_secret = (char*)malloc(len + 1); memcpy(od->request_token_secret, request_token_secret, len + 1); od->request_token_secret_len = len; #ifdef FLICKCURL_DEBUG fprintf(stderr, "OAuth request token returned token '%s' secret token '%s'\n", od->request_token, od->request_token_secret); #endif } else rc = 1; tidy: if(form) flickcurl_free_form(form, count); return rc; } /** * flickcurl_oauth_get_authorize_uri: * @fc: flickcurl object * * Get the URL for the user to authorize Flickr OAuth of an application * * Forms the URL the user needs to start at to authorize the * application. * * This function requires flickcurl_oauth_create_request_token() to have * been called to build a request token / secret pair. * * After this function, the application should pass the verifier to * flickcurl_oauth_create_access_token() for the final step in OAuth along * with the request token and request token secret. * * Return value: authorize URI or NULL on failure */ char* flickcurl_oauth_get_authorize_uri(flickcurl* fc) { flickcurl_oauth_data* od = &fc->od; #define PARAM_LEN 13 const char* param = "?oauth_token="; size_t len; char* uri; char *p; if(!od->request_token) return NULL; len = strlen(flickcurl_flickr_oauth_authorize_uri); uri = (char*)malloc(len + PARAM_LEN + od->request_token_len + 1); if(!uri) return NULL; p = uri; memcpy(p, flickcurl_flickr_oauth_authorize_uri, len); p += len; memcpy(p, param, PARAM_LEN); p += PARAM_LEN; memcpy(p, od->request_token, od->request_token_len); p += od->request_token_len; *p = '\0'; return uri; } /** * flickcurl_oauth_create_access_token: * @fc: flickcurl object * @verifier: verifier from OOB authentication * * Get a Flickr OAuth access token from request token credentials and verifier * * Calls the Flickr OAuth access token endpoint using the verifier * from out of band authentication to get an access token to enable * authenticated calls to the Flickr API. * * Return value: non-0 on failure */ int flickcurl_oauth_create_access_token(flickcurl* fc, const char* verifier) { flickcurl_oauth_data* od = &fc->od; char* access_token = NULL; char* access_token_secret = NULL; char* username = NULL; char* user_nsid = NULL; char** form = NULL; int rc = 0; const char* uri = fc->oauth_access_token_uri; int i; int count; if(!verifier) return 1; flickcurl_end_params(fc); /* Require signature */ flickcurl_set_sign(fc); od->verifier = verifier; od->verifier_len = strlen(verifier); rc = flickcurl_oauth_prepare_common(fc, uri, /* method */ "flickr.oauth.access_token", /* upload_field */ NULL, /* upload_value */ NULL, /* parameters_in_url */ 1, /* need_auth */ 1); od->verifier = NULL; od->verifier_len = 0; if(rc) goto tidy; form = flickcurl_invoke_get_form_content(fc, &count); if(!form) { rc = 1; goto tidy; } #ifdef FLICKCURL_DEBUG fprintf(stderr, "OAuth access token request %s response was %d params\n", uri, count); #endif for(i = 0; i < (2 * count); i += 2) { if(!strcmp(form[i], "oauth_token")) { access_token = form[i+1]; } else if(!strcmp(form[i], "oauth_token_secret")) { access_token_secret = form[i+1]; } else if(!strcmp(form[i], "username")) { username = form[i+1]; } else if(!strcmp(form[i], "user_nsid")) { user_nsid = form[i+1]; } /* ignoring: fullname */ } if(access_token && access_token_secret) { /* Take copies that are owned by od */ size_t len = strlen(access_token); od->token = (char*)malloc(len + 1); memcpy(od->token, access_token, len + 1); od->token_len = len; len = strlen(access_token_secret); od->token_secret = (char*)malloc(len + 1); memcpy(od->token_secret, access_token_secret, len + 1); od->token_secret_len = len; if(username) { len = strlen(username); od->username = (char*)malloc(len + 1); memcpy(od->username, username, len + 1); od->username_len = len; } else { od->username = NULL; od->username_len = 0; } if(user_nsid) { len = strlen(user_nsid); od->user_nsid = (char*)malloc(len + 1); memcpy(od->user_nsid, user_nsid, len + 1); od->user_nsid_len = len; } else { od->user_nsid = NULL; od->user_nsid_len = 0; } /* Delete temporary request token and secret */ free(od->request_token); od->request_token = NULL; od->request_token_len = 0; free(od->request_token_secret); od->request_token_secret = NULL; od->request_token_secret_len = 0; #ifdef FLICKCURL_DEBUG fprintf(stderr, "OAuth access token returned token '%s' secret token '%s'\n", od->token, od->token_secret); #endif } else rc = 1; tidy: if(form) flickcurl_free_form(form, count); return rc; } /** * flickcurl_get_oauth_client_key: * @fc: flickcurl object * * Get OAuth Client Key (aka Consumer key, API Key) * * See also flickcurl_get_oauth_client_secret() * * Return value: client key or NULL if none set */ const char* flickcurl_get_oauth_client_key(flickcurl *fc) { return fc->od.client_key; } /** * flickcurl_get_oauth_client_secret: * @fc: flickcurl object * * Get OAuth Client secret * * See also flickcurl_get_oauth_client_key() * * Return value: client secret or NULL if none set */ const char* flickcurl_get_oauth_client_secret(flickcurl *fc) { return fc->od.client_secret; } /** * flickcurl_set_oauth_client_key: * @fc: flickcurl object * @client_key: client key (API key) * * Set OAuth client key (aka API key) * * See also flickcurl_get_oauth_client_key() */ void flickcurl_set_oauth_client_key(flickcurl *fc, const char* client_key) { if(fc->od.client_key) { free(fc->od.client_key); fc->od.client_key = NULL; fc->od.client_key_len = 0; } if(client_key) { size_t len = strlen(client_key); fc->od.client_key = (char*)malloc(len + 1); memcpy(fc->od.client_key, client_key, len + 1); fc->od.client_key_len = len; } } /** * flickcurl_set_oauth_client_secret: * @fc: flickcurl object * @client_secret: client key (shared key) * * Set OAuth client key (aka shared secret) * * See also flickcurl_set_oauth_client_secret() */ void flickcurl_set_oauth_client_secret(flickcurl *fc, const char* client_secret) { if(fc->od.client_secret) { free(fc->od.client_secret); fc->od.client_secret = NULL; fc->od.client_secret_len = 0; } if(client_secret) { size_t len = strlen(client_secret); fc->od.client_secret = (char*)malloc(len + 1); memcpy(fc->od.client_secret, client_secret, len + 1); fc->od.client_secret_len = len; } } /** * flickcurl_get_oauth_token: * @fc: flickcurl object * * Get OAuth Token * * Return value: auth token or NULL if none set */ const char* flickcurl_get_oauth_token(flickcurl *fc) { return fc->od.token; } /** * flickcurl_set_oauth_token: * @fc: flickcurl object * @token: auth token * * Set OAuth Token */ void flickcurl_set_oauth_token(flickcurl *fc, const char* token) { #if FLICKCURL_DEBUG > 1 fprintf(stderr, "OAuth token: '%s'\n", token); #endif if(fc->od.token) { free(fc->od.token); fc->od.token = NULL; fc->od.token_len = 0; } if(token) { size_t len = strlen(token); fc->od.token = (char*)malloc(len + 1); memcpy(fc->od.token, token, len + 1); fc->od.token_len = len; } } /** * flickcurl_get_oauth_token_secret: * @fc: flickcurl object * * Get OAuth token secret * * Return value: secret or NULL if none set */ const char* flickcurl_get_oauth_token_secret(flickcurl* fc) { return fc->od.token_secret; } /** * flickcurl_get_oauth_username: * @fc: flickcurl object * * Get the username for the authenticated user * * Return value: username or NULL if none set */ const char* flickcurl_get_oauth_username(flickcurl* fc) { return fc->od.username; } /** * flickcurl_get_oauth_user_nsid: * @fc: flickcurl object * * Get the user_nsid for the authenticated user * * Return value: user_nsid or NULL if none set */ const char* flickcurl_get_oauth_user_nsid(flickcurl* fc) { return fc->od.user_nsid; } /** * flickcurl_set_oauth_token_secret: * @fc: flickcurl object * @secret: shared secret * * Set OAuth token Secret */ void flickcurl_set_oauth_token_secret(flickcurl* fc, const char *secret) { #if FLICKCURL_DEBUG > 1 fprintf(stderr, "OAuth token secret: '%s'\n", secret); #endif if(fc->od.token_secret) { free(fc->od.token_secret); fc->od.token_secret = NULL; fc->od.token_secret_len = 0; } if(secret) { size_t len = strlen(secret); fc->od.token_secret = (char*)malloc(len + 1); memcpy(fc->od.token_secret, secret, len + 1); fc->od.token_secret_len = len; } } /** * flickcurl_get_oauth_request_token: * @fc: flickcurl object * * Get OAuth request token * * Return value: request token or NULL if none set */ const char* flickcurl_get_oauth_request_token(flickcurl* fc) { return fc->od.request_token; } /** * flickcurl_get_oauth_request_token_secret: * @fc: flickcurl object * * Get OAuth request token secret * * Return value: request token secret or NULL if none set */ const char* flickcurl_get_oauth_request_token_secret(flickcurl* fc) { return fc->od.request_token_secret; } /** * flickcurl_set_oauth_request_token: * @fc: flickcurl object * @token: request token * * Set OAuth request token * * See also flickcurl_get_oauth_request_token() */ void flickcurl_set_oauth_request_token(flickcurl *fc, const char* token) { #if FLICKCURL_DEBUG > 1 fprintf(stderr, "OAuth request token: '%s'\n", token); #endif if(fc->od.request_token) { free(fc->od.request_token); fc->od.request_token = NULL; fc->od.request_token_len = 0; } if(token) { size_t len = strlen(token); fc->od.request_token = (char*)malloc(len + 1); memcpy(fc->od.request_token, token, len + 1); fc->od.request_token_len = len; } } /** * flickcurl_set_oauth_request_token_secret: * @fc: flickcurl object * @secret: request token secret * * Set OAuth request token secret credentials * * See also flickcurl_get_oauth_request_token_secret() */ void flickcurl_set_oauth_request_token_secret(flickcurl *fc, const char* secret) { #if FLICKCURL_DEBUG > 1 fprintf(stderr, "OAuth request token secret: '%s'\n", secret); #endif if(fc->od.request_token_secret) { free(fc->od.request_token_secret); fc->od.request_token_secret = NULL; fc->od.request_token_secret = 0; } if(secret) { size_t len = strlen(secret); fc->od.request_token_secret = (char*)malloc(len + 1); memcpy(fc->od.request_token_secret, secret, len + 1); fc->od.request_token_secret_len = len; } } #endif #ifdef STANDALONE #include <stdio.h> int main(int argc, char *argv[]); /* Test KEY fields */ static const char* test_client_secret = "a9567d986a7539fe"; static const char* test_token_secret = NULL; /* Test DATA fields */ static const char* test_http_request_method = "GET"; static const char* test_uri_base_string = "http://www.flickr.com/services/oauth/request_token"; static const char* test_oauth_callback_url = "http://www.example.com"; static const char* test_oauth_consumer_key = "653e7a6ecc1d528c516cc8f92cf98611"; static const char* test_oauth_nonce = "95613465"; static const time_t test_oauth_timestamp = (time_t)1305586162; static const char* test_request_parameters = "oauth_callback=http%3A%2F%2Fwww.example.com&oauth_consumer_key=653e7a6ecc1d528c516cc8f92cf98611&oauth_nonce=95613465&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1305586162&oauth_version=1.0"; /* Expected results */ static const char* expected_key = "a9567d986a7539fe" "&"; static const char* expected_data = "GET" "&" "http%3A%2F%2Fwww.flickr.com%2Fservices%2Foauth%2Frequest_token" "&" "oauth_callback%3Dhttp%253A%252F%252Fwww.example.com%26oauth_consumer_key%3D653e7a6ecc1d528c516cc8f92cf98611%26oauth_nonce%3D95613465%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1305586162%26oauth_version%3D1.0"; static const char* expected_signature = "7w18YS2bONDPL%2FzgyzP5XTr5af4%3D"; static const char* program; static void oauth_init_test_secrets(flickcurl_oauth_data *od) { /* Set up test data */ od->client_secret = (char*)test_client_secret; if(od->client_secret) od->client_secret_len = strlen(od->client_secret); od->token_secret = (char*)test_token_secret; if(od->token_secret) od->token_secret_len = strlen(od->token_secret); } static int test_request_token(flickcurl* fc) { flickcurl_oauth_data* od = &fc->od; int rc; memset(od, '\0', sizeof(*od)); od->callback = test_oauth_callback_url; od->client_key = (char*)test_oauth_consumer_key; od->client_key_len = strlen(od->client_key); od->nonce = (char*)test_oauth_nonce; od->timestamp = test_oauth_timestamp; oauth_init_test_secrets(od); rc = flickcurl_oauth_create_request_token(fc, NULL); memset(od, '\0', sizeof(*od)); return rc; } static int test_access_token(flickcurl* fc) { flickcurl_oauth_data* od = &fc->od; int rc; const char* verifier = "123-456-789"; memset(od, '\0', sizeof(*od)); od->callback = test_oauth_callback_url; od->client_key = (char*)test_oauth_consumer_key; od->client_key_len = strlen(od->client_key); od->nonce = (char*)test_oauth_nonce; od->timestamp = test_oauth_timestamp; oauth_init_test_secrets(od); rc = flickcurl_oauth_create_access_token(fc, verifier); memset(od, '\0', sizeof(*od)); return rc; } static int test_oauth_build_key_data(flickcurl_oauth_data* od, const char* http_request_method, const char* uri_base_string, const char* request_parameters) { unsigned char *p; size_t s_len; char *escaped_s = NULL; if(flickcurl_oauth_build_key(od)) return 1; od->data_len = strlen(http_request_method) + 1 + (strlen(uri_base_string) * 3) + /* PESSIMAL; every char %-escaped */ 1 + (strlen(request_parameters) * 3); /* PESSIMAL */ od->data = malloc(od->data_len + 1); /* for NUL */ if(!od->data) return 1; /* Prepare data */ p = od->data; s_len = strlen(http_request_method); memcpy(p, http_request_method, s_len); p += s_len; *p++ = '&'; escaped_s = curl_escape(uri_base_string, strlen(uri_base_string)); s_len = strlen(escaped_s); memcpy(p, escaped_s, s_len); p += s_len; curl_free(escaped_s); *p++ = '&'; escaped_s = curl_escape(request_parameters, strlen(request_parameters)); s_len = strlen(escaped_s); memcpy(p, escaped_s, s_len); p += s_len; curl_free(escaped_s); *p = '\0'; /* Not part of HMAC-SHA1 data */ /* calculate actual data len */ od->data_len = p - od->data; return 0; } static int test_signature_calc(flickcurl* fc) { char *s = NULL; char *escaped_s = NULL; size_t escaped_s_len; char* signature; flickcurl_oauth_data* od = &fc->od; int rc; memset(od, '\0', sizeof(*od)); oauth_init_test_secrets(od); rc = test_oauth_build_key_data(od, test_http_request_method, test_uri_base_string, test_request_parameters); if(strcmp((const char*)od->key, expected_key)) { fprintf(stderr, "%s: FAIL\n" " key is (%d bytes)\n %s\n" " expected key is\n %s\n", program, (int)od->key_len, od->key, expected_key); rc++; } if(strcmp((const char*)od->data, expected_data)) { fprintf(stderr, "%s: FAIL\n" " data is (%d bytes)\n %s\n" " expected data is\n %s\n", program, (int)od->data_len, od->data, expected_data); rc++; } signature = flickcurl_oauth_compute_signature(od, &escaped_s_len); escaped_s = curl_escape((char*)signature, 0); free(signature); escaped_s_len = strlen(escaped_s); if(strcmp(escaped_s, expected_signature)) { fprintf(stdout, "%s: FAIL\n" " URI Escaped result (%d bytes):\n %s\n" " Expected URI escaped result\n %s\n", program, (int)escaped_s_len, escaped_s, expected_signature); rc++; } curl_free(escaped_s); if(s) free(s); if(od->key) free(od->key); if(od->data) free(od->data); memset(od, '\0', sizeof(*od)); return rc; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } int main(int argc, char *argv[]) { flickcurl *fc = NULL; int failures = 0; program = "flickcurl_oauth_test"; /* No raptor_basename */ flickcurl_init(); /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { failures++; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(0) { failures += test_request_token(fc); failures += test_access_token(fc); } failures += test_signature_calc(fc); tidy: if(fc) flickcurl_free(fc); return failures; } #endif ������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/src/machinetags.c��������������������������������������������������������������������0000644�0001750�0001750�00000021527�12017307612�013564� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * namespace.c - Flickr machinetag support calls * * Copyright (C) 2008, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include <stdio.h> #include <string.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef WIN32 #include <win32_flickcurl_config.h> #endif #ifdef HAVE_STDLIB_H #include <stdlib.h> #undef HAVE_STDLIB_H #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <flickcurl.h> #include <flickcurl_internal.h> /** * flickcurl_free_tag_namespace: * @tag_nspace: machinetag namespace object * * Destructor for machinetag namespace object */ void flickcurl_free_tag_namespace(flickcurl_tag_namespace *tag_nspace) { if(tag_nspace->name) free(tag_nspace->name); free(tag_nspace); } flickcurl_tag_namespace** flickcurl_build_tag_namespaces(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* namespace_count_p) { flickcurl_tag_namespace** tag_namespaces = NULL; int nodes_count; int tag_namespace_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do namespaces */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); tag_namespaces = (flickcurl_tag_namespace**)calloc(sizeof(flickcurl_tag_namespace*), nodes_count + 1); for(i = 0, tag_namespace_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_tag_namespace* tn; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } tn = (flickcurl_tag_namespace*)calloc(sizeof(flickcurl_tag_namespace), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, (const char*)attr->children->content, attr_len + 1); if(!strcmp(attr_name, "usage")) { tn->usage_count = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "predicates")) { tn->predicates_count = atoi(attr_value); free(attr_value); } else free(attr_value); } /* Walk children for text */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); tn->name = (char*)malloc(len + 1); memcpy(tn->name, chnode->content, len + 1); } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "namespace: name %s usage %d predicates count %d\n", tn->name, tn->usage_count, tn->predicates_count); #endif tag_namespaces[tag_namespace_count++] = tn; } /* for nodes */ if(namespace_count_p) *namespace_count_p = tag_namespace_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return tag_namespaces; } flickcurl_tag_namespace* flickcurl_build_tag_namespace(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* root_xpathExpr) { flickcurl_tag_namespace** tag_namespaces; flickcurl_tag_namespace* result = NULL; tag_namespaces = flickcurl_build_tag_namespaces(fc, xpathCtx, root_xpathExpr, NULL); if(tag_namespaces) { int i; result = tag_namespaces[0]; for(i = 1; tag_namespaces[i]; i++) flickcurl_free_tag_namespace(tag_namespaces[i]); free(tag_namespaces); } return result; } /** * flickcurl_free_tag_namespaces: * @tag_nspaces: namespace object array * * Destructor for array of namespace object */ void flickcurl_free_tag_namespaces(flickcurl_tag_namespace** tag_nspaces) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(tag_nspaces, flickcurl_tag_namespace_array); for(i = 0; tag_nspaces[i]; i++) flickcurl_free_tag_namespace(tag_nspaces[i]); free(tag_nspaces); } /** * flickcurl_free_tag_predicate_value: * @tag_pv: machinetag predicate_value object * * Destructor for machinetag predicate-value pair object */ void flickcurl_free_tag_predicate_value(flickcurl_tag_predicate_value *tag_pv) { if(tag_pv->predicate) free(tag_pv->predicate); if(tag_pv->value) free(tag_pv->value); free(tag_pv); } /* * @content_mode: set use of element content: 1 (predicate), 2 (value) otherwise ignored */ flickcurl_tag_predicate_value** flickcurl_build_tag_predicate_values(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int content_mode, int* predicate_value_count_p) { flickcurl_tag_predicate_value** tag_pvs = NULL; int nodes_count; int tag_predicate_value_count; int i; xmlXPathObjectPtr xpathObj = NULL; xmlNodeSetPtr nodes; /* Now do predicate_values */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed = 1; goto tidy; } nodes = xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count = xmlXPathNodeSetGetLength(nodes); tag_pvs = (flickcurl_tag_predicate_value**)calloc(sizeof(flickcurl_tag_predicate_value*), nodes_count + 1); for(i = 0, tag_predicate_value_count = 0; i < nodes_count; i++) { xmlNodePtr node = nodes->nodeTab[i]; xmlAttr* attr; flickcurl_tag_predicate_value* tpv; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed = 1; break; } tpv = (flickcurl_tag_predicate_value*)calloc(sizeof(flickcurl_tag_predicate_value), 1); for(attr = node->properties; attr; attr = attr->next) { size_t attr_len = strlen((const char*)attr->children->content); const char *attr_name = (const char*)attr->name; char *attr_value; attr_value = (char*)malloc(attr_len + 1); memcpy(attr_value, attr->children->content, attr_len + 1); if(!strcmp(attr_name, "usage")) { tpv->usage_count = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "namespaces")) { tpv->used_in_namespace_count = atoi(attr_value); free(attr_value); } else if(!strcmp(attr_name, "predicate")) { tpv->predicate = attr_value; } else if(!strcmp(attr_name, "value")) { tpv->value = attr_value; } else free(attr_value); } if(content_mode >= 1 && content_mode <= 2) { /* Walk children for predicate */ for(chnode = node->children; chnode; chnode = chnode->next) { if(chnode->type == XML_TEXT_NODE) { size_t len = strlen((const char*)chnode->content); char **ptr = (content_mode == 1) ? &tpv->predicate : &tpv->value; *ptr = (char*)malloc(len + 1); memcpy(*ptr, chnode->content, len + 1); } } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "predicate_value: predicate %s value %s\n", tpv->predicate, tpv->value); #endif tag_pvs[tag_predicate_value_count++] = tpv; } /* for nodes */ if(predicate_value_count_p) *predicate_value_count_p = tag_predicate_value_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return tag_pvs; } /** * flickcurl_free_tag_predicate_values: * @tag_pvs: predicate_value object array * * Destructor for array of predicate_value object */ void flickcurl_free_tag_predicate_values(flickcurl_tag_predicate_value** tag_pvs) { int i; FLICKCURL_ASSERT_OBJECT_POINTER_RETURN(tag_pvs, flickcurl_tag_predicate_value_array); for(i = 0; tag_pvs[i]; i++) flickcurl_free_tag_predicate_value(tag_pvs[i]); free(tag_pvs); } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/autogen.sh���������������������������������������������������������������������������0000755�0001750�0001750�00000024474�12130425525�012353� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/bin/sh # # autogen.sh - Generates initial makefiles from a pristine source tree # # USAGE: # autogen.sh [configure options] # # Configuration is affected by environment variables as follows: # # DRYRUN # If set to any value it will do no configuring but will emit the # programs that would be run. # e.g. DRYRUN=1 ./autogen.sh # # NOCONFIGURE # If set to any value it will generate all files but not invoke the # generated configure script. # e.g. NOCONFIGURE=1 ./autogen.sh # # AUTOMAKE ACLOCAL AUTOCONF AUTOHEADER LIBTOOLIZE GTKDOCIZE # If set (named after program) then this overrides any searching for # the programs on the current PATH. # e.g. AUTOMAKE=automake-1.7 ACLOCAL=aclocal-1.7 ./autogen.sh # # CONFIG_DIR (default ../config) # The directory where fresh GNU config.guess and config.sub can be # found for automatic copying in-place. # # PATH # Where the programs are searched for # # SRCDIR (default .) # Source directory # # This script is based on similar scripts used in various tools # commonly made available via CVS and used with GNU automake. # Try 'locate autogen.sh' on your system and see what you get. # # This script is in the public domain # # Directory for the sources SRCDIR=${SRCDIR-.} # Where the GNU config.sub, config.guess might be found CONFIG_DIR=${CONFIG_DIR-../config} # GIT sub modules file GITMODULES='.gitmodules' # The programs required for configuring which will be searched for # in the current PATH. # Set an envariable of the same name in uppercase, to override scan # programs="automake aclocal autoconf autoheader libtoolize" confs=`find . -name configure.ac -print | grep -v /releases/` gtkdoc_args= if grep "^GTK_DOC_CHECK" $confs >/dev/null; then programs="$programs gtkdocize" gtkdoc_args="--enable-gtk-doc" fi if grep "^AC_CHECK_PROGS.SWIG" $confs >/dev/null; then programs="$programs swig" fi ltdl_args= if grep "^AC_LIBLTDL_" $confs >/dev/null; then ltdl_args="--ltdl" fi silent_args= if grep "^AM_SILENT_RULES" $confs >/dev/null; then silent_args="--enable-silent-rules" fi # Some dependencies for autotools: # automake 1.13 requires autoconf 2.65 # automake 1.12 requires autoconf 2.62 # automake 1.11 requires autoconf 2.62 (needed for AM_SILENT_RULES) automake_min_vers=011102 aclocal_min_vers=$automake_min_vers autoconf_min_vers=026200 autoheader_min_vers=$autoconf_min_vers # libtool 2.2 required for LT_INIT language fix libtoolize_min_vers=020200 gtkdocize_min_vers=010300 swig_min_vers=010324 # Default program arguments automake_args="--gnu --add-missing --force --copy -Wall" aclocal_args="-Wall" autoconf_args="-Wall" libtoolize_args="--force --copy --automake $ltdl_args" gtkdocize_args="--copy" # --enable-gtk-doc does no harm if it's not available configure_args="--enable-maintainer-mode $gtkdoc_args $silent_args" # You should not need to edit below here ###################################################################### # number comparisons may need a C locale LANG=C LC_NUMERIC=C program=`basename $0` if test "X$DRYRUN" != X; then DRYRUN=echo fi cat > autogen-get-version.pl <<EOF use File::Basename; my \$prog=basename \$0; die "\$prog: USAGE PATH PROGRAM-NAME\n e.g. \$prog /usr/bin/foo-123 foo\n" unless @ARGV==2; my(\$path,\$name)=@ARGV; exit 0 if !-f \$path; die "\$prog: \$path not found\n" if !-r \$path; my \$mname=\$name; \$mname =~ s/^g(libtoolize)\$/\$1/; my(@vnums); for my \$varg (qw(--version -version)) { my \$cmd="\$path \$varg"; open(PIPE, "\$cmd 2>&1 |") || next; while(<PIPE>) { chomp; next if @vnums; # drain pipe if we got a vnums next unless /^\$mname/i; my(\$v)=/(\S+)\$/i; \$v =~ s/-.*\$//; @vnums=grep { defined \$_ && !/^\s*\$/} map { s/\D//g; \$_; } split(/\./, \$v); } close(PIPE); last if @vnums; } @vnums=(@vnums, 0, 0, 0)[0..2]; \$vn=join('', map { sprintf('%02d', \$_) } @vnums); print "\$vn\n"; exit 0; EOF autogen_get_version="`pwd`/autogen-get-version.pl" trap "rm -f $autogen_get_version" 0 1 9 15 update_prog_version() { dir=$1 prog=$2 # If there exists an envariable PROG in uppercase, use that and do not scan ucprog=`echo $prog | tr 'a-z' 'A-Z' ` eval env=\$${ucprog} if test X$env != X; then prog_name=$env prog_vers=`perl $autogen_get_version $prog_name $prog` if test X$prog_vers = X; then prog_vers=0 fi eval ${prog}_name=${prog_name} eval ${prog}_vers=${prog_vers} eval ${prog}_dir=environment return fi eval prog_name=\$${prog}_name eval prog_vers=\$${prog}_vers eval prog_dir=\$${prog}_dir if test X$prog_vers = X; then prog_vers=0 fi save_PATH="$PATH" cd "$dir" PATH=".:$PATH" nameglob="$prog*" if [ -x /usr/bin/uname ]; then if [ `/usr/bin/uname` = 'Darwin' -a $prog = 'libtoolize' ] ; then nameglob="g$nameglob" fi fi names=`ls $nameglob 2>/dev/null` if [ "X$names" != "X" ]; then for name in $names; do vers=`perl $autogen_get_version $dir/$name $prog` if [ "X$vers" = "X" ]; then continue fi if expr $vers '>' $prog_vers >/dev/null; then prog_name=$name prog_vers=$vers prog_dir="$dir" fi done fi eval ${prog}_name=${prog_name} eval ${prog}_vers=${prog_vers} eval ${prog}_dir=${prog_dir} PATH="$save_PATH" } check_prog_version() { prog=$1 eval min=\$${prog}_min_vers eval prog_name=\$${prog}_name eval prog_vers=\$${prog}_vers eval prog_dir=\$${prog}_dir echo "$program: $prog program '$prog_name' V $prog_vers (min $min) in $prog_dir" 1>&2 rc=1 if test $prog_vers != 0; then if expr $prog_vers '<' $min >/dev/null; then echo "$program: ERROR: \`$prog' version $prog_vers in $prog_dir is too old." echo " (version $min or newer is required)" rc=0 else # Things are ok, so set the ${prog} name eval ${prog}=${prog_name} fi else echo "$program: ERROR: You must have \`$prog' installed to compile this package." echo " (version $min or newer is required)" rc=0 fi return $rc } # Find newest version of programs in the current PATH save_args=${1+"$*"} save_ifs="$IFS" IFS=":" set - $PATH IFS="$save_ifs" echo "$program: Looking for programs: $programs" here=`pwd` while [ $# -ne 0 ] ; do dir=$1 shift if [ ! -d "$dir" ]; then continue fi for prog in $programs; do update_prog_version "$dir" $prog done done cd $here set - $save_args # END Find programs # Check the versions meet the requirements for prog in $programs; do if check_prog_version $prog; then exit 1 fi done echo "$program: Dependencies satisfied" if test -d $SRCDIR/libltdl; then touch $SRCDIR/libltdl/NO-AUTO-GEN fi config_dir= if test -d $CONFIG_DIR; then config_dir=`cd $CONFIG_DIR; pwd` fi # Initialise and/or update GIT submodules if test -f $GITMODULES ; then echo " " modules=`sed -n -e 's/^.*path = \(.*\)/\1/p' $GITMODULES` for module in $modules; do if test `ls -1 $module | wc -l` -eq 0; then echo "$program: Initializing git submodule in $module" $DRYRUN git submodule init $module fi done echo "$program: Updating git submodules: $modules" $DRYRUN git submodule update fi for coin in `find $SRCDIR -name configure.ac -print | grep -v /releases/` do status=0 dir=`dirname $coin` if test -f "$dir/NO-AUTO-GEN"; then echo "$program: Skipping $dir -- flagged as no auto-generation" else echo " " echo $program: Processing directory $dir ( cd "$dir" # Ensure that these are created by the versions on this system # (indirectly via automake) $DRYRUN rm -f ltconfig ltmain.sh libtool stamp-h* # Made by automake $DRYRUN rm -f missing depcomp # automake junk $DRYRUN rm -rf autom4te*.cache config_macro_dir=`sed -ne 's/^AC_CONFIG_MACRO_DIR(\([^)]*\).*/\1/p' configure.ac` if test "X$config_macro_dir" = X; then config_macro_dir=. else aclocal_args="$aclocal_args -I $config_macro_dir " fi config_aux_dir=`sed -ne 's/^AC_CONFIG_AUX_DIR(\([^)]*\).*/\1/p' configure.ac` if test "X$config_aux_dir" = X; then config_aux_dir=. fi if test "X$config_dir" != X; then echo "$program: Updating config.guess and config.sub" for file in config.guess config.sub; do cfile=$config_dir/$file xfile=$config_aux_dir/$file if test -f $cfile; then $DRYRUN rm -f $xfile $DRYRUN cp -p $cfile $xfile fi done fi echo "$program: Running $libtoolize $libtoolize_args" $DRYRUN rm -f ltmain.sh libtool eval $DRYRUN $libtoolize $libtoolize_args status=$? if test $status != 0; then break fi if grep "^GTK_DOC_CHECK" configure.ac >/dev/null; then # gtkdocize junk $DRYRUN rm -rf gtk-doc.make echo "$program: Running $gtkdocize $gtkdocize_args" $DRYRUN $gtkdocize $gtkdocize_args status=$? if test $status != 0; then break fi fi if test ! -f NEWS; then echo "$program: Creating empty NEWS file to allow configure to work" $DRYRUN touch -t 200001010000 NEWS fi echo "$program: Running $aclocal $aclocal_args" $DRYRUN $aclocal $aclocal_args if grep "^A[CM]_CONFIG_HEADER" configure.ac >/dev/null; then echo "$program: Running $autoheader" $DRYRUN $autoheader status=$? if test $status != 0; then break fi fi echo "$program: Running $automake $automake_args" $DRYRUN $automake $automake_args status=$? if test $status != 0; then break fi echo "$program: Running $autoconf $autoconf_args" $DRYRUN $autoconf $autoconf_args status=$? if test $status != 0; then break fi ) fi if test $status != 0; then echo "$program: FAILED to configure $dir" exit $status fi done rm -f config.cache AUTOMAKE=$automake AUTOCONF=$autoconf ACLOCAL=$aclocal export AUTOMAKE AUTOCONF ACLOCAL if test "X$NOCONFIGURE" = X; then echo " " if test -z "$*"; then echo "$program: WARNING: Running \`configure' with no arguments." echo "If you wish to pass any to it, please specify them on the" echo "\`$program' command line." fi echo "$program: Running ./configure $configure_args $@" if test "X$DRYRUN" = X; then $DRYRUN ./configure $configure_args "$@" \ && echo "$program: Now type \`make' to compile this package" || exit 1 else $DRYRUN ./configure $configure_args "$@" fi fi exit $status ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/flickcurl.conf.example���������������������������������������������������������������0000644�0001750�0001750�00000001066�11212024216�014611� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Example flickcurl(1) utility program configuration file. # # This file should be installed as ~/.flickcurl.conf or $HOME/.flickcurl.conf # for the flickcurl(1) utility program to read from. # # The fields must be created by registering with Flickr for # an API key, shared secret and then authenticating. # # See http://librdf.org/flickcurl/api/flickcurl-auth.html for details # or possibly /usr/share/gtk-doc/html/flickcurl/flickcurl-section-auth.html [flickr] auth_token=1234567-8901234567890123 api_key=0123456789abcdef0123456789abcdef secret=fedcba9876543210 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/examples/����������������������������������������������������������������������������0000755�0001750�0001750�00000000000�12210726306�012235� 5����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/examples/Makefile.am�����������������������������������������������������������������0000644�0001750�0001750�00000002660�11251632016�014213� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# # Flickcurl examples Makefile # # Copyright (C) 2008-2009, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. EXTRA_DIST= \ print-photo-info.c example_programs = print-photo-info search-photos EXTRA_PROGRAMS = $(example_programs) CLEANFILES = $(EXTRA_PROGRAMS) AM_CFLAGS=$(MEM) AM_LDFLAGS=$(MEM_LIBS) AM_CPPFLAGS=-I$(top_srcdir)/src print_photo_info_SOURCES = print-photo-info.c print_photo_info_LDADD=$(top_builddir)/src/libflickcurl.la print_photo_info_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la search_photos_SOURCES = search-photos.c if GETOPT search_photos_SOURCES += $(srcdir)/../utils/getopt.c \ $(srcdir)/../utils/flickcurl_getopt.h search_photos_CPPFLAGS = -I$(srcdir)/../utils endif search_photos_LDADD= $(top_builddir)/src/libflickcurl.la $(top_builddir)/src/libflickcurl.la: cd $(top_builddir)/src && $(MAKE) libflickcurl.la examples: $(example_programs) ��������������������������������������������������������������������������������flickcurl-1.25/examples/Makefile.in�����������������������������������������������������������������0000644�0001750�0001750�00000054402�12157737151�014241� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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@ # # Flickcurl examples Makefile # # Copyright (C) 2008-2009, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } 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@ EXTRA_PROGRAMS = $(am__EXEEXT_1) @GETOPT_TRUE@am__append_1 = $(srcdir)/../utils/getopt.c \ @GETOPT_TRUE@ $(srcdir)/../utils/flickcurl_getopt.h subdir = examples DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/gtk-doc.m4 \ $(top_srcdir)/build/libtool.m4 \ $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__EXEEXT_1 = print-photo-info$(EXEEXT) search-photos$(EXEEXT) am_print_photo_info_OBJECTS = print-photo-info.$(OBJEXT) print_photo_info_OBJECTS = $(am_print_photo_info_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__search_photos_SOURCES_DIST = search-photos.c \ $(srcdir)/../utils/getopt.c \ $(srcdir)/../utils/flickcurl_getopt.h @GETOPT_TRUE@am__objects_1 = search_photos-getopt.$(OBJEXT) am_search_photos_OBJECTS = search_photos-search-photos.$(OBJEXT) \ $(am__objects_1) search_photos_OBJECTS = $(am_search_photos_OBJECTS) search_photos_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/build/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(print_photo_info_SOURCES) $(search_photos_SOURCES) DIST_SOURCES = $(print_photo_info_SOURCES) \ $(am__search_photos_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLICKCURL_VERSION_DECIMAL = @FLICKCURL_VERSION_DECIMAL@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBCURL_MIN_VERSION = @LIBCURL_MIN_VERSION@ LIBFLICKCURL_LIBTOOL_VERSION = @LIBFLICKCURL_LIBTOOL_VERSION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML_MIN_VERSION = @LIBXML_MIN_VERSION@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PKG_CONFIG_REQUIRES = @PKG_CONFIG_REQUIRES@ RANLIB = @RANLIB@ RAPTOR_CFLAGS = @RAPTOR_CFLAGS@ RAPTOR_LIBS = @RAPTOR_LIBS@ RAPTOR_MIN_VERSION = @RAPTOR_MIN_VERSION@ RECHO = @RECHO@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STANDARD_CFLAGS = @STANDARD_CFLAGS@ STRIP = @STRIP@ VERSION = @VERSION@ XML_CONFIG = @XML_CONFIG@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ 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@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ print-photo-info.c example_programs = print-photo-info search-photos CLEANFILES = $(EXTRA_PROGRAMS) AM_CFLAGS = $(MEM) AM_LDFLAGS = $(MEM_LIBS) AM_CPPFLAGS = -I$(top_srcdir)/src print_photo_info_SOURCES = print-photo-info.c print_photo_info_LDADD = $(top_builddir)/src/libflickcurl.la print_photo_info_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la search_photos_SOURCES = search-photos.c $(am__append_1) @GETOPT_TRUE@search_photos_CPPFLAGS = -I$(srcdir)/../utils search_photos_LDADD = $(top_builddir)/src/libflickcurl.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu examples/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): print-photo-info$(EXEEXT): $(print_photo_info_OBJECTS) $(print_photo_info_DEPENDENCIES) $(EXTRA_print_photo_info_DEPENDENCIES) @rm -f print-photo-info$(EXEEXT) $(AM_V_CCLD)$(LINK) $(print_photo_info_OBJECTS) $(print_photo_info_LDADD) $(LIBS) search-photos$(EXEEXT): $(search_photos_OBJECTS) $(search_photos_DEPENDENCIES) $(EXTRA_search_photos_DEPENDENCIES) @rm -f search-photos$(EXEEXT) $(AM_V_CCLD)$(LINK) $(search_photos_OBJECTS) $(search_photos_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print-photo-info.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/search_photos-getopt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/search_photos-search-photos.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< search_photos-search-photos.o: search-photos.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT search_photos-search-photos.o -MD -MP -MF $(DEPDIR)/search_photos-search-photos.Tpo -c -o search_photos-search-photos.o `test -f 'search-photos.c' || echo '$(srcdir)/'`search-photos.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/search_photos-search-photos.Tpo $(DEPDIR)/search_photos-search-photos.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='search-photos.c' object='search_photos-search-photos.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o search_photos-search-photos.o `test -f 'search-photos.c' || echo '$(srcdir)/'`search-photos.c search_photos-search-photos.obj: search-photos.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT search_photos-search-photos.obj -MD -MP -MF $(DEPDIR)/search_photos-search-photos.Tpo -c -o search_photos-search-photos.obj `if test -f 'search-photos.c'; then $(CYGPATH_W) 'search-photos.c'; else $(CYGPATH_W) '$(srcdir)/search-photos.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/search_photos-search-photos.Tpo $(DEPDIR)/search_photos-search-photos.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='search-photos.c' object='search_photos-search-photos.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o search_photos-search-photos.obj `if test -f 'search-photos.c'; then $(CYGPATH_W) 'search-photos.c'; else $(CYGPATH_W) '$(srcdir)/search-photos.c'; fi` search_photos-getopt.o: $(srcdir)/../utils/getopt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT search_photos-getopt.o -MD -MP -MF $(DEPDIR)/search_photos-getopt.Tpo -c -o search_photos-getopt.o `test -f '$(srcdir)/../utils/getopt.c' || echo '$(srcdir)/'`$(srcdir)/../utils/getopt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/search_photos-getopt.Tpo $(DEPDIR)/search_photos-getopt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(srcdir)/../utils/getopt.c' object='search_photos-getopt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o search_photos-getopt.o `test -f '$(srcdir)/../utils/getopt.c' || echo '$(srcdir)/'`$(srcdir)/../utils/getopt.c search_photos-getopt.obj: $(srcdir)/../utils/getopt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT search_photos-getopt.obj -MD -MP -MF $(DEPDIR)/search_photos-getopt.Tpo -c -o search_photos-getopt.obj `if test -f '$(srcdir)/../utils/getopt.c'; then $(CYGPATH_W) '$(srcdir)/../utils/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(srcdir)/../utils/getopt.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/search_photos-getopt.Tpo $(DEPDIR)/search_photos-getopt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(srcdir)/../utils/getopt.c' object='search_photos-getopt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(search_photos_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o search_photos-getopt.obj `if test -f '$(srcdir)/../utils/getopt.c'; then $(CYGPATH_W) '$(srcdir)/../utils/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(srcdir)/../utils/getopt.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(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-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am $(top_builddir)/src/libflickcurl.la: cd $(top_builddir)/src && $(MAKE) libflickcurl.la examples: $(example_programs) # 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: ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/examples/print-photo-info.c����������������������������������������������������������0000644�0001750�0001750�00000004605�12130720371�015537� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* * print-photo-info.c - Flickcurl example code to get information about a photo * * This is example code and not complete because the OAuth client * key, secret and the token and token secret are not configured. * * The flickcurl utility in utils/flickcurl.c contains code that * fully uses the API and read/writes configuration from a file * using flickcurl_config_var_handler() * * This file is in the Public Domain * * Compile it like this: * gcc -o print-photo-info print-photo-info.c `flickcurl-config --cflags` `flickcurl-config --libs` * or use * make print-photo-info * */ #include <stdio.h> #include <flickcurl.h> int main(int argc, char *argv[]); int main(int argc, char *argv[]) { flickcurl *fc; flickcurl_photo *photo; flickcurl_photo_field_type field_type; int i; flickcurl_init(); /* optional static initialising of resources */ fc = flickcurl_new(); /* Set configuration explicitly: ... */ flickcurl_set_oauth_client_key(fc, "..."); flickcurl_set_oauth_client_secret(fc, "..."); flickcurl_set_oauth_token(fc, "..."); flickcurl_set_oauth_token_secret(fc, "..."); /* or could read from an INI config file like this: */ /* flickcurl_config_read_ini(fc, "/home/user/.flickcurl.conf", "flickr", fc, flickcurl_config_var_handler); */ photo = flickcurl_photos_getInfo(fc, "123456789"); /* photo ID */ for(field_type = 0; field_type <= PHOTO_FIELD_LAST; field_type++) { flickcurl_field_value_type datatype = photo->fields[field_type].type; if(datatype != VALUE_TYPE_NONE) fprintf(stderr, "field %s (%d) with %s value: '%s' / %d\n", flickcurl_get_photo_field_label(field_type), (int)field_type, flickcurl_get_field_value_type_label(datatype), photo->fields[field_type].string, photo->fields[field_type].integer); } for(i = 0; i < photo->tags_count; i++) { flickcurl_tag* tag=photo->tags[i]; fprintf(stderr, "%d) %s tag: id %s author ID %s name %s raw '%s' cooked '%s' count %d\n", i, (tag->machine_tag ? "machine" : "regular"), tag->id, tag->author, (tag->authorname ? tag->authorname : "(Unknown)"), tag->raw, tag->cooked, tag->count); } flickcurl_free_photo(photo); flickcurl_free(fc); flickcurl_finish(); /* optional static free of resources */ return 0; } ���������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/examples/search-photos.c�������������������������������������������������������������0000644�0001750�0001750�00000010640�12130720371�015076� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* -*- Mode: c; c-basic-offset: 2 -*- * * search-photos - Search for my interesting photos about a tag * * Copyright (C) 2009-2013, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * * USAGE: search-photos TAG * * This program is an example of how to use the search API to find * photos with Flickcurl. * */ #include <stdio.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <flickcurl.h> static const char* program; static const char* my_basename(const char *name) { char *p; if((p = strrchr(name, '/'))) name = p+1; else if((p = strrchr(name, '\\'))) name = p+1; return name; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } static const char* config_filename = ".flickcurl.conf"; static const char* config_section = "flickr"; int main(int argc, char *argv[]) { flickcurl *fc = NULL; int rc = 0; const char* home; char config_path[1024]; char* tag = NULL; flickcurl_photos_list_params list_params; flickcurl_search_params params; flickcurl_photos_list* photos_list = NULL; int i; program = my_basename(argv[0]); flickcurl_init(); home = getenv("HOME"); if(home) sprintf(config_path, "%s/%s", home, config_filename); else strcpy(config_path, config_filename); if(argc != 2) { fprintf(stderr, "%s: No tag given\n" "Try `%s -h for more information.\n", program, program); rc = 1; goto tidy; } if(!strcmp(argv[1], "-h")) { printf("%s - search for my interesting photos about a tag\n" "Usage: %s TAG\n\n", program, program); fputs("Flickcurl home page: ", stdout); puts(flickcurl_home_url_string); puts(flickcurl_copyright_string); fputs("License: ", stdout); puts(flickcurl_license_string); rc = 1; goto tidy; } tag = argv[1]; /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { rc = 1; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(!access((const char*)config_path, R_OK)) { if(flickcurl_config_read_ini(fc, config_path, config_section, fc, flickcurl_config_var_handler)) { fprintf(stderr, "%s: Failed to read config filename %s: %s\n", program, config_path, strerror(errno)); rc = 1; goto tidy; } } /* Initialise the search parameters themselves * user_id: "me" - Search only photos of the calling user. * sort: "interestingness-desc" - return results with most interesting first * tag: TAG - search for photos about the TAG given on the command line */ flickcurl_search_params_init(¶ms); /* these strings are shared and not strdup()ed since they are stored * in 'params" on the stack */ params.user_id = (char*)"me"; params.sort = (char*)"interestingness-desc"; params.tags = tag; /* Initialise the search result (list) parameters: * per_page: 10 - ten results per-page * page: 1 - return 1 page * extras: "original_format" - want the returned photos to have the * original secret and format fields. */ flickcurl_photos_list_params_init(&list_params); list_params.per_page = 10; list_params.page = 1; /* this string is shared and not strdup()ed since it is stored * in 'list_params" on the stack */ list_params.extras = "original_format"; photos_list = flickcurl_photos_search_params(fc, ¶ms, &list_params); if(!photos_list) goto tidy; fprintf(stderr, "%s: Search returned %d photos\n", program, photos_list->photos_count); for(i = 0; i < photos_list->photos_count; ++i) printf(" Result #%d has ID %s\n", i, photos_list->photos[i]->id); tidy: if(photos_list) flickcurl_free_photos_list(photos_list); if(fc) flickcurl_free(fc); flickcurl_finish(); return(rc); } ������������������������������������������������������������������������������������������������flickcurl-1.25/NOTICE�������������������������������������������������������������������������������0000644�0001750�0001750�00000000172�11212024216�011233� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������This product includes Flickcurl software (http://librdf.org/flickcurl/) created by David Beckett (http://www.dajobe.org/) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/INSTALL������������������������������������������������������������������������������0000644�0001750�0001750�00000036600�12157732314�011403� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `<wchar.h>' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. ��������������������������������������������������������������������������������������������������������������������������������flickcurl-1.25/NEWS.html����������������������������������������������������������������������������0000644�0001750�0001750�00000312754�12210725073�012015� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/> <title>Flickcurl News

Flickcurl News

Dave Beckett

2013-09-01 Flickcurl Version 1.25 Released

More OAuth fixes including getting uploading fully working.

Multiple internal OAuth changes to simplify code.

Updated the coverage for API calls added in the last year approximately.

Added new API call to get the most frequently used tags for a user. This does not seem to work over OAuth:

  flickcurl_tag** flickcurl_tags_getMostFrequentlyUsed(flickcurl* fc);

Added new API call to get the groups of a user:

  flickcurl_group** flickcurl_people_getGroups(flickcurl* fc,
    const char* user_id, const char* extras);

Added new API call to get contacts tagging suggestions but reordered the parameters to match the rest of the contacts.get* API calls.

  flickcurl_contact** flickcurl_contacts_getTaggingSuggestions(flickcurl* fc,
    const char* include_self, const char* include_address_book,
    int page, int per_page);

Added new API calls flickcurl_groups_join(), flickcurl_groups_joinRequest() and flickcurl_groups_leave() for (some of) the new group API:

  int flickcurl_groups_join(flickcurl* fc, const char* group_id,
    const char* accept_rules);

  int flickcurl_groups_joinRequest(flickcurl* fc, const char* group_id,
     const char* message, const char* accept_rules);

  int flickcurl_groups_leave(flickcurl* fc, const char* group_id,
     const char* delete_photos);

Updated the example code flickrdf.c to use the non-deprecated flickcurl_photos_getInfo2()

Updated deprecated flickcurl-config(1) program to be independent of pkg-config. This allows make distcheck to work.

2013-04-10 Flickcurl Version 1.24 Released

Fixed uploading with OAuth - incorrect signature since it failed to use POST.

Added flickcurl_photos_getInfo2() deprecating flickcurl_photos_getInfo() adding the optional 'secret' parameter that was added sometime to the API. See Debian bug 637746.

Updated flickcurl(1) to allow photos.getInfo to take an optional SECRET arg using the new call below, and to add the missing command contacts.getPublicList which fixes Issue 19. .

Added new APIs calls to make available the Flickr username and NSID when OAuth authentication is done.

  const char* flickcurl_get_oauth_username(flickcurl* fc);
  const char* flickcurl_get_oauth_user_nsid(flickcurl* fc);

These new calls were from GitHub pull request 18 from Jose Carlos Garcia Sogo - thanks.

Added a pile of fields to flickcurl_group to match what the API returns rather than what the documentation says:

  • iconfarm icon farm number
  • is_moderator and is_member booleans
  • rules descriptive text
  • pool_count and topic_count counts
  • group restriction booleans: photos_ok, videos_ok, images_ok, screens_ok, art_ok, safe_ok, moderate_ok, restricted_ok, has_geo.

Fixed grabbing text from a <tag> child text node correctly Fixes Issue 16.

Fixed parsing of latitude and longitude value responses.

Fixed a few flickcurl(1) utility manual page wordings. See Debian bug 635989 and Debian bug 635989.

Updated example code to use OAuth authentication API.

Fixed a few memory mis-uses via clang and GCC 4.8.

2012-09-01 Flickcurl Version 1.23 Released

This release fully supports using Flickr via OAuth 1.0 and converting from the legacy Flickr authentication to OAuth. It supports both authentication flows but Flickr has deprecated the legacy authentication, so it might stop working at any time.

Flickr Legacy authentication flow with Flickcurl:

  1. The initial configuration needed is the API Key and Shared Secret, obtained from the Flickr App Garden.
  2. Get the Authentication URL from the Flickr App Garden.
  3. Show the Authentication URL to the user who approves the app resulting in a user visible Frob.
  4. Authentication completes using flickcurl_auth_getFullToken() which exchanges the Frob for the final Auth Token.
  5. Optionally, the flickcurl(1) utility will store in the configuration file: auth_token, api_key and secret. Otherwise the application should do this.

Flickr Flickr OAuth 1.0 flow with Flickcurl:

  1. The initial configuration needed is the Client Key (API Key) and Client Secret (Shared Secret), obtained from the Flickr App Garden.
  2. Authentication starts with a call to flickcurl_oauth_create_request_token() to get the Request Token and Request Token Secret.
  3. Get the Authentication URL using flickcurl_oauth_get_authorize_uri().
  4. Show the Authentication URL to the user who approves the app resulting in a user visible Verifier.
  5. Authentication completes using flickcurl_oauth_create_access_token() to exchange the request token, request token secret and verifier for the final Access Token and Access Token Secret.
  6. Optionally, the flickcurl(1) utility will store in the configuration file: oauth_token, oauth_token_secret, oauth_client_key and oauth_client_secret. Otherwise the application should do this.

Added an API call to upgrade from the Flickr legacy authentication to OAuth 1.0. This revokes and deletes the legacy 'auth_token' and returns an OAuth Access Token and Access Token Secret pair which need to be saved.

    int flickcurl_auth_oauth_getAccessToken(flickcurl* fc)

The upgrade can also be performed by using the oauth.upgrade command of the flickcurl(1) utility.

Added new API calls to get and set OAuth parameters:

  const char* flickcurl_get_oauth_token(flickcurl *fc);
  void flickcurl_set_oauth_token(flickcurl *fc, const char* token);

  const char* flickcurl_get_oauth_token_secret(flickcurl* fc);
  void flickcurl_set_oauth_token_secret(flickcurl* fc, const char *secret);

  const char* flickcurl_get_oauth_client_key(flickcurl *fc);
  void flickcurl_set_oauth_client_key(flickcurl *fc, const char* client_key);

  const char* flickcurl_get_oauth_client_secret(flickcurl *fc);
  void flickcurl_set_oauth_client_secret(flickcurl *fc, const char* client_secret);

  const char* flickcurl_get_oauth_request_token(flickcurl* fc);
  void flickcurl_set_oauth_request_token(flickcurl *fc, const char* token);

  const char* flickcurl_get_oauth_request_token_secret(flickcurl* fc);
  void flickcurl_set_oauth_request_token_secret(flickcurl *fc, const char* secret);

Added new API calls for performing the OAuth flow

  int flickcurl_oauth_create_request_token(flickcurl* fc, const char* callback);

  char* flickcurl_oauth_get_authorize_uri(flickcurl* fc);

  int flickcurl_oauth_create_access_token(flickcurl* fc, const char* verifier);

In flickcurl_photos_setDates() actually send date_taken parameter. This fixes GitHub issue 15

Updated configure to use xml2-config(1) and curl-config(1) as well as pkg-config(1), for systems that do not ship with the pkg-config files, such as OSX 10.8.

Fixed memory leak in flickcurl_build_persons() on loop exit (always) and on the error path.

Fixed memory leak in flickcurl_build_photos() of string_value for tags.

Updated flickcurl utility to handle the OAuth authentication flow with new commands oauth-create and oauth-verify, while still supporting legacy Flickr auth flow with the existing -a FROB form.

Multiple internal changes in the construction of parameters to make the code more readable and handle the extra parameters needed by OAuth.

Multiple internal changes for error path and leaks found by the LLVM clang static code analyzer.

Removed all strncpy, strcat and strcpy with counted memcpy.

2011-12-28 Flickcurl Version 1.22 Released

Add support for the upload field 'hidden' to set if a photo is visible in global search.. The flickcurl_upload_params structure gains an int param hidden with values 1 for global and 2 for hidden.

Added helper functions flickcurl_get_hidden_label() and flickcurl_get_hidden_from_string() to help converting between the int values and readable labels:

  const char* flickcurl_get_hidden_label(int hidden);

  int flickcurl_get_hidden_from_string(const char* hidden_string);

Note: This is an API addition so code should test that the Flickcurl version is 1.22 or newer to use this field and the helper functions.

Added flickcurl_favorites_getContext() for new API call flickr.favorites.getContext, to get previous and next photos around a favo(u)rite:

  flickcurl_photos_list** flickcurl_favorites_getContext(flickcurl* fc,
    const char* photo_id, const char* user_id,
    int num_prev, int num_next, const char* extras);

Now supports only Raptor V2 for optional serializing of triples.

Fix flickcurl(1) utility output and help messages. Patch from Kumar Appaiah - thanks.

Fix several man page and documentation issues. Patch from Kumar Appaiah - thanks.

Remove old curl header include. Patch from Tim Harder - thanks.

Do not delete any existing data in flickcurl_build_persons() if a field is not found.

Added raptor_fake.h to distribution so that flickrdf(1) utility can work without raptor installed. Noticed by Naruto TAKAHASHI - thanks.

Added flickcurl_free_tags() to API. Patch from Naruto TAKAHASHI - thanks.

flickcurl_photoset structure gains an owner NSID field filled in when present. Patch from Naruto TAKAHASHI - thanks!

Add experimental OAuth code, not compiled in by default and built with --enable-oauth.

2011-03-26 Flickcurl 1.21

Minor bug fixes:

  • Fixed a memory leak when building photo list results. Patch from Naruto TAKAHASHI - thanks.
  • flickcurl_photos_setPerms() now allows false boolean permissions. Patch from Henning Spruth - thanks.
  • flickcurl_photosets_getPhotos_params() now works again.

Made the flickrdf(1) utility handle Raptor V1, V2 or none. The configure argument --with-raptor now takes values '1', '2', 'yes' or 'no'. 'yes' selects Raptor V1 as before.

2010-11-18 Flickcurl 1.20

Fixed parsing of standard photos responses (SPR) to make several API calls work again including:

  • flickr.photos.comments.getRecentForContacts
    Functions flickcurl_photos_comments_getRecentForContacts_params() and flickcurl_photos_comments_getRecentForContacts().
  • flickr.photos.getContactsPhotos
    Functions flickcurl_photos_getContactsPhotos_params() and flickcurl_photos_getContactsPhotos().
  • flickr.photos.getContactsPublicPhotos
    Functions flickcurl_photos_getContactsPublicPhotos_params() and flickcurl_photos_getContactsPublicPhotos().
  • flickr.photos.getRecent
    Functions flickcurl_photos_getRecent_params() and flickcurl_photos_getRecent().
  • flickr.photos.recentlyUpdated
    Functions flickcurl_photos_recentlyUpdated_params() and flickcurl_photos_recentlyUpdated().
  • flickr.photos.search
    Functions flickcurl_photos_search_params() and flickcurl_photos_search().
  • flickr.photos.geo.photosForLocation
    Functions flickcurl_photos_geo_photosForLocation_params() and flickcurl_photos_geo_photosForLocation().
  • flickr.photosets.getPhotos
    Functions flickcurl_photosets_getPhotos_params() and flickcurl_photosets_getPhotos().
  • flickr.stats.getPopularPhotos
    Functions flickcurl_stats_getPopularPhotos().
  • flickr.tags.getClusterPhotos
    Functions flickcurl_tags_getClusterPhotos().

2010-07-24 Flickcurl 1.19

Support returning photo notes in flickcurl_photo structure when returning photo information with a new array field notes and notes_count for the size of the array.

Added flickcurl_note class to store photo notes.

Added flickcurl_photosets_removePhotos(), flickcurl_photosets_reorderPhotos() and flickcurl_photosets_setPrimaryPhoto() for new API calls flickr.photosets.removePhotos, flickr.photosets.reorderPhotos and flickr.photosets.setPrimaryPhoto:

  int flickcurl_photosets_removePhotos(flickcurl* fc,
    const char* photoset_id, const char** photo_ids_array);

  int flickcurl_photosets_reorderPhotos(flickcurl* fc,
    const char* photoset_id, const char** photo_ids_array);

  int flickcurl_photosets_setPrimaryPhoto(flickcurl* fc,
    const char* photoset_id, const char* photo_id);

Added flickcurl(1) command support for new API calls.

flickcurl_photos_list gains fields for page number (page), per-page count (per_page) and total photos count (total_count).

Added flickcurl_stats_getCSVFiles but it always does nothing since it expired at 2010-06-01.

Fixed portability operator typo '> =' and '+ =' lose spaces. Issue #4.

2010-04-26 Flickcurl 1.18

Added (rest of) Galleries API calls as announced 2010-04-08:

  char* flickcurl_galleries_create(flickcurl* fc, const char* title,
    const char* description, const char* primary_photo_id,
    char** gallery_url_p);

  int flickcurl_galleries_editMeta(flickcurl* fc, const char* gallery_id,
    const char* title, const char* description);

  int flickcurl_galleries_editPhoto(flickcurl* fc, const char* gallery_id,
    const char* photo_id, const char* new_comment);

  int flickcurl_galleries_editPhotos(flickcurl* fc, const char* gallery_id,
    const char* primary_photo_id, const char** photo_ids_array);

  flickcurl_gallery* flickcurl_galleries_getInfo(flickcurl* fc,
    const char* gallery_id);

  flickcurl_photos_list* flickcurl_galleries_getPhotos_params(flickcurl* fc,
    const char* gallery_id, flickcurl_photos_list_params* list_params);

  flickcurl_photo** flickcurl_galleries_getPhotos(flickcurl* fc,
    const char* gallery_id, const char* extras, int per_page, int page);

  char* flickcurl_urls_lookupGallery(flickcurl* fc, const char* url);

(The other Gallery API calls were implemented in Flickcurl 1.17 before they were announced.)

Enum flickcurl_photo_field_type gains a new PHOTO_FIELD_gallery_comment field for representing a photo's comments in a gallery context.

Added function for new people API call (not announced): flickr.people.getPhotos:

  
  flickcurl_photos_list* flickcurl_people_getPhotos_params(flickcurl* fc,
    const char* user_id, int safe_search,
    const char* min_upload_date, const char* max_upload_date,
    const char* min_taken_date, const char* max_taken_date,
    int content_type, int privacy_filter,
    flickcurl_photos_list_params* list_params);

  flickcurl_photo** flickcurl_people_getPhotos(flickcurl* fc,
    const char* user_id, int safe_search,
    const char* min_upload_date, const char* max_upload_date,
    const char* min_taken_date, const char* max_taken_date,
    int content_type, int privacy_filter, const char* extras,
    int per_page, int page);

Added functions to allow more control over the internal CURL* handle and to set any curl options needed such as with curl_easy_setopt(). The new library constructor function flickcurl_new_with_handle() allows reuse an existing curl handle rather than create and destroy one during the library use. The new library method flickcurl_set_curl_setopt_handler() allows user code to be called via a handler to make any adjustments to the curl options that may be required on a per-request basis.

  flickcurl* flickcurl_new_with_handle(void* curl_handle);

  void flickcurl_set_curl_setopt_handler(flickcurl *fc,
     flickcurl_curl_setopt_handler curl_handler,
     void* curl_handler_data);

Added flickcurl(1) utility support for new API calls.

Fix several cut-n-paste "latitude should be longitude" errors in flickcurl_photos_geo_batchCorrectLocation(), flickcurl_photos_geo_photosForLocation_params() and flickcurl_photos_geo_setLocation().

2010-03-05 Flickcurl 1.17

Added functions for new stats API calls announced 2010-03-03: flickr.stats.getCollectionDomains, flickr.stats.getCollectionReferrers, flickr.stats.getCollectionStats, flickr.stats.getPhotoDomains, flickr.stats.getPhotoReferrers, flickr.stats.getPhotosetDomains, flickr.stats.getPhotosetReferrers, flickr.stats.getPhotosetStats, flickr.stats.getPhotoStats, flickr.stats.getPhotostreamDomains, flickr.stats.getPhotostreamReferrers, flickr.stats.getPhotostreamStats, flickr.stats.getPopularPhotos and flickr.stats.getTotalViews including new flickcurl_stats and flickcurl_view_stats datatypes:

  flickcurl_stat** flickcurl_stats_getCollectionDomains(flickcurl* fc,
    const char* date, const char* collection_id, int per_page, int page);

  flickcurl_stat** flickcurl_stats_getCollectionReferrers(flickcurl* fc,
    const char* date, const char* domain, const char* collection_id,
    int per_page, int page);

  int flickcurl_stats_getCollectionStats(flickcurl* fc, const char* date,
    const char* collection_id);

  flickcurl_stat** flickcurl_stats_getPhotoDomains(flickcurl* fc,
    const char* date, const char* photo_id, int per_page, int page);

  flickcurl_stat** flickcurl_stats_getPhotoReferrers(flickcurl* fc,
    const char* date, const char* domain, const char* photo_id,
    int per_page, int page);

  flickcurl_stat* flickcurl_stats_getPhotoStats(flickcurl* fc,
    const char* date, const char* photo_id);

  flickcurl_stat** flickcurl_stats_getPhotosetDomains(flickcurl* fc,
    const char* date, const char* photoset_id, int per_page, int page);

  flickcurl_stat** flickcurl_stats_getPhotosetReferrers(flickcurl* fc,
    const char* date, const char* domain, const char* photoset_id,
    int per_page, int page);

  int flickcurl_stats_getPhotosetStats(flickcurl* fc, const char* date,
    const char* photoset_id);

  flickcurl_stat** flickcurl_stats_getPhotostreamDomains(flickcurl* fc,
    const char* date, int per_page, int page);

  flickcurl_stat** flickcurl_stats_getPhotostreamReferrers(flickcurl* fc,
    const char* date, const char* domain, int per_page, int page);

  int flickcurl_stats_getPhotostreamStats(flickcurl* fc, const char* date);

  flickcurl_photo** flickcurl_stats_getPopularPhotos(flickcurl* fc,
    const char* date, const char* sort, int per_page, int page,
    const char* extras);

  flickcurl_view_stats* flickcurl_stats_getTotalViews(flickcurl* fc,
    const char* date);

  void flickcurl_free_stat(flickcurl_stat *stat);

  void flickcurl_free_stats(flickcurl_stat **stats_object);

  void flickcurl_free_view_stats(flickcurl_view_stats *view_stats);

The flickcurl_photo_field_type enum gains new fields for counts of comments (PHOTO_FIELD_comments) and favorites (PHOTO_FIELD_favorites) so that these stats can be returned by the new flickcurl_stats_getPopularPhotos() call. (View count field is already present).

Added functions for 5 new people API calls announced 2010-01-21 flickr.photos.people.add, flickr.photos.people.delete, flickr.photos.people.deleteCoords, flickr.photos.people.editCoords and flickr.photos.people.getList:

  int flickcurl_photos_people_add(flickcurl* fc, const char* photo_id,
    const char* user_id, int person_x, int person_y, int person_w, int person_h);

  int flickcurl_photos_people_delete(flickcurl* fc, const char* photo_id,
    const char* user_id);

  int flickcurl_photos_people_deleteCoords(flickcurl* fc, const char* photo_id,
    const char* user_id);

  int flickcurl_photos_people_editCoords(flickcurl* fc, const char* photo_id,
    const char* user_id, int person_x, int person_y, int person_w, int person_h);

  flickcurl_person** flickcurl_photos_people_getList(flickcurl* fc,
    const char* photo_id);

Added functions for 1 new "photos of" people API calls announced 2010-01-21 flickr.people.getPhotosOf:

  flickcurl_photos_list* flickcurl_people_getPhotosOf_params(flickcurl* fc,
    const char* user_id, flickcurl_photos_list_params* list_params);

  flickcurl_photo** flickcurl_people_getPhotosOf(flickcurl* fc,
    const char* user_id, const char* extras, int per_page, int page);

Added functions for 3 new gallery API calls - not yet announced and seems a little incomplete e.g. you cannot list the photos in a gallery: flickr.galleries.addPhoto, flickr.galleries.getList and flickr.galleries.getListForPhoto including new type flickcurl_gallery:

  int flickcurl_galleries_addPhoto(flickcurl* fc, const char* gallery_id,
    const char* photo_id, const char* comment_text);

  flickcurl_gallery** flickcurl_galleries_getList(flickcurl* fc,
    const char* user_id, int per_page, int page);

  flickcurl_gallery** flickcurl_galleries_getListForPhoto(flickcurl* fc,
    const char* photo_id, int per_page, int page);

  void flickcurl_free_galleries(flickcurl_gallery **galleries_object);

Updated the flickcurl(1) to support the new gallery, people photos and stats API calls.

2010-01-13 Flickcurl 1.16

Fix flickcurl(1) utility configuration file generation to use key=value format as documented. Make the software accept files with spaces around the '='.

Updated authentication documentation to add a picture showing the result of fetching the mobile authentication URLs.

2010-01-02 Flickcurl 1.15

The flickcurl_search_params gains an in_gallery boolean field which was added to the photos search API as announced 2009-12-17.

The flickcurl(1) utility photos.search commands gains geo-context taking an integer arg for inside/outside, is-commons boolean flag and is-gallery boolean flag arguments.

Update the authentication section of the documentation to represent the Flickr App Garden changes. Add screen shots of the steps in the flow to authenticate.

Switch the build system to use automake 1.11 AM_SILENT_RULES enabled by default for maintainer, but can be triggered with --enable-silent-rules in configure.

2009-09-20 Flickcurl 1.14

Added a tutorial section to the documentation on how to use the search API - search parameters, result formats, extras and walking through the photos list results. Added a new example program search-photos.c to demonstrate a full working program searching for photos and using the results.

The flickcurl_search_params structure gains geo_context and is_commons search parameters which were added to the search API at some time in the past (geo_context before 10 March 2009). The Geo Context can be set for photos with flickcurl_photos_geo_setLocation() corresponding to the flickr.photos.geo.setLocation API call.

The flickcurl_extras_format_info gains new API 'extras': path_alias, url_m, url_o, url_s, url_sq, url_t as announced 2009-06-29. path_alias returns the user's Flickr URL as in /photos/user and the others provide various computed URLs and dimensions for the photos of a given size so that flickcurl_photos_getSizes() calls can be avoided directly after a search.

Apply a little resource leak fix to the video API when calloc fails - patch from github fork by 'mr.huge at seznam dot cz'. Thanks.

Fixed some off-by-1 errors in some static string allocation sizes.

Small typos and fixes to flickcurl(1) utility messages.

2009-08-01 Flickcurl 1.13

Added function flickcurl_source_uri_as_photo_id() to get photo IDs from full raw 'farm' image URLs. Added command getphotoid to the command-line utility to allow this to be called.

  char* flickcurl_source_uri_as_photo_id(const char *uri);

Added function flickcurl_get_current_request_wait() so applications can know when flickcurl will delay - sleep(2) - in order to let the web service rate limiting work. This allows the application to avoid this and try again later if it desires, rather than have Flickcurl freeze the entire application (if single threaded).

  int flickcurl_get_current_request_wait(flickcurl *fc);

Use a dynamic buffer size for request URI construction to avoid crashing when dealing with requests with e.g. long lists of of photo IDs that exceeded the "big enough" buffer for a URI. Bug noticed and reported by Henning Spruth - thanks!

After the above problem, reviewed the other fixed buffer sizes in the code and they are all for known fixed uses such as formatting a decimal number (of known size) into a string. None of the remaining ones can be influenced by data passed by API calls.

Fixed resource leak of user agent string in flickcurl_free() found by Debarshi Ray - Thanks.

2009-07-04 Flickcurl 1.12

Added function flickcurl_places_getTopPlacesList() for new API call flickr.places.getTopPlacesList.

  flickcurl_place** flickcurl_places_getTopPlacesList(flickcurl* fc,
    flickcurl_place_type place_type, const char* date, int woe_id,
    const char* place_id);

Added function flickcurl_blogs_getServices() and new flickcurl_blog_service structure for describing a blog service. for new API call flickr.blogs.getServices. Added function flickcurl_free_blog_services() to free blog services array.

  flickcurl_blog_service** flickcurl_blogs_getServices(flickcurl* fc);

  void flickcurl_free_blog_services(flickcurl_blog_service **blog_services_object);

Added function flickcurl_photos_comments_getRecentForContacts_params() for new API call flickr.photos.comments.getRecentForContacts

Added function flickcurl_machinetags_getRecentValues() for new API call flickr.machinetags.getRecentValues

Added flickr collections API including new flickcurl_collection datatype:

  flickcurl_collection* flickcurl_collections_getInfo(flickcurl* fc,
    const char* collection_id);

  flickcurl_collection* flickcurl_collections_getTree(flickcurl* fc,
    const char* collection_id, const char* user_id);

Added functions for generating flic.kr short URIs from a photo object or photo ID:

  char* flickcurl_photo_id_as_short_uri(char *photo_id);

  char* flickcurl_photo_as_short_uri(flickcurl_photo *photo);

Fixed flickcurl_invoke_common() to always set / reset HTTP headers list to allows requests that set/don't set headers to work in sequence when called with the same flickcurl context. The symptom of this was in long sequences with mixed reads and writes, crashes or mysterious failures happened. Bug reported / found by Henning Spruth - thanks!

Added continent type to allow flickcurl_get_place_type_label() and flickcurl_get_place_type_by_label() to use. This allows 'continent' to be used in place APIs when called from flickcurl(1) utility.

Retrieve the place name from the <place> element content as well as from attribute value. In the Flickr API, there is always more than one way to get a field ;)

Switched from Subversion to GIT source control hosted by GitHub. The GitHub flickcurl project page. previously was in Subversion at svn.dajobe.org and it moved as of SVN r1021 on 2006-06-02 after the 1.11 release tagged flickcurl_1_11.

Update SHAVE from master GIT 2134bb1207e06d1650918a56f6b142e9a840219d

Added flickcurl(1) utility support for new API calls, allow WOEID args to be "-" to omitted and to add a shorturi command to generate flic.kr short URIs from a photo ID.

2009-05-26 Flickcurl 1.11

flickcurl_search_params structure now has an integer field woe_id for searching via Where On Earth IDs (WOEIDs). Forgot to add this earlier!

The flickcurl utility was updated to support searching with the integer woeid parameter.

Search results now decode more of the extras that can be returned in search queries when the extras field is set in the query to a comma-separated list of things to return. The additions with their extras names are: original dimensions (o_dims), photo views count (views), simple list of tags (tags), photo user information (owner), geo information (geo) and user buddy icons (icons),

Added new flickcurl_photo fields for 'extras' from search results: PHOTO_FIELD_original_height, PHOTO_FIELD_original_width, PHOTO_FIELD_owner_iconfarm, PHOTO_FIELD_owner_iconserver and PHOTO_FIELD_views

Added donuthole support to shapes as announced 2009-05-06. The flicckurl_shapedata structure now has is_donuthole and has_donuthole boolean flag fields.

Fix handling API calls return shape XML with slightly different names so that places.getShapeHistory and places.getInfo both work now (again?).

Added function to get a user buddy icon URI for a given user:

  char* flickcurl_user_icon_uri(int farm, int server, char *nsid);

Added function to get the user buddy icon URI from a user's photo:

  char* flickcurl_photo_as_user_icon_uri(flickcurl_photo *photo);

Added function to return the photo page URI of a photo:

  char* flickcurl_photo_as_page_uri(flickcurl_photo *photo);

Added timezone field support to place (This has not yet been announced as an API change). The flickcurl_place structure now has a timezone string field.

Make more attempts to reset the libcurl context between requests which should help in sequences of calls that mix GET (searches, get information) and POST (uploading, deletions etc.) This is intended to try to fix a hard-to-test report of crashes with multiple upload and API calls on Solaris/SPARC.

Configuration via configure now uses pkg-config(1) to get the compile (CFLAGS) and link (LIBS) flags info for libxml, libcurl and raptor. This should work since those libraries have shipped the respective .pc file in releases for some time.

Use pkg-config raptor configuration for checking raptor presence, versions, cflags and libs rather than the (deprecated) raptor-config program output.

Added configure SHAVE support (git clone git://git.lespiau.name/shave ) to "make autotools output sane" which amounts to much less verbose messages when compiling. It is now enabled by default.

Compiling from subversion (autogen.sh or configure --enable-maintainer-mode) requires Libtool V2 for consistency with my other projects.

2009-05-01 Flickcurl 1.10

Made uploading images and replacing images work again.

Added functions to set the service URIs for the image upload and image replacing web services:

  void flickcurl_set_upload_service_uri(flickcurl *fc, const char *uri);

  void flickcurl_set_replace_service_uri(flickcurl *fc, const char *uri);

Added casts for compiling and using from C++ - the main change is to rename internal variables and function arguments called 'namespace' to 'nspace'.

2009-04-04 Flickcurl 1.9

Added functions for 2 new API calls flickr.panda.getList flickr.panda.getPhotos as announced on 2009-03-03 used in the vomiting Flickr Panda.

  char** flickcurl_panda_getList(flickcurl* fc);

  flickcurl_photo** flickcurl_panda_getPhotos(flickcurl *fc,
    const char *panda_name);

Added function for 1 new API call flickr.groups.members.getList as announced as experimental on 2009-02-24.

  flickcurl_member** flickcurl_groups_members_getList(flickcurl* fc,
    const char* group_id, const char* membertypes, int per_page, int page);

Updated the flickcurl(1) utility to support the 3 new calls.

Fixed flickcurl_photosets_getList() to work again with XML returned by the web service. Not clear if the service changed since this used to work and the code did not change.

Allow config file ~/.flickcurl.conf (as used by flickcurl(1) utility) to contain DOS newline sequence (\r\n) as well as Unix (\n) and \r.

Increased date buffer size in flickcurl_photos_setDates() to prevent buffer overruns.

2009-02-09 Flickcurl 1.8

Added support for new commons API with new institution class, new photos geo and places APIs, and new shape history API with a new shape structure class.

Added functions for 12 new API calls flickr.commons.getInstitutions, flickr.contacts.getListRecentlyUploaded, flickr.photos.geo.batchCorrectLocation, flickr.photos.geo.correctLocation, flickr.photos.geo.photosForLocation, flickr.photos.geo.setContext, flickr.places.getPlaceTypes, flickr.places.getShapeHistory, flickr.places.placesForBoundingBox, flickr.places.placesForContacts, flickr.places.placesForTags and flickr.places.tagsForPlace as announced 2009-01-12 (flickr.places.getShapeHistory), 2009-01-14 (flickr.contacts.getListRecentlyUploaded) and 2009-01-29 (Commons API):

  flickcurl_institution** flickcurl_commons_getInstitutions(flickcurl* fc);

  flickcurl_contact** flickcurl_contacts_getListRecentlyUploaded(flickcurl* fc,
    int date_lastupload, const char* filter);

  int flickcurl_photos_geo_batchCorrectLocation(flickcurl* fc,
    flickcurl_location* location, const char* place_id, int woe_id);
  int flickcurl_photos_geo_correctLocation(flickcurl* fc,
    const char* photo_id, const char* place_id, int woe_id);
  flickcurl_photo** flickcurl_photos_geo_photosForLocation(flickcurl* fc,
    flickcurl_location* location, const char* extras, int per_page, int page);
  flickcurl_photos_list* flickcurl_photos_geo_photosForLocation_params(flickcurl* fc,
    flickcurl_location* location, flickcurl_photos_list_params* list_params);
  int flickcurl_photos_geo_setContext(flickcurl* fc, const char* photo_id,
    int context);

  flickcurl_place_type_info** flickcurl_places_getPlaceTypes(flickcurl* fc);
  flickcurl_shapedata** flickcurl_places_getShapeHistory(flickcurl* fc,
    const char* place_id, int woe_id);
  flickcurl_place** flickcurl_places_placesForBoundingBox(flickcurl* fc,
    flickcurl_place_type place_type, double minimum_longitude,
    double minimum_latitude, double maximum_longitude,
    double maximum_latitude);
  flickcurl_place** flickcurl_places_placesForContacts(flickcurl* fc,
    flickcurl_place_type place_type, int woe_id, const char* place_id,
    int threshold, const char* contacts, int min_upload_date,
    int max_upload_date, int min_taken_date, int max_taken_date);
  int flickcurl_places_placesForTags(flickcurl* fc,
    flickcurl_place_type place_type, int woe_id, const char* place_id,
    const char* threshold, const char* tags, const char* tag_mode,
    const char* machine_tags, const char* machine_tag_mode,
    const char* min_upload_date, const char* max_upload_date,
    const char* min_taken_date, const char* max_taken_date);
  flickcurl_tag** flickcurl_places_tagsForPlace(flickcurl* fc,
    int woe_id, const char* place_id, int min_upload_date,
    int max_upload_date, int min_taken_date, int max_taken_date);

Added destructors for new classes:

  void flickcurl_free_institution(flickcurl_institution *);
  void flickcurl_free_institutions(flickcurl_institution **);
  void flickcurl_free_place_type_infos(flickcurl_place_type_info **);
  void flickcurl_free_shape(flickcurl_shapedata *);
  void flickcurl_free_shapes(flickcurl_shapedata **);

Added flickcurl_institution class and flickcurl_institution_url_type enum for URL types for response from flickcurl_commons_getInstitutions(). Added flickcurl_free_institution() and flickcurl_free_institutions() destructors.

Added FLICKCURL_PLACE_CONTINENT value to place flickcurl_location enum.

Added flickcurl_place_type_info for results of flickcurl_places_getPlaceTypes(). Added flickcurl_free_place_type_infos() destructor.

Added new flickcurl_shapedata class to store shape information, ESRI shape data and/or URLs returned by flickcurl_places_getShapeHistory().

flickcurl_place structure gains a shape field returning a pointer to the flickcurl_shapedata shape data, deprecating old shape fields. Added flickcurl_free_shape() and flickcurl_free_shapes() destructors.

flickcurl_tag gains a new uploaded field for use with flickcurl_contacts_getListRecentlyUploaded()

Deprecated flickcurl_places_getChildrenWithPhotosPublic() and flickcurl_places_getInfo() replacing them with new flickcurl_places_getChildrenWithPhotosPublic2() and flickcurl_places_getInfo2() that taken an integer WOEID parameter rather than string.

Updated flickcurl(1) utility for new API calls.

2008-11-30 Flickcurl 1.7

Added support for the new Machine Tags API as announced 2008-11-18. Added representations for machine tag namespaces flickcurl_tag_namespace and machine tag predicate/value pairs flickcurl_tag_predicate_value.

Added functions for the new API calls flickr.machinetags.getNamespaces, flickr.machinetags.getPairs, flickr.machinetags.getPredicates and flickr.machinetags.getValues:

  flickcurl_tag_namespace** flickcurl_machinetags_getNamespaces(flickcurl* fc,
    const char* predicate, int per_page, int page);

  flickcurl_tag_predicate_value** flickcurl_machinetags_getPairs(flickcurl* fc,
    const char* namespace, const char* predicate, int per_page, int page);

  flickcurl_tag_predicate_value** flickcurl_machinetags_getPredicates(flickcurl* fc,
    const char* namespace, int per_page, int page);

  flickcurl_tag_predicate_value** flickcurl_machinetags_getValues(flickcurl* fc, 
    const char* namespace, const char* predicate, int per_page, int page);

Added destructors for new machine tag structures and arrays of them:

  void flickcurl_free_tag_namespace(flickcurl_tag_namespace *tag_nspace);
  void flickcurl_free_tag_namespaces(flickcurl_tag_namespace** tag_nspaces);
  void flickcurl_free_tag_predicate_value(flickcurl_tag_predicate_value* tag_pv);
  void flickcurl_free_tag_predicate_values(flickcurl_tag_predicate_value **tag_pvs);

Added flickcurl_tags_getClusterPhotos() function for new API call flickr.tags.getClusterPhotos to get a set of photos around a cluster (of 3 tags). This was added to the web service API but not announced some time between 2008-09-04 ad 2008-09-19.

  flickcurl_photos_list* flickcurl_tags_getClusterPhotos(flickcurl* fc,
    const char* tag, const char* cluster_id,
    flickcurl_photos_list_params* list_params);

Updated Places API for changes as announced 2008-11-05 and in The Shape of Alpha to support querying for places via place IDs or Where on Earth (WOE) Ids. The places APIs may now return ESRI shape information and flickcurl_place now stores any XML <shapedata> and ESRI shapefile URLs returned in a lookup call e.g:

$ ./flickcurl places.getInfo 4hLQygSaBJ92
  Type locality (2)
  Location: latitude 45.512000  longitude -73.554000  accuracy unknown
  Shapedata (1752 bytes):
    <polylines>
                        <polyline>45.427627563477,-73.589645385742 45.427051544...
  Shapefile URLs: 1
    0): http://farm4.static.flickr.com/3228/shapefiles/3534_20081111_0a8afe03c5.tar.gz
  0) place location: name 'Montreal, Quebec, Canada' id 4hLQygSaBJ92 woeid 3534 url '/Canada/Quebec/Montreal'
  2) place locality: name 'Montreal, Quebec, Canada' id 4hLQygSaBJ92 woeid 3534 url '/Canada/Quebec/Montreal'
  3) place county: name 'Montréal, Quebec, Canada' id cFBi9x6bCJ8D5rba1g woeid 29375198 url '/cFBi9x6bCJ8D5rba1g'
  4) place region: name 'Quebec, Canada' id CrZUvXebApjI0.72 woeid 2344924 url '/Canada/Quebec'
  5) place country: name 'Canada' id EESRy8qbApgaeIkbsA woeid 23424775 url '/Canada'

Added flickcurl_places_getInfo() for flickr.places.getInfo, flickcurl_places_getInfoByUrl() for flickr.places.getInfoByUrl and flickcurl_places_getChildrenWithPhotosPublic() for flickr.places.getChildrenWithPhotosPublic:

  flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic(flickcurl* fc,
    const char* place_id, const char* woe_id);

  flickcurl_place* flickcurl_places_getInfo(flickcurl* fc,
    const char* place_id, const char* woe_id);

  flickcurl_place* flickcurl_places_getInfoByUrl(flickcurl* fc,
    const char* url);

Added flickcurl_places_placesForUser() function to match API name correctly for API call flickr.places.placesForUser deprecating wrong name flickcurl_places_forUser().

  flickcurl_place** flickcurl_places_placesForUser(flickcurl* fc,
     flickcurl_place_type place_type, int woe_id, const char* place_id,
     int threshold);

Fixed photoset API calls flickcurl_photosets_getList() and flickcurl_photosets_getPhotos_params() to correctly find photos in a photoset from latest web service API. Not clear if the existing code was wrong or the web service response changed.

Updated flickcurl(1) utility to give a usage message for a commmand when it is called with too many or too few arguments.

2008-09-04 Flickcurl 1.6

"It's a beautiful day in the neighborhood" and also "Everybody needs good Neighbours".
Added PHOTO_FIELD_location_neighbourhood, PHOTO_FIELD_neighbourhood_placeid, PHOTO_FIELD_neighbourhood_woeid, PHOTO_FIELD_location_neighbourhood and FLICKCURL_PLACE_NEIGHBOURHOOD enum values making the American English spelling versions aliases for the British / Commonwealth English. Adjusted the XPaths to accept both spellings just in case Flickr changes this. The neighbourhood / neighborhood feature was announced 2008-08-19.

Added flickcurl_places_forUser() function for new API call flickr.places.placesForUser to get the cluster of places for a user as announced 2008-09-04.

  flickcurl_place** flickcurl_places_forUser(flickcurl* fc,
     flickcurl_place_type place_type, int woe_id, const char* place_id,
     int threshold);

Added support for the (experimental) Photos List feed format parameter by the new feature of allowing any function that returns a Standard Photos Response to send the same optional result parameters, including format. This is done by adding new typedefs flickcurl_photos_list for the standard photos response and flickcurl_photos_list_params for the parameters. This allows for existing result parameters (page, per_page, extras) as well as the new new format parameter to be given optionally. The standard photos response format was described 2008-08-19 and the experimental feeds format feature was announced 2008-08-25.

Added functions to return lists of photos with list results parameters based on existing functions without the _params suffix. The functions all take a flickcurl_photos_list_params to replace any existing extras, page and/or per_page parameters and return a new flickcurl_photos_list object on success.

  flickcurl_photos_list*
  flickcurl_favorites_getList_params(flickcurl* fc, const char* user_id,
    flickcurl_photos_list_params* params);

  flickcurl_photos_list*
  flickcurl_favorites_getPublicList_params(flickcurl* fc,
    const char* user_id, flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_groups_pools_getPhotos_params(flickcurl* fc,
    const char* group_id, const char* tags, const char* user_id,
    flickcurl_photos_list_params* list_params);
  flickcurl_photos_list*
  flickcurl_interestingness_getList_params(flickcurl* fc,
    const char* date, flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_people_getPublicPhotos_params(flickcurl* fc,
    const char* user_id,  flickcurl_photos_list_params* params);

  flickcurl_photos_list*
  flickcurl_photos_getContactsPhotos_params(flickcurl* fc,
    int contact_count, int just_friends, int single_photo,
    int include_self, flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_getContactsPublicPhotos_params(flickcurl* fc,
    const char* user_id, int photo_count, int just_friends,
    int single_photo, int include_self,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_getNotInSet_params(flickcurl* fc,
    int min_upload_date, int max_upload_date, const char* min_taken_date,
    const char* max_taken_date, int privacy_filter,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_getRecent_params(flickcurl* fc,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_getUntagged_params(flickcurl* fc,
    int min_upload_date, int max_upload_date, const char* min_taken_date,
    const char* max_taken_date, int privacy_filter,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_getWithGeoData_params(flickcurl* fc,
    int min_upload_date, int max_upload_date, const char* min_taken_date,
    const char* max_taken_date, int privacy_filter,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_getWithoutGeoData_params(flickcurl* fc,
    int min_upload_date, int max_upload_date, const char* min_taken_date,
    const char* max_taken_date, int privacy_filter,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_recentlyUpdated_params(flickcurl* fc, int min_date,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photos_search_params(flickcurl* fc,
    flickcurl_search_params* params,
    flickcurl_photos_list_params* list_params);

  flickcurl_photos_list*
  flickcurl_photosets_getPhotos_params(flickcurl* fc,
   const char* photoset_id, int privacy_filter,
   flickcurl_photos_list_params* list_params);

Added int flickcurl_photos_list_params_init() to initialize a photos list parameter object and flickcurl_free_photos_list() to destroy a photos list object.

  int flickcurl_photos_list_params_init(flickcurl_photos_list_params* list_params);
  void flickcurl_free_photos_list(flickcurl_photos_list* photos_list);

Added a flickcurl_location to a flickcurl_place for the new flickcurl_places_forUser() function.

Added flickcurl_get_feed_format_info() to get the names and descriptions of the current known feed 'format' parameter values, as usable by the '_params' functions mentioned above.

  int flickcurl_get_feed_format_info(int feed_format,
    const char** name_p, const char** label_p, const char** mime_type_p);

Added flickcurl_get_extras_format_info() to get the names and descriptions of the current known 'extras' parameter values, as usable by the '_params' functions mentioned above.

  int flickcurl_get_extras_format_info(int extras_format,
    const char** name_p, const char** label_p);

Added flickcurl_search_params_init() to initialize a search parameter object

  int flickcurl_search_params_init(flickcurl_search_params* params);

Fixed building contexts to not expect the number of contexts to be 3 (!!) but allocate it based on the returned XML. Bug reported by Francis Gastellu.

Fixed typo in the FOAF namespace - no trailing #

Updated flickcurl(1) utility to help with authentication configuration. It now prints a help message on how to get authentication tokens set up, when there is no configuration file present and now accepts -a FROB as an entire command line to get the auth token from the web service via the mobile frob.

Updated flickcurl(1) utility help message to explain list result parameters in more detail, enumerating the known format and extra values using the new flickcurl_get_extras_format_info() and flickcurl_get_feed_format_info() functions.

All flickcurl(1) utility command options that accept booleans, now recognise "true", "false", "yes" and "no" values as well as the existing 'non-zero integer means true' form.

Updated flickcurl(1) utility command photos.recentlyUpdated now enforces it's required parameter - min-date.

Updated flickcurl(1) utility to understand raw format results and write them either to stdout (default) or a file, when called with -o FILE or --output FILE.

Updated flickcurl(1) utility to add a -q / --quiet to be less verbose in its output. This option does not make informational requests generate no output!

Improved error reporting when an API fails (returns non-200), an error message is called via the error handler (set by flickcurl_set_error_handler()).

2008-08-17 Flickcurl 1.5

Added flickcurl_tags_getClusters() function for new API call flickr.tags.getClusters as announced 2008-07-17

Added Tag Clusters API support including new typedefs flickcurl_tag_cluster and flickcurl_tag_clusters and destructor function:

  void flickcurl_free_tag_clusters(flickcurl_tag_clusters *tcs);

Updated flickcurl(1) utility command to add new command tags.getClusters for calling the flickcurl_tags_getClusters() API.

Updated photo search API structure flickcurl_search_params to add contacts, has_geo, lat, lon, radius and radius_units fields.

Updated flickcurl_photos_search() to add support for new photos.search contacts, has_geo, lat, lon, radius and radius_units parameters. The lat, lon, radius and radius_units parameters were announced 2008-06-27

Updated flickrdf utility to make it build without raptor available.

2008-06-24 Flickcurl 1.4

Added video support.

Updated flickcurl(1) utility to report video information when found. Document that photos.search can now take a media argument to search over photos, videos or both.

Added a char* media type field to flickcurl_photo to allow detection of photos or videos by type, and in the case of type "video", provide extra video information in another new field flickcurl_video* video.

Added new flickcurl_video structure for providing video-specific information such as duration and flickcurl_free_video() to free it.

Added an API for turning photo description/metadata into RDF triples. Added new class flickcurl_serializer and factory flickcurl_serializer_factory for called to handle the results of serializing. Added new functions:

  flickcurl_serializer* flickcurl_new_serializer(flickcurl* fc,
    void* data, flickcurl_serializer_factory* factory);
  void flickcurl_free_serializer(flickcurl_serializer* serializer);
  int flickcurl_serialize_photo(flickcurl_serializer* frc,
    flickcurl_photo* photo);
Updated all the namespaces used by the RDF serializer to use a different use of machinetags.org as follows:
  1. Public namespaces (existing schemas):
    • Dublin Core: Prefix: dc URI: http://purl.org/dc/elements/1.1/
      legacy namespace
    • Dublin Core Terms: Prefix: dcterms URI: http://purl.org/dc/terms/
      new namespace with predicates dc:creator dc:dateSubmitted dc:rights dc:modified dc:issued dc:created dc:description dc:title
    • FOAF: Prefix: foaf URI: http://xmlns.com/foaf/0.1/
      with predicates foaf:maker foaf:name foaf:nick and classes foaf:Person foaf:Image
    • Geo by W3C SWIG: Prefix: geo URI: http://www.w3.org/2003/01/geo/wgs84_pos#
      with predicates geo:lat geo:long
    • RDF Schema: Prefix: rdfs URI: http://www.w3.org/2000/01/rdf-schema#
      with predicates rdfs:label
    • RDF: Prefix: rdf URI: http://www.w3.org/1999/02/22-rdf-syntax-ns#
      with predicates rdf:type
    • XML Schema Datatypes: Prefix: xsd URI: http://www.w3.org/2001/XMLSchema#
      with XSD datatypes xsd:boolean xsd:dateTime xsd:double xsd:integer
  2. Flickr terminology namespaces (no schema yet):
    • Flickr API initially for video terms: Prefix: flickr URI: http://machinetags.org/ns/Flickr#
      with predicates flickr:image flickr:video flickr:width flickr:height and classes flickr:Video
    • Places API: Prefix: places URI: http://machinetags.org/ns/Places#
      with predicates places:place places:type places:name places:id places:placeid places:url and class places:Place
  3. Machine Tag namespaces (no schema yet; prefix is the same as the machine tag prefix):
    • Bluetagging: Prefix: blue URI: http://machinetags.org/ns/Blue#
    • Celltagging: Prefix: cell URI: http://machinetags.org/ns/Cell#
    • Dopplr: Prefix: dopplr URI: http://machinetags.org/ns/Dopplr#
    • Filtr: Prefix: filtr URI: http://machinetags.org/ns/Filtr#
    • Geonames: Prefix: geonames URI: http://machinetags.org/ns/Geonames#
    • Ph: Prefix: ph URI: http://machinetags.org/ns/Ph#
    • Upcoming: Prefix: upcoming URI: http://machinetags.org/ns/Upcoming#

Updated flickrdf(1) to use new serialization API and to have less conditional code.

Fixed argument parsing bugs for the flickcurl(1) utility commands photos.search and photos.upload - 1 argument was skipped for every argument found.

flickcurl(1) utility commands photos.setContentType and photos.setSafetyLevel now accept both integer and label values.

Added a -V / --verbose flag to the flickcurl(1) utility.

Added helper functions for to/from labels for content type and safety level.

  const char* flickcurl_get_content_type_label(int content_type);
  int flickcurl_get_content_type_from_string(const char* content_type_string);
  const char* flickcurl_get_safety_level_label(int safety_level);
  int flickcurl_get_safety_level_from_string(const char* safety_level_string);

Added 1 new Flickr API call for the preferences API added to the public API around 2008-03-24.

  int flickcurl_prefs_getGeoPerms(flickcurl* fc);

Protect destructors from NULL args. In maintainer mode, a warning message and an abort happen.

Note that the woeids can be used with the new Yahoo! Geo API

2008-03-08 Flickcurl 1.3

4 new Flickr API calls for updates to the new flickr.prefs APIs:

  int flickcurl_prefs_getContentType(flickcurl* fc);
  int flickcurl_prefs_getHidden(flickcurl* fc);
  int flickcurl_prefs_getPrivacy(flickcurl* fc);
  int flickcurl_prefs_getSafetyLevel(flickcurl* fc);

Fixed flickcurl_photosets_create() to return properly on success. It used to do the creation correctly but failed to set up the XML XPath context so returned a failure response and error message even on success..

Fixed flickcurl photosets.create command to take 3 args not 4.

flickcurl help message was edited to use USER-NSID for NSIDs not USER-ID for user login IDs.

Added documentation section on how to do Flickr authentication.

Fixed example code and renamed it to examples/print-photo-info.c

Portability fixes for time headers.

Win32 and portability compilation fixes:

  • Add FLICKCURL_API macro for handling win32 declspec dllexport and dllimport.
  • Added check for FLICKCURL_STATIC macro to compile without dll parts
  • Added FLICKCURL_INTERNAL define when compiling library
  • Added some casts to remove warnings

Add portable gettimeofday() which does not exist on Win32 and may not exist on non-BSD systems.

Added an implementation of the nanosleep() using either on win32: Sleep() or on unixes: sleep() and/or usleep().

Added support for place woeid field and added new photo fields PHOTO_FIELD_location_woeid, PHOTO_FIELD_neighborhood_woeid, PHOTO_FIELD_locality_woeid, PHOTO_FIELD_county_woeid, PHOTO_FIELD_region_woeid and PHOTO_FIELD_country_woeid.

2008-01-28 Flickcurl 1.2

Fixed "brown paper bag" issue. 1.1 could not be built as docs/flickcurl.1.in was missing from the tarball:

make[1]: *** No rule to make target `flickcurl.1.in', needed by `flickcurl.1'.  Stop.

Added configure search for nanosleep() in librt and libposix4 for building on Solaris.

2008-01-26 Flickcurl 1.1

2 new Flickr API calls for updates to the places APIs:

  flickcurl_place** flickcurl_places_find(flickcurl* fc, const char* query);
  flickcurl_place* flickcurl_places_findByLatLon(flickcurl* fc, double lat,
                                                 double lon, int accuracy);

Added type field to flickcurl_place structure for use by results from flickcurl_places_find().

Added method to turn a place type label into an enum:

  flickcurl_place_type flickcurl_get_place_type_by_label(const char* place_label);

Added destructor function to free list of places

  void flickcurl_free_places(flickcurl_place **places_object);

Source structure reorganised but it is building the same libraries and binaries and installing them in the same places.

Added HTML documentation API reference manual documentation automatically generated from source code autodocs, via gtkdoc. 100% of the API functions and structures are documented.

Made flickcurl manpage automatically be kept up to date with the command help from the utility itself.

Fixed a crash with the upload command of flickcurl(1)

Enforce minimum library versions in configure: libcurl minimum version 7.10.0 from 2002. libxml minimum version 2.6.8 from 2004

2008-01-12 Flickcurl 1.0

Now supports the entire Flickr API including the new Places API: searching, looking up by ID or URI, getting place IDs from photo descriptions.

12 new Flickr API calls supported (100.0% of API):

  • flickcurl_activity_userComments
      flickcurl_activity** flickcurl_activity_userComments(flickcurl* fc,
            int per_page, int page);
    
  • flickcurl_activity_userPhotos
      flickcurl_activity** flickcurl_activity_userPhotos(flickcurl* fc,
            const char* timeframe, int per_page, int page);
    
  • flickcurl_blogs_getList
      flickcurl_blog** flickcurl_blogs_getList(flickcurl* fc);
    
  • flickcurl_blogs_postPhoto
      int flickcurl_blogs_postPhoto(flickcurl* fc, const char* blog_id,
                const char* photo_id, const char* title, const char* description,
                const char* blog_password);
    
  • flickcurl_favorites_add
      int flickcurl_favorites_add(flickcurl* fc, const char* photo_id);
    
  • flickcurl_favorites_getList
      flickcurl_photo** flickcurl_favorites_getList(flickcurl* fc,
            const char* user_id, const char* extras, int per_page, int page);
    
  • flickcurl_favorites_getPublicList
      flickcurl_photo** flickcurl_favorites_getPublicList(flickcurl* fc,
            const char* user_id, const char* extras, int per_page, int page);
    
  • flickcurl_favorites_remove
      int flickcurl_favorites_remove(flickcurl* fc, const char* photo_id);
    
  • flickcurl_places_resolvePlaceId
      flickcurl_place* flickcurl_places_resolvePlaceId(flickcurl* fc,
            const char* place_id);
    
  • flickcurl_places_resolvePlaceURL
      flickcurl_place* flickcurl_places_resolvePlaceURL(flickcurl* fc,
            const char* url);
    
  • flickcurl_test_login
      char* flickcurl_test_login(flickcurl* fc);
    
  • flickcurl_test_null
      int flickcurl_test_null(flickcurl* fc);
    

flickcurl utility updated to add all new functions.

Added flickcurl_activity and flickcurl_activity_event for photo/comment activity

Added flickcurl_blog for photo blogs.

Added flickcurl_place for places.

Added place_id to search parameters

Added placeid fields to the flickcurl_photo_field_type enum and as new flickcurl_photo fields.

Added destructor functions to free photosets, tickets, user status information and categories

  void flickcurl_free_activities(flickcurl_activity** activities);
  void flickcurl_free_blogs(flickcurl_blog **blogs_object);
  void flickcurl_free_place(flickcurl_place* place);

2007-12-22 Flickcurl 0.13

20 new Flickr API calls supported (91.3% of API):

  • flickcurl_groups_browse
      flickcurl_category* flickcurl_groups_browse(flickcurl* fc, int cat_id);
    
  • flickcurl_groups_getInfo
      flickcurl_group* flickcurl_groups_getInfo(flickcurl* fc,
            const char* group_id, const char* lang);
    
  • flickcurl_groups_search
      flickcurl_group** flickcurl_groups_search(flickcurl* fc, const char* text,
            int per_page, int page);
    
  • flickcurl_interestingness_getList
      flickcurl_photo** flickcurl_interestingness_getList(flickcurl* fc,
            const char* date, const char* extras, int per_page, int page);
    
  • flickcurl_people_getPublicGroups
      flickcurl_group** flickcurl_people_getPublicGroups(flickcurl* fc,
            const char* user_id);
    
  • flickcurl_people_getUploadStatus
      flickcurl_user_upload_status* flickcurl_people_getUploadStatus(flickcurl* fc);
    
  • flickcurl_photos_getCounts
      int** flickcurl_photos_getCounts(flickcurl* fc, const char** dates_array,
            const char** taken_dates_array);
    
  • flickcurl_photos_getSizes
      flickcurl_size** flickcurl_photos_getSizes(flickcurl* fc,
            const char* photo_id);
    
  • flickcurl_photos_transform_rotate
      int flickcurl_photos_transform_rotate(flickcurl* fc, const char* photo_id,
            int degrees);
    
  • flickcurl_photos_upload_checkTickets
      flickcurl_ticket** flickcurl_photos_upload_checkTickets(flickcurl* fc,
            const char** tickets_ids);
    
  • flickcurl_photosets_addPhoto
      int flickcurl_photosets_addPhoto(flickcurl* fc, const char* photoset_id,
            const char* photo_id);
    
  • flickcurl_photosets_create
      char* flickcurl_photosets_create(flickcurl* fc, const char* title,
            const char* description, const char* primary_photo_id,
            char** photoset_url_p);
    
  • flickcurl_photosets_delete
      int flickcurl_photosets_delete(flickcurl* fc, const char* photoset_id);
    
  • flickcurl_photosets_editMeta
      int flickcurl_photosets_editMeta(flickcurl* fc, const char* photoset_id,
            const char* title, const char* description);
    
  • flickcurl_photosets_editPhotos
      int flickcurl_photosets_editPhotos(flickcurl* fc, const char* photoset_id,
            const char* primary_photo_id, const char** photo_ids_array);
    
  • flickcurl_photosets_getInfo
      flickcurl_photoset* flickcurl_photosets_getInfo(flickcurl* fc,
            const char* photoset_id);
    
  • flickcurl_photosets_getList
      flickcurl_photoset** flickcurl_photosets_getList(flickcurl* fc,
            const char* user_id);
    
  • flickcurl_photosets_getPhotos
      flickcurl_photo** flickcurl_photosets_getPhotos(flickcurl* fc,
            const char* photoset_id, const char* extras, int privacy_filter,
            int per_page, int page);
    
  • flickcurl_photosets_orderSets
      int flickcurl_photosets_orderSets(flickcurl* fc,
            const char** photoset_ids_array);
    
  • flickcurl_photosets_removePhoto
      int flickcurl_photosets_removePhoto(flickcurl* fc, const char* photoset_id,
            const char* photo_id);
    

flickcurl utility updated to add all new functions.

Added flickcurl_category for categories of groups.

Added flickcurl_photoset for photosets.

Added flickcurl_size for returning image sizes.

Added flickcurl_ticket for returning asynchronous upload tickets.

Added flickcurl_user_upload_status for returning details on a user's upload status.

Added destructor functions to free photosets, tickets, user status information and categories

  void flickcurl_free_photoset(flickcurl_photoset *photoset);
  void flickcurl_free_photosets(flickcurl_photoset **photosets_object);
  void flickcurl_free_ticket(flickcurl_ticket *ticket);
  void flickcurl_free_tickets(flickcurl_ticket **tickets_object);
  void flickcurl_free_user_upload_status(flickcurl_user_upload_status *u);
  void flickcurl_free_category(flickcurl_category *category);
  void flickcurl_free_categories(flickcurl_category **categories_object);

Added utility functions:

  char* flickcurl_array_join(const char *array[], char delim);
  char** flickcurl_array_split(const char *str, char delim);
  void flickcurl_array_free(char *array[]);

2007-08-11 Flickcurl 0.12

23 new Flickr API calls supported (72.1% of API):

  • flickcurl_groups_pools_add
      int flickcurl_groups_pools_add(flickcurl* fc, const char* photo_id,
            const char* group_id);
    
  • flickcurl_groups_pools_getGroups
      flickcurl_group** flickcurl_groups_pools_getGroups(flickcurl* fc,
            int page, int per_page);
    
  • flickcurl_groups_pools_getPhotos
      flickcurl_photo** flickcurl_groups_pools_getPhotos(flickcurl* fc,
            const char* group_id, const char* tags, const char* user_id,
            const char* extras, int per_page, int page);
    
  • flickcurl_groups_pools_remove
      int flickcurl_groups_pools_remove(flickcurl* fc, const char* photo_id,
            const char* group_id);
    
  • flickcurl_people_getPublicPhotos
      flickcurl_photo** flickcurl_people_getPublicPhotos(flickcurl* fc,
            const char* user_id,  const char* extras, int per_page, int page);
    
  • flickcurl_photos_getContactsPublicPhotos
      flickcurl_photo** flickcurl_photos_getContactsPublicPhotos(flickcurl* fc,
            const char* user_id, int count, int just_friends,
            int single_photo, int include_self, const char* extras);
    
  • flickcurl_photos_getExif
      flickcurl_exif** flickcurl_photos_getExif(flickcurl* fc,
            const char* photo_id, const char* secret);
    
  • flickcurl_photos_getFavorites
      flickcurl_person** flickcurl_photos_getFavorites(flickcurl* fc,
            const char* photo_id, int page, int per_page);
    
  • flickcurl_photos_getNotInSet
      flickcurl_photo** flickcurl_photos_getNotInSet(flickcurl* fc,
            int min_upload_date, int max_upload_date,
            const char* min_taken_date, const char* max_taken_date,
            int privacy_filter, const char* extras, int per_page, int page);
    
  • flickcurl_photos_getRecent
      flickcurl_photo** flickcurl_photos_getRecent(flickcurl* fc,
            const char* extras, int per_page, int page);
    
  • flickcurl_photos_getUntagged
      flickcurl_photo** flickcurl_photos_getUntagged(flickcurl* fc,
            int min_upload_date, int max_upload_date,
            const char* min_taken_date, const char* max_taken_date,
            int privacy_filter, const char* extras, int per_page, int page);
    
  • flickcurl_photos_getWithGeoData
      flickcurl_photo** flickcurl_photos_getWithGeoData(flickcurl* fc,
            int min_upload_date, int max_upload_date,
            const char* min_taken_date, const char* max_taken_date,
            int privacy_filter, const char* extras, int per_page, int page);
    
  • flickcurl_photos_getWithoutGeoData
      flickcurl_photo** flickcurl_photos_getWithoutGeoData(flickcurl* fc,
            int min_upload_date, int max_upload_date,
            const char* min_taken_date, const char* max_taken_date,
            int privacy_filter, const char* extras, int per_page, int page);
    
  • flickcurl_photos_recentlyUpdated
      flickcurl_photo** flickcurl_photos_recentlyUpdated(flickcurl* fc,
            int min_date, const char* extras, int per_page, int page);
    
  • flickcurl_photos_geo_getLocation
      flickcurl_location* flickcurl_photos_geo_getLocation(flickcurl* fc,
            const char* photo_id);
    
  • flickcurl_photos_geo_getPerms
      flickcurl_perms* flickcurl_photos_geo_getPerms(flickcurl* fc,
            const char* photo_id);
    
  • flickcurl_photos_geo_removeLocation
      int flickcurl_photos_geo_removeLocation(flickcurl* fc,
            const char* photo_id);
    
  • flickcurl_photos_geo_setLocation
      int flickcurl_photos_geo_setLocation(flickcurl* fc,
            const char* photo_id, flickcurl_location* location);
    
  • flickcurl_photos_geo_setPerms
      int flickcurl_photos_geo_setPerms(flickcurl* fc,
            const char* photo_id, flickcurl_perms* perms);
    
  • flickcurl_photos_licenses_setLicense
      int flickcurl_photos_licenses_setLicense(flickcurl* fc,
            const char* photo_id, int license_id);
    
  • flickcurl_photos_notes_add
      char* flickcurl_photos_notes_add(flickcurl* fc, const char* photo_id,
            int note_x, int note_y, int note_w, int note_h,
            const char* note_text);
    
  • flickcurl_photos_notes_delete
      int flickcurl_photos_notes_delete(flickcurl* fc, const char* note_id);
    
  • flickcurl_photos_notes_edit
      int flickcurl_photos_notes_edit(flickcurl* fc, const char* note_id,
            int note_x, int note_y, int note_w, int note_h,
            const char* note_text);
    

flickcurl utility updated to add all new functions.

Added flickcurl_exif for flickcurl_photos_getExif

Added flickcurl_group for the groups functions flickcurl_groups_pools_add, flickcurl_groups_pools_getGroups, flickcurl_groups_pools_getPhotos and flickcurl_groups_pools_remove

Added photos field PERSON_FIELD_favedate as returned by flickcurl_photos_getFavorites

Added destructor functions to free persons lists, exif, exifs list, group and groups list.

  void flickcurl_free_persons(flickcurl_person** persons);
  void flickcurl_free_exif(flickcurl_exif *exif);
  void flickcurl_free_exifs(flickcurl_exif **exifs_object);
  void flickcurl_free_group(flickcurl_group *group);
  void flickcurl_free_groups(flickcurl_group **groups_object);

2007-08-03 Flickcurl 0.11

10 new Flickr API calls supported (50% of API):

  • flickr.contacts.getList:
      flickcurl_contact** flickcurl_contacts_getList(flickcurl* fc,
            const char* filter, int page, int per_page);
    
  • flickr.contacts.getPublicList:
      flickcurl_contact** flickcurl_contacts_getPublicList(flickcurl* fc,
            const char* user_id, int page, int per_page);
    
  • flickr.photos.getContactsPhotos:
      flickcurl_photo** flickcurl_photos_getContactsPhotos(flickcurl* fc,
            int contact_count, int just_friends, int single_photo,
            int include_self, const char* extras);
    
  • flickr.photos.getPerms:
      flickcurl_perms* flickcurl_photos_getPerms(flickcurl* fc,
            const char* photo_id);
    
  • flickr.photos.search:
      flickcurl_photo** flickcurl_photos_search(flickcurl* fc,
            flickcurl_search_params* params);
    
  • flickr.photos.setContentType:
      int flickcurl_photos_setContentType(flickcurl* fc,
            const char* photo_id, int content_type);
    
  • flickr.photos.setDates:
      int flickcurl_photos_setDates(flickcurl* fc, const char* photo_id,
            int date_posted, int date_taken, int date_taken_granularity);
    
  • flickr.photos.setMeta:
      int flickcurl_photos_setMeta(flickcurl* fc, const char* photo_id,
            const char* title, const char* description);
    
  • flickr.photos.setPerms:
      int flickcurl_photos_setPerms(flickcurl* fc, const char* photo_id,
            flickcurl_perms* perms);
    
  • flickr.photos.setSafetyLevel:
      int flickcurl_photos_setSafetyLevel(flickcurl* fc,
            const char* photo_id, int safety_level, int hidden);
    

flickcurl utility updated to add all new functions.

Added flickcurl_search_params structure for flickcurl_photos_search().

Added flickcurl_perms for the flickcurl_photos_getPerms() and flickcurl_photos_setPerms() functions.

Added flickcurl_contact structure for flickcurl_contacts_getList() and flickcurl_contacts_getPublicList() functions.

Added flickcurl_upload_params structure and added new upload function flickcurl_photos_upload_params() to use it, deprecating flickcurl_photos_upload() with the long list of parameters.

Added destructor functions to free a photos list, perms contacts and upload status.

  void flickcurl_free_photos(flickcurl_photo** photos);
  void flickcurl_free_perms(flickcurl_perms *perms);
  void flickcurl_free_contact(flickcurl_contact *contact_object);
  void flickcurl_free_contacts(flickcurl_contact **contacts_object);
  void flickcurl_free_upload_status(flickcurl_upload_status* status);

Deprecated wrongly named function flickcurl_free_upload_status(), replaced by

  void flickcurl_upload_status_free(flickcurl_upload_status* status);

2007-04-16 Flickcurl 0.10

13 new Flickr API calls supported (40.8% of API):

  • flickcurl_photos_comments_addComment: Add comment to a photo as the currently authenticated user.
      char* flickcurl_photos_comments_addComment(flickcurl* fc,
            const char* photo_id, const char* comment_text);
    
  • flickcurl_photos_comments_deleteComment: Delete a comment as the currently authenticated user.
      int flickcurl_photos_comments_deleteComment(flickcurl* fc,
            const char* comment_id);
    
  • flickcurl_photos_comments_editComment: Edit the text of a comment as the currently authenticated user.
      int flickcurl_photos_comments_editComment(flickcurl* fc,
            const char* comment_id, const char* comment_text);
    
  • flickcurl_photos_comments_getList: Returns the comments for a photo.
      flickcurl_comment** flickcurl_photos_comments_getList(flickcurl* fc,
            const char* photo_id);
    
  • flickcurl_photosets_comments_addComment: Add a comment to a photoset.
      char* flickcurl_photosets_comments_addComment(flickcurl* fc,
            const char* photoset_id, const char* comment_text);
    
  • flickcurl_photosets_comments_deleteComment: Delete a photoset comment as the currently authenticated user.
      int flickcurl_photosets_comments_deleteComment(flickcurl* fc,
            const char* comment_id);
    
  • flickcurl_photosets_comments_editComment: Edit the text of a comment as the currently authenticated user.
      int flickcurl_photosets_comments_editComment(flickcurl* fc,
            const char* comment_id, const char* comment_text);
    
  • flickcurl_photosets_comments_getList: Returns the comments for a photoset.
      flickcurl_comment** flickcurl_photosets_comments_getList(flickcurl* fc,
            const char* photoset_id);
    
  • flickcurl_reflection_getMethods: Get the list of available API method names.
      char** flickcurl_reflection_getMethods(flickcurl* fc);
    
  • flickcurl_reflection_getMethodInfo: Get information about an API method.
      flickcurl_method* flickcurl_reflection_getMethodInfo(flickcurl* fc,
            const char* name);
    

flickcurl utility updated to add all new functions.

Added all uploading and replacing of photos APIs. and flickcurl_upload_status structure for upload results.

Added all photo comments APIs and flickcurl_comment structure for comments.

Added support for uploading with POST and form-data. Yay libcurl.

Added codegen utility to aid writing skeleton API code.

Added all reflection APIs and flickcurl_method and flickcurl_arg structures for method descriptions.

Added photo location fields: neighborhood, locality, region and country. They may not be returned in the API just yet, they were announced and then removed.

Renamed the "Flickr to RDF app" to be called flickrdf since I used Triplr for something else as it was such a good name.

2007-02-25 Flickcurl 0.9

17 new Flickr API calls supported (28.2% of API):

  • flickr.auth.checkToken: Get the credentials attached to an authentication TOKEN.
      char* flickcurl_auth_checkToken(flickcurl* fc, const char* token);
    
  • flickr.auth.getFrob: Get a frob to be used during authentication.
      char* flickcurl_auth_getFrob(flickcurl* fc);
    
  • flickr.auth.getToken: Get the auth token for the FROB, if one has been attached.
      char* flickcurl_auth_getToken(flickcurl* fc, const char* frob);
    
  • flickr.photos.addTags: Add TAGS to a PHOTO-ID.
      int flickcurl_photos_addTags(flickcurl* fc, const char* photo_id,
            const char* tags);
    
  • flickr.photos.delete: Delete a PHOTO-ID.
      int flickcurl_photos_delete(flickcurl* fc, const char* photo_id);
    
  • flickr.photos.removeTag: Remove a tag TAG-ID from a photo.
      int flickcurl_photos_removeTag(flickcurl* fc, const char* tag_id);
    
  • flick.photos.setTags: Set the tags for a PHOTO-ID to TAGS.
      int flickcurl_photos_setTags(flickcurl* fc, const char* photo_id,
            const char* tags);
    
  • flickr.tags.getHotList: Get the list of hot tags for the given PERIOD (day, week).
      flickcurl_tag** flickcurl_tags_getHotList(flickcurl* fc, const char* period,
            int tag_count);
    
  • flickr.tags.getListPhoto: Get the tag list for a PHOTO-ID.
      flickcurl_tag** flickcurl_tags_getListPhoto(flickcurl* fc,
            const char* photo_id);
    
  • flickr.tags.getListUser: Get the tag list for a USER-ID (or current user).
      flickcurl_tag** flickcurl_tags_getListUser(flickcurl* fc,
            const char* user_id);
    
  • flickr.tags.getListUserPopular: Get the popular tag list for a USER-ID (or current user).
      flickcurl_tag** flickcurl_tags_getListUserPopular(flickcurl* fc,
            const char* user_id, int pop_count);
    
  • flickr.tags.getListUserRaw: Get the raw versions of a TAG (or all tags) for the current user.
      flickcurl_tag** flickcurl_tags_getListUserRaw(flickcurl* fc,
            const char* tag);
    
  • flickr.tags.getRelated: Get a list of tags 'related' to TAG based on clustered usage analysis.
      flickcurl_tag** flickcurl_tags_getRelated(flickcurl* fc, const char* tag);
    
  • flickr.urls.getGroup: Get the url of the group page for GROUP-ID.
      char* flickcurl_urls_getGroup(flickcurl* fc, const char* group_id);
    
  • flickr.urls.getUserPhotos: Get the url of the photo page for USER-ID.
      char* flickcurl_urls_getUserPhotos(flickcurl* fc, const char* user_id);
    
  • flickr.urls.getUserProfile: Get the url of the profile page for USER-ID.
      char* flickcurl_urls_getUserProfile(flickcurl* fc, const char* user_id);
    
  • flickr.urls.lookupGroup: Get a group NSID from the URL to a group's page or photo pool.
      char* flickcurl_urls_lookupGroup(flickcurl* fc, const char* url);
    

Renamed enum flickcurl_photo_field to flickcurl_photo_field_type and added flickcurl_photo_field as the photo field structure.

Added authorname and count fields to the flickcurl_tag structure to handle tag methods that return counts.

Added enum flickcurl_person_field_type value PERSON_FIELD_photos_views with value integer, not in API docs.

flickcurl_person_field structure for fields of flickcurl_person.

Added flickcurl* method to indicate that an API call must be signed, even if no authentication token has been given. This is mostly for internals of authentication.

  void flickcurl_set_sign(flickcurl *fc)

Added flickcurl* method to do a write request with POST. Not presently used.

  void flickcurl_set_write(flickcurl *fc, int is_write);

Added flickcurl methods to set data to send in a request:

  /* send binary data */
  void flickcurl_set_data(flickcurl *fc, void* data, size_t data_length);

  /* send XML serialized from the document DOM */
  void flickcurl_set_xml_data(flickcurl *fc, xmlDocPtr doc);

2007-02-20 Flickcurl 0.8

Added flickcurl_init() and flickcurl_finish() to do once-per-process initializing and cleanup.

Added more help info to flickrdf.

Added a -d DELAY option to flickrdf and flickcurl to set delay between requests using new flickcurl_set_request_delay().

Added 2 new Flickr API calls (12% of API):

  • flickr.people.findByEmail:
      char* flickcurl_people_findByEmail(flickcurl* fc, const char* email);
    
  • flickr.people.findByUsername:
      char* flickcurl_people_findByUsername(flickcurl* fc, const char* username);
    

Added configure development/debugging options:
--enable-capture to capture web service responses into XML files
--enable-offline to use the XML files to return results when offline

Split large api.c into auth-api.c, people-api.c, photos-api.c, photos-licenses-api.c and urls-api.c to match the API sections.

Added method to set the minimum delay between web service requests:

void flickcurl_set_request_delay(flickcurl *fc, long delay_msec);

The default is set to 1000ms = 1 request/second.

Moved flickcurl utility code into flickcurl.c

2007-02-18 Flickcurl 0.7

Added API calls returning contexts as a struct flickcurl_context* array and of type flickcurl_context_type

Added 4 Flickr API calls (10% of API):

  • flickr.groups.pool.getContext:
      flickcurl_context** flickcurl_groups_pools_getContext(flickcurl* fc,
            const char* photo_id, const char* group_id);
    
  • flickr.photos.getAllContexts:
      flickcurl_context** flickcurl_photos_getAllContexts(flickcurl* fc,
            const char* photo_id);
    
  • flickr.photos.getContext:
      flickcurl_context** flickcurl_photos_getContext(flickcurl* fc, 
            const char* photo_id);
    
  • flickr.photosets.getContext:
      flickcurl_context** flickcurl_photosets_getContext(flickcurl* fc,
            const char* photo_id, const char* photoset_id);
    

Added struct flickcurl_context utility functions:

  const char* flickcurl_get_context_type_field_label(flickcurl_context_type type);
  void flickcurl_free_context(flickcurl_context *context);
  void flickcurl_free_contexts(flickcurl_context** contexts);

Added new flickcurl utility commands for the new APIs: groups.pools.getContext photos.getAllContexts photos.getContext, photosets.getContext

2007-02-11 Flickcurl 0.6

Added API call flickcurl.licenses.getInfo: struct flickcurl_license

  flickcurl_license** flickcurl_photos_licenses_getInfo(flickcurl *fc);

and command licenses.getInfo in flickcurl utility

Added helper to look up one license by ID:

  flickcurl_license* flickcurl_photos_licenses_getInfo_by_id(flickcurl *fc, int id);

Flickrdf updated to use the above to emit URIs instead of integers for dc:rights

Added API call flickr.people.getInfo: enum flickcurl_person_field, struct flickcurl_person

  const char* flickcurl_get_person_field_label(flickcurl_person_field field);
  flickcurl_person* flickcurl_people_getInfo(flickcurl* fc, const char* user_id);
  void flickcurl_free_person(flickcurl_person *person);

and command person.getInfo in flickcurl utility

6% of API

2007-02-04 Flickcurl 0.5

Added optional support for using Raptor for more accurate and prettier serializing triples in flickrdf

Released to the world!

3% of API

2007-02-03 Flickcurl 0.4

Added flickrdf utility.

3% of API

2007-02-01 Flickcurl 0.3

Renamed all symbols to be flickcurl_*

Added flickcurl_photo_as_source_uri() to get the image file URLs for a photo ID.

Configuration file for the utilities to record the authentication is now ~/.flickcurl.conf

Packaging and licensing

3% of API

2007-01-24 Flickcurl 0.2

Refactored to have separate flickcurl* object

API calls flickr.test.echo, flickr.auth.getFullToken and flickr.photos.getInfo with functions flickcurl_test_echo, flickcurl_auth_getFullToken, flickcurl_photos_getInfo

Test program has commands table and help, authentication

3% of API

2007-01-21 Flickcurl 0.1

First version

0% of API


Copyright (C) 2007-2013 Dave Beckett

flickcurl-1.25/configure0000755000175000017500000166030412157737152012273 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for Flickcurl 1.25. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 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. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS 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 # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -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 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else 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 : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 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: http://bugs.librdf.org/ about your system, including $0: any error possibly output before this message. Then $0: install a modern shell, or manually run the script $0: under such a shell if you do have one." fi exit 1 fi 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_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else 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; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } 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 -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_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'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Flickcurl' PACKAGE_TARNAME='flickcurl' PACKAGE_VERSION='1.25' PACKAGE_STRING='Flickcurl 1.25' PACKAGE_BUGREPORT='http://bugs.librdf.org/' PACKAGE_URL='' ac_unique_file="src/flickcurl.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 GTK_DOC_USE_REBASE_FALSE GTK_DOC_USE_REBASE_TRUE GTK_DOC_USE_LIBTOOL_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_BUILD_PDF_FALSE GTK_DOC_BUILD_PDF_TRUE GTK_DOC_BUILD_HTML_FALSE GTK_DOC_BUILD_HTML_TRUE ENABLE_GTK_DOC_FALSE ENABLE_GTK_DOC_TRUE GTKDOC_DEPS_LIBS GTKDOC_DEPS_CFLAGS HTML_DIR GTKDOC_MKPDF GTKDOC_REBASE GTKDOC_CHECK PKG_CONFIG_LIBDIR PKG_CONFIG_PATH AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V ECHO PKG_CONFIG_REQUIRES STANDARD_CFLAGS OFFLINE_FALSE OFFLINE_TRUE RAPTOR_CFLAGS RAPTOR_LIBS RAPTOR_FALSE RAPTOR_TRUE RAPTOR_MIN_VERSION CURL_CONFIG LIBCURL_MIN_VERSION XML_CONFIG LIBXML_MIN_VERSION PKG_CONFIG RECHO GETOPT_FALSE GETOPT_TRUE LIBOBJS CPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED LIBTOOL am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC ac_ct_AR AR host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBFLICKCURL_LIBTOOL_VERSION FLICKCURL_VERSION_DECIMAL MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE 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_maintainer_mode enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock with_xml2_config with_curl_config with_raptor enable_offline enable_capture enable_silent_rules with_html_dir enable_gtk_doc enable_gtk_doc_html enable_gtk_doc_pdf ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR GTKDOC_DEPS_CFLAGS GTKDOC_DEPS_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 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 Flickcurl 1.25 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/flickcurl] --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 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 Flickcurl 1.25:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-offline Turn on offline use of captured XML web service responses (default disabled). --enable-capture Turn on capturing web service responses (default disabled). --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0') --enable-gtk-doc use gtk-doc to build documentation [[default=no]] --enable-gtk-doc-html build documentation in html format [[default=yes]] --enable-gtk-doc-pdf build documentation in pdf format [[default=no]] Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-xml2-config=PATH Location of libxml xml2-config --with-curl-config=PATH Location of libcurl curl-config --with-raptor=yes|no|2 Use Raptor to serialize to triples (default=auto) --with-html-dir=PATH path to installed docs Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path GTKDOC_DEPS_CFLAGS C compiler flags for GTKDOC_DEPS, overriding pkg-config GTKDOC_DEPS_LIBS linker flags for GTKDOC_DEPS, 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 Flickcurl configure 1.25 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext 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; ${as_lineno_stack:+:} 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 || 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; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # 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 \${$3+:} false; 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; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # 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; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # 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; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext 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; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # 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 \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; 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 http://bugs.librdf.org/ ## ## -------------------------------------- ##" ) | 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 \${$3+:} false; 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; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=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 eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid; break else as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=$ac_mid; break else as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else ac_lo= ac_hi= fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid else as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval () { return $2; } static unsigned long int ulongval () { return $2; } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : echo >>conftest.val; read $3 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 Flickcurl $as_me 1.25, which was generated by GNU Autoconf 2.69. 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 ac_config_headers="$ac_config_headers src/config.h" ac_aux_dir= for ac_dir in build "$srcdir"/build; 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 build \"$srcdir\"/build" "$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. am__api_version='1.11' # 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 ${ac_cv_path_install+:} false; 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 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir 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 ${ac_cv_prog_STRIP+:} false; 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 as_fn_executable_p "$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 ${ac_cv_prog_ac_ct_STRIP+:} false; 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 as_fn_executable_p "$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 ${ac_cv_path_mkdir+:} false; 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 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (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 ${ac_cv_prog_AWK+:} false; 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 as_fn_executable_p "$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 \${ac_cv_prog_make_${ac_make}_set+:} false; 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='flickcurl' VERSION='1.25' 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. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE if test "$USE_MAINTAINER_MODE" = yes; then CFLAGS=`echo $CFLAGS | sed -e "s/-OA-Za-z0-9*//"` CXXFLAGS=`echo $CXXFLAGS | sed -e "s/-OA-Za-z0-9*//"` CPPFLAGS=`echo $CPPFLAGS | sed -e "s/-OA-Za-z0-9*//"` fi version="$PACKAGE_VERSION.0" version_major=`echo $version | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\1/'` version_minor=`echo $version | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\2/'` version_release=`echo $version | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\3/'` version_decimal=`expr $version_major \* 10000 + $version_minor \* 100 + $version_release` cat >>confdefs.h <<_ACEOF #define FLICKCURL_VERSION_DECIMAL $version_decimal _ACEOF # for flickcurl-config.in FLICKCURL_VERSION_DECIMAL=$version_decimal # Libtool versioning # # CURRENT # The most recent interface number that this library implements. # # REVISION # The implementation number of the CURRENT interface. # # AGE # The difference between the newest and oldest interfaces that this # library implements. In other words, the library implements all the # interface numbers in the range from number `CURRENT - AGE' to # `CURRENT'. # # Rules: # 1. Start with version information of `0:0:0' for each libtool library. # # 2. Update the version information only immediately before a public # release of your software. More frequent updates are unnecessary, # and only guarantee that the current interface number gets larger # faster. # # 3. If the library source code has changed at all since the last # update, then increment REVISION (`C:R:A' becomes `C:r+1:A'). # # 4. If any interfaces have been added, removed, or changed since the # last update, increment CURRENT, and set REVISION to 0. # # 5. If any interfaces have been added since the last public release, # then increment AGE. # # 6. If any interfaces have been removed since the last public release, # then set AGE to 0. # # syntax: CURRENT[:REVISION[:AGE]] LIBFLICKCURL_LIBTOOL_VERSION=0:0:0 # 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 ${ac_cv_build+:} false; 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 ${ac_cv_host+:} false; 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 { $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; } # Checks for programs. 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='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; 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 as_fn_executable_p "$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 ${ac_cv_prog_ac_ct_CC+:} false; 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 as_fn_executable_p "$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 ${ac_cv_prog_CC+:} false; 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 as_fn_executable_p "$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 ${ac_cv_prog_CC+:} false; 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $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 ${ac_cv_prog_CC+:} false; 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 as_fn_executable_p "$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 ${ac_cv_prog_ac_ct_CC+:} false; 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 as_fn_executable_p "$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 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 ${ac_cv_objext+:} false; 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 ${ac_cv_c_compiler_gnu+:} false; 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 ${ac_cv_prog_cc_g+:} false; 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 ${ac_cv_prog_cc_c89+:} false; 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 struct stat; /* 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 ${am_cv_CC_dependencies_compiler_type+:} false; 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'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 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 ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain 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 if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$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 AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$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_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $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 AR=$ac_ct_AR fi fi : ${AR=ar} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac if test "x$CC" != xcc; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 $as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 $as_echo_n "checking whether cc understands -c and -o together... " >&6; } fi set dummy $CC; ac_cc=`$as_echo "$2" | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # We do the test twice because some compilers refuse to overwrite an # existing .o file with -o, though they will create one. ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { 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; } && test -f conftest2.$ac_objext && { { 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 eval ac_cv_prog_cc_${ac_cc}_c_o=yes if test "x$CC" != xcc; then # Test first that cc exists at all. if { ac_try='cc -c conftest.$ac_ext >&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_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { 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; } && test -f conftest2.$ac_objext && { { 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 # cc works too. : else # cc exists but doesn't like -o. eval ac_cv_prog_cc_${ac_cc}_c_o=no fi fi fi else eval ac_cv_prog_cc_${ac_cc}_c_o=no fi rm -f core conftest* fi if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; 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; } $as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h fi # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $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 ${ac_cv_path_SED+:} false; 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" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $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 test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $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 ${ac_cv_path_GREP+:} false; 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" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $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 ${ac_cv_path_EGREP+:} false; 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" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $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 fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $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 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $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 DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $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_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $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 DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; 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, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $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 OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $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_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" 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 OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $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 DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $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_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" 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 DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$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 AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$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_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $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 AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; 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 as_fn_executable_p "$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 ${ac_cv_prog_ac_ct_STRIP+:} false; 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 as_fn_executable_p "$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 test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $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 RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $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_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" 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 RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $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 MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $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_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" 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 MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $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 DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $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_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" 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 DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $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 NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $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_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" 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 NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $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 LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $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_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" 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 LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $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 OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $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_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" 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 OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $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 OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $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_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" 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 OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac 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 ${ac_cv_prog_CPP+:} false; 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 ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; 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 for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=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_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=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_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=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_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $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; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ac_config_commands="$ac_config_commands libtool" # Only expand once: # Checks for libraries. libxml_min_version=2.6.8 raptor_min_version=2.0.0 libcurl_min_version=7.10.0 # Checks for header files. { $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 ${ac_cv_header_stdc+:} false; 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 for ac_header in errno.h getopt.h stdlib.h stdint.h time.h string.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } if ${ac_cv_header_time+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { if ((struct tm *) 0) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_time=yes else ac_cv_header_time=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5 $as_echo "$ac_cv_header_time" >&6; } if test $ac_cv_header_time = yes; then $as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h fi # Checks for typedefs, structures, and compiler characteristics. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 $as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } if ${ac_cv_struct_tm+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { struct tm tm; int *p = &tm.tm_sec; return !p; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_struct_tm=time.h else ac_cv_struct_tm=sys/time.h fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5 $as_echo "$ac_cv_struct_tm" >&6; } if test $ac_cv_struct_tm = sys/time.h; then $as_echo "#define TM_IN_SYS_TIME 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 $as_echo_n "checking whether byte ordering is bigendian... " >&6; } if ${ac_cv_c_bigendian+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_bigendian=unknown # See if we're dealing with a universal compiler. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __APPLE_CC__ not a universal capable compiler #endif typedef int dummy; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # Check for potential -arch flags. It is not universal unless # there are at least two -arch flags with different values. ac_arch= ac_prev= for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do if test -n "$ac_prev"; then case $ac_word in i?86 | x86_64 | ppc | ppc64) if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then ac_arch=$ac_word else ac_cv_c_bigendian=universal break fi ;; esac ac_prev= elif test "x$ac_word" = "x-arch"; then ac_prev=arch fi done fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_c_bigendian = unknown; then # See if sys/param.h defines the BYTE_ORDER macro. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { #if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ && LITTLE_ENDIAN) bogus endian macros #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # It does; now see whether it defined to BIG_ENDIAN or not. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { #if BYTE_ORDER != BIG_ENDIAN not big endian #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_bigendian=yes else ac_cv_c_bigendian=no 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 if test $ac_cv_c_bigendian = unknown; then # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) bogus endian macros #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # It does; now see whether it defined to _BIG_ENDIAN or not. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef _BIG_ENDIAN not big endian #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_bigendian=yes else ac_cv_c_bigendian=no 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 if test $ac_cv_c_bigendian = unknown; then # Compile a test program. if test "$cross_compiling" = yes; then : # Try to guess by grepping values from an object file. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; int use_ascii (int i) { return ascii_mm[i] + ascii_ii[i]; } short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; int use_ebcdic (int i) { return ebcdic_mm[i] + ebcdic_ii[i]; } extern int foo; int main () { return use_ascii (foo) == use_ebcdic (foo); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then ac_cv_c_bigendian=yes fi if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then if test "$ac_cv_c_bigendian" = unknown; then ac_cv_c_bigendian=no else # finding both strings is unlikely to happen, but who knows? ac_cv_c_bigendian=unknown fi fi fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { /* Are we little or big endian? From Harbison&Steele. */ union { long int l; char c[sizeof (long int)]; } u; u.l = 1; return u.c[sizeof (long int) - 1] == 1; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_c_bigendian=no else ac_cv_c_bigendian=yes 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_c_bigendian" >&5 $as_echo "$ac_cv_c_bigendian" >&6; } case $ac_cv_c_bigendian in #( yes) $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h ;; #( no) ;; #( universal) $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h ;; #( *) as_fn_error $? "unknown endianness presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; esac ac_fn_c_check_type "$LINENO" "u32" "ac_cv_type_u32" "$ac_includes_default" if test "x$ac_cv_type_u32" = xyes; then : fi # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of unsigned int" >&5 $as_echo_n "checking size of unsigned int... " >&6; } if ${ac_cv_sizeof_unsigned_int+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (unsigned int))" "ac_cv_sizeof_unsigned_int" "$ac_includes_default"; then : else if test "$ac_cv_type_unsigned_int" = yes; then { { $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 "cannot compute sizeof (unsigned int) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_unsigned_int=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_unsigned_int" >&5 $as_echo "$ac_cv_sizeof_unsigned_int" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UNSIGNED_INT $ac_cv_sizeof_unsigned_int _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of unsigned long" >&5 $as_echo_n "checking size of unsigned long... " >&6; } if ${ac_cv_sizeof_unsigned_long+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (unsigned long))" "ac_cv_sizeof_unsigned_long" "$ac_includes_default"; then : else if test "$ac_cv_type_unsigned_long" = yes; then { { $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 "cannot compute sizeof (unsigned long) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_unsigned_long=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_unsigned_long" >&5 $as_echo "$ac_cv_sizeof_unsigned_long" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UNSIGNED_LONG $ac_cv_sizeof_unsigned_long _ACEOF # Checks for library functions. for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_malloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC 0" >>confdefs.h case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac $as_echo "#define malloc rpl_malloc" >>confdefs.h fi for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible realloc" >&5 $as_echo_n "checking for GNU libc compatible realloc... " >&6; } if ${ac_cv_func_realloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_realloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *realloc (); #endif int main () { return ! realloc (0, 0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_realloc_0_nonnull=yes else ac_cv_func_realloc_0_nonnull=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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_realloc_0_nonnull" >&5 $as_echo "$ac_cv_func_realloc_0_nonnull" >&6; } if test $ac_cv_func_realloc_0_nonnull = yes; then : $as_echo "#define HAVE_REALLOC 1" >>confdefs.h else $as_echo "#define HAVE_REALLOC 0" >>confdefs.h case " $LIBOBJS " in *" realloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS realloc.$ac_objext" ;; esac $as_echo "#define realloc rpl_realloc" >>confdefs.h fi for ac_func in strftime do : ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime" if test "x$ac_cv_func_strftime" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRFTIME 1 _ACEOF else # strftime is in -lintl on SCO UNIX. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strftime in -lintl" >&5 $as_echo_n "checking for strftime in -lintl... " >&6; } if ${ac_cv_lib_intl_strftime+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strftime (); int main () { return strftime (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_strftime=yes else ac_cv_lib_intl_strftime=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_intl_strftime" >&5 $as_echo "$ac_cv_lib_intl_strftime" >&6; } if test "x$ac_cv_lib_intl_strftime" = xyes; then : $as_echo "#define HAVE_STRFTIME 1" >>confdefs.h LIBS="-lintl $LIBS" fi fi done for ac_func in vprintf do : ac_fn_c_check_func "$LINENO" "vprintf" "ac_cv_func_vprintf" if test "x$ac_cv_func_vprintf" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_VPRINTF 1 _ACEOF ac_fn_c_check_func "$LINENO" "_doprnt" "ac_cv_func__doprnt" if test "x$ac_cv_func__doprnt" = xyes; then : $as_echo "#define HAVE_DOPRNT 1" >>confdefs.h fi fi done for ac_func in getopt getopt_long gettimeofday memset strdup usleep vsnprintf do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing nanosleep" >&5 $as_echo_n "checking for library containing nanosleep... " >&6; } if ${ac_cv_search_nanosleep+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char nanosleep (); int main () { return nanosleep (); ; return 0; } _ACEOF for ac_lib in '' rt posix4; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_nanosleep=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_nanosleep+:} false; then : break fi done if ${ac_cv_search_nanosleep+:} false; then : else ac_cv_search_nanosleep=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_nanosleep" >&5 $as_echo "$ac_cv_search_nanosleep" >&6; } ac_res=$ac_cv_search_nanosleep if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" $as_echo "#define HAVE_NANOSLEEP 1" >>confdefs.h else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: nanosleep was not found" >&5 $as_echo "$as_me: WARNING: nanosleep was not found" >&2;} fi if test $ac_cv_func_getopt = no -a $ac_cv_func_getopt_long = no; then GETOPT_TRUE= GETOPT_FALSE='#' else GETOPT_TRUE='#' GETOPT_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether need to declare optind" >&5 $as_echo_n "checking whether need to declare optind... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef HAVE_GETOPT_H #include #endif int main () { int x=optind; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else $as_echo "#define NEED_OPTIND_DECLARATION 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test $ac_cv_func_vsnprintf = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking vsnprintf has C99 compatible return value" >&5 $as_echo_n "checking vsnprintf has C99 compatible return value... " >&6; } if test "$cross_compiling" = yes; then : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int is_c99(char *s, ...) { char buffer[32]; va_list args; int r; va_start(args, s); r = vsnprintf(buffer, 5, s, args); va_end(args); return (r == 7); } int main(int argc, char* argv) { return is_c99("1234567"); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else $as_echo "#define HAVE_C99_VSNPRINTF 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi for ac_prog in echo 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 ${ac_cv_prog_RECHO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RECHO"; then ac_cv_prog_RECHO="$RECHO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RECHO="$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 RECHO=$ac_cv_prog_RECHO if test -n "$RECHO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RECHO" >&5 $as_echo "$RECHO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$RECHO" && break done RECHO_C= RECHO_N= case `$RECHO -n x` in -n*) case `$RECHO 'xy\c'` in *c*) ;; xy) RECHO_C='\c' ;; esac;; *) RECHO_N='-n' ;; esac for ac_prog in pkg-config 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 ${ac_cv_prog_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PKG_CONFIG"; then ac_cv_prog_PKG_CONFIG="$PKG_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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_PKG_CONFIG="$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 PKG_CONFIG=$ac_cv_prog_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 test -n "$PKG_CONFIG" && break done PKG_CONFIG_REQUIRES= LIBXML_MIN_VERSION=$libxml_min_version # Check whether --with-xml2-config was given. if test "${with_xml2_config+set}" = set; then : withval=$with_xml2_config; xml2_config="$withval" else xml2_config="" fi if test "X$xml2_config" != "Xno" ; then if test "X$xml2_config" != "X" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $xml2_config" >&5 $as_echo_n "checking for $xml2_config... " >&6; } if test -f $xml2_config ; then XML_CONFIG=$xml2_config { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no - searching PATH" >&5 $as_echo "no - searching PATH" >&6; } fi fi if test "X$XML_CONFIG" = "X" ; then for ac_prog in xml2-config 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 ${ac_cv_prog_XML_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$XML_CONFIG"; then ac_cv_prog_XML_CONFIG="$XML_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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_XML_CONFIG="$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 XML_CONFIG=$ac_cv_prog_XML_CONFIG if test -n "$XML_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XML_CONFIG" >&5 $as_echo "$XML_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$XML_CONFIG" && break done fi fi libxml_source=no if test "X$XML_CONFIG" != "X"; then oCPPFLAGS="$CPPFLAGS" oLIBS="$LIBS" CPPFLAGS="`$XML_CONFIG --cflags` $CPPFLAGS" LIBS="$LIBS `$XML_CONFIG --libs`" ac_fn_c_check_func "$LINENO" "xmlCreatePushParserCtxt" "ac_cv_func_xmlCreatePushParserCtxt" if test "x$ac_cv_func_xmlCreatePushParserCtxt" = xyes; then : have_xmlCreatePushParserCtxt=yes else have_xmlCreatePushParserCtxt=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml via xml2-config" >&5 $as_echo_n "checking for libxml via xml2-config... " >&6; } if test $have_xmlCreatePushParserCtxt = yes; then libxml_source="xml2-config" LIBXML_VERSION=`$XML_CONFIG --version` fi CPPFLAGS="$oCPPFLAGS" LIBS="$oLIBS" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml via pkg-config" >&5 $as_echo_n "checking for libxml via pkg-config... " >&6; } XML_CONFIG="$PKG_CONFIG libxml-2.0" if $XML_CONFIG --exists; then LIBXML_VERSION=`$XML_CONFIG --modversion 2>/dev/null` libxml_source="pkg-config" fi fi if test "$libxml_source" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes - $LIBXML_VERSION via $libxml_source" >&5 $as_echo "yes - $LIBXML_VERSION via $libxml_source" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no - not found" >&5 $as_echo "no - not found" >&6; } as_fn_error $? "Please install version $libxml_min_version or newer" "$LINENO" 5 fi libxml_min_version_dec=`echo $libxml_min_version | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` libxml_version_dec=`echo $LIBXML_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test $libxml_version_dec -lt $libxml_min_version_dec; then as_fn_error $? "libxml $LIBXML_VERSION is too old - $libxml_min_version or newer required." "$LINENO" 5 fi LIBS="$LIBS `$XML_CONFIG --libs`" CFLAGS="`$XML_CONFIG --cflags` $CFLAGS" if test $libxml_source = "pkg-config"; then if test "X$PKG_CONFIG_REQUIRES" != X; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES libxml-2.0 >= $LIBXML_MIN_VERSION" fi LIBCURL_MIN_VERSION=$libcurl_min_version # Check whether --with-curl-config was given. if test "${with_curl_config+set}" = set; then : withval=$with_curl_config; curl_config="$withval" else curl_config="" fi if test "X$curl_config" != "Xno" ; then if test "X$curl_config" != "X" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $curl_config" >&5 $as_echo_n "checking for $curl_config... " >&6; } if test -f $curl_config ; then CURL_CONFIG=$curl_config { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no - searching PATH" >&5 $as_echo "no - searching PATH" >&6; } fi fi if test "X$CURL_CONFIG" = "X" ; then for ac_prog in curl-config 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 ${ac_cv_prog_CURL_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CURL_CONFIG"; then ac_cv_prog_CURL_CONFIG="$CURL_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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CURL_CONFIG="$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 CURL_CONFIG=$ac_cv_prog_CURL_CONFIG if test -n "$CURL_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CURL_CONFIG" >&5 $as_echo "$CURL_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CURL_CONFIG" && break done fi fi libcurl_source=no if test "X$CURL_CONFIG" != "X"; then oCPPFLAGS="$CPPFLAGS" oLIBS="$LIBS" CPPFLAGS="`$CURL_CONFIG --cflags` $CPPFLAGS" LIBS="$LIBS `$CURL_CONFIG --libs`" ac_fn_c_check_header_mongrel "$LINENO" "curl/curl.h" "ac_cv_header_curl_curl_h" "$ac_includes_default" if test "x$ac_cv_header_curl_curl_h" = xyes; then : fi ac_fn_c_check_func "$LINENO" "curl_easy_init" "ac_cv_func_curl_easy_init" if test "x$ac_cv_func_curl_easy_init" = xyes; then : have_curl_easy_init=yes else have_curl_easy_init=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libcurl via curl-config" >&5 $as_echo_n "checking for libcurl via curl-config... " >&6; } if test $have_curl_easy_init = yes; then libcurl_source="curl-config" LIBCURL_VERSION=`$CURL_CONFIG --version | sed -e 's/^libcurl *//'` fi CPPFLAGS="$oCPPFLAGS" LIBS="$oLIBS" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libcurl via pkg-config" >&5 $as_echo_n "checking for libcurl via pkg-config... " >&6; } CURL_CONFIG="$PKG_CONFIG libcurl" if $CURL_CONFIG --exists; then LIBCURL_VERSION=`$CURL_CONFIG --modversion 2>/dev/null` libcurl_source="pkg-config" fi fi if test "$libcurl_source" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes - $LIBCURL_VERSION via $libcurl_source" >&5 $as_echo "yes - $LIBCURL_VERSION via $libcurl_source" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no - not found" >&5 $as_echo "no - not found" >&6; } as_fn_error $? "Please install version $libcurl_min_version or newer" "$LINENO" 5 fi libcurl_min_version_dec=`echo $libcurl_min_version | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` libcurl_version_dec=`echo $LIBCURL_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test $libcurl_version_dec -lt $libcurl_min_version_dec; then as_fn_error $? "libcurl $LIBCURL_VERSION is too old - $libcurl_min_version or newer required." "$LINENO" 5 fi LIBS="$LIBS `$CURL_CONFIG --libs`" CFLAGS="`$CURL_CONFIG --cflags` $CFLAGS" if test $libcurl_source = "pkg-config"; then if test "X$PKG_CONFIG_REQUIRES" != X; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES libcurl >= $LIBCURL_MIN_VERSION" fi # Check whether --with-raptor was given. if test "${with_raptor+set}" = set; then : withval=$with_raptor; with_raptor="$withval" else with_raptor="auto" fi # resolve autodetecting raptor if test "$with_raptor" = auto; then if $PKG_CONFIG raptor2 --exists; then with_raptor=yes else with_raptor=no fi fi # Check raptor version and use it if new enough RAPTOR_VERSION= if test "$with_raptor" = yes -o "$with_raptor" = 2; then RAPTOR_VERSION=`$PKG_CONFIG raptor2 --modversion 2>/dev/null` if $PKG_CONFIG raptor2 --atleast-version=$raptor_min_version; then with_raptor=yes else with_raptor=no { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Installed Raptor $RAPTOR_VERSION is too old - need $raptor_min_version" >&5 $as_echo "$as_me: WARNING: Installed Raptor $RAPTOR_VERSION is too old - need $raptor_min_version" >&2;} fi else with_raptor="no" fi RAPTOR_MIN_VERSION=$raptor_min_version if test $with_raptor != no; then RAPTOR_TRUE= RAPTOR_FALSE='#' else RAPTOR_TRUE='#' RAPTOR_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use Raptor" >&5 $as_echo_n "checking whether to use Raptor... " >&6; } if test "$with_raptor" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes - $RAPTOR_VERSION" >&5 $as_echo "yes - $RAPTOR_VERSION" >&6; } RAPTOR_LIBS="`$PKG_CONFIG raptor2 --libs`" RAPTOR_CFLAGS="`$PKG_CONFIG raptor2 --cflags`" LIBS="$LIBS $RAPTOR_LIBS" CPPFLAGS="$CPPFLAGS $RAPTOR_CFLAGS" if test "X$PKG_CONFIG_REQUIRES" != X; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES raptor2 >= $raptor_min_version" $as_echo "#define HAVE_RAPTOR 1" >>confdefs.h else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --enable-offline was given. if test "${enable_offline+set}" = set; then : enableval=$enable_offline; offline="yes" else offline="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking using offline mode" >&5 $as_echo_n "checking using offline mode... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $offline" >&5 $as_echo "$offline" >&6; }; if test $offline = yes; then $as_echo "#define OFFLINE 1" >>confdefs.h fi if test $offline = yes; then OFFLINE_TRUE= OFFLINE_FALSE='#' else OFFLINE_TRUE='#' OFFLINE_FALSE= fi # Check whether --enable-capture was given. if test "${enable_capture+set}" = set; then : enableval=$enable_capture; capture="yes" else capture="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking capturing web service responses" >&5 $as_echo_n "checking capturing web service responses... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $capture" >&5 $as_echo "$capture" >&6; }; if test $capture = yes; then $as_echo "#define CAPTURE 1" >>confdefs.h fi if test $offline = yes -a $capture = yes; then as_fn_error $? "Cannot use both offline mode and capturing web service responses" "$LINENO" 5 fi # Just too annoying: # -Wmissing-format-attribute possible_warnings="-Wall -Wextra \ -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -Wredundant-decls -Wswitch-enum \ -Wsign-compare -Werror-implicit-function-declaration -Wwrite-strings -Wpacked -Wpointer-arith -Wcast-align -Winit-self \ -Wunsafe-loop-optimizations -Wdeclaration-after-statement \ -Wold-style-definition \ -Wno-missing-field-initializers -Wno-unused-parameter" warning_cflags= if test "$USE_MAINTAINER_MODE" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for supported $CC warning flags" >&5 $as_echo_n "checking for supported $CC warning flags... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $warning_cflags" >&5 $as_echo "$warning_cflags" >&6; } for warning in $possible_warnings; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports $warning" >&5 $as_echo_n "checking whether $CC supports $warning... " >&6; } flickcurl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $warning" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ _ACEOF if ac_fn_c_try_compile "$LINENO"; then : flickcurl_cc_flag=yes else flickcurl_cc_flag=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$flickcurl_save_CFLAGS" if test "X$flickcurl_cc_flag" = "Xyes"; then warning_cflags="$warning_cflags $warning" else : fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $flickcurl_cc_flag" >&5 $as_echo "$flickcurl_cc_flag" >&6; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking $CC supports warning flags" >&5 $as_echo_n "checking $CC supports warning flags... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $warning_cflags" >&5 $as_echo "$warning_cflags" >&6; } fi CPPFLAGS="-DFLICKCURL_INTERNAL=1 $CPPFLAGS" STANDARD_CFLAGS= MAINTAINER_CFLAGS="$warning_cflags" STANDARD_CFLAGS="$STANDARD_CFLAGS $CFLAGS" if test "$USE_MAINTAINER_MODE" = yes; then CPPFLAGS="-g -DFLICKCURL_DEBUG=1 $CPPFLAGS" CFLAGS="$MAINTAINER_CFLAGS $CFLAGS" fi # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' ac_config_files="$ac_config_files Makefile src/Makefile utils/Makefile examples/Makefile docs/Makefile docs/version.xml flickcurl.spec flickcurl.rdf flickcurl.pc" ac_config_files="$ac_config_files flickcurl-config" 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 ${ac_cv_path_PKG_CONFIG+:} false; 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 as_fn_executable_p "$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 ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; 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 as_fn_executable_p "$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 # Extract the first word of "gtkdoc-check", so it can be a program name with args. set dummy gtkdoc-check; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GTKDOC_CHECK+:} false; then : $as_echo_n "(cached) " >&6 else case $GTKDOC_CHECK in [\\/]* | ?:[\\/]*) ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTKDOC_CHECK="$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 GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK if test -n "$GTKDOC_CHECK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5 $as_echo "$GTKDOC_CHECK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi for ac_prog in gtkdoc-rebase 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 ${ac_cv_path_GTKDOC_REBASE+:} false; then : $as_echo_n "(cached) " >&6 else case $GTKDOC_REBASE in [\\/]* | ?:[\\/]*) ac_cv_path_GTKDOC_REBASE="$GTKDOC_REBASE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTKDOC_REBASE="$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 GTKDOC_REBASE=$ac_cv_path_GTKDOC_REBASE if test -n "$GTKDOC_REBASE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_REBASE" >&5 $as_echo "$GTKDOC_REBASE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$GTKDOC_REBASE" && break done test -n "$GTKDOC_REBASE" || GTKDOC_REBASE="true" # Extract the first word of "gtkdoc-mkpdf", so it can be a program name with args. set dummy gtkdoc-mkpdf; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GTKDOC_MKPDF+:} false; then : $as_echo_n "(cached) " >&6 else case $GTKDOC_MKPDF in [\\/]* | ?:[\\/]*) ac_cv_path_GTKDOC_MKPDF="$GTKDOC_MKPDF" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTKDOC_MKPDF="$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 GTKDOC_MKPDF=$ac_cv_path_GTKDOC_MKPDF if test -n "$GTKDOC_MKPDF"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_MKPDF" >&5 $as_echo "$GTKDOC_MKPDF" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --with-html-dir was given. if test "${with_html_dir+set}" = set; then : withval=$with_html_dir; else with_html_dir='${datadir}/gtk-doc/html' fi HTML_DIR="$with_html_dir" # Check whether --enable-gtk-doc was given. if test "${enable_gtk_doc+set}" = set; then : enableval=$enable_gtk_doc; else enable_gtk_doc=no fi if test x$enable_gtk_doc = xyes; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.3\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : else as_fn_error $? "You need to have gtk-doc >= 1.3 installed to build $PACKAGE_NAME" "$LINENO" 5 fi if test "x$PACKAGE_NAME" != "xglib"; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKDOC_DEPS" >&5 $as_echo_n "checking for GTKDOC_DEPS... " >&6; } if test -n "$GTKDOC_DEPS_CFLAGS"; then pkg_cv_GTKDOC_DEPS_CFLAGS="$GTKDOC_DEPS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTKDOC_DEPS_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTKDOC_DEPS_LIBS"; then pkg_cv_GTKDOC_DEPS_LIBS="$GTKDOC_DEPS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTKDOC_DEPS_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } 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 GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` else GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTKDOC_DEPS_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0) were not met: $GTKDOC_DEPS_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTKDOC_DEPS_CFLAGS and GTKDOC_DEPS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "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. Alternatively, you may set the environment variables GTKDOC_DEPS_CFLAGS and GTKDOC_DEPS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GTKDOC_DEPS_CFLAGS=$pkg_cv_GTKDOC_DEPS_CFLAGS GTKDOC_DEPS_LIBS=$pkg_cv_GTKDOC_DEPS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5 $as_echo_n "checking whether to build gtk-doc documentation... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5 $as_echo "$enable_gtk_doc" >&6; } # Check whether --enable-gtk-doc-html was given. if test "${enable_gtk_doc_html+set}" = set; then : enableval=$enable_gtk_doc_html; else enable_gtk_doc_html=yes fi # Check whether --enable-gtk-doc-pdf was given. if test "${enable_gtk_doc_pdf+set}" = set; then : enableval=$enable_gtk_doc_pdf; else enable_gtk_doc_pdf=no fi if test -z "$GTKDOC_MKPDF"; then enable_gtk_doc_pdf=no fi if test x$enable_gtk_doc = xyes; then ENABLE_GTK_DOC_TRUE= ENABLE_GTK_DOC_FALSE='#' else ENABLE_GTK_DOC_TRUE='#' ENABLE_GTK_DOC_FALSE= fi if test x$enable_gtk_doc_html = xyes; then GTK_DOC_BUILD_HTML_TRUE= GTK_DOC_BUILD_HTML_FALSE='#' else GTK_DOC_BUILD_HTML_TRUE='#' GTK_DOC_BUILD_HTML_FALSE= fi if test x$enable_gtk_doc_pdf = xyes; then GTK_DOC_BUILD_PDF_TRUE= GTK_DOC_BUILD_PDF_FALSE='#' else GTK_DOC_BUILD_PDF_TRUE='#' GTK_DOC_BUILD_PDF_FALSE= fi if test -n "$LIBTOOL"; then GTK_DOC_USE_LIBTOOL_TRUE= GTK_DOC_USE_LIBTOOL_FALSE='#' else GTK_DOC_USE_LIBTOOL_TRUE='#' GTK_DOC_USE_LIBTOOL_FALSE= fi if test -n "$GTKDOC_REBASE"; then GTK_DOC_USE_REBASE_TRUE= GTK_DOC_USE_REBASE_FALSE='#' else GTK_DOC_USE_REBASE_TRUE='#' GTK_DOC_USE_REBASE_FALSE= fi 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 if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $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}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$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 "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GETOPT_TRUE}" && test -z "${GETOPT_FALSE}"; then as_fn_error $? "conditional \"GETOPT\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${RAPTOR_TRUE}" && test -z "${RAPTOR_FALSE}"; then as_fn_error $? "conditional \"RAPTOR\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${OFFLINE_TRUE}" && test -z "${OFFLINE_FALSE}"; then as_fn_error $? "conditional \"OFFLINE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then as_fn_error $? "conditional \"ENABLE_GTK_DOC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_BUILD_HTML_TRUE}" && test -z "${GTK_DOC_BUILD_HTML_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_BUILD_HTML\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_BUILD_PDF_TRUE}" && test -z "${GTK_DOC_BUILD_PDF_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_BUILD_PDF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_USE_LIBTOOL_TRUE}" && test -z "${GTK_DOC_USE_LIBTOOL_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_USE_REBASE_TRUE}" && test -z "${GTK_DOC_USE_REBASE_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_USE_REBASE\" 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. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS 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 -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$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 # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_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 Flickcurl $as_me 1.25, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ Flickcurl config.status 1.25 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 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;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $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" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "utils/Makefile") CONFIG_FILES="$CONFIG_FILES utils/Makefile" ;; "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;; "docs/version.xml") CONFIG_FILES="$CONFIG_FILES docs/version.xml" ;; "flickcurl.spec") CONFIG_FILES="$CONFIG_FILES flickcurl.spec" ;; "flickcurl.rdf") CONFIG_FILES="$CONFIG_FILES flickcurl.rdf" ;; "flickcurl.pc") CONFIG_FILES="$CONFIG_FILES flickcurl.pc" ;; "flickcurl-config") CONFIG_FILES="$CONFIG_FILES flickcurl-config" ;; *) 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_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$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 >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $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 "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $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 "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $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 } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="" # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; "flickcurl-config":F) chmod +x flickcurl-config ;; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Flickcurl build summary: libxml $LIBXML_VERSION via $libxml_source curl $LIBCURL_VERSION via $libcurl_source raptor $RAPTOR_VERSION " >&5 $as_echo " Flickcurl build summary: libxml $LIBXML_VERSION via $libxml_source curl $LIBCURL_VERSION via $libcurl_source raptor $RAPTOR_VERSION " >&6; } flickcurl-1.25/utils/0000755000175000017500000000000012210726306011557 500000000000000flickcurl-1.25/utils/Makefile.am0000644000175000017500000000342512017323210013527 00000000000000# # Makefile.am - makefile for utilities # # Copyright (C) 2008-2009, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. bin_PROGRAMS = flickcurl flickrdf EXTRA_PROGRAMS = codegen list-methods CLEANFILES=$(EXTRA_PROGRAMS) AM_CPPFLAGS= -I$(top_srcdir)/src -DMTWIST_CONFIG -I$(top_srcdir)/libmtwist flickcurl_SOURCES = flickcurl.c if GETOPT flickcurl_SOURCES += getopt.c flickcurl_getopt.h endif flickcurl_CFLAGS= if MAINTAINER_MODE flickcurl_CFLAGS += -DFLICKCURL_MAINTAINER endif flickcurl_LDADD= $(top_builddir)/src/libflickcurl.la flickrdf_SOURCES = flickrdf.c if GETOPT flickrdf_SOURCES += getopt.c flickcurl_getopt.h endif flickrdf_CFLAGS= flickrdf_LDADD= $(top_builddir)/src/libflickcurl.la if RAPTOR flickrdf_CFLAGS += @RAPTOR_CFLAGS@ flickrdf_LDADD += @RAPTOR_LIBS@ endif if !RAPTOR flickrdf_SOURCES += raptor_fake.c raptor_fake.h endif codegen_SOURCES = codegen.c if GETOPT codegen_SOURCES += getopt.c flickcurl_getopt.h endif codegen_LDADD= $(top_builddir)/src/libflickcurl.la list_methods_SOURCES = list-methods.c if GETOPT list_methods_SOURCES += getopt.c flickcurl_getopt.h endif list_methods_LDADD= $(top_builddir)/src/libflickcurl.la $(top_builddir)/src/libflickcurl.la: cd $(top_builddir)/src && $(MAKE) libflickcurl.la flickcurl-1.25/utils/Makefile.in0000644000175000017500000010025512157737151013561 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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@ # # Makefile.am - makefile for utilities # # Copyright (C) 2008-2009, David Beckett http://www.dajobe.org/ # # This file is licensed under the following three licenses as alternatives: # 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version # 2. GNU General Public License (GPL) V2 or any newer version # 3. Apache License, V2.0 or any newer version # # You may not use this file except in compliance with at least one of # the above three licenses. # # See LICENSE.html or LICENSE.txt at the top of this package for the # complete terms and further detail along with the license texts for # the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } 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 = flickcurl$(EXEEXT) flickrdf$(EXEEXT) EXTRA_PROGRAMS = codegen$(EXEEXT) list-methods$(EXEEXT) @GETOPT_TRUE@am__append_1 = getopt.c flickcurl_getopt.h @MAINTAINER_MODE_TRUE@am__append_2 = -DFLICKCURL_MAINTAINER @GETOPT_TRUE@am__append_3 = getopt.c flickcurl_getopt.h @RAPTOR_TRUE@am__append_4 = @RAPTOR_CFLAGS@ @RAPTOR_TRUE@am__append_5 = @RAPTOR_LIBS@ @RAPTOR_FALSE@am__append_6 = raptor_fake.c raptor_fake.h @GETOPT_TRUE@am__append_7 = getopt.c flickcurl_getopt.h @GETOPT_TRUE@am__append_8 = getopt.c flickcurl_getopt.h subdir = utils DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/gtk-doc.m4 \ $(top_srcdir)/build/libtool.m4 \ $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am__codegen_SOURCES_DIST = codegen.c getopt.c flickcurl_getopt.h @GETOPT_TRUE@am__objects_1 = getopt.$(OBJEXT) am_codegen_OBJECTS = codegen.$(OBJEXT) $(am__objects_1) codegen_OBJECTS = $(am_codegen_OBJECTS) codegen_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__flickcurl_SOURCES_DIST = flickcurl.c getopt.c flickcurl_getopt.h @GETOPT_TRUE@am__objects_2 = flickcurl-getopt.$(OBJEXT) am_flickcurl_OBJECTS = flickcurl-flickcurl.$(OBJEXT) $(am__objects_2) flickcurl_OBJECTS = $(am_flickcurl_OBJECTS) flickcurl_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la flickcurl_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(flickcurl_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ am__flickrdf_SOURCES_DIST = flickrdf.c getopt.c flickcurl_getopt.h \ raptor_fake.c raptor_fake.h @GETOPT_TRUE@am__objects_3 = flickrdf-getopt.$(OBJEXT) @RAPTOR_FALSE@am__objects_4 = flickrdf-raptor_fake.$(OBJEXT) am_flickrdf_OBJECTS = flickrdf-flickrdf.$(OBJEXT) $(am__objects_3) \ $(am__objects_4) flickrdf_OBJECTS = $(am_flickrdf_OBJECTS) am__DEPENDENCIES_1 = flickrdf_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la \ $(am__DEPENDENCIES_1) flickrdf_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(flickrdf_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ am__list_methods_SOURCES_DIST = list-methods.c getopt.c \ flickcurl_getopt.h am_list_methods_OBJECTS = list-methods.$(OBJEXT) $(am__objects_1) list_methods_OBJECTS = $(am_list_methods_OBJECTS) list_methods_DEPENDENCIES = $(top_builddir)/src/libflickcurl.la DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/build/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(codegen_SOURCES) $(flickcurl_SOURCES) $(flickrdf_SOURCES) \ $(list_methods_SOURCES) DIST_SOURCES = $(am__codegen_SOURCES_DIST) \ $(am__flickcurl_SOURCES_DIST) $(am__flickrdf_SOURCES_DIST) \ $(am__list_methods_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLICKCURL_VERSION_DECIMAL = @FLICKCURL_VERSION_DECIMAL@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBCURL_MIN_VERSION = @LIBCURL_MIN_VERSION@ LIBFLICKCURL_LIBTOOL_VERSION = @LIBFLICKCURL_LIBTOOL_VERSION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML_MIN_VERSION = @LIBXML_MIN_VERSION@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PKG_CONFIG_REQUIRES = @PKG_CONFIG_REQUIRES@ RANLIB = @RANLIB@ RAPTOR_CFLAGS = @RAPTOR_CFLAGS@ RAPTOR_LIBS = @RAPTOR_LIBS@ RAPTOR_MIN_VERSION = @RAPTOR_MIN_VERSION@ RECHO = @RECHO@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STANDARD_CFLAGS = @STANDARD_CFLAGS@ STRIP = @STRIP@ VERSION = @VERSION@ XML_CONFIG = @XML_CONFIG@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ 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@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ CLEANFILES = $(EXTRA_PROGRAMS) AM_CPPFLAGS = -I$(top_srcdir)/src -DMTWIST_CONFIG -I$(top_srcdir)/libmtwist flickcurl_SOURCES = flickcurl.c $(am__append_1) flickcurl_CFLAGS = $(am__append_2) flickcurl_LDADD = $(top_builddir)/src/libflickcurl.la flickrdf_SOURCES = flickrdf.c $(am__append_3) $(am__append_6) flickrdf_CFLAGS = $(am__append_4) flickrdf_LDADD = $(top_builddir)/src/libflickcurl.la $(am__append_5) codegen_SOURCES = codegen.c $(am__append_7) codegen_LDADD = $(top_builddir)/src/libflickcurl.la list_methods_SOURCES = list-methods.c $(am__append_8) list_methods_LDADD = $(top_builddir)/src/libflickcurl.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu utils/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu utils/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p || test -f $$p1; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ esac; \ f=`echo "$$p" | \ sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ for opt in --help --version; do \ if "$(DESTDIR)$(bindir)/$$f" $$opt >c$${pid}_.out \ 2>c$${pid}_.err &2; bad=1; fi; \ done; \ done; rm -f c$${pid}_.???; exit $$bad codegen$(EXEEXT): $(codegen_OBJECTS) $(codegen_DEPENDENCIES) $(EXTRA_codegen_DEPENDENCIES) @rm -f codegen$(EXEEXT) $(AM_V_CCLD)$(LINK) $(codegen_OBJECTS) $(codegen_LDADD) $(LIBS) flickcurl$(EXEEXT): $(flickcurl_OBJECTS) $(flickcurl_DEPENDENCIES) $(EXTRA_flickcurl_DEPENDENCIES) @rm -f flickcurl$(EXEEXT) $(AM_V_CCLD)$(flickcurl_LINK) $(flickcurl_OBJECTS) $(flickcurl_LDADD) $(LIBS) flickrdf$(EXEEXT): $(flickrdf_OBJECTS) $(flickrdf_DEPENDENCIES) $(EXTRA_flickrdf_DEPENDENCIES) @rm -f flickrdf$(EXEEXT) $(AM_V_CCLD)$(flickrdf_LINK) $(flickrdf_OBJECTS) $(flickrdf_LDADD) $(LIBS) list-methods$(EXEEXT): $(list_methods_OBJECTS) $(list_methods_DEPENDENCIES) $(EXTRA_list_methods_DEPENDENCIES) @rm -f list-methods$(EXEEXT) $(AM_V_CCLD)$(LINK) $(list_methods_OBJECTS) $(list_methods_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/codegen.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flickcurl-flickcurl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flickcurl-getopt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flickrdf-flickrdf.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flickrdf-getopt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flickrdf-raptor_fake.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list-methods.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< flickcurl-flickcurl.o: flickcurl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -MT flickcurl-flickcurl.o -MD -MP -MF $(DEPDIR)/flickcurl-flickcurl.Tpo -c -o flickcurl-flickcurl.o `test -f 'flickcurl.c' || echo '$(srcdir)/'`flickcurl.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickcurl-flickcurl.Tpo $(DEPDIR)/flickcurl-flickcurl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='flickcurl.c' object='flickcurl-flickcurl.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -c -o flickcurl-flickcurl.o `test -f 'flickcurl.c' || echo '$(srcdir)/'`flickcurl.c flickcurl-flickcurl.obj: flickcurl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -MT flickcurl-flickcurl.obj -MD -MP -MF $(DEPDIR)/flickcurl-flickcurl.Tpo -c -o flickcurl-flickcurl.obj `if test -f 'flickcurl.c'; then $(CYGPATH_W) 'flickcurl.c'; else $(CYGPATH_W) '$(srcdir)/flickcurl.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickcurl-flickcurl.Tpo $(DEPDIR)/flickcurl-flickcurl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='flickcurl.c' object='flickcurl-flickcurl.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -c -o flickcurl-flickcurl.obj `if test -f 'flickcurl.c'; then $(CYGPATH_W) 'flickcurl.c'; else $(CYGPATH_W) '$(srcdir)/flickcurl.c'; fi` flickcurl-getopt.o: getopt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -MT flickcurl-getopt.o -MD -MP -MF $(DEPDIR)/flickcurl-getopt.Tpo -c -o flickcurl-getopt.o `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickcurl-getopt.Tpo $(DEPDIR)/flickcurl-getopt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt.c' object='flickcurl-getopt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -c -o flickcurl-getopt.o `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c flickcurl-getopt.obj: getopt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -MT flickcurl-getopt.obj -MD -MP -MF $(DEPDIR)/flickcurl-getopt.Tpo -c -o flickcurl-getopt.obj `if test -f 'getopt.c'; then $(CYGPATH_W) 'getopt.c'; else $(CYGPATH_W) '$(srcdir)/getopt.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickcurl-getopt.Tpo $(DEPDIR)/flickcurl-getopt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt.c' object='flickcurl-getopt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickcurl_CFLAGS) $(CFLAGS) -c -o flickcurl-getopt.obj `if test -f 'getopt.c'; then $(CYGPATH_W) 'getopt.c'; else $(CYGPATH_W) '$(srcdir)/getopt.c'; fi` flickrdf-flickrdf.o: flickrdf.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -MT flickrdf-flickrdf.o -MD -MP -MF $(DEPDIR)/flickrdf-flickrdf.Tpo -c -o flickrdf-flickrdf.o `test -f 'flickrdf.c' || echo '$(srcdir)/'`flickrdf.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickrdf-flickrdf.Tpo $(DEPDIR)/flickrdf-flickrdf.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='flickrdf.c' object='flickrdf-flickrdf.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -c -o flickrdf-flickrdf.o `test -f 'flickrdf.c' || echo '$(srcdir)/'`flickrdf.c flickrdf-flickrdf.obj: flickrdf.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -MT flickrdf-flickrdf.obj -MD -MP -MF $(DEPDIR)/flickrdf-flickrdf.Tpo -c -o flickrdf-flickrdf.obj `if test -f 'flickrdf.c'; then $(CYGPATH_W) 'flickrdf.c'; else $(CYGPATH_W) '$(srcdir)/flickrdf.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickrdf-flickrdf.Tpo $(DEPDIR)/flickrdf-flickrdf.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='flickrdf.c' object='flickrdf-flickrdf.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -c -o flickrdf-flickrdf.obj `if test -f 'flickrdf.c'; then $(CYGPATH_W) 'flickrdf.c'; else $(CYGPATH_W) '$(srcdir)/flickrdf.c'; fi` flickrdf-getopt.o: getopt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -MT flickrdf-getopt.o -MD -MP -MF $(DEPDIR)/flickrdf-getopt.Tpo -c -o flickrdf-getopt.o `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickrdf-getopt.Tpo $(DEPDIR)/flickrdf-getopt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt.c' object='flickrdf-getopt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -c -o flickrdf-getopt.o `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c flickrdf-getopt.obj: getopt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -MT flickrdf-getopt.obj -MD -MP -MF $(DEPDIR)/flickrdf-getopt.Tpo -c -o flickrdf-getopt.obj `if test -f 'getopt.c'; then $(CYGPATH_W) 'getopt.c'; else $(CYGPATH_W) '$(srcdir)/getopt.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickrdf-getopt.Tpo $(DEPDIR)/flickrdf-getopt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt.c' object='flickrdf-getopt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -c -o flickrdf-getopt.obj `if test -f 'getopt.c'; then $(CYGPATH_W) 'getopt.c'; else $(CYGPATH_W) '$(srcdir)/getopt.c'; fi` flickrdf-raptor_fake.o: raptor_fake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -MT flickrdf-raptor_fake.o -MD -MP -MF $(DEPDIR)/flickrdf-raptor_fake.Tpo -c -o flickrdf-raptor_fake.o `test -f 'raptor_fake.c' || echo '$(srcdir)/'`raptor_fake.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickrdf-raptor_fake.Tpo $(DEPDIR)/flickrdf-raptor_fake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='raptor_fake.c' object='flickrdf-raptor_fake.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -c -o flickrdf-raptor_fake.o `test -f 'raptor_fake.c' || echo '$(srcdir)/'`raptor_fake.c flickrdf-raptor_fake.obj: raptor_fake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -MT flickrdf-raptor_fake.obj -MD -MP -MF $(DEPDIR)/flickrdf-raptor_fake.Tpo -c -o flickrdf-raptor_fake.obj `if test -f 'raptor_fake.c'; then $(CYGPATH_W) 'raptor_fake.c'; else $(CYGPATH_W) '$(srcdir)/raptor_fake.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/flickrdf-raptor_fake.Tpo $(DEPDIR)/flickrdf-raptor_fake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='raptor_fake.c' object='flickrdf-raptor_fake.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(flickrdf_CFLAGS) $(CFLAGS) -c -o flickrdf-raptor_fake.obj `if test -f 'raptor_fake.c'; then $(CYGPATH_W) 'raptor_fake.c'; else $(CYGPATH_W) '$(srcdir)/raptor_fake.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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) 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 clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(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-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: installcheck-binPROGRAMS maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-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 \ installcheck-binPROGRAMS installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-binPROGRAMS $(top_builddir)/src/libflickcurl.la: cd $(top_builddir)/src && $(MAKE) libflickcurl.la # 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: flickcurl-1.25/utils/flickcurl_getopt.h0000644000175000017500000000045111212024216015200 00000000000000/* * Public Domain getopt header * */ #ifndef FLICKCURL_GETOPT_H #define FLICKCURL_GETOPT_H #ifdef __cplusplus extern "C" { #endif int getopt(int argc, char * const argv[], const char *optstring); extern char *optarg; extern int optind, opterr, optopt; #ifdef __cplusplus } #endif #endif flickcurl-1.25/utils/getopt.c0000644000175000017500000000713011212024216013136 00000000000000/* * Public Domain getopt - history below * */ /* * From: gwyn@brl-tgr.ARPA (Doug Gwyn ) Newsgroups: net.sources * Subject: getopt library routine Date: 30 Mar 85 04:45:33 GMT */ /* * getopt -- public domain version of standard System V routine * * Strictly enforces the System V Command Syntax Standard; provided by D A * Gwyn of BRL for generic ANSI C implementations * * #define STRICT to prevent acceptance of clustered options with arguments * and ommision of whitespace between option and arg. */ /* * Modified by Manuel Novoa III on 1/5/01 to use weak symbols. * Programs needing long options will link gnu_getopt instead. */ /* * Last public domain version 1.5 downloaded from uclibc CVS: * http://www.uclibc.org/cgi-bin/cvsweb/uClibc/libc/unistd/getopt.c * on 2003-02-18 by Dave Beckett and tidied: * Ran through "indent getopt.c -gnu" then fixed up the mess * Removed register - compilers are smart these days * ANSI-fied the declarations * Prefixed with flickcurl_ so that it doesn't clash with any getopt * linked in later. */ #include #include #include int opterr; /* error => print message */ int optind; /* next argv[] index */ int optopt; /* Set for unknown arguments */ char *optarg; /* option parameter if any */ /* * Err: * program name argv[0] * specific message * defective option letter */ static int Err (char *name, char *mess, int c) /* returns '?' */ { optopt = c; if (opterr) { (void) fprintf (stderr, "%s: %s -- %c\n", name, mess, c); } return '?'; /* erroneous-option marker */ } int getopt (int argc, char * const argv[], const char *optstring) { static int sp = 1; /* position within argument */ int osp; /* saved `sp' for param test */ #ifndef STRICT int oind; /* saved `optind' for param test */ #endif int c; /* option letter */ char *cp; /* -> option in `optstring' */ optarg = NULL; /* initialise getopt vars */ if (optind == 0) { optind = 1; opterr = 1; optopt = 1; optarg = NULL; } if (sp == 1) { /* fresh argument */ if (optind >= argc /* no more arguments */ || argv[optind][0] != '-' /* no more options */ || argv[optind][1] == '\0' /* not option; stdin */ ) return EOF; else if (strcmp (argv[optind], "--") == 0) { ++optind; /* skip over "--" */ return EOF; /* "--" marks end of options */ } } c = argv[optind][sp]; /* option letter */ osp = sp++; /* get ready for next letter */ #ifndef STRICT oind = optind; /* save optind for param test */ #endif if (argv[optind][sp] == '\0') { /* end of argument */ ++optind; /* get ready for next try */ sp = 1; /* beginning of next argument */ } if (c == ':' || c == '?' /* optstring syntax conflict */ || (cp = strchr (optstring, c)) == NULL) /* not found */ { return Err (argv[0], "illegal option", c); } if (cp[1] == ':') { /* option takes parameter */ #ifdef STRICT if (osp != 1) { return Err (argv[0], "option must not be clustered", c); } /* reset by end of argument */ if (sp != 1) { return Err (argv[0], "option must be followed by white space", c); } #else if (oind == optind) { /* argument w/o whitespace */ optarg = &argv[optind][sp]; sp = 1; /* beginning of next argument */ } else #endif if (optind >= argc) { return Err (argv[0], "option requires an argument", c); } else /* argument w/ whitespace */ optarg = argv[optind]; ++optind; /* skip over parameter */ } return c; } flickcurl-1.25/utils/raptor_fake.c0000644000175000017500000001631212016712660014145 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * raptor_fake.c - Fake Raptor V2 - just enough for flickrdf.c * * Copyright (C) 2011-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #include raptor_world* raptor_new_world(void) { return NULL; } int raptor_world_open(raptor_world* world) { return 0; } void raptor_free_world(raptor_world* world) { } raptor_uri* raptor_new_uri(raptor_world* world, const unsigned char *uri_string) { size_t len; raptor_uri* u; if(!uri_string) return NULL; len = strlen((const char*)uri_string); u = (raptor_uri*)malloc(len + 1); memcpy(u, uri_string, len + 1); return u; } raptor_uri* raptor_new_uri_from_uri_local_name(raptor_world* world, raptor_uri *uri, const unsigned char *local_name) { size_t len1; size_t len2; raptor_uri* newu; if(!uri || !local_name) return NULL; len1 = strlen((const char*)uri); len2 = strlen((const char*)local_name); newu = (raptor_uri*)malloc(len1 + len2 + 1); memcpy(newu, uri, len1); memcpy(newu + len1, local_name, len2 + 1); return newu; } raptor_uri* raptor_new_uri_from_uri(raptor_uri *uri) { return raptor_new_uri(NULL, (const unsigned char *)uri); } void raptor_free_uri(raptor_uri* u) { free(u); } raptor_term* raptor_new_term_from_blank(raptor_world* world, const unsigned char* blank) { raptor_term* newt; size_t blank_len; if(!blank) return NULL; blank_len = strlen((const char*)blank); newt = (raptor_term*)calloc(sizeof(*newt), 1); newt->type = RAPTOR_TERM_TYPE_BLANK; newt->value.blank.string = malloc(blank_len + 1); memcpy(newt->value.blank.string, blank, blank_len + 1); return newt; } raptor_term* raptor_new_term_from_uri_string(raptor_world* world, const unsigned char *uri_string) { raptor_term* newt; if(!uri_string) return NULL; newt = (raptor_term*)calloc(sizeof(*newt), 1); newt->type = RAPTOR_TERM_TYPE_URI; newt->value.uri = raptor_new_uri(world, uri_string); return newt; } raptor_term* raptor_new_term_from_uri(raptor_world* world, raptor_uri* uri) { return raptor_new_term_from_uri_string(world, (const unsigned char *)uri); } raptor_term* raptor_new_term_from_literal(raptor_world* world, const unsigned char* literal, raptor_uri* datatype, const unsigned char* language) { raptor_term* newt; size_t literal_len; if(!literal) return NULL; literal_len = strlen((const char*)literal); newt = (raptor_term*)calloc(sizeof(*newt), 1); newt->type = RAPTOR_TERM_TYPE_LITERAL; newt->value.literal.string = (unsigned char*)malloc(literal_len + 1); memcpy(newt->value.literal.string, literal, literal_len + 1); if(datatype) newt->value.literal.datatype = raptor_new_uri_from_uri(datatype); return newt; } void raptor_free_term(raptor_term* term) { if(term->type == RAPTOR_TERM_TYPE_URI) raptor_free_uri(term->value.uri); if(term->type == RAPTOR_TERM_TYPE_BLANK) free(term->value.blank.string); if(term->type == RAPTOR_TERM_TYPE_LITERAL) { if(term->value.literal.datatype) raptor_free_uri(term->value.literal.datatype); free(term->value.literal.string); } } #define NSERIALIZERS 2 raptor_syntax_description serializers[NSERIALIZERS]= { { { "ntriples", NULL}, "N-Triples" }, { { "turtle", NULL}, "Turtle", }, }; int raptor_world_is_serializer_name(raptor_world* world, const char* name) { int i; for(i = 0; i < NSERIALIZERS; i++) { if(strcmp(serializers[i].names[0], name)) return 1; } return 0; } const raptor_syntax_description* raptor_world_get_serializer_description(raptor_world* world, unsigned int counter) { if(counter > (NSERIALIZERS-1)) return NULL; return &serializers[counter]; } raptor_serializer* raptor_new_serializer(raptor_world* world, const char* serializer_name) { raptor_serializer* s; s = (raptor_serializer*)calloc(sizeof(raptor_serializer), 1); s->output_turtle = !strcmp((const char*)serializer_name, "turtle"); return s; } void raptor_free_serializer(raptor_serializer* s) { free(s); } void raptor_serializer_set_namespace(raptor_serializer* serializer, raptor_uri* uri, const unsigned char* prefix) { FILE* fh = serializer->fh; if(serializer->output_turtle) fprintf(fh, "@prefix %s: <%s> .\n", (const char*)prefix, (const char*)uri); } void raptor_serializer_start_to_file_handle(raptor_serializer* serializer, raptor_uri* base_uri, FILE* fh) { serializer->fh = fh; if(base_uri && serializer->output_turtle) fprintf(fh, "@base <%s>\n", (char*)base_uri); } void raptor_serializer_serialize_statement(raptor_serializer* serializer, raptor_statement* s) { FILE *fh = serializer->fh; if(s->subject->type == RAPTOR_TERM_TYPE_URI) fprintf(fh, "<%s>", (const char*)s->subject->value.uri); else /* blank node */ fprintf(fh, "_:%s", (const char*)s->subject->value.blank.string); fprintf(fh, " <%s> ", (const char*)s->predicate->value.uri); if(s->object->type == RAPTOR_TERM_TYPE_LITERAL) { const char *p; char c; fputc('"', fh); for(p = (const char*)s->object->value.literal.string; (c = *p); p++) { if(c == '\n') { fputs("\\\n", fh); continue; } else if(c == '\t') { fputs("\\\t", fh); continue; } if(c == '\r') { fputs("\\\r", fh); continue; } else if(c == '"' || c == '\\') fputc('\\', fh); fputc(c, fh); } fputc('"', fh); if(s->object->value.literal.datatype) { fputs("^^<", fh); fputs((const char*)s->object->value.literal.datatype, fh); fputc('>', fh); } } else if(s->object->type == RAPTOR_TERM_TYPE_URI) fprintf(fh, "<%s>", (const char*)s->object->value.uri); else /* blank node */ fprintf(fh, "_:%s", (const char*)s->object->value.blank.string); fputs(" . \n", fh); } void raptor_serializer_serialize_end(raptor_serializer* serializer) { fflush(serializer->fh); } void raptor_statement_init(raptor_statement *statement, raptor_world *world) { memset(statement, '\0', sizeof(*statement)); return; } void raptor_statement_clear(raptor_statement *statement) { raptor_free_term(statement->subject); raptor_free_term(statement->predicate); raptor_free_term(statement->object); } flickcurl-1.25/utils/flickcurl.c0000644000175000017500000050726612210457652013646 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * flickcurl utility - Invoke the Flickcurl library * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * * USAGE: flickcurl [OPTIONS] flickr-api-command args... * * ~/.flickcurl.conf should contain the authentication details in the form: * [flickr] * oauth_token=1234567-8901234567890123 * oauth_token_secret=fedcba9876543210 * oauth_client_key=0123456789abcdef0123456789abcdef * oauth_client_secret=fedcba9876543210 * * If the old Flickr auth is used the values will be: * api_key=0123456789abcdef0123456789abcdef * auth_token=1234567-8901234567890123 * secret=fedcba9876543210 * * To authenticate from a FROB - to generate an auth_token from a FROB use: * flickcurl -a FROB * FROB like 123-456-789 * which will write a new ~/.flickcurl.conf with the auth_token received * * API calls are invoked like: * * flickcurl test.echo KEY VALUE * This method does not require authentication. * Echoes back the KEY and VALUE received - an API test. * * flickcurl photo.getinfo PHOTO-ID * PHOTO-ID like 123456789 * This method does not require authentication. * -- http://www.flickr.com/services/api/flickr.photos.getInfo.html * Gets information about a photo including its tags * * See the help message for full list of supported Flickr API Calls. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif /* many places for getopt */ #ifdef HAVE_GETOPT_H #include #else #include #endif #include #include #ifdef NEED_OPTIND_DECLARATION extern int optind; extern char *optarg; #endif static int verbose = 1; static const char* program; static FILE* output_fh; static const char *output_filename = ""; static const char* config_filename = ".flickcurl.conf"; static const char* config_section = "flickr"; char config_path[1024]; static const char* my_basename(const char *name) { char *p; if((p = strrchr(name, '/'))) name = p+1; else if((p = strrchr(name, '\\'))) name = p+1; return name; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } #ifdef HAVE_GETOPT_LONG #define HELP_TEXT(short, long, description) " -" short ", --" long " " description #define HELP_TEXT_LONG(long, description) " --" long " " description #define HELP_ARG(short, long) "--" #long #define HELP_PAD "\n " #else #define HELP_TEXT(short, long, description) " -" short " " description #define HELP_TEXT_LONG(long, description) #define HELP_ARG(short, long) "-" #short #define HELP_PAD "\n " #endif #ifdef HAVE_GETOPT_LONG /* + makes GNU getopt_long() never permute the arguments */ #define GETOPT_STRING "+a:d:ho:qvV" #else #define GETOPT_STRING "a:d:ho:qvV" #endif #ifdef FLICKCURL_MAINTAINER #define GETOPT_STRING_MORE "m:" #else #define GETOPT_STRING_MORE #endif #ifdef HAVE_GETOPT_LONG static struct option long_options[] = { /* name, has_arg, flag, val */ {"auth", 1, 0, 'a'}, {"delay", 1, 0, 'd'}, {"help", 0, 0, 'h'}, #ifdef FLICKCURL_MAINTAINER {"maintainer", 1, 0, 'm'}, #endif {"output", 0, 0, 'o'}, {"quiet", 0, 0, 'q'}, {"version", 0, 0, 'v'}, {"verbose", 0, 0, 'V'}, {NULL, 0, 0, 0} }; #endif typedef int (*command_handler)(flickcurl* fc, int argc, char *argv[]); static int command_test_echo(flickcurl* fc, int argc, char *argv[]) { return flickcurl_test_echo(fc, argv[1], argv[2]); } static int command_test_login(flickcurl* fc, int argc, char *argv[]) { char* username; username = flickcurl_test_login(fc); if(username) { fprintf(stdout, "%s: Returned username '%s'\n", program, username); free(username); } return (username == NULL); } static int command_test_null(flickcurl* fc, int argc, char *argv[]) { return flickcurl_test_null(fc); } static int command_people_findByEmail(flickcurl* fc, int argc, char *argv[]) { char* nsid = NULL; char* email = argv[1]; nsid = flickcurl_people_findByEmail(fc, email); if(nsid) fprintf(stdout, "%s: NSID %s for user email %s\n", program, nsid, email); return (nsid == NULL); } static int command_people_findByUsername(flickcurl* fc, int argc, char *argv[]) { char* nsid = NULL; char* user_name = argv[1]; nsid = flickcurl_people_findByUsername(fc, user_name); if(nsid) fprintf(stdout, "%s: NSID %s for username %s\n", program, nsid, user_name); return (nsid == NULL); } static void command_print_person(flickcurl_person* person) { int i; fprintf(stdout, "Found person with ID %s\n", person->nsid); for(i = (int)PERSON_FIELD_FIRST; i <= (int)PERSON_FIELD_LAST; i++) { flickcurl_person_field_type field = (flickcurl_person_field_type)i; flickcurl_field_value_type datatype = person->fields[field].type; if(datatype == VALUE_TYPE_NONE) continue; fprintf(stdout, "field %s (%d) with %s value: '%s' / %d\n", flickcurl_get_person_field_label(field), field, flickcurl_get_field_value_type_label(datatype), person->fields[field].string, person->fields[field].integer); } } static int command_people_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_person* person; person = flickcurl_people_getInfo(fc, argv[1]); if(!person) return 1; command_print_person(person); flickcurl_free_person(person); return 0; } static void command_print_tags(flickcurl_tag** tags, const char* label, const char* value) { int i; if(!tags) return; if(label) fprintf(stdout, "%s: %s %s tags\n", program, label, (value ? value : "(none)")); else fprintf(stdout, "tags:\n"); for(i = 0; tags[i]; i++) { flickcurl_tag* tag = tags[i]; fprintf(stdout, "%d) %s tag: id %s author ID %s name %s raw '%s' cooked '%s' count %d\n", i, (tag->machine_tag ? "machine" : "regular"), tag->id, tag->author, (tag->authorname ? tag->authorname : "(Unknown)"), tag->raw, tag->cooked, tag->count); } } static int command_print_location(flickcurl_location* location) { const char* accuracy_label; accuracy_label = flickcurl_get_location_accuracy_label(location->accuracy); if(accuracy_label) fprintf(stdout, "latitude %f longitude %f accuracy %s(%d)\n", location->latitude, location->longitude, accuracy_label, location->accuracy); else fprintf(stdout, "latitude %f longitude %f accuracy unknown\n", location->latitude, location->longitude); return 0; } static void command_print_shape(flickcurl_shapedata* shape) { fprintf(stdout, "created %d alpha %2.2f #points %d #edges %d\n" " is donuthole: %d has donuthole: %d\n", shape->created, shape->alpha, shape->points, shape->edges, shape->is_donuthole, shape->has_donuthole); if(shape->data_length > 0) { int s; #define MAX_XML 70 s = (shape->data_length > MAX_XML ? MAX_XML : shape->data_length); fprintf(stdout, " Shapedata (%d bytes):\n ", (int)shape->data_length); fwrite(shape->data, 1, s, stdout); fputs("...\n", stdout); } if(shape->file_urls_count > 0) { int j; fprintf(stdout, " Shapefile URLs: %d\n", shape->file_urls_count); for(j = 0; j < shape->file_urls_count; j++) { fprintf(stdout," URL %d: %s\n", j, shape->file_urls[j]); } } } static void command_print_place(flickcurl_place* place, const char* label, const char* value, int print_locality) { int i; if(label) fprintf(stdout, "%s: %s %s places\n", program, label, (value ? value : "(none)")); if(print_locality && place->type != FLICKCURL_PLACE_LOCATION) fprintf(stdout, " Type %s (%d)\n", flickcurl_get_place_type_label(place->type), (int)place->type); if(place->location.accuracy != 0) { fputs(" Location: ", stdout); command_print_location(&place->location); } if(place->timezone) fprintf(stdout, " Timezone: %s\n", place->timezone); if(place->shape) command_print_shape(place->shape); if(place->count >0) fprintf(stdout, " Photos at Place: %d\n", place->count); for(i = (int)0; i <= (int)FLICKCURL_PLACE_LAST; i++) { char* name = place->names[i]; char* id = place->ids[i]; char* url = place->urls[i]; char* woe_id = place->woe_ids[i]; if(!name && !id && !url && !woe_id) continue; fprintf(stdout, " %d) place %s:", i, flickcurl_get_place_type_label((flickcurl_place_type)i)); if(name) fprintf(stdout," name '%s'", name); if(id) fprintf(stdout," id %s", id); if(woe_id) fprintf(stdout," woeid %s", woe_id); if(url) fprintf(stdout," url '%s'", url); fputc('\n', stdout); } } static void command_print_video(flickcurl_video* v) { fprintf(stdout, "video: ready %d failed %d pending %d duration %d width %d height %d\n", v->ready, v->failed, v->pending, v->duration, v->width, v->height); } static void command_print_notes(flickcurl_note** notes, const char* label, const char* value) { int i; if(!notes) return; if(label) fprintf(stdout, "%s: %s %s notes\n", program, label, (value ? value : "(none)")); else fprintf(stdout, "notes:\n"); for(i = 0; notes[i]; i++) { flickcurl_note* note = notes[i]; fprintf(stdout, "%d) id %d note: author ID %s name %s x %d y %d w %d h %d text '%s'\n", i, note->id, note->author, (note->authorname ? note->authorname : "(Unknown)"), note->x, note->y, note->w, note->h, note->text); } } static void command_print_photo(flickcurl_photo* photo) { int i; fprintf(stdout, "%s with URI %s ID %s and %d tags\n", photo->media_type, (photo->uri ? photo->uri : "(Unknown)"), photo->id, photo->tags_count); for(i = 0; i <= PHOTO_FIELD_LAST; i++) { flickcurl_photo_field_type field = (flickcurl_photo_field_type)i; flickcurl_field_value_type datatype = photo->fields[field].type; if(datatype == VALUE_TYPE_NONE) continue; fprintf(stdout, " field %s (%d) with %s value: '%s' / %d\n", flickcurl_get_photo_field_label(field), field, flickcurl_get_field_value_type_label(datatype), photo->fields[field].string, photo->fields[field].integer); } command_print_tags(photo->tags, NULL, NULL); if(photo->notes) command_print_notes(photo->notes, NULL, NULL); if(photo->place) command_print_place(photo->place, NULL, NULL, 1); if(photo->video) command_print_video(photo->video); } static int command_photos_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_photo* photo; const char *secret = NULL; if(argv[2]) secret = argv[2]; photo = flickcurl_photos_getInfo2(fc, argv[1], secret); if(photo) { fprintf(stdout, "%s: ", program); command_print_photo(photo); flickcurl_free_photo(photo); } return (photo == NULL); } static int command_photos_licenses_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_license** licenses; int i; licenses = flickcurl_photos_licenses_getInfo(fc); if(licenses) { if(verbose) fprintf(stdout, "%s: Found licenses\n", program); for(i = 0; licenses[i]; i++) { flickcurl_license* license = licenses[i]; fprintf(stdout, "%d) license: id %d name '%s' url %s\n", i, license->id, license->name, license->url ? license->url : "(none)"); } } return (licenses == NULL); } static int command_urls_lookupUser(flickcurl* fc, int argc, char *argv[]) { char* nsid = NULL; char* url = argv[1]; nsid = flickcurl_urls_lookupUser(fc, url); if(nsid) fprintf(stdout, "%s: NSID %s for user profile/photo URL %s\n", program, nsid, url); return (nsid == NULL); } static void command_contexts_print(FILE* fh, flickcurl_context** contexts) { flickcurl_context* context; int i; for(i = 0; (context = contexts[i]); i++) { const char* label = flickcurl_get_context_type_field_label(context->type); fprintf(fh, "%d) context type '%s' id %s secret %s server %d farm %d\n title: %s\n url: %s\n thumb: %s\n", i, label, context->id, (context->secret ? context->secret : "NULL"), context->server, context->farm, (context->title ? context->title : "NULL"), (context->url ? context->url : "NULL"), (context->thumb ? context->thumb : "NULL") ); } } static int command_groups_pools_getContext(flickcurl* fc, int argc, char *argv[]) { flickcurl_context** contexts; contexts = flickcurl_groups_pools_getContext(fc, argv[1], argv[2]); if(!contexts) return 1; if(verbose) fprintf(stdout, "%s: Pool context of photo %s in pool %s:\n", program, argv[1], argv[2]); command_contexts_print(stdout, contexts); flickcurl_free_contexts(contexts); return 0; } static int command_photos_getAllContexts(flickcurl* fc, int argc, char *argv[]) { flickcurl_context** contexts; contexts = flickcurl_photos_getAllContexts(fc, argv[1]); if(!contexts) return 1; if(verbose) fprintf(stdout, "%s: Photos %s all contexts:\n", program, argv[1]); command_contexts_print(stdout, contexts); flickcurl_free_contexts(contexts); return 0; } static int command_photos_getContext(flickcurl* fc, int argc, char *argv[]) { flickcurl_context** contexts; contexts = flickcurl_photos_getContext(fc, argv[1]); if(!contexts) return 1; if(verbose) fprintf(stdout, "%s: Photos %s context:\n", program, argv[1]); command_contexts_print(stdout, contexts); flickcurl_free_contexts(contexts); return 0; } static int command_photos_getCounts(flickcurl* fc, int argc, char *argv[]) { char** dates_array = NULL; char** taken_dates_array = NULL; int** counts; if(argv[1]) { dates_array = flickcurl_array_split(argv[1], ','); if(argv[2]) taken_dates_array = flickcurl_array_split(argv[2], ','); } counts = flickcurl_photos_getCounts(fc, (const char**)dates_array, (const char**)taken_dates_array); if(counts) { int i; for(i = 0; counts[i]; i++) { fprintf(stdout, "%s: photocount %i: count %d fromdate %d todate %d\n", program, i, counts[i][0], counts[i][1], counts[i][2]); } free(counts); } if(dates_array) flickcurl_array_free(dates_array); if(taken_dates_array) flickcurl_array_free(taken_dates_array); return (counts == NULL); } static int command_photosets_getContext(flickcurl* fc, int argc, char *argv[]) { flickcurl_context** contexts; contexts = flickcurl_photosets_getContext(fc, argv[1], argv[2]); if(!contexts) return 1; if(verbose) fprintf(stdout, "%s: Photo %s in photoset %s context:\n", program, argv[1], argv[2]); command_contexts_print(stdout, contexts); flickcurl_free_contexts(contexts); return 0; } static int command_auth_getFrob(flickcurl* fc, int argc, char *argv[]) { char* frob; frob = flickcurl_auth_getFrob(fc); if(!frob) return 1; fprintf(stdout, "%s: Got frob: %s\n", program, frob); free(frob); return 0; } static int command_auth_checkToken(flickcurl* fc, int argc, char *argv[]) { char* perms; perms = flickcurl_auth_checkToken(fc, argv[1]); if(!perms) return 1; fprintf(stdout, "%s: Checked token %s and got perms: %s\n", program, argv[1], perms); free(perms); return 0; } static int command_auth_getToken(flickcurl* fc, int argc, char *argv[]) { char* perms; perms = flickcurl_auth_getToken(fc, argv[1]); if(!perms) return 1; fprintf(stdout, "%s: Got token %s perms: %s\n", program, argv[1], perms); free(perms); return 0; } static int command_auth_getFullToken(flickcurl* fc, int argc, char *argv[]) { char* perms; perms = flickcurl_auth_getFullToken(fc, argv[1]); if(!perms) return 1; fprintf(stdout, "%s: Got full token %s perms: %s\n", program, argv[1], perms); free(perms); return 0; } static int command_tags_getListPhoto(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; char *photo_id = argv[1]; tags = flickcurl_tags_getListPhoto(fc, photo_id); if(!tags) return 1; command_print_tags(tags, "Photo ID", photo_id); free(tags); return 0; } static int command_tags_getListUser(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; char *user_id = argv[1]; tags = flickcurl_tags_getListUser(fc, user_id); if(!tags) return 1; command_print_tags(tags, "User ID", user_id); free(tags); return 0; } static int command_tags_getListUserPopular(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; char *user_id = NULL; int pop_count= -1; if(argv[1]) { user_id = argv[1]; if(argv[2]) pop_count = atoi(argv[2]); } tags = flickcurl_tags_getListUserPopular(fc, user_id, pop_count); if(!tags) return 1; command_print_tags(tags, "User ID", user_id); free(tags); return 0; } static int command_tags_getListUserRaw(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; char *tag = argv[1]; tags = flickcurl_tags_getListUserRaw(fc, tag); if(!tags) return 1; command_print_tags(tags, "Tag", tag); free(tags); return 0; } static int command_tags_getRelated(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; char *tag = argv[1]; tags = flickcurl_tags_getRelated(fc, tag); if(!tags) return 1; command_print_tags(tags, "Related to Tag", tag); free(tags); return 0; } static int command_urls_getGroup(flickcurl* fc, int argc, char *argv[]) { char* nsid = NULL; char* url = argv[1]; nsid = flickcurl_urls_getGroup(fc, url); if(nsid) fprintf(stdout, "%s: NSID %s for group profile/photo URL %s\n", program, nsid, url); return (nsid == NULL); } static int command_urls_getUserPhotos(flickcurl* fc, int argc, char *argv[]) { char* url = NULL; char* user = argv[1]; url = flickcurl_urls_getUserPhotos(fc, user); if(url) fprintf(stdout, "%s: photo URL %s for user %s\n", program, url, user); return (url == NULL); } static int command_urls_getUserProfile(flickcurl* fc, int argc, char *argv[]) { char* url = NULL; char* user = argv[1]; url = flickcurl_urls_getUserProfile(fc, user); if(url) fprintf(stdout, "%s: photo URL %s for user %s\n", program, url, user); return (url == NULL); } static int command_urls_lookupGroup(flickcurl* fc, int argc, char *argv[]) { char* nsid = NULL; char* url = argv[1]; nsid = flickcurl_urls_lookupGroup(fc, url); if(nsid) fprintf(stdout, "%s: NSID %s for group profile/photo URL %s\n", program, nsid, url); return (url == NULL); } static int command_tags_getHotList(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; char *period = NULL; int count= -1; if(argv[1]) { period = argv[1]; if(argv[2]) count = atoi(argv[2]); } tags = flickcurl_tags_getHotList(fc, period, count); if(!tags) return 1; command_print_tags(tags, "Hot tags for period", (period ? period : "day")); free(tags); return 0; } static int command_photos_addTags(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; const char *tags = argv[2]; return flickcurl_photos_addTags(fc, photo_id, tags); } static int command_photos_delete(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; return flickcurl_photos_delete(fc, photo_id); } static int command_photos_removeTag(flickcurl* fc, int argc, char *argv[]) { const char *tag_id = argv[1]; return flickcurl_photos_removeTag(fc, tag_id); } static int command_photos_setTags(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; const char *tags = argv[2]; return flickcurl_photos_setTags(fc, photo_id, tags); } static int command_reflection_getMethodInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_method* method; method = flickcurl_reflection_getMethodInfo(fc, argv[1]); if(method) { fprintf(stdout, "%s: Found method %s\n", program, method->name); fprintf(stdout, " Needs Login? %s\n", (method->needslogin? "yes" : "no")); fprintf(stdout, " Description: %s\n", method->description); fprintf(stdout, " Response: '%s'\n", method->response); fprintf(stdout, " Explanation of Response: %s\n", method->explanation ? method->explanation : "(None)"); if(method->args_count) { int i; fprintf(stdout, "%s: %d argument%s:\n", program, method->args_count, ((method->args_count != 1) ? "s" : "")); for(i = 0; method->args[i]; i++) { flickcurl_arg* arg = method->args[i]; fprintf(stdout, "%d) argument '%s' %s description: '%s'\n", i, arg->name, (arg->optional? "" : "(required)"), arg->description); } } else fprintf(stdout, "%s: No arguments\n", program); flickcurl_free_method(method); } return (method == NULL); } static int command_reflection_getMethods(flickcurl* fc, int argc, char *argv[]) { char** methods; methods = flickcurl_reflection_getMethods(fc); if(methods) { int i; fprintf(stdout, "%s: Found methods:\n", program); for(i = 0; methods[i]; i++) printf("%d) %s\n", i, methods[i]); for(i = 0; methods[i]; i++) free(methods[i]); free(methods); } return (methods == NULL); } static int command_photos_comments_addComment(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; const char *comment_text = argv[2]; char* id; id = flickcurl_photos_comments_addComment(fc, photo_id, comment_text); if(id) { fprintf(stdout, "%s: Added comment '%s' to photo %s giving comment ID %s\n", program, photo_id, comment_text, id); } return (id == NULL); } static int command_photos_comments_deleteComment(flickcurl* fc, int argc, char *argv[]) { const char *comment_id = argv[1]; return flickcurl_photos_comments_deleteComment(fc, comment_id); } static int command_photos_comments_editComment(flickcurl* fc, int argc, char *argv[]) { const char *comment_id = argv[1]; const char *comment_text = argv[2]; return flickcurl_photos_comments_editComment(fc, comment_id, comment_text); } static void command_print_comments(flickcurl_comment** comments, const char* label, const char* value) { int i; if(label) fprintf(stdout, "%s: %s %s comments\n", program, label, (value ? value : "(none)")); for(i = 0; comments[i]; i++) { flickcurl_comment* comment_object = comments[i]; fprintf(stdout, "%d) ID %s author %s authorname %s datecreate %d permalink %s text '%s'\n", i, comment_object->id, comment_object->author, comment_object->authorname, comment_object->datecreate, comment_object->permalink, comment_object->text); } } static int command_photos_comments_getList(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; flickcurl_comment** comments; comments = flickcurl_photos_comments_getList(fc, photo_id); if(!comments) return 1; command_print_comments(comments, "Photo ID", photo_id); flickcurl_free_comments(comments); return 0; } static int command_photosets_comments_addComment(flickcurl* fc, int argc, char *argv[]) { const char *photoset_id = argv[1]; const char *comment_text = argv[2]; char* id; id = flickcurl_photosets_comments_addComment(fc, photoset_id, comment_text); if(id) { fprintf(stdout, "%s: Added comment '%s' to photoset %s giving comment ID %s\n", program, photoset_id, comment_text, id); free(id); } return (id == NULL); } static int command_photosets_comments_deleteComment(flickcurl* fc, int argc, char *argv[]) { const char *comment_id = argv[1]; return flickcurl_photosets_comments_deleteComment(fc, comment_id); } static int command_photosets_comments_editComment(flickcurl* fc, int argc, char *argv[]) { const char *comment_id = argv[1]; const char *comment_text = argv[2]; return flickcurl_photosets_comments_editComment(fc, comment_id, comment_text); } static int command_photosets_comments_getList(flickcurl* fc, int argc, char *argv[]) { const char *photoset_id = argv[1]; flickcurl_comment** comments; comments = flickcurl_photosets_comments_getList(fc, photoset_id); if(!comments) return 1; command_print_comments(comments, "Photoset ID", photoset_id); flickcurl_free_comments(comments); return 0; } static void print_upload_status(FILE* handle, flickcurl_upload_status* status, const char* label) { if(label) fprintf(handle, "%s: %s status\n", program, label); if(status->photoid) fprintf(handle, " Photo ID: %s\n", status->photoid); if(status->secret) fprintf(handle, " Secret: %s\n", status->secret); if(status->originalsecret) fprintf(handle, " Original Secret: %s\n", status->originalsecret); if(status->ticketid) fprintf(handle, " Ticket ID: %s\n", status->ticketid); } static const char* yn_strings[2] = {"no", "yes"}; static const char* yesno(int v) { return yn_strings[(v ? 1 : 0)]; } static void print_upload_params(FILE* handle, flickcurl_upload_params* params, const char* label) { if(label) fprintf(handle, "%s: %s\n", program, label); fprintf(handle, " File: %s\n", params->photo_file); if(params->title) fprintf(handle, " Title: '%s'\n", params->title); else fprintf(handle, " Title: none\n"); if(params->description) fprintf(handle, " Description: '%s'\n", params->description); else fprintf(handle, " Description: none\n"); fprintf(handle, " Tags: %s\n", (params->tags ? params->tags : "")); fprintf(handle, " Viewable by Public: %s Friends: %s Family: %s\n", yesno(params->is_public), yesno(params->is_friend), yesno(params->is_family)); fprintf(handle, " Safety level: %s (%d)\n", flickcurl_get_safety_level_label(params->safety_level), params->safety_level); fprintf(handle, " Content type: %s (%d)\n", flickcurl_get_content_type_label(params->content_type), params->content_type); fprintf(handle, " Hidden: %s (%d)\n", flickcurl_get_hidden_label(params->hidden), params->hidden); } static int command_upload(flickcurl* fc, int argc, char *argv[]) { char *tags_string = NULL; flickcurl_upload_status* status = NULL; int usage = 0; flickcurl_upload_params params; memset(¶ms, '\0', sizeof(flickcurl_upload_params)); params.safety_level = 1; /* default safe */ params.content_type = 1; /* default photo */ params.hidden = 1; /* default public */ argv++; argc--; params.photo_file = argv[0]; if(access((const char*)params.photo_file, R_OK)) { fprintf(stderr, "%s: Failed to read image filename '%s': %s\n", program, params.photo_file, strerror(errno)); status = NULL; goto tidy; } argv++; argc--; while(!usage && argc) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "description")) { params.description = argv[0]; argv++; argc--; } else if(!strcmp(field, "title")) { params.title = argv[0]; argv++; argc--; } else if(!strcmp(field, "safety_level")) { params.safety_level = flickcurl_get_safety_level_from_string(argv[0]); argv++; argc--; } else if(!strcmp(field, "content_type")) { params.content_type = flickcurl_get_content_type_from_string(argv[0]); argv++; argc--; } else if(!strcmp(field, "hidden")) { params.hidden = flickcurl_get_hidden_from_string(argv[0]); argv++; argc--; } else if(!strcmp(field, "friend")) { params.is_friend = 1; } else if(!strcmp(field, "family")) { params.is_family = 1; } else if(!strcmp(field, "public")) { params.is_public = 1; } else if(!strcmp(field, "tags")) { size_t tags_len = 0; int i; char *p; /* tags absorb all remaining parameters */ for(i = 0; i 1) print_upload_params(stdout, ¶ms, "Photo upload"); status = flickcurl_photos_upload_params(fc, ¶ms); if(status) { print_upload_status(stdout, status, "Photo upload"); flickcurl_free_upload_status(status); } tidy: if(params.tags) free((char*)params.tags); return (status == NULL); } static int command_replace(flickcurl* fc, int argc, char *argv[]) { const char *file = argv[1]; const char *photo_id = argv[2]; int async = 0; flickcurl_upload_status* status = NULL; if(access((const char*)file, R_OK)) { fprintf(stderr, "%s: Failed to read image filename '%s': %s\n", program, file, strerror(errno)); status = NULL; goto tidy; } if(argc > 3 && !strcmp(argv[3], "async")) async = 1; status = flickcurl_photos_replace(fc, file, photo_id, async); if(status) { print_upload_status(stdout, status, "Photo replace"); flickcurl_free_upload_status(status); } tidy: return (status == NULL); } static int command_photos_setContentType(flickcurl* fc, int argc, char *argv[]) { const char* photo_id = argv[1]; const char* content_type_str = argv[2]; int content_type; content_type = flickcurl_get_content_type_from_string(content_type_str); if(content_type < 0) { fprintf(stderr, "%s: Bad content type '%s'\n", program, content_type_str); return 1; } content_type_str = flickcurl_get_content_type_label(content_type); if(verbose) fprintf(stdout, "%s: Setting photo %s to content type %d (%s)\n", program, photo_id, content_type, content_type_str); return flickcurl_photos_setContentType(fc, photo_id, content_type); } static int command_photos_setDates(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; int date_posted= -1; int date_taken= -1; int date_taken_granularity= -1; date_posted = curl_getdate(argv[2], NULL); date_taken = curl_getdate(argv[3], NULL); date_taken_granularity = atoi(argv[4]); return flickcurl_photos_setDates(fc, photo_id, date_posted, date_taken, date_taken_granularity); } static int command_photos_setMeta(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; const char* title = argv[2]; const char* description = argv[3]; return flickcurl_photos_setMeta(fc, photo_id, title, description); } static int parse_bool_param(const char* param) { char *eptr; int b; if(!param || (!strcmp(param, "false") || !strcmp(param, "no"))) return 0; if(!strcmp(param, "true") || !strcmp(param, "yes")) return 1; eptr = NULL; b = (int)strtol(param, &eptr, 10); if(*eptr) return 0; return (b != 0); } static int command_photos_setPerms(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; int is_public = parse_bool_param(argv[2]); int is_friend = parse_bool_param(argv[3]); int is_family = parse_bool_param(argv[4]); int perm_comment = atoi(argv[5]); int perm_addmeta = atoi(argv[6]); flickcurl_perms perms; memset(&perms, '\0', sizeof(flickcurl_perms)); perms.is_public = is_public; perms.is_friend = is_friend; perms.is_family = is_family; perms.perm_comment = perm_comment; perms.perm_addmeta = perm_addmeta; return flickcurl_photos_setPerms(fc, photo_id, &perms); } static int command_photos_setSafetyLevel(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; const char* safety_level_str = argv[2]; int hidden = parse_bool_param(argv[3]); int safety_level; safety_level = flickcurl_get_safety_level_from_string(safety_level_str); if(safety_level < 0) { fprintf(stderr, "%s: Bad safety level '%s'\n", program, safety_level_str); return 1; } safety_level_str = flickcurl_get_safety_level_label(safety_level); if(verbose) fprintf(stdout, "%s: Setting photo %s safety level to %d (%s), hidden %d\n", program, photo_id, safety_level, safety_level_str, hidden); return flickcurl_photos_setSafetyLevel(fc, photo_id, safety_level, hidden); } static void command_print_perms(flickcurl_perms* perms, int show_comment_metadata) { static const char* perms_labels[4] = {"nobody", "friends and family", "contacts", "everybody" }; fprintf(stdout, "view perms: public: %s contact: %s friend: %s family: %s\n", yesno(perms->is_public), yesno(perms->is_contact), yesno(perms->is_friend), yesno(perms->is_family)); #define PERM_LABEL(x) (((x) >= 0 && (x) <= 3) ? perms_labels[(x)] : "?") if(show_comment_metadata) fprintf(stdout, "add comment: %s\nadd metadata: %s\n", PERM_LABEL(perms->perm_comment), PERM_LABEL(perms->perm_addmeta)); } static int command_photos_getPerms(flickcurl* fc, int argc, char *argv[]) { const char *photo_id = argv[1]; flickcurl_perms* perms; perms = flickcurl_photos_getPerms(fc, photo_id); if(!perms) return 1; fprintf(stdout, "%s: Photo ID %s permissions\n", program, photo_id); command_print_perms(perms, 1); flickcurl_free_perms(perms); return 0; } static int command_print_photos_list(flickcurl* fc, flickcurl_photos_list* photos_list, FILE* fh, const char* label) { int rc = 0; int i; if(photos_list->photos) { fprintf(stdout, "%s: %s returned %d photos out of %d, page %d per-page %d\n", program, label, photos_list->photos_count, photos_list->total_count, photos_list->page, photos_list->per_page); for(i = 0; photos_list->photos[i]; i++) { fprintf(stdout, "%s: %s photo %d\n", program, label, i); command_print_photo(photos_list->photos[i]); } } else if(photos_list->content) { size_t write_count; if(verbose) fprintf(stdout, "%s: %s returned %d bytes of %s content\n", program, label, (int)photos_list->content_length, photos_list->format); write_count = fwrite(photos_list->content, 1, photos_list->content_length, fh); if(write_count < photos_list->content_length) { fprintf(stderr, "%s: writing to %s failed\n", program, output_filename); rc = 1; } } else { fprintf(stderr, "%s: %s returned neither photos nor raw content\n", program, label); rc = 1; } return rc; } static int command_photos_getContactsPhotos(flickcurl* fc, int argc, char *argv[]) { int contact_count = 10; int just_friends = 0; int single_photo = 1; int include_self = 0; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >1) { list_params.extras = argv[1]; if(argc >2) list_params.format = argv[2]; } photos_list = flickcurl_photos_getContactsPhotos_params(fc, contact_count, just_friends, single_photo, include_self, &list_params); if(!photos_list) return 1; rc = command_print_photos_list(fc, photos_list, output_fh, "Contact photo"); flickcurl_free_photos_list(photos_list); return rc; } static int parse_page_param(const char* param) { char *eptr; int i; if(!param || *param == '-') return -1; eptr = NULL; i = (int)strtol(param, &eptr, 10); if(*eptr) return -1; return i; } static int command_photos_search(flickcurl* fc, int argc, char *argv[]) { char *tags_string = NULL; int usage = 0; flickcurl_photos_list_params list_params; flickcurl_search_params params; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params_init(&list_params); flickcurl_search_params_init(¶ms); argv++; argc--; while(!usage && argc) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "user")) { params.user_id = argv[0]; argv++; argc--; } else if(!strcmp(field, "tag-mode")) { /* "any" or "all" */ params.tag_mode = argv[0]; argv++; argc--; } else if(!strcmp(field, "text")) { params.text = argv[0]; argv++; argc--; } else if(!strcmp(field, "min-upload-date")) { /* timestamp */ params.min_upload_date = curl_getdate(argv[0], NULL); argv++; argc--; } else if(!strcmp(field, "max-upload-date")) { /* timestamp */ params.max_upload_date = curl_getdate(argv[0], NULL); argv++; argc--; } else if(!strcmp(field, "min-taken-date")) { /* MYSQL datetime */ params.min_taken_date = argv[0]; argv++; argc--; } else if(!strcmp(field, "max-taken-date")) { /* MYSQL datetime */ params.max_taken_date = argv[0]; argv++; argc--; } else if(!strcmp(field, "license")) { params.license = argv[0]; argv++; argc--; } else if(!strcmp(field, "sort")) { /* date-posted-asc, date-posted-desc (default), date-taken-asc, * date-taken-desc, interestingness-desc, interestingness-asc, * and relevance */ params.sort = argv[0]; argv++; argc--; } else if(!strcmp(field, "privacy")) { params.privacy_filter = argv[0]; argv++; argc--; } else if(!strcmp(field, "bbox")) { /* "a,b,c,d" */ params.bbox = argv[0]; argv++; argc--; } else if(!strcmp(field, "accuracy")) { /* int 1-16 */ params.accuracy = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "safe-search")) { /* int Safe search setting: 1 safe, 2 moderate, 3 restricted. */ params.safe_search = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "type")) { /* int Content Type setting: 1 for photos only, 2 for screenshots * only, 3 for 'other' only, 4 for all types. */ params.content_type = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "machine-tags")) { params.machine_tags = argv[0]; argv++; argc--; } else if(!strcmp(field, "machine-tag-mode")) { /* any (default) or all */ params.machine_tag_mode = argv[0]; argv++; argc--; } else if(!strcmp(field, "group-id")) { params.group_id = argv[0]; argv++; argc--; } else if(!strcmp(field, "extras")) { list_params.extras = argv[0]; argv++; argc--; } else if(!strcmp(field, "per-page")) { /* int: default 100, max 500 */ list_params.per_page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "page")) { /* int: default 1 */ list_params.page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "place-id")) { params.place_id = argv[0]; argv++; argc--; } else if(!strcmp(field, "media")) { /* "all" (default if missing) or "photos" or "video" */ params.media = argv[0]; argv++; argc--; } else if(!strcmp(field, "has-geo")) { params.has_geo = 1; } else if(!strcmp(field, "lat")) { /* double: */ params.lat = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "lon")) { /* double: */ params.lon = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "radius")) { /* double: */ params.radius = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "radius-units")) { params.radius_units = argv[0]; argv++; argc--; } else if(!strcmp(field, "contacts")) { params.contacts = argv[0]; argv++; argc--; } else if(!strcmp(field, "format")) { list_params.format = argv[0]; argv++; argc--; } else if(!strcmp(field, "woeid")) { /* int: */ params.woe_id = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "geo-context")) { /* int: 0 (not defined) 1 (indoors) 2(outdoors) default 0 */ params.geo_context = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "is-commons")) { params.is_commons = 1; } else if(!strcmp(field, "in-gallery")) { params.in_gallery = 1; } else if(!strcmp(field, "tags")) { size_t tags_len = 0; int j; char *p; /* tags absorb all remaining parameters */ for(j = 0; j2) { list_params.per_page = parse_page_param(argv[2]); if(argc >3) { list_params.page = parse_page_param(argv[3]); if(argc >4) { list_params.format = argv[4]; } } } photos_list = flickcurl_people_getPublicPhotos_params(fc, user_id, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: User %s photos (per_page %d page %d):\n", program, user_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_groups_pools_add(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *group_id = argv[2]; return flickcurl_groups_pools_add(fc, photo_id, group_id); } static void command_print_group(flickcurl_group* g) { fprintf(stdout, "group: nsid %s name '%s'\n" " description '%s' lang '%s'\n" " rules '%s'\n" " user is? admin %d moderator %d member %d\n" " pool moderated %d privacy %d\n" " iconserver %d iconfarm %d\n" " photos %d members %d\n" " throttle count %d mode '%s' remaining %d\n" " pool count %d topic count %d\n" " restrictions photos %d videos %d images %d screens %d art %d\n" " restrictions safe %d moderate %d restricted %d\n" " restrictions has geo %d\n", g->nsid, g->name, (g->description ? g->description : ""), (g->lang ? g->lang : ""), (g->rules ? g->rules: ""), g->is_admin, g->is_moderator, g->is_member, g->is_pool_moderated, g->privacy, g->iconserver, g->iconfarm, g->photos, g->members, g->throttle_count, (g->throttle_mode ? g->throttle_mode : ""), g->throttle_remaining, g->pool_count, g->topic_count, g->photos_ok, g->videos_ok, g->images_ok, g->screens_ok, g->art_ok, g->safe_ok, g->moderate_ok, g->restricted_ok, g->has_geo ); } static int command_groups_pools_getGroups(flickcurl* fc, int argc, char *argv[]) { int per_page = 10; int page = 0; flickcurl_group** groups = NULL; if(argc >1) { per_page = parse_page_param(argv[1]); if(argc >2){ page = parse_page_param(argv[2]); } } groups = flickcurl_groups_pools_getGroups(fc, page, per_page); if(groups) { int i; if(verbose) fprintf(stdout, "%s: Groups (page %d, per page %d)\n", program, page, per_page); for(i = 0; groups[i]; i++) command_print_group(groups[i]); flickcurl_free_groups(groups); } return (groups == NULL); } static int command_groups_pools_getPhotos(flickcurl* fc, int argc, char *argv[]) { char *group_id = argv[1]; char *tags = NULL; char *user_id = NULL; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >2) { list_params.per_page = parse_page_param(argv[2]); if(argc >3) { list_params.page = parse_page_param(argv[3]); if(argc >4) { list_params.format = argv[4]; } } } photos_list = flickcurl_groups_pools_getPhotos_params(fc, group_id, tags, user_id, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: Group %s photos (per_page %d page %d):\n", program, group_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_groups_pools_remove(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *group_id = argv[2]; return flickcurl_groups_pools_remove(fc, photo_id, group_id); } static int command_photos_getContactsPublicPhotos(flickcurl* fc, int argc, char *argv[]) { char* user_id = argv[1]; int contact_count = 10; int just_friends = 0; int single_photo = 1; int include_self = 0; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >2) { list_params.format = argv[2]; } photos_list = flickcurl_photos_getContactsPublicPhotos_params(fc, user_id, contact_count, just_friends, single_photo, include_self, &list_params); if(!photos_list) return 1; rc = command_print_photos_list(fc, photos_list, output_fh, "Contact Public Photo"); flickcurl_free_photos_list(photos_list); return rc; } static void command_print_exif(flickcurl_exif* e) { fprintf(stdout, "tagspace %s (%d) tag %d label '%s' raw '%s' clean '%s'\n", e->tagspace, e->tagspaceid, e->tag, e->label, e->raw, e->clean); } static int command_photos_getExif(flickcurl* fc, int argc, char *argv[]) { const char* photo_id = argv[1]; const char* secret = NULL; flickcurl_exif** exifs; int i; exifs = flickcurl_photos_getExif(fc, photo_id, secret); if(!exifs) return 1; for(i = 0; exifs[i]; i++) command_print_exif(exifs[i]); flickcurl_free_exifs(exifs); return 0; } static int command_photos_getFavorites(flickcurl* fc, int argc, char *argv[]) { const char* photo_id = argv[1]; int i; int per_page = 10; int page = 0; flickcurl_person** persons; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } persons = flickcurl_photos_getFavorites(fc, photo_id, page, per_page); if(!persons) return 1; for(i = 0; persons[i]; i++) command_print_person(persons[i]); flickcurl_free_persons(persons); return 0; } typedef flickcurl_photos_list* (*photoslist_fn)(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params); static int command_photoslist(flickcurl* fc, int argc, char *argv[], photoslist_fn api_fn, const char* label) { int min_upload_date= -1; int max_upload_date= -1; char* min_taken_date= NULL; char* max_taken_date= NULL; int privacy_filter= -1; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >1) { list_params.per_page = parse_page_param(argv[1]); if(argc >2) { list_params.page = parse_page_param(argv[2]); if(argc >3) { list_params.format = argv[3]; } } } photos_list = api_fn(fc, min_upload_date, max_upload_date, min_taken_date, max_taken_date, privacy_filter, &list_params); if(!photos_list) return 1; rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_photos_getNotInSet(flickcurl* fc, int argc, char *argv[]) { return command_photoslist(fc, argc, argv, flickcurl_photos_getNotInSet_params, "Photo not in set"); } static int command_photos_getSizes(flickcurl* fc, int argc, char *argv[]) { flickcurl_size** sizes = NULL; char* photo_id = argv[1]; int i; sizes = flickcurl_photos_getSizes(fc, photo_id); if(!sizes) return 1; if(verbose) fprintf(stdout, "%s: Sizes for photo/video %s\n", program, photo_id); for(i = 0; sizes[i]; i++) { fprintf(stdout, "%d: type '%s' label '%s' width %d height %d\n source %s\n url %s\n", i, sizes[i]->media, sizes[i]->label, sizes[i]->width, sizes[i]->height, sizes[i]->source, sizes[i]->url); } flickcurl_free_sizes(sizes); return 0; } static int command_photos_getRecent(flickcurl* fc, int argc, char *argv[]) { flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >1) { list_params.per_page = parse_page_param(argv[1]); if(argc >2) { list_params.page = parse_page_param(argv[2]); if(argc >3) { list_params.format = argv[3]; } } } photos_list = flickcurl_photos_getRecent_params(fc, &list_params); if(!photos_list) return 1; rc = command_print_photos_list(fc, photos_list, output_fh, "Recent Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_photos_getUntagged(flickcurl* fc, int argc, char *argv[]) { return command_photoslist(fc, argc, argv, flickcurl_photos_getUntagged_params, "Untagged photo"); } static int command_photos_getWithGeoData(flickcurl* fc, int argc, char *argv[]) { return command_photoslist(fc, argc, argv, flickcurl_photos_getWithGeoData_params, "Photo with geo data"); } static int command_photos_getWithoutGeoData(flickcurl* fc, int argc, char *argv[]) { return command_photoslist(fc, argc, argv, flickcurl_photos_getWithoutGeoData_params, "Photo without geo data"); } static int command_photos_recentlyUpdated(flickcurl* fc, int argc, char *argv[]) { int min_date= -1; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); min_date = atoi(argv[1]); if(argc >2) { list_params.per_page = parse_page_param(argv[2]); if(argc >3) { list_params.page = parse_page_param(argv[3]); if(argc >4) { list_params.format = argv[4]; } } } photos_list = flickcurl_photos_recentlyUpdated_params(fc, min_date, &list_params); if(!photos_list) return 1; rc = command_print_photos_list(fc, photos_list, output_fh, "Recently Updated Photo"); flickcurl_free_photos_list(photos_list); return rc; } static void command_print_photoset(flickcurl_photoset* photoset) { fprintf(stdout, "%s: Found photoset with ID %s primary photo: '%s' secret: %s server: %d farm: %d photos count: %d title: '%s' description: '%s'\n", program, photoset->id, photoset->primary, photoset->secret, photoset->server, photoset->farm, photoset->photos_count, photoset->title, (photoset->description ? photoset->description : "(No description)")); } static int command_photosets_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_photoset* photoset = NULL; const char* photoset_id = argv[1]; photoset = flickcurl_photosets_getInfo(fc, photoset_id); if(photoset) { command_print_photoset(photoset); flickcurl_free_photoset(photoset); } return (photoset == NULL); } static int command_photosets_getList(flickcurl* fc, int argc, char *argv[]) { flickcurl_photoset** photoset_list = NULL; const char* user_id = argv[1]; int i; photoset_list = flickcurl_photosets_getList(fc, user_id); if(!photoset_list) return 1; for(i = 0; photoset_list[i]; i++) { fprintf(stdout, "%s: Photoset %d\n", program, i); command_print_photoset(photoset_list[i]); } flickcurl_free_photosets(photoset_list); return 0; } static int command_photosets_getPhotos(flickcurl* fc, int argc, char *argv[]) { const char* photoset_id = argv[1]; int privacy_filter= -1; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc > 2) { list_params.extras = argv[2]; if(argc > 3) { privacy_filter = atoi(argv[3]); if(argc >4) { list_params.per_page = parse_page_param(argv[4]); if(argc >5) { list_params.page = parse_page_param(argv[5]); if(argc >6) { list_params.format = argv[6]; } } } } } photos_list = flickcurl_photosets_getPhotos_params(fc, photoset_id, privacy_filter, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: Photoset %s photos (per_page %d page %d):\n", program, photoset_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_photosets_addPhoto(flickcurl* fc, int argc, char *argv[]) { return flickcurl_photosets_addPhoto(fc, argv[1], argv[2]); } static int command_photosets_create(flickcurl* fc, int argc, char *argv[]) { const char* title = argv[1]; const char* description = argv[2]; const char* primary_photo_id = argv[3]; char* url = NULL; char* id; id = flickcurl_photosets_create(fc, title, description, primary_photo_id, &url); if(!id) return 1; fprintf(stdout, "%s: Photoset %s created with URL %s\n", program, id, url); free(url); free(id); return 0; } static int command_photosets_delete(flickcurl* fc, int argc, char *argv[]) { return flickcurl_photosets_delete(fc, argv[1]); } static int command_photosets_editMeta(flickcurl* fc, int argc, char *argv[]) { return flickcurl_photosets_editMeta(fc, argv[1], argv[2], argv[3]); } static int command_photosets_editPhotos(flickcurl* fc, int argc, char *argv[]) { const char* photoset_id = argv[1]; const char* primary_photo_id = argv[2]; char** photo_ids = flickcurl_array_split(argv[3], ','); int rc; rc = flickcurl_photosets_editPhotos(fc, photoset_id, primary_photo_id, (const char**)photo_ids); flickcurl_array_free(photo_ids); return rc; } static int command_photosets_orderSets(flickcurl* fc, int argc, char *argv[]) { char** photoset_ids = flickcurl_array_split(argv[1], ','); int rc; rc = flickcurl_photosets_orderSets(fc, (const char**)photoset_ids); flickcurl_array_free(photoset_ids); return rc; } static int command_photosets_removePhoto(flickcurl* fc, int argc, char *argv[]) { return flickcurl_photosets_removePhoto(fc, argv[1], argv[2]); } static int command_photos_upload_checkTickets(flickcurl* fc, int argc, char *argv[]) { flickcurl_ticket** tickets = NULL; char** tickets_ids = flickcurl_array_split(argv[1], ','); tickets = flickcurl_photos_upload_checkTickets(fc, (const char**)tickets_ids); if(tickets) { int i; for(i = 0; tickets[i]; i++) { fprintf(stdout, "%s: %d) ticket ID %d photoID %d complete %d invalid %d\n", program, i, tickets[i]->id, tickets[i]->photoid, tickets[i]->complete, tickets[i]->invalid); } flickcurl_free_tickets(tickets); } if(tickets_ids) flickcurl_array_free(tickets_ids); return (tickets != NULL); } static void command_print_category(flickcurl_category* c) { fprintf(stdout, "category: id %s name '%s' path '%s' count %d\n", c->id, c->name, c->path, c->count); if(c->categories) { int i; for(i = 0; c->categories[i]; i++) { fprintf(stdout, "%s: Category %d\n", program, i); command_print_category(c->categories[i]); } } if(c->groups) { int i; for(i = 0; c->groups[i]; i++) { fprintf(stdout, "%s: Group %d\n", program, i); command_print_group(c->groups[i]); } } } static int command_groups_browse(flickcurl* fc, int argc, char *argv[]) { int cat_id= -1; flickcurl_category* category = NULL; if(argv[1]) cat_id = atoi(argv[1]); category = flickcurl_groups_browse(fc, cat_id); if(category) { command_print_category(category); flickcurl_free_category(category); } return (category == NULL); } static int command_groups_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_group* group = NULL; const char* group_id = argv[1]; const char* lang = argv[2]; group = flickcurl_groups_getInfo(fc, group_id, lang); if(group) { command_print_group(group); flickcurl_free_group(group); } return (group == NULL); } static int command_groups_search(flickcurl* fc, int argc, char *argv[]) { const char* text = argv[1]; int per_page= -1; int page= -1; flickcurl_group** groups = NULL; int i; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } groups = flickcurl_groups_search(fc, text, per_page, page); if(!groups) return 1; for(i = 0; groups[i]; i++) { fprintf(stdout, "%s: Group %d\n", program, i); command_print_group(groups[i]); } flickcurl_free_groups(groups); return 0; } static int command_people_getPublicGroups(flickcurl* fc, int argc, char *argv[]) { char* user_id = argv[1]; flickcurl_group** groups = NULL; int i; groups = flickcurl_people_getPublicGroups(fc, user_id); if(!groups) return 1; for(i = 0; groups[i]; i++) { fprintf(stdout, "%s: Group %d\n", program, i); command_print_group(groups[i]); } flickcurl_free_groups(groups); return 0; } static int command_people_getUploadStatus(flickcurl* fc, int argc, char *argv[]) { flickcurl_user_upload_status* u; u = flickcurl_people_getUploadStatus(fc); if(!u) return 1; fprintf(stdout, "user upload status for %s:\n" " bandwidth max %d/%d K used %d/%d K remaining %d/%d K\n" " max filesize %d/%d K sets created %d remaining %s\n", u->username, u->bandwidth_maxbytes, u->bandwidth_maxkb, u->bandwidth_usedbytes, u->bandwidth_usedkb, u->bandwidth_remainingbytes, u->bandwidth_remainingkb, u->filesize_maxbytes, u->filesize_maxkb, u->sets_created, (u->sets_remaining ? u->sets_remaining : "")); flickcurl_free_user_upload_status(u); return 0; } static int command_photos_transform_rotate(flickcurl* fc, int argc, char *argv[]) { const char* photo_id = argv[1]; int degrees = atoi(argv[2]); return flickcurl_photos_transform_rotate(fc, photo_id, degrees); } static int command_interestingness_getList(flickcurl* fc, int argc, char *argv[]) { int usage = 0; char* date = NULL; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); argv++; argc--; while(!usage && argc) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "date")) { date = argv[0]; argv++; argc--; } else if(!strcmp(field, "extras")) { list_params.extras = argv[0]; argv++; argc--; } else if(!strcmp(field, "per-page")) { /* int: default 100, max 500 */ list_params.per_page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "page")) { /* int: default 1 */ list_params.page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "format")) { list_params.format = argv[0]; argv++; argc--; } else { fprintf(stderr, "%s: Unknown parameter: '%s'\n", program, field); usage = 1; } } if(usage) { photos_list = NULL; goto tidy; } photos_list = flickcurl_interestingness_getList_params(fc, date, &list_params); if(!photos_list) return 1; rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); if(rc) photos_list = NULL; tidy: return (photos_list == NULL); } static int command_places_resolvePlaceId(flickcurl* fc, int argc, char *argv[]) { flickcurl_place* place = NULL; char* place_id = argv[1]; place = flickcurl_places_resolvePlaceId(fc, place_id); if(place) { command_print_place(place, NULL, NULL, 1); flickcurl_free_place(place); } return (place == NULL); } static int command_places_resolvePlaceURL(flickcurl* fc, int argc, char *argv[]) { flickcurl_place* place = NULL; char* place_url = argv[1]; place = flickcurl_places_resolvePlaceURL(fc, place_url); if(place) { command_print_place(place, NULL, NULL, 1); flickcurl_free_place(place); } return (place == NULL); } static int command_favorites_add(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; return flickcurl_favorites_add(fc, photo_id); } static int command_favorites_getList(flickcurl* fc, int argc, char *argv[]) { char *user_id = argv[1]; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; flickcurl_photos_list_params_init(&list_params); if(argc >2) { list_params.per_page = parse_page_param(argv[2]); if(argc >3) { list_params.page = parse_page_param(argv[3]); if(argc >4) list_params.format = argv[4]; } } photos_list = flickcurl_favorites_getList_params(fc, user_id, &list_params); if(!photos_list) { fprintf(stderr, "%s: Getting favorites failed\n", program); } else { int rc; if(verbose) fprintf(stdout, "%s: User %s has %d favorite photos (per_page %d page %d):\n", program, user_id, photos_list->photos_count, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Favorite photos"); flickcurl_free_photos_list(photos_list); if(rc) photos_list = NULL; } return (photos_list == NULL); } static int command_favorites_getPublicList(flickcurl* fc, int argc, char *argv[]) { char *user_id = argv[1]; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >2) { list_params.per_page = parse_page_param(argv[2]); if(argc >3) { list_params.page = parse_page_param(argv[3]); if(argc >4) { list_params.format = argv[4]; } } } photos_list = flickcurl_favorites_getPublicList_params(fc, user_id, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: User %s public favorite photos (per_page %d page %d):\n", program, user_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_favorites_remove(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; return flickcurl_favorites_remove(fc, photo_id); } static int command_blogs_getList(flickcurl* fc, int argc, char *argv[]) { flickcurl_blog** blogs = NULL; blogs = flickcurl_blogs_getList(fc); if(blogs) { int i; for(i = 0; blogs[i]; i++) { fprintf(stdout, "Blog %d) id %s name '%s' needs password '%d' url '%s'\n", i, blogs[i]->id, blogs[i]->name, blogs[i]->needs_password, blogs[i]->url); } flickcurl_free_blogs(blogs); } return (blogs == NULL); } static int command_blogs_postPhoto(flickcurl* fc, int argc, char *argv[]) { const char* blog_id = argv[1]; const char* photo_id = argv[2]; const char* title = argv[3]; const char* description = argv[4]; const char* blog_password = argv[5]; return flickcurl_blogs_postPhoto(fc, blog_id, photo_id, title, description, blog_password); } static void command_print_activity(flickcurl_activity* a) { fprintf(stdout, " type %s id %s owner %s name '%s' primary %s\n" " secret %s server %d farm %d\n" " comments %d old/new %d/%d notes old/new %d/%d\n" " views %d photos %d faves %d more %d\n" " title '%s'\n" , a->type, a->id, a->owner, a->owner_name, (a->primary ? a->primary : ""), a->secret, a->server, a->farm, a->comments, a->comments_old, a->comments_new, a->notes_old, a->notes_new, a->views, a->photos, a->faves, a->more, a->title); if(a->events) { int i; for(i = 0; a->events[i]; i++) { flickcurl_activity_event* ae = a->events[i]; fprintf(stdout, " activity event %i) type %s user %s username %s\n datetime %d\n value '%s'\n", i, ae->type, ae->user, ae->username, ae->date_added, ae->value); } } } static int command_activity_userComments(flickcurl* fc, int argc, char *argv[]) { int per_page = 10; int page = 0; flickcurl_activity** activities = NULL; int i; if(argc >1) { per_page = parse_page_param(argv[1]); if(argc >2) { page = parse_page_param(argv[2]); } } activities = flickcurl_activity_userComments(fc, per_page, page); if(!activities) return 1; if(verbose) fprintf(stdout, "%s: Comments on the caller's photos (per_page %d page %d):\n", program, per_page, page); for(i = 0; activities[i]; i++) { fprintf(stdout, "%s: Activity %d\n", program, i); command_print_activity(activities[i]); } flickcurl_free_activities(activities); return 0; } static int command_activity_userPhotos(flickcurl* fc, int argc, char *argv[]) { char* timeframe = argv[1]; int per_page = 10; int page = 0; flickcurl_activity** activities = NULL; int i; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } activities = flickcurl_activity_userPhotos(fc, timeframe, per_page, page); if(!activities) return 1; if(verbose) fprintf(stdout, "%s: Recent activity on the caller's photos (timeframe %s per_page %d page %d):\n", program, timeframe, per_page, page); for(i = 0; activities[i]; i++) { fprintf(stdout, "%s: Activity %d\n", program, i); command_print_activity(activities[i]); } flickcurl_free_activities(activities); return 0; } static int command_places_find(flickcurl* fc, int argc, char *argv[]) { flickcurl_place** places = NULL; char* query = argv[1]; places = flickcurl_places_find(fc, query); if(places) { int i; for(i = 0; places[i]; i++) { fprintf(stdout, "Place Result #%d\n", i); command_print_place(places[i], NULL, NULL, 1); } flickcurl_free_places(places); } return (places == NULL); } static int command_places_findByLatLon(flickcurl* fc, int argc, char *argv[]) { flickcurl_place* place = NULL; double lat = atof(argv[1]); double lon = atof(argv[2]); int accuracy = atoi(argv[3]); place = flickcurl_places_findByLatLon(fc, lat, lon, accuracy); if(place) { command_print_place(place, NULL, NULL, 1); flickcurl_free_place(place); } return (place == NULL); } static int command_prefs_getContentType(flickcurl* fc, int argc, char *argv[]) { int content_type; content_type = flickcurl_prefs_getContentType(fc); if(content_type) { fprintf(stdout, "%s: Content type preference is %d\n", program, content_type); } return (content_type <0); } static int command_prefs_getHidden(flickcurl* fc, int argc, char *argv[]) { int hidden; hidden = flickcurl_prefs_getHidden(fc); if(hidden >= 0) { fprintf(stdout, "%s: Hidden preference is %d\n", program, hidden); } return (hidden < 0); } static int command_prefs_getPrivacy(flickcurl* fc, int argc, char *argv[]) { int privacy; privacy = flickcurl_prefs_getPrivacy(fc); if(privacy >= 0) { fprintf(stdout, "%s: Privacy preference is %d\n", program, privacy); } return (privacy < 0); } static int command_prefs_getSafetyLevel(flickcurl* fc, int argc, char *argv[]) { int safety_level; safety_level = flickcurl_prefs_getSafetyLevel(fc); if(safety_level >= 0) { fprintf(stdout, "%s: Safety level preference is %d\n", program, safety_level); } return (safety_level < 0); } static int command_prefs_getGeoPerms(flickcurl* fc, int argc, char *argv[]) { int geo_perms; geo_perms = flickcurl_prefs_getGeoPerms(fc); if(geo_perms >= 0) { fprintf(stdout, "%s: Geographic information preference is %d\n", program, geo_perms); } return (geo_perms < 0); } static int command_tags_getClusters(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag_clusters* clusters; flickcurl_tag_cluster* cluster; const char *tag = argv[1]; int clusteri; clusters = flickcurl_tags_getClusters(fc, tag); if(!clusters) return 1; fprintf(stdout, "%s: Tag %s returned %d clusters\n", program, tag, clusters->count); for(clusteri = 0; (cluster = clusters->clusters[clusteri]); clusteri++) { const char* tag_name; int tagi; fprintf(stdout, "%s: Cluster #%d - %d tags\n", program, clusteri, cluster->count); for(tagi = 0; (tag_name = cluster->tags[tagi]); tagi++) fprintf(stdout, " %s\n", tag_name); } flickcurl_free_tag_clusters(clusters); return 0; } static int command_places_placesForUser(flickcurl* fc, int argc, char *argv[]) { flickcurl_place** places = NULL; int woe_id= -1; int threshold= -1; const char* place_id = NULL; flickcurl_place_type place_type; place_type = flickcurl_get_place_type_by_label(argv[1]); if(argc > 2) { if(strcmp(argv[2], "-")) woe_id = atoi(argv[2]); if(argc > 3) { place_id = argv[3]; if(argc > 4) { threshold = atoi(argv[4]); } } } places = flickcurl_places_placesForUser(fc, place_type, woe_id, place_id, threshold); if(places) { int i; for(i = 0; places[i]; i++) { fprintf(stdout, "Place Result #%d\n", i); command_print_place(places[i], NULL, NULL, 0); } flickcurl_free_places(places); } return (places == NULL); } static int command_places_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_place* place = NULL; const char* place_id = NULL; int woe_id = -1; if(strcmp(argv[1], "-")) place_id = argv[1]; if(argc > 2) { if(strcmp(argv[2], "-")) woe_id = atoi(argv[2]); } if(!place_id && !woe_id) return 1; place = flickcurl_places_getInfo2(fc, place_id, woe_id); if(place) { command_print_place(place, NULL, NULL, 1); flickcurl_free_place(place); } return (place == NULL); } static int command_places_getInfoByUrl(flickcurl* fc, int argc, char *argv[]) { flickcurl_place* place = NULL; const char* url = argv[1]; place = flickcurl_places_getInfoByUrl(fc, url); if(place) { command_print_place(place, NULL, NULL, 1); flickcurl_free_place(place); } return (place == NULL); } static int command_places_getChildrenWithPhotosPublic(flickcurl* fc, int argc, char *argv[]) { flickcurl_place** places = NULL; const char* place_id = NULL; int woe_id = -1; if(strcmp(argv[1], "-")) place_id = argv[1]; if(argc > 2) { if(strcmp(argv[2], "-")) woe_id = atoi(argv[2]); } if(!place_id && !woe_id) return 1; places = flickcurl_places_getChildrenWithPhotosPublic2(fc, place_id, woe_id); if(places) { int i; for(i = 0; places[i]; i++) { fprintf(stdout, "Place Result #%d\n", i); command_print_place(places[i], NULL, NULL, 0); } flickcurl_free_places(places); } return (places == NULL); } static int command_machinetags_getNamespaces(flickcurl* fc, int argc, char *argv[]) { const char* predicate = NULL; int per_page = 10; int page = 0; flickcurl_tag_namespace** tag_namespaces = NULL; if(argc >1) { predicate = argv[1]; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } } tag_namespaces = flickcurl_machinetags_getNamespaces(fc, predicate, per_page, page); if(tag_namespaces) { int i; for(i = 0; tag_namespaces[i]; i++) { flickcurl_tag_namespace *tn = tag_namespaces[i]; fprintf(stdout, "Namespace #%d: name %s usage %d predicates count %d\n", i, tn->name, tn->usage_count, tn->predicates_count); } flickcurl_free_tag_namespaces(tag_namespaces); } return (tag_namespaces != NULL); } static void command_print_predicate_values(flickcurl_tag_predicate_value **tag_pvs, const char* label) { int i; if(label) fprintf(stdout, "%s: %s\n", program, label); for(i = 0; tag_pvs[i]; i++) { flickcurl_tag_predicate_value* tpv = tag_pvs[i]; fprintf(stdout, " #%d) ", i); if(tpv->predicate) { fputs("predicate ", stdout); fputs(tpv->predicate, stdout); fputc(' ', stdout); } if(tpv->value) { fputs("value ", stdout); fputs(tpv->value, stdout); fputc(' ', stdout); } if(tpv->usage_count > 0) fprintf(stdout, "usage %d", tpv->usage_count); if(tpv->used_in_namespace_count > 0) fprintf(stdout, "used in %d namespaces", tpv->used_in_namespace_count); fputc('\n', stdout); } } static int command_machinetags_getPairs(flickcurl* fc, int argc, char *argv[]) { const char *nspace = NULL; const char* predicate = NULL; int per_page = 10; int page = 0; flickcurl_tag_predicate_value** tag_pvs = NULL; if(argc >1) { nspace = argv[1]; if(argc >2) { predicate = argv[2]; if(argc >3) { per_page = parse_page_param(argv[3]); if(argc >4) { page = parse_page_param(argv[4]); } } } } tag_pvs = flickcurl_machinetags_getPairs(fc, nspace, predicate, per_page, page); if(tag_pvs) { command_print_predicate_values(tag_pvs, "getPairs returned"); flickcurl_free_tag_predicate_values(tag_pvs); } return (tag_pvs == NULL); } static int command_machinetags_getPredicates(flickcurl* fc, int argc, char *argv[]) { const char *nspace = NULL; int per_page = 10; int page = 0; flickcurl_tag_predicate_value** tag_pvs = NULL; if(argc >1) { nspace = argv[1]; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } } tag_pvs = flickcurl_machinetags_getPredicates(fc, nspace, per_page, page); if(tag_pvs) { command_print_predicate_values(tag_pvs, "getPredicates returned"); flickcurl_free_tag_predicate_values(tag_pvs); } return (tag_pvs == NULL); } static int command_machinetags_getValues(flickcurl* fc, int argc, char *argv[]) { const char *nspace = argv[1]; const char* predicate = argv[2]; int per_page = 10; int page = 0; flickcurl_tag_predicate_value** tag_pvs = NULL; if(argc >3) { per_page = parse_page_param(argv[3]); if(argc >4) { page = parse_page_param(argv[4]); } } tag_pvs = flickcurl_machinetags_getValues(fc, nspace, predicate, per_page, page); if(tag_pvs) { command_print_predicate_values(tag_pvs, "getValues returned"); flickcurl_free_tag_predicate_values(tag_pvs); } return (tag_pvs == NULL); } static int command_places_getPlaceTypes(flickcurl* fc, int argc, char *argv[]) { flickcurl_place_type_info** place_types; place_types = flickcurl_places_getPlaceTypes(fc); if(place_types) { int i; for(i = 0; place_types[i]; i++) { flickcurl_place_type_info *pt = place_types[i]; fprintf(stdout, "place type %d): id %d type %d name %s\n", i, pt->id, pt->type, pt->name); } flickcurl_free_place_type_infos(place_types); } return (place_types == NULL); } static int command_places_placesForBoundingBox(flickcurl* fc, int argc, char *argv[]) { flickcurl_place** places = NULL; double minimum_longitude; double minimum_latitude; double maximum_longitude; double maximum_latitude; flickcurl_place_type place_type = FLICKCURL_PLACE_LOCATION; place_type = flickcurl_get_place_type_by_label(argv[1]); minimum_longitude = atof(argv[2]); minimum_latitude = atof(argv[3]); maximum_longitude = atof(argv[4]); maximum_latitude = atof(argv[5]); places = flickcurl_places_placesForBoundingBox(fc, place_type, minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude); if(places) { int i; for(i = 0; places[i]; i++) { fprintf(stdout, "Place Result #%d\n", i); command_print_place(places[i], NULL, NULL, 0); } flickcurl_free_places(places); } return (places == NULL); } static int command_places_placesForContacts(flickcurl* fc, int argc, char *argv[]) { int usage = 0; flickcurl_place** places = NULL; flickcurl_place_type place_type = FLICKCURL_PLACE_LOCATION; int woe_id = -1; char* place_id = NULL; int threshold = -1; char* contacts = NULL; int min_upload_date = -1; int max_upload_date = -1; int min_taken_date = -1; int max_taken_date = -1; place_type = flickcurl_get_place_type_by_label(argv[1]); if(strcmp(argv[2], "-")) woe_id = atoi(argv[2]); if(strcmp(argv[3], "-")) place_id = argv[3]; threshold = atoi(argv[4]); argv+= 5; argc-= 5; while(!usage && argc) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "contacts")) { contacts = argv[0]; argv++; argc--; } else if(!strcmp(field, "min-upload")) { min_upload_date = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "max-upload")) { max_upload_date = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "min-taken")) { min_taken_date = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "max-taken")) { max_taken_date = atoi(argv[0]); argv++; argc--; } else { fprintf(stderr, "%s: Unknown parameter: '%s'\n", program, argv[0]); usage = 1; } } if(usage) { places = NULL; goto tidy; } places = flickcurl_places_placesForContacts(fc, place_type, woe_id, place_id, threshold, contacts, min_upload_date, max_upload_date, min_taken_date, max_taken_date); if(places) { int i; for(i = 0; places[i]; i++) { fprintf(stdout, "Place Result #%d\n", i); command_print_place(places[i], NULL, NULL, 0); } flickcurl_free_places(places); } tidy: return (places == NULL); } static void command_print_contact(flickcurl_contact* contact, int i) { fprintf(stdout, "contact %d: NSID %s username %s iconserver %d realname %s friend %d family %d ignored %d upload count %d\n", i, contact->nsid, contact->username, contact->iconserver, contact->realname, contact->is_friend, contact->is_family, contact->ignored, contact->uploaded); } static int command_contacts_getList(flickcurl* fc, int argc, char *argv[]) { flickcurl_contact **contacts = NULL; const char* filter = NULL; int page = -1; int per_page = -1; if(argc >1) { filter = argv[1]; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } } contacts = flickcurl_contacts_getList(fc, filter, page, per_page); if(contacts) { int i; for(i = 0; contacts[i]; i++) command_print_contact(contacts[i], i); flickcurl_free_contacts(contacts); } return (contacts == NULL); } static int command_contacts_getListRecentlyUploaded(flickcurl* fc, int argc, char *argv[]) { flickcurl_contact **contacts = NULL; int date_lastupload = 1; const char* filter = NULL; if(argc >1) { date_lastupload = atoi(argv[1]); if(argc >2) { filter = argv[2]; } } contacts = flickcurl_contacts_getListRecentlyUploaded(fc, date_lastupload, filter); if(contacts) { int i; for(i = 0; contacts[i]; i++) command_print_contact(contacts[i], i); flickcurl_free_contacts(contacts); } return (contacts == NULL); } static int command_contacts_getPublicList(flickcurl* fc, int argc, char *argv[]) { flickcurl_contact **contacts = NULL; const char* user_id = NULL; int page = -1; int per_page = -1; user_id = argv[1]; if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { page = parse_page_param(argv[3]); } } contacts = flickcurl_contacts_getPublicList(fc, user_id, page, per_page); if(contacts) { int i; for(i = 0; contacts[i]; i++) command_print_contact(contacts[i], i); flickcurl_free_contacts(contacts); } return (contacts == NULL); } static int command_places_getShapeHistory(flickcurl* fc, int argc, char *argv[]) { flickcurl_shapedata **shapes = NULL; int woe_id = -1; char* place_id = NULL; if(strcmp(argv[1], "-")) place_id = argv[1]; if(argc > 2) { if(strcmp(argv[2], "-")) woe_id = atoi(argv[2]); } if(!woe_id < 0 && !place_id) return 1; shapes = flickcurl_places_getShapeHistory(fc, place_id, woe_id); if(shapes) { int i; for(i = 0; shapes[i]; i++) { fprintf(stdout, "Shape %d: ", i); command_print_shape(shapes[i]); fputc('\n', stdout); } flickcurl_free_shapes(shapes); } return (shapes == NULL); } static int command_places_tagsForPlace(flickcurl* fc, int argc, char *argv[]) { int usage = 0; flickcurl_tag **tags = NULL; int woe_id = -1; const char* place_id = NULL; int min_upload_date = -1; int max_upload_date = -1; int min_taken_date = -1; int max_taken_date = -1; argv++; argc--; if(strcmp(argv[0], "-")) place_id = argv[0]; argv++; argc--; if(argc) { if(strcmp(argv[0], "-")) woe_id = atoi(argv[0]); } while(!usage && argc > 0) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "min-upload")) { min_upload_date = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "max-upload")) { max_upload_date = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "min-taken")) { min_taken_date = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "max-taken")) { max_taken_date = atoi(argv[0]); argv++; argc--; } else { fprintf(stderr, "%s: Unknown parameter: '%s'\n", program, argv[0]); usage = 1; } } if(usage) { tags = NULL; goto tidy; } tags = flickcurl_places_tagsForPlace(fc, woe_id, place_id, min_upload_date, max_upload_date, min_taken_date, max_taken_date); if(tags) { fprintf(stdout, "%s: Tags for WOE ID %d / place ID %s\n", program, woe_id, place_id); command_print_tags(tags, NULL, NULL); free(tags); } tidy: return (tags == NULL); } static void command_print_institution(flickcurl_institution* institution, int ix) { int i; fprintf(stdout, "Institution %d:\n" " NSID: %s\n Date launch: %d\n Name: %s\n", ix, institution->nsid, institution->date_launch, institution->name); for(i = 0 ; i <= FLICKCURL_INSTITUTION_URL_LAST; i++) { if(institution->urls[i]) fprintf(stdout, " URL %s: %s\n", flickcurl_get_institution_url_type_label((flickcurl_institution_url_type)i), institution->urls[i]); } } static int command_commons_getInstitutions(flickcurl* fc, int argc, char *argv[]) { flickcurl_institution** institutions = NULL; institutions = flickcurl_commons_getInstitutions(fc); if(institutions) { int i; for(i = 0; institutions[i]; i++) command_print_institution(institutions[i], i); flickcurl_free_institutions(institutions); } return (institutions == NULL); } static void command_print_member(flickcurl_member* member, int i) { fprintf(stdout, "member %d: NSID %s username %s iconserver %d iconfarm %d member type %d\n", i, member->nsid, member->username, member->iconserver, member->iconfarm, member->member_type); } static int command_groups_members_getList(flickcurl* fc, int argc, char *argv[]) { const char *group_id = argv[1]; const char *membertypes = NULL; int per_page = -1; int page = -1; flickcurl_member** members; if(argc > 1) { membertypes = argv[2]; if(argc > 2) { per_page = parse_page_param(argv[3]); if(argc > 3) { page = parse_page_param(argv[4]); } } } members = flickcurl_groups_members_getList(fc, group_id, membertypes, per_page, page); if(members) { int i; for(i = 0; members[i]; i++) command_print_member(members[i], i); flickcurl_free_members(members); } return (members == NULL); } static int command_panda_getList(flickcurl* fc, int argc, char *argv[]) { int i; char **pandas; pandas = flickcurl_panda_getList(fc); if(!pandas) return 1; for(i = 0; pandas[i]; i++) fprintf(stdout, "%s: panda %d: %s\n", program, i, pandas[i]); free(pandas); return 0; } static int command_panda_getPhotos(flickcurl* fc, int argc, char *argv[]) { char *panda = argv[1]; flickcurl_photo **photos = NULL; int i; photos = flickcurl_panda_getPhotos(fc, panda); if(!photos) return 1; fprintf(stdout, "%s: Panda %s returned photos!\n", program, panda); for(i = 0; photos[i]; i++) { fprintf(stdout, "%s: %s photo %d\n", program, panda, i); command_print_photo(photos[i]); } flickcurl_free_photos(photos); return 0; } static void command_print_collection(flickcurl_collection *collection) { fprintf(stdout, "Collection id %s secret %s server %d\n" " Title %s\n" " Description %s\n" " Large icon %s\n" " Small Icon %s\n", collection->id, collection->secret, collection->server, collection->title, (collection->description ? collection->description : "(None)"), collection->iconlarge, collection->iconsmall); if(collection->photos) { int i; for(i = 0; collection->photos[i]; i++) { fprintf(stdout, " icon photo %d) ", i); command_print_photo(collection->photos[i]); } } if(collection->collections) { int i; for(i = 0; collection->collections[i]; i++) { fprintf(stdout, " Sub-Collection %d)", i); command_print_collection(collection->collections[i]); } } } static int command_collections_getInfo(flickcurl* fc, int argc, char *argv[]) { char *collection_id = argv[1]; flickcurl_collection *collection = NULL; collection = flickcurl_collections_getInfo(fc, collection_id); if(collection) { command_print_collection(collection); flickcurl_free_collection(collection); } return (collection == NULL); } static int command_collections_getTree(flickcurl* fc, int argc, char *argv[]) { char *collection_id = NULL; char *user_id = NULL; flickcurl_collection *collection = NULL; if(strcmp(argv[1], "-")) collection_id = argv[1]; if(strcmp(argv[2], "-")) user_id = argv[2]; collection = flickcurl_collections_getTree(fc, collection_id, user_id); if(collection) { command_print_collection(collection); flickcurl_free_collection(collection); } return (collection == NULL); } static int command_machinetags_getRecentValues(flickcurl* fc, int argc, char *argv[]) { const char *nspace = NULL; const char *predicate = NULL; int added_since = 0; flickcurl_tag_predicate_value** tag_pvs = NULL; if(argc >1) { if(strcmp("-", argv[1])) nspace = argv[1]; if(argc >2) { if(strcmp("-", argv[2])) nspace = argv[2]; if(argc >3) { added_since = atoi(argv[3]); } } } tag_pvs = flickcurl_machinetags_getRecentValues(fc, nspace, predicate, added_since); if(tag_pvs) { command_print_predicate_values(tag_pvs, "getRecentValues returned"); flickcurl_free_tag_predicate_values(tag_pvs); } return (tag_pvs == NULL); } static int command_comments_getRecentForContacts(flickcurl* fc, int argc, char *argv[]) { int usage = 0; int date_lastcomment = -1; const char *filter = NULL; flickcurl_photos_list_params list_params; flickcurl_photos_list* photos_list = NULL; int rc = 0; flickcurl_photos_list_params_init(&list_params); argv++; argc--; while(!usage && argc) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "since")) { date_lastcomment = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "filter")) { filter = argv[0]; argv++; argc--; } else if(!strcmp(field, "per-page")) { /* int: default 100, max 500 */ list_params.per_page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "page")) { /* int: default 1 */ list_params.page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "format")) { list_params.format = argv[0]; argv++; argc--; } else { fprintf(stderr, "%s: Unknown parameter: '%s'\n", program, argv[0]); usage = 1; } } if(usage) goto tidy; photos_list = flickcurl_photos_comments_getRecentForContacts_params(fc, date_lastcomment, filter, &list_params); if(!photos_list) { fprintf(stderr, "%s: Getting recent comments for contacts failed\n", program); return 1; } rc = command_print_photos_list(fc, photos_list, output_fh, "Recent content photos"); flickcurl_free_photos_list(photos_list); tidy: return rc; } static int command_short_uri(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *uri; uri = flickcurl_photo_id_as_short_uri(photo_id); if(uri) { fprintf(stdout, "%s: Short URI for photo ID %s is %s\n", program, photo_id, uri); free(uri); } else { fprintf(stderr, "%s: Failed to get short URI for photo ID %s\n", program, photo_id); return 1; } return 0; } static int command_blogs_getServices(flickcurl* fc, int argc, char *argv[]) { flickcurl_blog_service** blog_services; blog_services = flickcurl_blogs_getServices(fc); if(blog_services) { int i; for (i = 0; blog_services[i]; i++) { flickcurl_blog_service* blog_service = blog_services[i]; fprintf(stdout, "%d) blog service: id %s name '%s'\n", i, blog_service->id, blog_service->name); } flickcurl_free_blog_services(blog_services); } return 0; } static int command_places_getTopPlacesList(flickcurl* fc, int argc, char *argv[]) { flickcurl_place** places = NULL; flickcurl_place_type place_type; const char* date; int woe_id = -1; const char* place_id = NULL; place_type = flickcurl_get_place_type_by_label(argv[1]); date = argv[2]; if(argc > 3) { if(strcmp(argv[3], "-")) woe_id = atoi(argv[3]); if(argc > 4) { place_id = argv[4]; } } places = flickcurl_places_getTopPlacesList(fc, place_type, date, woe_id, place_id); if(places) { int i; for(i = 0; places[i]; i++) { fprintf(stdout, "Place Result #%d\n", i); command_print_place(places[i], NULL, NULL, 1); } flickcurl_free_places(places); } return (places == NULL); } static int command_source_uri_to_photoid(flickcurl* fc, int argc, char *argv[]) { char *uri = argv[1]; char *photo_id; photo_id = flickcurl_source_uri_as_photo_id(uri); if(!photo_id) { fprintf(stderr, "%s: Failed to get photo ID for source URI %s\n", program, uri); return 1; } fprintf(stdout, "%s: Photo ID for source URI %s is %s\n", program, uri, photo_id); free(photo_id); return 0; } static int command_people_getPhotosOf(flickcurl* fc, int argc, char *argv[]) { char *user_id = argv[1]; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc >1) { list_params.per_page = parse_page_param(argv[2]); if(argc >2) { list_params.page = parse_page_param(argv[3]); if(argc >3) { list_params.format = argv[4]; } } } photos_list = flickcurl_people_getPhotosOf_params(fc, user_id, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: Photos of user %s (per_page %d page %d):\n", program, user_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_photos_people_add(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *user_id = argv[2]; int person_x = atoi(argv[3]); int person_y = atoi(argv[4]); int person_w = atoi(argv[5]); int person_h = atoi(argv[6]); return flickcurl_photos_people_add(fc, photo_id, user_id, person_x, person_y, person_w, person_h); } static int command_photos_people_delete(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *user_id = argv[2]; return flickcurl_photos_people_delete(fc, photo_id, user_id); } static int command_photos_people_deleteCoords(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *user_id = argv[2]; return flickcurl_photos_people_deleteCoords(fc, photo_id, user_id); } static int command_photos_people_editCoords(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *user_id = argv[2]; int person_x = atoi(argv[3]); int person_y = atoi(argv[4]); int person_w = atoi(argv[5]); int person_h = atoi(argv[6]); return flickcurl_photos_people_editCoords(fc, photo_id, user_id, person_x, person_y, person_w, person_h); } static int command_photos_people_getList(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; int i; flickcurl_person** persons; persons = flickcurl_photos_people_getList(fc, photo_id); if(!persons) return 1; for(i = 0; persons[i]; i++) command_print_person(persons[i]); flickcurl_free_persons(persons); return 0; } static int command_galleries_addPhoto(flickcurl* fc, int argc, char *argv[]) { const char* gallery_id = argv[1]; const char* photo_id = argv[2]; const char* comment_text = argv[3]; return flickcurl_galleries_addPhoto(fc, gallery_id, photo_id, comment_text); } static void command_print_gallery(flickcurl_gallery* g) { fprintf(stdout, "id %s url %s owner %s\n" " date create %d date update %d\n" " count of photos %d count of videos %d\n" " title '%s'\n" " description '%s'\n" , g->id, g->url, g->owner, g->date_create, g->date_update, g->count_photos, g->count_videos, g->title, g->description); fputs(" primary ", stdout); command_print_photo(g->primary_photo); } static int command_galleries_getList(flickcurl* fc, int argc, char *argv[]) { const char* user_id = argv[1]; int per_page = 10; int page = 0; flickcurl_gallery** galleries; int i; if(argc > 1) { per_page = parse_page_param(argv[2]); if(argc > 2) { page = parse_page_param(argv[3]); } } galleries = flickcurl_galleries_getList(fc, user_id, per_page, page); if(!galleries) return 1; for(i = 0; galleries[i]; i++) { fprintf(stdout, "%s: Gallery %d\n", program, i); command_print_gallery(galleries[i]); } flickcurl_free_galleries(galleries); return 0; } static int command_galleries_getListForPhoto(flickcurl* fc, int argc, char *argv[]) { const char* photo_id = argv[1]; int per_page = 10; int page = 0; flickcurl_gallery** galleries; int i; if(argc > 2) { per_page = parse_page_param(argv[2]); if(argc > 3){ page = parse_page_param(argv[3]); } } galleries = flickcurl_galleries_getListForPhoto(fc, photo_id, per_page, page); if(!galleries) return 1; for(i = 0; galleries[i]; i++) { fprintf(stdout, "%s: Gallery %d\n", program, i); command_print_gallery(galleries[i]); } flickcurl_free_galleries(galleries); return 0; }; static void command_print_stat(flickcurl_stat* s) { fprintf(stdout, " Views %d Comments %d Favorites %d", s->views, s->comments, s->favorites); if(s->name) fprintf(stdout, " Name %s", s->name); if(s->url) fprintf(stdout, " Url %s", s->url); if(s->searchterms) fprintf(stdout, " Search terms %s", s->searchterms); fputc('\n', stdout); } static void command_print_stats(flickcurl_stat** stats) { int i; for(i = 0; stats[i]; i++) { fprintf(stdout, "%s: Statistic %d\n", program, i); command_print_stat(stats[i]); } } static int command_stats_getCollectionDomains(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* collection_id = NULL; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 1) { collection_id = argv[2]; if(argc > 2) { per_page = parse_page_param(argv[3]); if(argc > 3) { page = parse_page_param(argv[4]); } } } stats = flickcurl_stats_getCollectionDomains(fc, date, collection_id, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Collection domain stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getCollectionReferrers(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* domain = argv[2]; const char* collection_id = NULL; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 2) { collection_id = argv[3]; if(argc > 3) { per_page = parse_page_param(argv[4]); if(argc > 4) { page = parse_page_param(argv[5]); } } } stats = flickcurl_stats_getCollectionReferrers(fc, date, domain, collection_id, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Collection referrers stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getCollectionStats(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* collection_id = argv[2]; int views; views = flickcurl_stats_getCollectionStats(fc, date, collection_id); if(views < 0) return 1; fprintf(stdout, "%s: Collection view stats: %d\n", program, views); return 0; } static int command_stats_getPhotoDomains(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* photo_id = NULL; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 1) { photo_id = argv[2]; if(argc > 2) { per_page = parse_page_param(argv[3]); if(argc > 3) { page = parse_page_param(argv[4]); } } } stats = flickcurl_stats_getPhotoDomains(fc, date, photo_id, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Photo domains stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getPhotoReferrers(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* domain = argv[2]; const char* photo_id = NULL; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 2) { photo_id = argv[3]; if(argc > 3) { per_page = parse_page_param(argv[4]); if(argc > 4) { page = parse_page_param(argv[5]); } } } stats = flickcurl_stats_getPhotoReferrers(fc, date, domain, photo_id, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Photo referrers stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getPhotoStats(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* photo_id = argv[2]; flickcurl_stat* stat1; stat1 = flickcurl_stats_getPhotoStats(fc, date, photo_id); if(!stat1) return 1; fprintf(stdout, "%s: Photo %s on date %s statistics:\n", program, photo_id, date); command_print_stat(stat1); flickcurl_free_stat(stat1); return 0; } static int command_stats_getPhotosetDomains(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* photoset_id = NULL; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 1) { photoset_id = argv[2]; if(argc > 2) { per_page = parse_page_param(argv[3]); if(argc > 3) { page = parse_page_param(argv[4]); } } } stats = flickcurl_stats_getPhotosetDomains(fc, date, photoset_id, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Photoset domains stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getPhotosetReferrers(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* domain = argv[2]; const char* photoset_id = NULL; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 2) { photoset_id = argv[3]; if(argc > 3) { per_page = parse_page_param(argv[4]); if(argc > 4) { page = parse_page_param(argv[5]); } } } stats = flickcurl_stats_getPhotosetReferrers(fc, date, domain, photoset_id, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Photoset referrers stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getPhotosetStats(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* photoset_id = argv[2]; int views; views = flickcurl_stats_getPhotosetStats(fc, date, photoset_id); if(views < 0) return 1; fprintf(stdout, "%s: Photoset view stats: %d\n", program, views); return 0; } static int command_stats_getPhotostreamDomains(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 1) { per_page = parse_page_param(argv[2]); if(argc > 2) { page = parse_page_param(argv[3]); } } stats = flickcurl_stats_getPhotostreamDomains(fc, date, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Photostream domains stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getPhotostreamReferrers(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* domain = argv[2]; int per_page = -1; int page = 0; flickcurl_stat** stats; if(argc > 2) { per_page = parse_page_param(argv[3]); if(argc > 3) { page = parse_page_param(argv[4]); } } stats = flickcurl_stats_getPhotostreamReferrers(fc, date, domain, per_page, page); if(!stats) return 1; if(verbose) fprintf(stdout, "%s: Photostream referrers stats (per_page %d page %d):\n", program, per_page, page); command_print_stats(stats); flickcurl_free_stats(stats); return 0; } static int command_stats_getPhotostreamStats(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; int views; views = flickcurl_stats_getPhotostreamStats(fc, date); if(views < 0) return 1; fprintf(stdout, "%s: Photostream view stats: %d\n", program, views); return 0; } static int command_stats_getPopularPhotos(flickcurl* fc, int argc, char *argv[]) { char* date = argv[1]; const char* sort = NULL; int per_page = -1; int page = 0; const char *extras = NULL; flickcurl_photo** photos; int i; if(argc > 1) { sort = argv[2]; if(argc > 2) { per_page = parse_page_param(argv[3]); if(argc > 3) { page = parse_page_param(argv[4]); if(argc > 4) { extras = argv[5]; } } } } photos = flickcurl_stats_getPopularPhotos(fc, date, sort, per_page, page, extras); if(!photos) return 1; fprintf(stdout, "%s: Popular photos:\n", program); for(i = 0; photos[i]; i++) { fprintf(stdout, "%s: popular photo %d\n", program, i); command_print_photo(photos[i]); } flickcurl_free_photos(photos); return 0; } static int command_stats_getTotalViews(flickcurl* fc, int argc, char *argv[]) { char* date = NULL; flickcurl_view_stats* view_stats; if(argc > 0) date = argv[1]; view_stats = flickcurl_stats_getTotalViews(fc, date); if(!view_stats) return 1; fprintf(stdout, "%s: Total view stats\n", program); fprintf(stdout, " Total: %d\n Photos: %d\n Photostreams: %d\n Sets: %d\n Collections: %d\n", view_stats->total, view_stats->photos, view_stats->photostreams, view_stats->sets, view_stats->collections); flickcurl_free_view_stats(view_stats); return 0; } static int command_people_getPhotos(flickcurl* fc, int argc, char *argv[]) { int usage = 0; char *user_id; int safe_search = -1; const char* min_upload_date = NULL; const char* max_upload_date = NULL; const char* min_taken_date = NULL; const char* max_taken_date = NULL; int content_type = -1; int privacy_filter = -1; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc = 0; flickcurl_photos_list_params_init(&list_params); argv++; argc--; user_id = argv[0]; argv++; argc--; while(!usage && argc) { char* field = argv[0]; argv++; argc--; if(!strcmp(field, "safe-search")) { safe_search = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "min-upload-date")) { min_upload_date = argv[0]; argv++; argc--; } else if(!strcmp(field, "max-upload-date")) { max_upload_date = argv[0]; argv++; argc--; } else if(!strcmp(field, "min-taken-date")) { min_taken_date = argv[0]; argv++; argc--; } else if(!strcmp(field, "max-taken-date")) { max_taken_date = argv[0]; argv++; argc--; } else if(!strcmp(field, "content-type")) { content_type = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "privacy-filter")) { privacy_filter = atoi(argv[0]); argv++; argc--; } else if(!strcmp(field, "per-page")) { /* int: default 100, max 500 */ list_params.per_page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "page")) { /* int: default 1 */ list_params.page = parse_page_param(argv[0]); argv++; argc--; } else if(!strcmp(field, "format")) { list_params.format = argv[0]; argv++; argc--; } else { fprintf(stderr, "%s: Unknown parameter: '%s'\n", program, argv[0]); usage = 1; } } if(usage) goto tidy; photos_list = flickcurl_people_getPhotos_params(fc, user_id, safe_search, min_upload_date, max_upload_date, min_taken_date, max_taken_date, content_type, privacy_filter, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: Photos of user %s (per_page %d page %d):\n", program, user_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); tidy: return rc; } static int command_galleries_create(flickcurl* fc, int argc, char *argv[]) { const char* title = argv[1]; const char* description = NULL; const char* primary_photo_id = NULL; char* url = NULL; char* id; if(argc > 1) { description = argv[2]; if(argc > 2) primary_photo_id = argv[3]; } id = flickcurl_galleries_create(fc, title, description, primary_photo_id, &url); if(!id) return 1; fprintf(stdout, "%s: Gallery %s created with URL %s\n", program, id, url); free(url); free(id); return 0; } static int command_galleries_editMeta(flickcurl* fc, int argc, char *argv[]) { return flickcurl_galleries_editMeta(fc, argv[1], argv[2], argv[3]); } static int command_galleries_editPhoto(flickcurl* fc, int argc, char *argv[]) { const char* gallery_id = argv[1]; const char* primary_photo_id = argv[2]; const char* new_comment = argv[3]; return flickcurl_galleries_editPhoto(fc, gallery_id, primary_photo_id, new_comment); } static int command_galleries_editPhotos(flickcurl* fc, int argc, char *argv[]) { const char* photoset_id = argv[1]; const char* primary_photo_id = argv[2]; char** photo_ids = flickcurl_array_split(argv[3], ','); int rc; rc = flickcurl_galleries_editPhotos(fc, photoset_id, primary_photo_id, (const char**)photo_ids); flickcurl_array_free(photo_ids); return rc; } static int command_galleries_getInfo(flickcurl* fc, int argc, char *argv[]) { flickcurl_gallery* gallery = NULL; const char* gallery_id = argv[1]; gallery = flickcurl_galleries_getInfo(fc, gallery_id); if(gallery) { command_print_gallery(gallery); flickcurl_free_gallery(gallery); } return (gallery == NULL); } static int command_galleries_getPhotos(flickcurl* fc, int argc, char *argv[]) { const char* gallery_id = argv[1]; flickcurl_photos_list* photos_list = NULL; flickcurl_photos_list_params list_params; int rc; flickcurl_photos_list_params_init(&list_params); if(argc > 2) { list_params.extras = argv[2]; if(argc > 3) { list_params.per_page = parse_page_param(argv[3]); if(argc > 4) { list_params.page = parse_page_param(argv[4]); if(argc > 5) { list_params.format = argv[5]; } } } } photos_list = flickcurl_galleries_getPhotos_params(fc, gallery_id, &list_params); if(!photos_list) return 1; if(verbose) fprintf(stdout, "%s: Gallery %s photos (per_page %d page %d):\n", program, gallery_id, list_params.per_page, list_params.page); rc = command_print_photos_list(fc, photos_list, output_fh, "Photo"); flickcurl_free_photos_list(photos_list); return rc; } static int command_photosets_removePhotos(flickcurl* fc, int argc, char *argv[]) { char** photoset_ids = flickcurl_array_split(argv[2], ','); int rc; rc = flickcurl_photosets_removePhotos(fc, argv[1], (const char**)photoset_ids); flickcurl_array_free(photoset_ids); return rc; } static int command_photosets_reorderPhotos(flickcurl* fc, int argc, char *argv[]) { char** photoset_ids = flickcurl_array_split(argv[2], ','); int rc; rc = flickcurl_photosets_reorderPhotos(fc, argv[1], (const char**)photoset_ids); flickcurl_array_free(photoset_ids); return rc; } static int command_photosets_setPrimaryPhoto(flickcurl* fc, int argc, char *argv[]) { return flickcurl_photosets_setPrimaryPhoto(fc, argv[1], argv[2]); } static int command_favorites_getContext(flickcurl* fc, int argc, char *argv[]) { char *photo_id = argv[1]; char *user_id = argv[2]; int num_prev = -1; int num_next = -1; const char* extras = NULL; flickcurl_photos_list** photos_lists = NULL; if(argc > 3) { if(strcmp(argv[3], "-")) num_prev = atoi(argv[3]); if(argc > 4) { if(strcmp(argv[4], "-")) num_next = atoi(argv[4]); if(argc > 5) extras = argv[5]; } } photos_lists = flickcurl_favorites_getContext(fc, photo_id, user_id, num_prev, num_next, extras); if(!photos_lists) { fprintf(stderr, "%s: Getting user %s favorite photo %s context failed\n", program, user_id, photo_id); } else { int rc; if(verbose) fprintf(stdout, "%s: Context around user %s favorite photo %s:\n", program, user_id, photo_id); rc = command_print_photos_list(fc, photos_lists[0], output_fh, "Previous photos"); if(!rc) rc = command_print_photos_list(fc, photos_lists[1], output_fh, "Next photos"); flickcurl_free_photos_list(photos_lists[0]); flickcurl_free_photos_list(photos_lists[1]); free(photos_lists); if(rc) photos_lists = NULL; } return (photos_lists == NULL); } static int command_oauth_create(flickcurl* fc, int argc, char *argv[]) { char *callback = NULL; char* uri; int rc; if(argc > 1) callback = argv[1]; rc = flickcurl_oauth_create_request_token(fc, callback); if(rc) { fprintf(stderr, "%s: Failed to create OAuth Request token/secret\n", program); return 1; } fprintf(stderr, "%s: OAuth request token details:\n Request Token: '%s'\n Request Token Secret: '%s'\n", program, flickcurl_get_oauth_request_token(fc), flickcurl_get_oauth_request_token_secret(fc)); uri = flickcurl_oauth_get_authorize_uri(fc); if(uri) { fprintf(stderr, "%s: OAuth Authentication URL: %s\n", program, uri); fprintf(stderr, "%s: Visit this, approve the request, get the and run:\n", program); fprintf(stderr, " $ %s oauth.verify '%s' '%s' ''\n", program, flickcurl_get_oauth_request_token(fc), flickcurl_get_oauth_request_token_secret(fc)); free(uri); } return 0; } static int command_oauth_verify(flickcurl* fc, int argc, char *argv[]) { int rc; const char* request_token = argv[1]; const char* request_token_secret = argv[2]; const char* verifier = argv[3]; flickcurl_set_oauth_request_token(fc, request_token); flickcurl_set_oauth_request_token_secret(fc, request_token_secret); rc = flickcurl_oauth_create_access_token(fc, verifier); if(rc) { fprintf(stderr, "%s: Failed to verify OAuth Request\n", program); return 1; } fprintf(stderr, "%s: Returned OAuth token '%s' and token secret '%s'\n", program, flickcurl_get_oauth_token(fc), flickcurl_get_oauth_token_secret(fc)); rc = flickcurl_config_write_ini(fc, config_path, config_section); if(!rc) fprintf(stdout, "%s: Updated configuration file %s with OAuth tokens\n", program, config_path); return 0; } static int command_oauth_upgrade(flickcurl* fc, int argc, char *argv[]) { int rc; rc = flickcurl_auth_oauth_getAccessToken(fc); if(rc) { fprintf(stderr, "%s: Failed to upgrade to OAuth\n", program); return 1; } fprintf(stderr, "%s: Upgraded to OAuth token '%s' and token secret '%s'\n", program, flickcurl_get_oauth_token(fc), flickcurl_get_oauth_token_secret(fc)); rc = flickcurl_config_write_ini(fc, config_path, config_section); if(!rc) fprintf(stdout, "%s: Updated configuration file %s with OAuth tokens\n", program, config_path); return 0; } static int command_groups_join(flickcurl* fc, int argc, char *argv[]) { char* group_id = argv[1]; char* accept_rules = NULL; if(argv[2]) accept_rules = argv[2]; return flickcurl_groups_join(fc, group_id, accept_rules); } static int command_groups_joinRequest(flickcurl* fc, int argc, char *argv[]) { char* group_id = argv[1]; char* message = argv[2]; char* accept_rules = argv[3]; return flickcurl_groups_joinRequest(fc, group_id, message, accept_rules); } static int command_groups_leave(flickcurl* fc, int argc, char *argv[]) { char* group_id = argv[1]; char* delete_photos = NULL; if(argv[2]) delete_photos = argv[2]; return flickcurl_groups_leave(fc, group_id, delete_photos); } static int command_contacts_getTaggingSuggestions(flickcurl* fc, int argc, char *argv[]) { flickcurl_contact **contacts = NULL; const char* include_self = NULL; const char* include_address_book = NULL; int page = -1; int per_page = -1; if(argc >1) { page = parse_page_param(argv[1]); if(argc >2) { per_page = parse_page_param(argv[2]); if(argc >3) { include_self = argv[3]; if(argc >4) { include_address_book = argv[4]; } } } } contacts = flickcurl_contacts_getTaggingSuggestions(fc, include_self, include_address_book, per_page, page); if(contacts) { int i; for(i = 0; contacts[i]; i++) command_print_contact(contacts[i], i); flickcurl_free_contacts(contacts); } return (contacts == NULL); } static int command_people_getGroups(flickcurl* fc, int argc, char *argv[]) { char* user_id = argv[1]; flickcurl_group** groups = NULL; const char* extras = NULL; int i; groups = flickcurl_people_getGroups(fc, user_id, extras); if(!groups) return 1; for(i = 0; groups[i]; i++) { fprintf(stdout, "%s: Group %d\n", program, i); command_print_group(groups[i]); } flickcurl_free_groups(groups); return 0; } static int command_tags_getMostFrequentlyUsed(flickcurl* fc, int argc, char *argv[]) { flickcurl_tag** tags; tags = flickcurl_tags_getMostFrequentlyUsed(fc); if(!tags) return 1; command_print_tags(tags, NULL, NULL); free(tags); return 0; } typedef struct { const char* name; const char* args; const char* description; command_handler handler; int min; int max; } flickcurl_cmd; #ifdef FLICKCURL_MAINTAINER static int flickcurl_cmd_compare(const void *a, const void *b) { flickcurl_cmd* a_cmd = (flickcurl_cmd*)a; flickcurl_cmd* b_cmd = (flickcurl_cmd*)b; return strcmp(a_cmd->name, b_cmd->name); } #endif static flickcurl_cmd commands[] = { /* {fn name, * args desc, fn description * handler, min args, max args }, */ {"auth.checkToken", "TOKEN", "Get the credentials attached to an authentication TOKEN.", command_auth_checkToken, 1, 1}, {"auth.getFrob", "", "Get a frob to be used during authentication.", command_auth_getFrob, 0, 0}, {"auth.getFullToken", "MINI-TOKEN", "Get the full authentication token for MINI-TOKEN.", command_auth_getFullToken, 0, 0}, {"auth.getToken", "TOKEN", "Get the auth token for the FROB, if one has been attached.", command_auth_getToken, 0, 0}, {"activity.userComments", "[PER-PAGE [PAGE]]", "Get photos commented on by the caller.", command_activity_userComments, 0, 2}, {"activity.userPhotos", "[TIMEFRAME [PER-PAGE [PAGE]]]", "Get recent activity on the caller's photos.", command_activity_userPhotos, 0, 3}, {"blogs.getList", "", "Get a list of configured blogs for the calling user.", command_blogs_getList, 0, 0}, {"blogs.getServices", "", "Get a list of blog services.", command_blogs_getServices, 0, 0}, {"blogs.postPhoto", "BLOG-ID PHOTO-ID TITLE DESCRIPTION [BLOG-PASSWORD]", "Post PHOTO-ID to blog BLOG-ID with TITLE, DESCRIPTION and optional password.", command_blogs_postPhoto, 4, 5}, {"commons.getInstitutions", "", "Get list of institutions", command_commons_getInstitutions, 0, 0}, {"collections.getInfo", "COLLECTION-ID", "Get information on collection COLLECTION-ID", command_collections_getInfo, 1, 1}, {"collections.getTree", "[COLLECTION-ID|- [USER-ID|-]]", "Get tree of collections COLLECTION-ID for USER-ID", command_collections_getTree, 0, 2}, {"contacts.getList", "[FILTER [PAGE [PER-PAGE]]]", "Get a list of contacts with optional FILTER", command_contacts_getList, 0, 3}, {"contacts.getListRecentlyUploaded", "[DATE-LAST-UPLOAD [FILTER]]", "Get a list of recent uploading contacts since DATE-LAST-UPLOAD with optional FILTER", command_contacts_getListRecentlyUploaded, 0, 2}, {"contacts.getPublicList", "USER-NSID [PAGE [PER-PAGE]]", "Get the contact list for user USER-NSID", command_contacts_getPublicList, 1, 3}, {"contacts.getTaggingSuggestions", "[PAGE [PER-PAGE [INCLUDE-SELF [INCLUDE-ADDRESS-BOOK]]]]", "Get tagging suggestions", command_contacts_getTaggingSuggestions, 0, 4}, {"favorites.add", "PHOTO-ID", "Adds PHOTO-ID to the current user's favorites.", command_favorites_add, 1, 1}, {"favorites.getContext", "PHOTO-ID USER-NSID [NUM-PREV [NUM-NEXT [EXTRAS]]]", "Get context photos around USER-ID's favorite PHOTO-ID.", command_favorites_getContext, 2, 5}, {"favorites.getList", "USER-NSID [PER-PAGE [PAGE [FORMAT]]]", "Get a list of USER-NSID's favorite photos.", command_favorites_getList, 1, 4}, {"favorites.getPublicList", "USER-NSID [PER-PAGE [PAGE [FORMAT]]]", "Get a list of USER-NSID's favorite public photos.", command_favorites_getPublicList, 1, 4}, {"favorites.remove", "PHOTO-ID", "Removes PHOTO-ID to the current user's favorites.", command_favorites_remove, 1, 1}, {"galleries.addPhoto", "GALLERY-ID PHOTO-ID TEXT", "Add photo PHOTO-ID to galleries GALLERY-ID with TEXT", command_galleries_addPhoto, 3, 3}, {"galleries.create", "TITLE [DESCRIPTION [PRIMARY-PHOTO-ID]", "Create a new gallery with TITLE, DESCRIPTION and PRIMARY-PHOTO_ID.", command_galleries_create, 1, 3}, {"galleries.editMeta", "GALLERY-ID TITLE [DESCRIPTION]", "Set the TITLE and/or DESCRIPTION of a GALLERY-ID.", command_galleries_editMeta, 2, 3}, {"galleries.editPhoto", "GALLERY-ID PHOTO-ID COMMENT", "Set the COMMENT for PHOTO-ID in GALLERY-ID.", command_galleries_editPhoto, 3, 3}, {"galleries.editPhotos", "GALLERY-ID PRIMARY-PHOTO-ID PHOTO-IDS,...", "Set the PHOTO-IDs of a GALLERY-ID and PRIMARY-PHOTO-ID.", command_galleries_editPhotos, 3, 3}, {"galleries.getInfo", "GALLERY-ID", "Get information about GALLERY-ID.", command_galleries_getInfo, 1, 1}, {"galleries.getList", "USER-ID [PER-PAGE [PAGE]]", "Get list of galleries for a USER-ID with optional paging", command_galleries_getList, 1, 3}, {"galleries.getListForPhoto", "PHOTO-ID [PER-PAGE [PAGE]]", "Get list of galleries PHOTO-ID appears in with optional paging", command_galleries_getListForPhoto, 1, 3}, {"galleries.getPhotos", "GALLERY-ID [EXTRAS [PER-PAGE [PAGE [FORMAT]]]]", "Get the list of photos in GALLERY-ID with options.", command_galleries_getPhotos, 1, 5}, {"groups.browse", "[CAT-ID]", "Browse groups below category CAT-ID (or root).", command_groups_browse, 0, 1}, {"groups.getInfo", "GROUP-ID [LANG]", "Get information on group GROUP-ID with language LANG.", command_groups_getInfo, 1, 2}, {"groups.join", "GROUP-ID [ACCEPT-RULES]", "Join a group GROUP-ID with optional accepting of rules.", command_groups_join, 1, 2}, {"groups.joinRequest", "GROUP-ID MESSAGE ACCEPT-RULES", "Request to join a group GROUP-ID using MESSAGE and accept rules.", command_groups_joinRequest, 3, 3}, {"groups.leave", "GROUP-ID [DELETE-PHOTOS]", "Leave a group GROUP-ID and optionally delete photos.", command_groups_leave, 1, 1}, {"groups.search", "TEXT [PER-PAGE [PAGE]]", "Search for groups matching TEXT paging PER-PAGE and PAGE.", command_groups_search, 1, 3}, {"groups.members.getList", "GROUP-ID [MEMBER-TYPES [PER-PAGE [PAGE]]]", "Get list of MEMBER-TYPES types members of group GROUP-ID.", command_groups_members_getList, 1, 4}, {"groups.pools.add", "PHOTO-ID GROUP-ID", "Add PHOTO-ID in GROUP-ID pool.", command_groups_pools_add, 2, 2}, {"groups.pools.getContext", "PHOTO-ID GROUP-ID", "Get next and previous photos for PHOTO-ID in GROUP-ID pool.", command_groups_pools_getContext, 2, 2}, {"groups.pools.getGroups", "[PER-PAGE [PAGE]]", "Get list of groups a user can add to.", command_groups_pools_getGroups, 0, 2}, {"groups.pools.getPhotos", "GROUP-ID [PER-PAGE [PAGE [FORMAT]]]", "Get list of photos in GROUP-ID.", command_groups_pools_getPhotos, 1, 4}, {"groups.pools.remove", "PHOTO-ID GROUP-ID", "Remove PHOTO-ID from group GROUP-ID.", command_groups_pools_remove, 2, 2}, {"interestingness.getList", "[PARAMS]", "Get interesting photos with optional parameters\n date DATE extras EXTRAS per-page PER-PAGE page PAGE format FORMAT", command_interestingness_getList, 1, 0}, {"machinetags.getNamespaces", "[PREDICATE [PER-PAGE [PAGE]]]", "Get a list of namespaces with optional PREDICATE", command_machinetags_getNamespaces, 0, 3}, {"machinetags.getPairs", "[NAMESPACE [PREDICATE [PER-PAGE [PAGE]]]]", "Get a list of unique NAMESPACE and PREDICATE pairs", command_machinetags_getPairs, 0, 4}, {"machinetags.getPredicates", "[NAMESPACE [PER-PAGE [PAGE]]]", "Get a list of unique predicates optionally by NAMESPACE", command_machinetags_getPredicates, 0, 3}, {"machinetags.getValues", "NAMESPACE PREDICATE [PER-PAGE [PAGE]]", "Get a list of unique values for a NAMESPACE and PREDICATE", command_machinetags_getValues, 2, 4}, {"machinetags.getRecentValues", "[NAMESPACE|- [PREDICATE|- [ADDED-SINCE]]]", "Get a list of recent machinetags for NAMESPACE and PREDICATE since ADDED-SINCE", command_machinetags_getRecentValues, 0, 3}, {"panda.getList", "", "get the current list of pandas", command_panda_getList, 0, 0}, {"panda.getPhotos", "PANDA", "ask a PANDA for a list of recent public and safe photos", command_panda_getPhotos, 1, 1}, {"people.findByEmail", "EMAIL", "get a user's NSID from their EMAIL address", command_people_findByEmail, 1, 1}, {"people.findByUsername", "USERNAME", "get a user's NSID from their USERNAME", command_people_findByUsername, 1, 1}, {"people.getGroups", "USER-ID [GROUP-EXTRAS]", "Get list of groups USER-ID is a member of", command_people_getGroups, 1, 2}, {"people.getInfo", "USER-NSID", "Get information about one person with id USER-NSID", command_people_getInfo, 1, 1}, {"people.getPhotos", "USER-NSID", "Get photos from user USER-NSID with optional parameters\n safe-search 1-3 min-upload-date DATE max-upload-date DATE\n min-taken date DATE max-taken-date DATE content-type 1-7\n privacy-filter 1-5 per-page PER-PAGE page PAGE format FORMAT", command_people_getPhotos, 1, 0}, {"people.getPhotosOf", "USER-NSID [PER-PAGE [PAGE [FORMAT]]]", "Get public photos of a user USER-NSID", command_people_getPhotosOf, 1, 4}, {"people.getPublicGroups", "USER-NSID", "Get list of public groups a user is a member of", command_people_getPublicGroups, 1, 1}, {"people.getPublicPhotos", "USER-NSID [PER-PAGE [PAGE [FORMAT]]]", "Get public photos for a user USER-NSID", command_people_getPublicPhotos, 1, 4}, {"people.getUploadStatus", "", "Get calling user upload status", command_people_getUploadStatus, 0, 0}, {"photos.addTags", "PHOTO-ID TAGS", "Add TAGS to a PHOTO-ID.", command_photos_addTags, 2, 2}, {"photos.delete", "PHOTO-ID", "Delete a PHOTO-ID.", command_photos_delete, 1, 1}, {"photos.getAllContexts", "PHOTO-ID", "Get all visible sets and pools the PHOTO-ID belongs to.", command_photos_getAllContexts, 1, 1}, {"photos.getContactsPhotos", "", "Get a list of recent photos from the calling users' contacts", command_photos_getContactsPhotos, 0, 0}, {"photos.getContactsPublicPhotos", "USER-NSID [FORMAT]", "Get a list of recent public photos from USER-NSID's contacts", command_photos_getContactsPublicPhotos, 1, 2}, {"photos.getContext", "PHOTO-ID", "Get next and previous photos for a PHOTO-ID in a photostream.", command_photos_getContext, 1, 1}, {"photos.getCounts", "DATES TAKEN-DATES", "Get the counts for a set of DATES or TAKEN-DATES.", command_photos_getCounts, 0, 2}, {"photos.getExif", "PHOTO-ID", "Get EXIF information about one photo with id PHOTO-ID", command_photos_getExif, 1, 1}, {"photos.getFavorites", "PHOTO-ID [PER-PAGE [PAGE]]", "Get favourites information about one photo with id PHOTO-ID", command_photos_getFavorites, 1, 3}, {"photos.getInfo", "PHOTO-ID [SECRET]", "Get information about one photo PHOTO-ID with optional SECRET", command_photos_getInfo, 1, 2}, {"photos.getNotInSet", "[PER-PAGE [PAGE [FORMAT]]]", "Get list of photos that are not in any set", command_photos_getNotInSet, 0, 3}, {"photos.getPerms", "PHOTO-ID", "Get a photo viewing and commenting permissions", command_photos_getPerms, 1, 1}, {"photos.getRecent", "[PER-PAGE [PAGE [FORMAT]]]", "Get list of recent photos", command_photos_getRecent, 0, 3}, {"photos.getSizes", "PHOTO-ID", "Get sizes of a PHOTO-ID", command_photos_getSizes, 1, 1}, {"photos.getUntagged", "[PER-PAGE [PAGE [FORMAT]]]", "Get list of photos that are not tagged", command_photos_getUntagged, 0, 3}, {"photos.getWithGeoData", "[PER-PAGE [PAGE [FORMAT]]]", "Get list of photos that have geo data", command_photos_getWithGeoData, 0, 3}, {"photos.getWithoutGeoData", "[PER-PAGE [PAGE [FORMAT]]]", "Get list of photos that do not have geo data", command_photos_getWithoutGeoData, 0, 3}, {"photos.recentlyUpdated", "MIN-DATE [PER-PAGE [PAGE [FORMAT]]]", "Get list of photos that were recently updated", command_photos_recentlyUpdated, 1, 4}, {"photos.removeTag", "PHOTO-ID TAG-ID", "Remove a tag TAG-ID from a photo.", command_photos_removeTag, 2, 2}, {"photos.search", "[PARAMS] tags TAGS...", "Search for photos/videos with many optional parameters\n user USER tag-mode any|all text TEXT\n (min|max)-(upload|taken)-date DATE\n license LICENSE privacy PRIVACY bbox a,b,c,d\n sort date-(posted|taken)-(asc|desc)|interestingness-(desc|asc)|relevance\n accuracy 1-16 safe-search 1-3 type 1-4\n machine-tags TAGS machine-tag-mode any|all\n group-id ID place-id ID extras EXTRAS\n per-page PER-PAGE page PAGES\n media all|photos|videos has-geo\n lat LAT lon LON radius RADIUS radius-units km|mi\n contacts (all|ff)\n format FORMAT woeid WOEID\n geo-context 1-2\n in-commons in-gallery", command_photos_search, 1, 0}, {"photos.setContentType", "PHOTO-ID TYPE", "Set photo TYPE to one of 'photo', 'screenshot' or 'other'", command_photos_setContentType, 2, 2}, {"photos.setDates", "PHOTO-ID POSTED TAKEN GRANULARITY", "Set a photo POSTED date, TAKEN date with GRANULARITY", command_photos_setDates, 4, 4}, {"photos.setMeta", "PHOTO-ID TITLE DESCRIPTION", "Set a photo TITLE and DESCRIPTION", command_photos_setMeta, 3, 3}, {"photos.setPerms", "PHOTO-ID IS-PUBLIC IS-FRIEND IS-FAMILY PERM-COMMENT PERM-ADDMETA", "Set a photo viewing and commenting permissions", command_photos_setPerms, 6, 6}, {"photos.setSafetyLevel", "PHOTO-ID SAFETY-LEVEL HIDDEN", "Set a photo's SAFETY-LEVEL and HIDDEN flag", command_photos_setSafetyLevel, 3, 3}, {"photos.setTags", "PHOTO-ID TAGS", "Set the tags for a PHOTO-ID to TAGS.", command_photos_setTags, 2, 2}, {"photos.comments.addComment", "PHOTO-ID TEXT", "Add a photo comment TEXT to PHOTO-ID.", command_photos_comments_addComment, 2, 2}, {"photos.comments.deleteComment", "COMMENT-ID", "Delete a photo comment COMMENT-ID.", command_photos_comments_deleteComment, 1, 1}, {"photos.comments.editComment", "COMMENT-ID TEXT", "Edit a photo comment COMMENT-ID to have new TEXT.", command_photos_comments_editComment, 2, 2}, {"photos.comments.getList", "PHOTO-ID", "Get the comments for a photo PHOTO-ID.", command_photos_comments_getList, 1, 1}, {"photos.comments.getRecentForContacts", "[PARAMS]", "Get the list of photos for user contacts with recent comments\n since DATE-LAST-COMMENT filter CONTACTS-FILTER\n per-page PER-PAGE page PAGE format FORMAT", command_comments_getRecentForContacts, 0, 0}, {"photos.geo.getLocation", "PHOTO-ID", "Get the geo location for a photo PHOTO-ID.", command_photos_geo_getLocation, 1, 1}, {"photos.geo.getPerms", "PHOTO-ID", "Get the geo perms for a photo PHOTO-ID.", command_photos_geo_getPerms, 1, 1}, {"photos.geo.removeLocation", "PHOTO-ID", "Remove the location for a photo PHOTO-ID.", command_photos_geo_removeLocation, 1, 1}, {"photos.geo.setLocation", "PHOTO-ID LAT LONG ACCURACY", "Set the location for a photo PHOTO-ID.", command_photos_geo_setLocation, 4, 4}, {"photos.geo.setPerms", "PHOTO-ID IS-PUBLIC IS-CONTACT IS-FRIEND IS-FAMILY", "Set the geo perms for a photo PHOTO-ID.", command_photos_geo_setPerms, 5, 5}, {"photos.licenses.getInfo", "", "Get list of available photo licenses", command_photos_licenses_getInfo, 0, 0}, {"photos.licenses.setLicense", "PHOTO-ID LICENSE-ID", "Get photo PHOTO-ID license to LICENSE-ID", command_photos_licenses_setLicense, 2, 2}, {"photos.notes.add", "PHOTO-ID X Y W H TEXT", "Add a note (X, Y, W, H, TEXT) to a photo with id PHOTO-ID", command_photos_notes_add, 6, 6}, {"photos.notes.delete", "NOTE-ID", "Delete a note with id NOTE-ID", command_photos_notes_delete, 1, 1}, {"photos.notes.edit", "NOTE-ID X Y W H TEXT", "Edit note NOTE-ID to (X, Y, W, H, TEXT)", command_photos_notes_edit, 6, 6}, {"photos.people.add", "PHOTO-ID USER-ID X Y W H", "Mark USER-ID appearing in PHOTO-ID at (X, Y, W, H)", command_photos_people_add, 6, 6}, {"photos.people.delete", "PHOTO-ID USER-ID", "Mark USER-ID as not appearing in PHOTO-ID", command_photos_people_delete, 2, 2}, {"photos.people.deleteCoords", "PHOTO-ID USER-ID", "Mark USER-ID as not appearing at coordinates in PHOTO-ID", command_photos_people_deleteCoords, 2, 2}, {"photos.people.editCoords", "PHOTO-ID USER-ID X Y W H", "Update USER-ID appearing in PHOTO-ID to coords (X, Y, W, H)", command_photos_people_editCoords, 6, 6}, {"photos.people.getList", "PHOTO-ID", "Get list of users appearing in PHOTO-ID", command_photos_people_getList, 1, 1}, {"photos.transform.rotate", "PHOTO-ID DEGREES", "Rotate PHOTO-ID by 90/180/270 DEGREES", command_photos_transform_rotate, 2, 2}, {"photos.upload.checkTickets", "TICKET-IDS...", "Get the status of upload TICKET-IDS", command_photos_upload_checkTickets, 1, 1}, {"photosets.addPhoto", "PHOTOSET-ID PHOTO-ID", "Add PHOTO-ID to a PHOTOSET-ID.", command_photosets_addPhoto, 2, 2}, {"photosets.create", "TITLE DESCRIPTION PRIMARY-PHOTO-ID", "Create a photoset with TITLE, DESCRIPTION and PRIMARY-PHOTO-ID.", command_photosets_create, 3, 3}, {"photosets.delete", "PHOTOSET-ID", "Delete a photoset with PHOTOSET-ID.", command_photosets_delete, 1, 1}, {"photosets.editMeta", "PHOTOSET-ID TITLE DESCRIPTION", "Set the TITLE and/or DESCRIPTION of a PHOTOSET-ID.", command_photosets_editMeta, 3, 3}, {"photosets.editPhotos", "PHOTOSET-ID PRIMARY-PHOTO-ID PHOTO-IDS,...", "Set the PHOTO-IDs of a PHOTOSET-ID and PRIMARY-PHOTO-ID.", command_photosets_editPhotos, 3, 3}, {"photosets.getContext", "PHOTO-ID PHOTOSET-ID", "Get next and previous photos for PHOTO-ID in PHOTOSET-ID.", command_photosets_getContext, 2, 2}, {"photosets.getInfo", "PHOTOSET-ID", "Get information about PHOTOSET-ID.", command_photosets_getInfo, 1, 1}, {"photosets.getList", "[USER-NSID]", "Get the list of photosets for the USER-NSID.", command_photosets_getList, 0, 1}, {"photosets.getPhotos", "PHOTOSET-ID [EXTRAS [PRIVACY [PER-PAGE [PAGE [FORMAT]]]]]", "Get the list of photos in PHOTOSET-ID with options.", command_photosets_getPhotos, 1, 6}, {"photosets.orderSets", "PHOTOSET-IDS...", "Set the order of sets PHOTOSET-IDS.", command_photosets_orderSets, 1, 1}, {"photosets.removePhoto", "PHOTOSET-ID PHOTO-ID", "Remove PHOTO-ID from PHOTOSET-ID.", command_photosets_removePhoto, 2, 2}, {"photosets.removePhotos", "PHOTOSET-ID PHOTO-IDS...", "Remove PHOTO-IDS from PHOTOSET-ID.", command_photosets_removePhotos, 2, 2}, {"photosets.reorderPhotos", "PHOTOSET-ID PHOTO-IDS...", "Reorder PHOTO-IDS from PHOTOSET-ID.", command_photosets_reorderPhotos, 2, 2}, {"photosets.setPrimaryPhoto", "PHOTOSET-ID PHOTO-ID", "Set photoset PHOTOSET-ID primary photo to PHOTO-ID.", command_photosets_setPrimaryPhoto, 2, 2}, {"photosets.comments.addComment", "PHOTOSET-ID TEXT", "Add a comment TEXT to photoset PHOTOSET-ID.", command_photosets_comments_addComment, 2, 2}, {"photosets.comments.deleteComment", "COMMENT-ID", "Delete a photoset comment COMMENT-ID.", command_photosets_comments_deleteComment, 1, 1}, {"photosets.comments.editComment", "COMMENT-ID TEXT", "Edit a photoset comment COMMENT-ID to have new TEXT.", command_photosets_comments_editComment, 2, 2}, {"photosets.comments.getList", "PHOTOSET-ID", "Get the comments for a photoset PHOTOSET-ID.", command_photosets_comments_getList, 1, 1}, {"places.find", "TEXT", "Find places by TEXT query.", command_places_find, 1, 1}, {"places.findByLatLon", "LAT LON ACCURACY", "Find places by LAT and LON with ACCURACY 1-16.", command_places_findByLatLon, 3, 3}, {"places.getChildrenWithPhotosPublic", "PLACE-ID|- [WOE-ID|-]", "Find child places with public photos by PLACE-ID or WOE-ID", command_places_getChildrenWithPhotosPublic, 1, 2}, {"places.getInfo", "PLACE-ID|- [WOE-ID|-]", "Find place by PLACE-ID or WOE-ID", command_places_getInfo, 1, 2}, {"places.getInfoByUrl", "URL", "Find place by place URL", command_places_getInfoByUrl, 1, 1}, {"places.getPlaceTypes", "URL", "Get a list of available place types", command_places_getPlaceTypes, 0, 0}, {"places.getShapeHistory", "PLACE-ID|- [WOE-ID|-]", "Get history of shapes for a place by PLACE-ID or WOE-ID", command_places_getShapeHistory, 1, 0}, {"places.getTopPlacesList", "PLACE-TYPE [DATE [WOE-ID|- [PLACE-ID]]]", "Get the top 100 most geotagged places for a DATE (or yesterday).", command_places_getTopPlacesList, 1, 4}, {"places.placesForBoundingBox", "PLACE-TYPE MIN-LONG MIN-LAT MAX-LONG MAX-LAT", "Find user places of PLACE-TYPE in bbox.", command_places_placesForBoundingBox, 5, 5}, {"places.placesForContacts", "PLACE-TYPE WOE-ID|- PLACE-ID|- THRESHOLD [PARAMS]", "Find top 100 unique places clustered by a given PLACE-TYPE for a\nuser's contacts with optional parameters\n contacts CONTACTS min-upload MIN-UPLOAD-DATE max-upload MAX-UPLOAD-DATE\n min-taken MIN-TAKEN-DATE max-taken MAX-TAKEN-DATE", command_places_placesForContacts, 4, 0}, {"places.placesForUser", "PLACE-TYPE [WOE-ID] [PLACE-ID [THRESHOLD]]]", "Find user places of PLACE-TYPE.", command_places_placesForUser, 1, 4}, {"places.resolvePlaceId", "PLACE-ID / WOE-ID", "Find places information by PLACE-ID or WOE-ID (number).", command_places_resolvePlaceId, 1, 1}, {"places.resolvePlaceURL", "PLACE-URL", "Find places information by PLACE-URL.", command_places_resolvePlaceURL, 1, 1}, {"places.tagsForPlace", "PLACE-ID|- [WOE-ID|-]", "Get tags for a place by PLACE-ID or WOE-ID with optional parameters\n min-upload MIN-UPLOAD-DATE max-upload MAX-UPLOAD-DATE\n min-taken MIN-TAKEN-DATE max-taken MAX-TAKEN-DATE", command_places_tagsForPlace, 1, 0}, {"prefs.getContentType", "", "Get default content type preference for user.", command_prefs_getContentType, 0, 0}, {"prefs.getGeoPerms", "", "Get default privacy level for geographic info for user.", command_prefs_getGeoPerms, 0, 0}, {"prefs.getHidden", "", "Get default hidden preference for user.", command_prefs_getHidden, 0, 0}, {"prefs.getPrivacy", "", "Get default privacy preference for user.", command_prefs_getPrivacy, 0, 0}, {"prefs.getSafetyLevel", "", "Get default safety level for user.", command_prefs_getSafetyLevel, 0, 0}, {"reflection.getMethods", "", "Get API methods", command_reflection_getMethods, 0, 0}, {"reflection.getMethodInfo", "NAME", "Get information about an API method NAME", command_reflection_getMethodInfo, 1, 1}, {"stats.getCollectionDomains", "DATE [COLLECTION-ID [PER-PAGE [PAGE]]]", "Get collection domains stats", command_stats_getCollectionDomains, 1, 4}, {"stats.getCollectionReferrers", "DATE DOMAIN [COLLECTION-ID [PER-PAGE [PAGE]]]", "Get collection referrers stats", command_stats_getCollectionReferrers, 2, 5}, {"stats.getCollectionStats", "DATE COLLECTION-ID", "Get collection view count stats", command_stats_getCollectionStats, 2, 2}, {"stats.getPhotoDomains", "DATE [PHOTO-ID [PER-PAGE [PAGE]]]", "Get photo domains stats", command_stats_getPhotoDomains, 1, 4}, {"stats.getPhotoReferrers", "DATE DOMAIN [PHOTO-ID [PER-PAGE [PAGE]]]", "Get photo referrers stats", command_stats_getPhotoReferrers, 2, 5}, {"stats.getPhotoStats", "DATE PHOTO-ID", "Get photo view count stats", command_stats_getPhotoStats, 2, 2}, {"stats.getPhotosetDomains", "DATE [PHOTOSET-ID [PER-PAGE [PAGE]]]", "Get photoset domains stats", command_stats_getPhotosetDomains, 1, 4}, {"stats.getPhotosetReferrers", "DATE DOMAIN [PHOTOSET-ID [PER-PAGE [PAGE]]]", "Get photoset referrers stats", command_stats_getPhotosetReferrers, 2, 5}, {"stats.getPhotosetStats", "DATE PHOTOSET-ID", "Get photoset view count stats", command_stats_getPhotosetStats, 2, 2}, {"stats.getPhotostreamDomains", "DATE [PER-PAGE [PAGE]]", "Get photostream domains stats", command_stats_getPhotostreamDomains, 1, 3}, {"stats.getPhotostreamReferrers", "DATE DOMAIN [PER-PAGE [PAGE]]", "Get photostream referrers stats", command_stats_getPhotostreamReferrers, 2, 4}, {"stats.getPhotostreamStats", "DATE", "Get photostream view count stats", command_stats_getPhotostreamStats, 1, 1}, {"stats.getPopularPhotos", "[DATE [SORT [PER-PAGE [PAGE [EXTRAS]]]]]", "Get popular photos stats", command_stats_getPopularPhotos, 0, 5}, {"stats.getTotalViews", "[DATE]", "Get total stats", command_stats_getTotalViews, 0, 1}, {"tags.getClusters", "TAG", "Get list of tag clusters for TAG", command_tags_getClusters, 1, 1}, {"tags.getHotList", "[PERIOD [COUNT]]", "Get the list of hot tags for the given PERIOD (day, week)", command_tags_getHotList, 0, 2}, {"tags.getListPhoto", "PHOTO-ID", "Get the tag list for a PHOTO-ID.", command_tags_getListPhoto, 1, 1}, {"tags.getListUser", "[USER-NSID]", "Get the tag list for a USER-NSID (or current user).", command_tags_getListUser, 0, 1}, {"tags.getListUserPopular", "[USER-NSID [COUNT]]", "Get the popular tag list for a USER-NSID (or current user).", command_tags_getListUserPopular, 0, 2}, {"tags.getListUserRaw", "[TAG]", "Get the raw versions of a TAG (or all tags) for the current user.", command_tags_getListUserRaw, 0, 1}, {"tags.getMostFrequentlyUsed", "", "Get the most frequently used tags for the current user.", command_tags_getMostFrequentlyUsed, 0, 0}, {"tags.getRelated", "TAG", "Get a list of tags 'related' to TAG based on clustered usage analysis.", command_tags_getRelated, 1, 1}, {"test.echo", "KEY VALUE", "Test echo API call; echos KEY VALUE", command_test_echo, 2, 2}, {"test.login", "", "Test login API call: returns username", command_test_login, 0, 0}, {"test.null", "KEY VALUE", "Test null API call: no return", command_test_null, 0, 0}, {"urls.getGroup", "GROUP-ID", "Get the url of the group page for GROUP-ID.", command_urls_getGroup, 1, 1}, {"urls.getUserPhotos", "USER-NSID", "Get the url of the photo page for USER-NSID.", command_urls_getUserPhotos, 1, 1}, {"urls.getUserProfile", "USER-NSID", "Get the url of the profile page for USER-NSID.", command_urls_getUserProfile, 1, 1}, {"urls.lookupGroup", "URL", "Get a group NSID from the URL to a group's page or photo pool.", command_urls_lookupGroup, 1, 1}, {"urls.lookupUser", "URL", "Get a user NSID from the URL to a user's photo", command_urls_lookupUser, 1, 1}, {"upload", "FILE [PARAMS...]", "Upload a photo FILE with optional parameters PARAM or PARAM VALUE\n title TITLE\n description DESC\n safety_level 'safe' (default) or 'moderate' or 'restricted'\n content_type 'photo' (default) or screenshot' or 'other'\n hidden 'public' (default) or 'hidden'\n friend\n public\n family\n tags TAGS... [must be last param]", command_upload, 1, 0}, {"replace", "FILE PHOTO-ID [async]", "Replace a photo PHOTO-ID with a new FILE (async)", command_replace, 2, 3}, {"shorturi", "PHOTO-ID", "Get the http://flic.kr short uri for PHOTO-ID", command_short_uri, 1, 1}, {"getphotoid", "IMAGE-URL", "Get the photo id from a raw flickr farm IMAGE-URL", command_source_uri_to_photoid, 1, 1}, {"oauth.create", "[CALLBACK]", "Create OAuth request token/secret pair and show the authentication URL", command_oauth_create, 0, 1}, {"oauth.verify", "REQUEST-TOKEN REQUEST-TOKEN-SECRET VERIFIER", "Verify an OAuth request from `oauth.create'", command_oauth_verify, 3, 3}, {"oauth.upgrade", "", "Upgrade legacy authentication to OAuth", command_oauth_upgrade, 0, 0}, {NULL, NULL, NULL, NULL, 0, 0} }; static const char *title_format_string = "Flickr API utility %s\n"; static void print_help_string(void) { int i; printf(title_format_string, flickcurl_version_string); puts("Call the Flickr API to get information."); printf("Usage: %s [OPTIONS] command args...\n\n", program); fputs(flickcurl_copyright_string, stdout); fputs("\nLicense: ", stdout); puts(flickcurl_license_string); fputs("Flickcurl home page: ", stdout); puts(flickcurl_home_url_string); fputs("\n", stdout); puts(HELP_TEXT("a", "auth FROB ", "Authenticate with a FROB and write auth config")); puts(HELP_TEXT("d", "delay DELAY ", "Set delay between requests in milliseconds")); puts(HELP_TEXT("h", "help ", "Print this help, then exit")); #ifdef FLICKCURL_MAINTAINER puts(HELP_TEXT("m", "maintainer TYPE ", "Print formatted fragments for maintainer use, then exit")); #endif puts(HELP_TEXT("o", "output FILE ", "Write format = FORMAT results to FILE")); puts(HELP_TEXT("q", "quiet ", "Print less information while running")); puts(HELP_TEXT("v", "version ", "Print the flickcurl version")); puts(HELP_TEXT("V", "verbose ", "Print more information while running")); fputs("\nCommands:\n", stdout); for(i = 0; commands[i].name; i++) printf(" %-28s %s\n %s\n", commands[i].name, commands[i].args, commands[i].description); fputs("\nNSID is a user's Flickr ID, resembling the form 00000000@N00\n", stdout); fputs("\nA prefix of `flickr.' may be optionally given in all commands\n", stdout); fputs("\nParameters for API calls that return lists of photos:\n", stdout); fputs("\n EXTRAS is a comma-separated list of optional fields to return from:\n", stdout); for(i = 0; 1; i++) { const char* name; const char* label; if(flickcurl_get_extras_format_info(i, &name, &label)) break; printf(" %-16s %s\n", name, label); } fputs("\n GROUP-EXTRAS is a comma-separated list of optional fields to return from:\n", stdout); fputs(" privacy\n", stdout); fputs(" throttle\n", stdout); fputs(" restrictions\n", stdout); fputs("\n FORMAT is result syntax format:\n", stdout); for(i = 0; 1; i++) { const char* name; const char* label; if(flickcurl_get_feed_format_info(i, &name, &label, NULL)) break; printf(" %-16s %s\n", name, label); } fputs("\n PAGE is result page number or '-' for default (1 = first page)\n" "\n PER-PAGE is photos per result page or '-' for default (10)\n", stdout ); /* Extra space for neater distinctions in output */ fputs("\n", stdout); } int main(int argc, char *argv[]) { flickcurl *fc = NULL; int rc = 0; int usage = 0; int help = 0; int cmd_index= -1; int read_auth = 1; int i; const char* home; int request_delay= -1; char *command = NULL; output_fh = stdout; flickcurl_init(); program = my_basename(argv[0]); home = getenv("HOME"); if(home) sprintf(config_path, "%s/%s", home, config_filename); else strcpy(config_path, config_filename); /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { rc = 1; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(read_auth) { if(!access((const char*)config_path, R_OK)) { if(flickcurl_config_read_ini(fc, config_path, config_section, fc, flickcurl_config_var_handler)) { rc = 1; goto tidy; } } else { /* Check if the user has requested to see the help message */ for (i = 0; i < argc; ++i) { if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) { print_help_string(); } } fprintf(stderr, "%s: Configuration file %s not found.\n\n" "1. Visit http://www.flickr.com/services/api/keys/ to get an \n" " and .\n" "\n" "2. Create %s in this format:\n" "[flickr]\n" "oauth_client_key=\n" "oauth_client_secret=\n" "\n" "3. Call this program with:\n" " %s oauth.create\n" " (or %s oauth.create if you understand and need that)\n" "This gives a and \n" "\n" "4. Visit the and approve the request to get a \n" "\n" "5. Call this program with the , \n" " and :\n" " %s oauth.verify \n" "\n" "This will write the configuration file with the OAuth access tokens.\n" "See http://librdf.org/flickcurl/api/flickcurl-auth.html for full instructions.\n", program, config_path, config_path, program, program, program); rc = 1; goto tidy; } } while (!usage && !help) { int c; char* auth_token = NULL; #ifdef HAVE_GETOPT_LONG int option_index = 0; c = getopt_long (argc, argv, GETOPT_STRING GETOPT_STRING_MORE, long_options, &option_index); #else c = getopt (argc, argv, GETOPT_STRING GETOPT_STRING_MORE); #endif if (c == -1) break; switch (c) { case 0: case '?': /* getopt() - unknown option */ usage = 1; break; case 'a': /* Exchange the frob for a full token */ auth_token = flickcurl_auth_getFullToken(fc, optarg); if(!auth_token) { fprintf(stderr, "%s: Could not find auth_token in getFullToken response\n", program); rc = 1; } else { fprintf(stdout, "%s: Successfully exchanged frob %s for authentication token\n", program, optarg); flickcurl_set_auth_token(fc, auth_token); rc = flickcurl_config_write_ini(fc, config_path, config_section); if(!rc) fprintf(stdout, "%s: Updated configuration file %s with authentication token\n", program, config_path); } goto tidy; case 'd': if(optarg) request_delay = atoi(optarg); break; case 'h': help = 1; break; #ifdef FLICKCURL_MAINTAINER case 'm': /* reusing rc since we set it and return it anyway */ rc = atoi(optarg); if(rc == 0) { puts(".LP\n" "In the following list of commands:\n" ".br\n" "\\fIPER-PAGE\\fR is photos per result page or '-' for default (10)\n" ".br\n" "\\fIPAGE\\fR is result page number or '-' for default (1 = first page)\n" ); qsort(commands, (sizeof(commands) / sizeof(flickcurl_cmd))-1, sizeof(flickcurl_cmd), flickcurl_cmd_compare); for(i = 0; commands[i].name; i++) { int d, dc, nl = 1, lastdc= -1; printf(".IP \"\\fB%s\\fP \\fI%s\\fP\"\n", commands[i].name, commands[i].args); for(d = 0; (dc = commands[i].description[d]); d++) { if(nl && dc == ' ') { lastdc = dc; continue; } if(dc == ' ' && lastdc == ' ') { puts("\n.br"); do { d++; dc = commands[i].description[d]; } while(dc == ' '); } nl = 0; if(dc == '\n') { puts("\n.br"); nl = 1; } else putchar(dc); lastdc = dc; } putchar('\n'); } puts(".SH Extras Fields"); puts("The \\fBEXTRAS\\fP parameter can take a comma-separated set of the following values"); for(i = 0; 1; i++) { const char* name; const char* label; if(flickcurl_get_extras_format_info(i, &name, &label)) break; printf(".TP\n\\fB%s\\fP\n%s\n", name, label); } puts(".SH Photos List Feed Formats"); puts("The \\fBFORMAT\\fP parameter can take any of the following values"); for(i = 0; 1; i++) { const char* name; const char* label; if(flickcurl_get_feed_format_info(i, &name, &label, NULL)) break; printf(".TP\n\\fB%s\\fP\n%s\n", name, label); } rc = 0; } else if (rc == 1) { puts(""); for(i = 0; 1; i++) { const char* name; const char* label; if(flickcurl_get_extras_format_info(i, &name, &label)) break; printf(" \n" " %s\n" " %s\n" " \n", name, label); } puts(""); rc = 0; } else { fprintf(stderr, "%s: Unknown maintainer info flag %s / %d", program, optarg, rc); rc = 1; } goto tidy; #endif case 'o': if(optarg) { output_filename = optarg; output_fh = fopen(output_filename, "w"); if(!output_fh) { fprintf(stderr, "%s: Failed to write to output file %s: %s\n", program, output_filename, strerror(errno)); rc = 1; goto tidy; } } break; case 'q': verbose = 0; break; case 'v': fputs(flickcurl_version_string, stdout); fputc('\n', stdout); exit(0); case 'V': verbose = 2; break; } } argv += optind; argc -= optind; if(!help && !argc) { usage = 2; /* Title and usage */ goto usage; } if(usage || help) goto usage; if(request_delay >= 0) flickcurl_set_request_delay(fc, request_delay); command = argv[0]; /* allow old format commands to work */ for(i = 0; command[i]; i++) { if(command[i] == '-') command[i] = '.'; } if(!strncmp(command, "flickr.", 7)) command+= 7; if(!strcmp(command, "places.forUser")) command = (char*)"places.placesForUser"; for(i = 0; commands[i].name; i++) if(!strcmp(command, commands[i].name)) { cmd_index = i; break; } if(cmd_index < 0) { fprintf(stderr, "%s: No such command `%s'\n", program, command); usage = 1; goto usage; } if((argc-1) < commands[cmd_index].min) { fprintf(stderr, "%s: Minimum of %d arguments for command `%s'\n USAGE: %s %s %s\n", program, commands[cmd_index].min, command, program, command, commands[cmd_index].args); usage = 1; goto usage; } if(commands[cmd_index].max > 0 && (argc-1) > commands[cmd_index].max) { fprintf(stderr, "%s: Maxiumum of %d arguments for command `%s'\n USAGE: %s %s %s\n", program, commands[cmd_index].max, command, program, command, commands[cmd_index].args); usage = 1; goto usage; } usage: if(usage) { if(usage>1) { fprintf(stderr, title_format_string, flickcurl_version_string); fputs("Flickcurl home page: ", stderr); fputs(flickcurl_home_url_string, stderr); fputc('\n', stderr); fputs(flickcurl_copyright_string, stderr); fputs("\nLicense: ", stderr); fputs(flickcurl_license_string, stderr); fputs("\n\n", stderr); } fprintf(stderr, "Try `%s " HELP_ARG(h, help) "' for more information.\n", program); rc = 1; goto tidy; } if(help) { print_help_string(); rc = 0; goto tidy; } /* Perform the API call */ rc = commands[cmd_index].handler(fc, argc, argv); if(rc) fprintf(stderr, "%s: Command %s failed\n", program, argv[0]); tidy: if(output_fh) { fclose(output_fh); output_fh = NULL; } if(fc) flickcurl_free(fc); flickcurl_finish(); return(rc); } flickcurl-1.25/utils/raptor_fake.h0000644000175000017500000000716412016712660014157 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * raptor_fake.h - Fake Raptor V2 API - just enough for flickrdf.c * * Copyright (C) 2011-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ /* Fake Raptor does not use world */ typedef void raptor_world; typedef enum { RAPTOR_TERM_TYPE_UNKNOWN, RAPTOR_TERM_TYPE_URI, RAPTOR_TERM_TYPE_LITERAL, RAPTOR_TERM_TYPE_BLANK } raptor_term_type; /* Fake Raptor uses char* for uris */ typedef char raptor_uri; typedef struct { unsigned char *string; unsigned int string_len; raptor_uri *datatype; unsigned char *language; unsigned char language_len; } raptor_term_literal_value; typedef struct { unsigned char *string; unsigned int string_len; } raptor_term_blank_value; typedef union { raptor_uri *uri; raptor_term_literal_value literal; raptor_term_blank_value blank; } raptor_term_value; typedef struct { raptor_world* world; raptor_term_type type; raptor_term_value value; } raptor_term; typedef struct { raptor_world* world; /* int usage; */ raptor_term* subject; raptor_term* predicate; raptor_term* object; /* raptor_term* graph; */ } raptor_statement; typedef struct { FILE* fh; int output_turtle; } raptor_serializer; typedef struct { const char* const names[2]; const char* label; /* omitting fields unused in this program */ } raptor_syntax_description; raptor_world* raptor_new_world(void); int raptor_world_open(raptor_world* world); void raptor_free_world(raptor_world* world); int raptor_world_is_serializer_name(raptor_world* world, const char* name); const raptor_syntax_description* raptor_world_get_serializer_description(raptor_world* world, unsigned int counter); raptor_uri* raptor_new_uri(raptor_world* world, const unsigned char *uri_string); raptor_uri* raptor_new_uri_from_uri_local_name(raptor_world* world, raptor_uri *uri, const unsigned char *local_name); raptor_uri* raptor_new_uri_from_uri(raptor_uri *uri); void raptor_free_uri(raptor_uri* u); raptor_term* raptor_new_term_from_blank(raptor_world* world, const unsigned char* blank); raptor_term* raptor_new_term_from_uri_string(raptor_world* world, const unsigned char *uri_string); raptor_term* raptor_new_term_from_uri(raptor_world* world, raptor_uri* uri); raptor_term* raptor_new_term_from_literal(raptor_world* world, const unsigned char* literal, raptor_uri* datatype, const unsigned char* language); void raptor_free_term(raptor_term* term); raptor_serializer* raptor_new_serializer(raptor_world* world, const char* serializer_name); void raptor_free_serializer(raptor_serializer* s); void raptor_serializer_set_namespace(raptor_serializer* serializer, raptor_uri* uri, const unsigned char* prefix); void raptor_serializer_start_to_file_handle(raptor_serializer* serializer, raptor_uri* base_uri, FILE* fh); void raptor_serializer_serialize_statement(raptor_serializer* serializer, raptor_statement* s); void raptor_serializer_serialize_end(raptor_serializer* serializer); void raptor_statement_init(raptor_statement *statement, raptor_world *world); void raptor_statement_clear(raptor_statement *statement); flickcurl-1.25/utils/codegen.c0000644000175000017500000003031312157645243013261 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * codegen utility - Make C code from Flickr API by reflection * * Copyright (C) 2007-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * * USAGE: codegen [OPTIONS] flickr.section * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif /* many places for getopt */ #ifdef HAVE_GETOPT_H #include #else #include #endif #include #ifdef NEED_OPTIND_DECLARATION extern int optind; extern char *optarg; #endif static const char* program; static const char* my_basename(const char *name) { char *p; if((p = strrchr(name, '/'))) name = p+1; else if((p = strrchr(name, '\\'))) name = p+1; return name; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } #ifdef HAVE_GETOPT_LONG #define HELP_TEXT(short, long, description) " -" short ", --" long " " description #define HELP_TEXT_LONG(long, description) " --" long " " description #define HELP_ARG(short, long) "--" #long #define HELP_PAD "\n " #else #define HELP_TEXT(short, long, description) " -" short " " description #define HELP_TEXT_LONG(long, description) #define HELP_ARG(short, long) "-" #short #define HELP_PAD "\n " #endif #define GETOPT_STRING "d:hv" #ifdef HAVE_GETOPT_LONG static struct option long_options[] = { /* name, has_arg, flag, val */ {"delay", 1, 0, 'd'}, {"help", 0, 0, 'h'}, {"version", 0, 0, 'v'}, {NULL, 0, 0, 0} }; #endif #define IS_INT_ARG(arg) (!strcmp(arg->name, "per_page") || !strcmp(arg->name, "page")) #define IS_OPTIONAL_ARG(arg) (!strcmp(arg->name, "per_page") || !strcmp(arg->name, "page")) static const char *title_format_string = "Skeleton code generator utility %s\n"; static const char* config_filename = ".flickcurl.conf"; static const char* config_section = "flickr"; int main(int argc, char *argv[]) { flickcurl *fc = NULL; int rc = 0; int usage = 0; int help = 0; int read_auth = 1; int i; const char* home; char config_path[1024]; int request_delay= -1; char section[50]; size_t section_len; char** methods = NULL; flickcurl_init(); program = my_basename(argv[0]); home = getenv("HOME"); if(home) sprintf(config_path, "%s/%s", home, config_filename); else strcpy(config_path, config_filename); while (!usage && !help) { int c; #ifdef HAVE_GETOPT_LONG int option_index = 0; c = getopt_long (argc, argv, GETOPT_STRING, long_options, &option_index); #else c = getopt (argc, argv, GETOPT_STRING); #endif if (c == -1) break; switch (c) { case 0: case '?': /* getopt() - unknown option */ usage = 1; break; case 'd': if(optarg) request_delay = atoi(optarg); break; case 'h': help = 1; break; case 'v': fputs(flickcurl_version_string, stdout); fputc('\n', stdout); exit(0); } } if(help) goto help; if(argc < 2) { fprintf(stderr, "%s: No API section given\n", program); usage = 1; } if(usage) { if(usage>1) { fprintf(stderr, title_format_string, flickcurl_version_string); fputs("Flickcurl home page: ", stderr); fputs(flickcurl_home_url_string, stderr); fputc('\n', stderr); fputs(flickcurl_copyright_string, stderr); fputs("\nLicense: ", stderr); fputs(flickcurl_license_string, stderr); fputs("\n\n", stderr); } fprintf(stderr, "Try `%s " HELP_ARG(h, help) "' for more information.\n", program); rc = 1; goto tidy; } help: if(help) { printf(title_format_string, flickcurl_version_string); puts("Generate C code from Flickr API by reflection."); printf("Usage: %s [OPTIONS] command args...\n\n", program); fputs(flickcurl_copyright_string, stdout); fputs("\nLicense: ", stdout); puts(flickcurl_license_string); fputs("Flickcurl home page: ", stdout); puts(flickcurl_home_url_string); fputs("\n", stdout); puts(HELP_TEXT("d", "delay DELAY ", "Set delay between requests in milliseconds")); puts(HELP_TEXT("h", "help ", "Print this help, then exit")); puts(HELP_TEXT("v", "version ", "Print the flickcurl version")); rc = 0; goto tidy; } /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { rc = 1; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(read_auth && !access((const char*)config_path, R_OK)) { if(flickcurl_config_read_ini(fc, config_path, config_section, fc, flickcurl_config_var_handler)) { rc = 1; goto tidy; } } if(request_delay >= 0) flickcurl_set_request_delay(fc, request_delay); strcpy(section, "flickr."); strcpy(section+7, argv[1]); /* allow old format commands to work */ for(i = 0; section[i]; i++) { if(section[i] == '-') section[i] = '.'; } if(!strncmp(section, "flickr.flickr", 13)) strcpy(section, section+7); section_len = strlen(section); fprintf(stderr, "%s: section '%s'\n", program, section); methods = flickcurl_reflection_getMethods(fc); if(!methods) { fprintf(stderr, "%s: getMethods failed\n", program); rc = 1; goto tidy; } fprintf(stdout, "/* -*- Mode: c; c-basic-offset: 2 -*-\n" " *\n" " * %s-api.c - Flickr %s.* API calls\n" " *\n", argv[1], section); fprintf(stdout, " * Copyright (C) 2010-2012, David Beckett http://www.dajobe.org/\n" " * \n" " * This file is licensed under the following three licenses as alternatives:\n" " * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version\n" " * 2. GNU General Public License (GPL) V2 or any newer version\n" " * 3. Apache License, V2.0 or any newer version\n" " * \n" " * You may not use this file except in compliance with at least one of\n" " * the above three licenses.\n" " * \n" " * See LICENSE.html or LICENSE.txt at the top of this package for the\n" " * complete terms and further detail along with the license texts for\n" " * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.\n" " * \n" " */\n" "\n" "#include \n" "#include \n" "#include \n" "\n" "#ifdef HAVE_CONFIG_H\n" "#include \n" "#endif\n" "\n" "#ifdef HAVE_STDLIB_H\n" "#include \n" "#undef HAVE_STDLIB_H\n" "#endif\n" "#ifdef HAVE_UNISTD_H\n" "#include \n" "#endif\n" "\n" "#include \n" "#include \n" "\n" "\n" ); for(i = 0; methods[i]; i++) { flickcurl_method* method; char* method_name; char function_name[100]; int c, j; int is_write = 0; if(strncmp(methods[i], section, section_len)) continue; method = flickcurl_reflection_getMethodInfo(fc, methods[i]); if(!method) { fprintf(stderr, "%s: getMethodInfo(%s) failed\n", program, methods[i]); rc = 1; break; } method_name = method->name; if( strstr(method_name, ".add") || strstr(method_name, ".create") || strstr(method_name, ".delete") || strstr(method_name, ".edit") || strstr(method_name, ".remove") || strstr(method_name, ".set") ) is_write = 1; strcpy(function_name, "flickcurl_"); for(j = 0; (c = methods[i][j+7]); j++) { if(c == '.') c = '_'; function_name[j+10] = c; } function_name[j+10] = '\0'; fprintf(stdout, "/**\n * %s:\n", function_name); /* fixed arguments */ fprintf(stdout, " * @fc: flickcurl context\n"); if(method->args_count) { int argi; for(argi = 0; method->args[argi]; argi++) { flickcurl_arg* arg = method->args[argi]; if(!strcmp(arg->name, "api_key")) continue; fprintf(stdout, " * @%s: %s", arg->name, arg->description); if(arg->optional) { fputs((IS_INT_ARG(arg)? " (or < 0)" : " (or NULL)"), stdout); } fputc('\n', stdout); } } fprintf(stdout, " * \n" " * %s\n" " *\n" " * Implements %s (%s)\n", method->description, method->name, flickcurl_version_string ); fprintf(stdout, " * \n" " * Return value: non-0 on failure\n" " **/\n" ); fprintf(stdout, "int\n%s(flickcurl* fc", function_name); if(method->args_count) { int argi; for(argi = 0; method->args[argi]; argi++) { flickcurl_arg* arg = method->args[argi]; if(!strcmp(arg->name, "api_key")) continue; if(IS_INT_ARG(arg)) { fprintf(stdout, ", int %s", arg->name); } else { fprintf(stdout, ", const char* %s", arg->name); } } } fprintf(stdout, ")\n{\n"); fprintf(stdout, " xmlDocPtr doc = NULL;\n" " xmlXPathContextPtr xpathCtx = NULL; \n" " void* result = NULL;\n"); if(method->args_count) { int argi; for(argi = 0; method->args[argi]; argi++) { flickcurl_arg* arg = method->args[argi]; if(IS_INT_ARG(arg)) { fprintf(stdout, " char %s_str[10];\n", arg->name); } } } fputs( "\n" " flickcurl_init_params(fc, 0);\n" "\n", stdout); if(method->args_count) { int argi; int print_or = 0; fprintf(stdout, " if("); for(argi = 0; method->args[argi]; argi++) { flickcurl_arg* arg = method->args[argi]; if(!strcmp(arg->name, "api_key")) continue; if(!arg->optional) { if(print_or) fprintf(stdout, " || "); fprintf(stdout, "!%s", arg->name); print_or = 1; } } fprintf(stdout, ")\n" " return 1;\n" "\n"); } if(method->args_count) { int argi; for(argi = 0; method->args[argi]; argi++) { flickcurl_arg* arg = method->args[argi]; if(!strcmp(arg->name, "api_key")) continue; if(arg->optional) { if(IS_INT_ARG(arg)) { fprintf(stdout, " if(%s >= 0) {\n" " sprintf(%s_str, \"%%d\", %s);\n" " flickcurl_add_param(fc, \"%s\", %s_str);\n" " }\n", arg->name, arg->name, arg->name, arg->name, arg->name); continue; } fprintf(stdout, " if(%s)\n", arg->name); } fprintf(stdout, " flickcurl_add_param(fc, \"%s\", %s);\n", arg->name, arg->name); } } fprintf(stdout, "\n" " flickcurl_end_params(fc);\n" "\n" " if(flickcurl_prepare(fc, \"%s\"))\n" " goto tidy;\n" "\n", method->name); if(is_write) fprintf(stdout, " flickcurl_set_write(fc, 1);\n" " flickcurl_set_data(fc, (void*)\"\", 0);\n" "\n" ); fprintf(stdout, " doc = flickcurl_invoke(fc);\n" " if(!doc)\n" " goto tidy;\n" "\n" "\n" " xpathCtx = xmlXPathNewContext(doc);\n" " if(!xpathCtx) {\n" " flickcurl_error(fc, \"Failed to create XPath context for document\");\n" " fc->failed = 1;\n" " goto tidy;\n" " }\n" "\n" " result = NULL; /* your code here */\n" "\n" " tidy:\n" " if(xpathCtx)\n" " xmlXPathFreeContext(xpathCtx);\n" "\n" " if(fc->failed)\n" " result = NULL;\n" "\n" " return (result == NULL);\n" "}\n" "\n" "\n"); flickcurl_free_method(method); } tidy: if(methods) { for(i = 0; methods[i]; i++) free(methods[i]); free(methods); methods = NULL; } if(fc) flickcurl_free(fc); flickcurl_finish(); return(rc); } flickcurl-1.25/utils/list-methods.c0000644000175000017500000001350012016712660014260 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * list-methods utility - List all Flickr API methods via reflection * * Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * * USAGE: list-methods [OPTIONS] * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif /* many places for getopt */ #ifdef HAVE_GETOPT_H #include #else #include #endif #include #ifdef NEED_OPTIND_DECLARATION extern int optind; extern char *optarg; #endif static const char* program; static const char* my_basename(const char *name) { char *p; if((p = strrchr(name, '/'))) name = p+1; else if((p = strrchr(name, '\\'))) name = p+1; return name; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } #ifdef HAVE_GETOPT_LONG #define HELP_TEXT(short, long, description) " -" short ", --" long " " description #define HELP_TEXT_LONG(long, description) " --" long " " description #define HELP_ARG(short, long) "--" #long #define HELP_PAD "\n " #else #define HELP_TEXT(short, long, description) " -" short " " description #define HELP_TEXT_LONG(long, description) #define HELP_ARG(short, long) "-" #short #define HELP_PAD "\n " #endif #define GETOPT_STRING "hv" #ifdef HAVE_GETOPT_LONG static struct option long_options[] = { /* name, has_arg, flag, val */ {"help", 0, 0, 'h'}, {"version", 0, 0, 'v'}, {NULL, 0, 0, 0} }; #endif static const char *title_format_string = "List Flickr API methods utility %s\n"; static const char* config_filename = ".flickcurl.conf"; static const char* config_section = "flickr"; static int compare_strings(const void *a, const void *b) { return strcmp(*((char**)a), *((char**)b)); } int main(int argc, char *argv[]) { flickcurl *fc = NULL; int rc = 0; int usage = 0; int help = 0; int read_auth = 1; int i; const char* home; char config_path[1024]; char** methods = NULL; int count = 0; flickcurl_init(); program = my_basename(argv[0]); home = getenv("HOME"); if(home) sprintf(config_path, "%s/%s", home, config_filename); else strcpy(config_path, config_filename); while (!usage && !help) { int c; #ifdef HAVE_GETOPT_LONG int option_index = 0; c = getopt_long (argc, argv, GETOPT_STRING, long_options, &option_index); #else c = getopt (argc, argv, GETOPT_STRING); #endif if (c == -1) break; switch (c) { case 0: case '?': /* getopt() - unknown option */ usage = 1; break; case 'h': help = 1; break; case 'v': fputs(flickcurl_version_string, stdout); fputc('\n', stdout); exit(0); } } if(help) goto help; if(argc != 1) { fprintf(stderr, "%s: Extra arguments given\n", program); usage = 1; } if(usage) { if(usage>1) { fprintf(stderr, title_format_string, flickcurl_version_string); fputs("Flickcurl home page: ", stderr); fputs(flickcurl_home_url_string, stderr); fputc('\n', stderr); fputs(flickcurl_copyright_string, stderr); fputs("\nLicense: ", stderr); fputs(flickcurl_license_string, stderr); fputs("\n\n", stderr); } fprintf(stderr, "Try `%s " HELP_ARG(h, help) "' for more information.\n", program); rc = 1; goto tidy; } help: if(help) { printf(title_format_string, flickcurl_version_string); puts("List Flickr API methods by reflection."); printf("Usage: %s [OPTIONS]\n\n", program); fputs(flickcurl_copyright_string, stdout); fputs("\nLicense: ", stdout); puts(flickcurl_license_string); fputs("Flickcurl home page: ", stdout); puts(flickcurl_home_url_string); fputs("\n", stdout); puts(HELP_TEXT("h", "help ", "Print this help, then exit")); puts(HELP_TEXT("v", "version ", "Print the flickcurl version")); rc = 0; goto tidy; } /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { rc = 1; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(read_auth && !access((const char*)config_path, R_OK)) { if(flickcurl_config_read_ini(fc, config_path, config_section, fc, flickcurl_config_var_handler)) { rc = 1; goto tidy; } } methods = flickcurl_reflection_getMethods(fc); if(!methods) { fprintf(stderr, "%s: getMethods failed\n", program); rc = 1; goto tidy; } for(i = 0; methods[i]; i++) ; count = i; fprintf(stderr, "%s: Found %d API methods\n", program, count); /* it seems to be sorted when returned but ensure it anyway */ qsort(methods, count, sizeof(char*), compare_strings); for(i = 0; methods[i]; i++) { fputs((const char*)methods[i], stdout); fputc('\n', stdout); } tidy: if(methods) { for(i = 0; methods[i]; i++) free(methods[i]); free(methods); methods = NULL; } if(fc) flickcurl_free(fc); flickcurl_finish(); return(rc); } flickcurl-1.25/utils/flickrdf.c0000644000175000017500000002726712157645504013457 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * flickrdf - Triples from Flickrs * * Copyright (C) 2011-2012, David Beckett http://www.dajobe.org/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * * * USAGE: flickrdf [OPTIONS] FLICKR-PHOTO-URI * * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif /* many places for getopt */ #ifdef HAVE_GETOPT_H #include #else #include #endif #include #ifdef HAVE_RAPTOR #include #else #include #endif #ifdef NEED_OPTIND_DECLARATION extern int optind; extern char *optarg; #endif static const char* program; static int debug = 0; static const char* my_basename(const char *name) { char *p; if((p = strrchr(name, '/'))) name = p+1; else if((p = strrchr(name, '\\'))) name = p+1; return name; } static void my_message_handler(void *user_data, const char *message) { fprintf(stderr, "%s: ERROR: %s\n", program, message); } #ifdef HAVE_GETOPT_LONG #define HELP_TEXT(short, long, description) " -" short ", --" long " " description #define HELP_TEXT_LONG(long, description) " --" long " " description #define HELP_ARG(short, long) "--" #long #define HELP_PAD "\n " #else #define HELP_TEXT(short, long, description) " -" short " " description #define HELP_TEXT_LONG(long, description) #define HELP_ARG(short, long) "-" #short #define HELP_PAD "\n " #endif #define GETOPT_STRING "Dd:ho:v" #ifdef HAVE_GETOPT_LONG static struct option long_options[] = { /* name, has_arg, flag, val */ {"debug", 1, 0, 'D'}, {"delay", 1, 0, 'd'}, {"help", 0, 0, 'h'}, {"output", 1, 0, 'o'}, {"version", 0, 0, 'v'}, {NULL, 0, 0, 0} }; #endif static raptor_world* rworld; static void ser_emit_namespace(void* user_data, const char *prefix, size_t prefix_len, const char* uri, size_t uri_len) { raptor_serializer* serializer = (raptor_serializer*)user_data; raptor_uri *ns_uri = NULL; ns_uri = raptor_new_uri(rworld, (const unsigned char*)uri); raptor_serializer_set_namespace(serializer, ns_uri, (const unsigned char*)prefix); raptor_free_uri(ns_uri); } static void ser_emit_triple(void* user_data, const char* subject, int subject_type, const char* predicate_nspace, const char* predicate_name, const char *object, int object_type, const char *datatype_uri) { raptor_serializer* serializer = (raptor_serializer*)user_data; raptor_statement s; /* static */ raptor_uri* predicate_ns_uri; raptor_uri* predicate_uri; raptor_statement_init(&s, rworld); if(subject_type == FLICKCURL_TERM_TYPE_RESOURCE) s.subject = raptor_new_term_from_uri_string(rworld, (const unsigned char*)subject); else /* blank node */ s.subject = raptor_new_term_from_blank(rworld, (const unsigned char*)subject); predicate_ns_uri = raptor_new_uri(rworld, (const unsigned char*)predicate_nspace); predicate_uri = raptor_new_uri_from_uri_local_name(rworld, predicate_ns_uri, (const unsigned char*)predicate_name); s.predicate = raptor_new_term_from_uri(rworld, predicate_uri); raptor_free_uri(predicate_uri); raptor_free_uri(predicate_ns_uri); if(object_type == FLICKCURL_TERM_TYPE_RESOURCE) s.object = raptor_new_term_from_uri_string(rworld, (const unsigned char*)object); else if(object_type == FLICKCURL_TERM_TYPE_BLANK) s.object = raptor_new_term_from_blank(rworld, (const unsigned char*)subject); else { /* literal */ raptor_uri* raptor_datatype_uri = NULL; if(datatype_uri) raptor_datatype_uri = raptor_new_uri(rworld, (const unsigned char*)datatype_uri); s.object = raptor_new_term_from_literal(rworld, (const unsigned char*)object, raptor_datatype_uri, NULL /* language */); raptor_free_uri(raptor_datatype_uri); } raptor_serializer_serialize_statement(serializer, &s); raptor_statement_clear(&s); } static void ser_emit_finish(void* user_data) { raptor_serializer* serializer = (raptor_serializer*)user_data; raptor_serializer_serialize_end(serializer); } static flickcurl_serializer_factory flickrdf_serializer_factory = { 1, ser_emit_namespace, ser_emit_triple, ser_emit_finish }; static const char *title_format_string = "Flickrdf - triples from flickrs %s\n"; static const char* config_filename = ".flickcurl.conf"; static const char* config_section = "flickr"; int main(int argc, char *argv[]) { flickcurl *fc = NULL; int rc = 0; int usage = 0; int help = 0; const char* home; char config_path[1024]; char* photo_id = NULL; const char* prefix_uri = "http://www.flickr.com/photos/"; size_t prefix_uri_len = strlen(prefix_uri); const char *serializer_syntax_name = "ntriples"; raptor_uri* base_uri = NULL; raptor_serializer* serializer = NULL; int request_delay= -1; flickcurl_serializer* fs = NULL; flickcurl_photo* photo = NULL; program = my_basename(argv[0]); flickcurl_init(); rworld = raptor_new_world(); raptor_world_open(rworld); home = getenv("HOME"); if(home) sprintf(config_path, "%s/%s", home, config_filename); else strcpy(config_path, config_filename); while (!usage && !help) { int c; #ifdef HAVE_GETOPT_LONG int option_index = 0; c = getopt_long (argc, argv, GETOPT_STRING, long_options, &option_index); #else c = getopt (argc, argv, GETOPT_STRING); #endif if (c == -1) break; switch (c) { case 0: case '?': /* getopt() - unknown option */ usage = 1; break; case 'd': if(optarg) request_delay = atoi(optarg); break; case 'D': debug = 1; break; case 'h': help = 1; break; case 'o': if(optarg) { if(raptor_world_is_serializer_name(rworld, optarg)) serializer_syntax_name = optarg; else { int i; fprintf(stderr, "%s: invalid argument `%s' for `" HELP_ARG(o, output) "'\n", program, optarg); fprintf(stderr, "Valid arguments are:\n"); for(i = 0; 1; i++) { const raptor_syntax_description *d; d = raptor_world_get_serializer_description(rworld, i); if(!d) break; printf(" %-12s for %s\n", d->names[0], d->label); } usage = 1; break; } } break; case 'v': fputs(flickcurl_version_string, stdout); fputc('\n', stdout); exit(0); } } argv+= optind; argc-= optind; if(!help && argc < 1) usage = 2; /* Title and usage */ if(!help && !argc) { fprintf(stderr, "%s: No photo URI given\n", program); usage = 1; goto usage; } if(usage || help) goto usage; photo_id = argv[0]; if(strncmp(photo_id, prefix_uri, prefix_uri_len)) usage = 1; else { size_t len; photo_id+= prefix_uri_len; len = strlen(photo_id); if(!len) usage = 1; else { if(photo_id[len-1] == '/') photo_id[--len] = '\0'; while(*photo_id && *photo_id != '/') photo_id++; if(!*photo_id) usage = 1; else photo_id++; } } if(usage) { fprintf(stderr, "%s: Argument is not a Flickr photo URI like\n" " http://www.flickr.com/photos/USER/PHOTO/\n", program); goto usage; } serializer = raptor_new_serializer(rworld, serializer_syntax_name); if(!serializer) { fprintf(stderr, "%s: Failed to create raptor serializer type %s\n", program, serializer_syntax_name); return(1); } base_uri = raptor_new_uri(rworld, (const unsigned char*)argv[0]); raptor_serializer_start_to_file_handle(serializer, base_uri, stdout); /* Initialise the Flickcurl library */ fc = flickcurl_new(); if(!fc) { rc = 1; goto tidy; } flickcurl_set_error_handler(fc, my_message_handler, NULL); if(!access((const char*)config_path, R_OK)) { if(flickcurl_config_read_ini(fc, config_path, config_section, fc, flickcurl_config_var_handler)) { rc = 1; goto tidy; } } usage: if(usage) { if(usage>1) { fprintf(stderr, title_format_string, flickcurl_version_string); fputs("Flickcurl home page: ", stderr); fputs(flickcurl_home_url_string, stderr); fputc('\n', stderr); fputs(flickcurl_copyright_string, stderr); fputs("\nLicense: ", stderr); fputs(flickcurl_license_string, stderr); fputs("\n\n", stderr); } fprintf(stderr, "Try `%s " HELP_ARG(h, help) "' for more information.\n", program); rc = 1; goto tidy; } if(help) { int i; printf(title_format_string, flickcurl_version_string); puts("Get Triples from Flickr photos."); printf("Usage: %s [OPTIONS] FLICKR-PHOTO-URI\n\n", program); fputs(flickcurl_copyright_string, stdout); fputs("\nLicense: ", stdout); puts(flickcurl_license_string); fputs("Flickcurl home page: ", stdout); puts(flickcurl_home_url_string); fputs("\n", stdout); puts(HELP_TEXT("d", "delay DELAY ", "Set delay between requests in milliseconds")); puts(HELP_TEXT("D", "debug ", "Print lots of output")); puts(HELP_TEXT("h", "help ", "Print this help, then exit")); puts(HELP_TEXT("o", "output FORMAT ", "Set output format to one of:")); for(i = 0; 1; i++) { const raptor_syntax_description* d; d = raptor_world_get_serializer_description(rworld, i); if(!d) break; if(!strcmp(d->names[0], serializer_syntax_name)) printf(" %-15s %s (default)\n", d->names[0], d->label); else printf(" %-15s %s\n", d->names[0], d->label); } #ifdef HAVE_RAPTOR printf(" via Raptor %s serializers\n", raptor_version_string); #else puts(" via internal RDF serializer"); #endif puts(HELP_TEXT("v", "version ", "Print the flickcurl version")); rc = 0; goto tidy; } if(request_delay >= 0) flickcurl_set_request_delay(fc, request_delay); fs = flickcurl_new_serializer(fc, serializer, &flickrdf_serializer_factory); if(!fs) { fprintf(stderr, "%s: Failed to create Flickcurl serializer\n", program); goto tidy; } photo = flickcurl_photos_getInfo2(fc, photo_id, NULL); if(!photo) goto tidy; if(debug) fprintf(stderr, "%s: Photo with URI %s ID %s has %d tags\n", program, photo->uri, photo->id, photo->tags_count); rc = flickcurl_serialize_photo(fs, photo); tidy: if(photo) flickcurl_free_photo(photo); if(fs) flickcurl_free_serializer(fs); if(fc) flickcurl_free(fc); if(serializer) raptor_free_serializer(serializer); if(base_uri) raptor_free_uri(base_uri); if(rworld) raptor_free_world(rworld); flickcurl_finish(); return(rc); } flickcurl-1.25/coverage.html0000644000175000017500000016540012210457652013033 00000000000000 Flickcurl: Flickr API coverage

Flickcurl: Flickr API coverage

Dave Beckett

This page summarizes the Flickr API calls that are supported by Flickcurl. API calls are marked as follows as supported or unsupported.

Current Flickr API coverage by Flickcurl: 90.4% (188/208)

Flickr API

Photo Upload API

  • Uploading Photos (0.10): POST to http://api.flickr.com/services/upload/
  • Replacing Photos (0.10): POST to http://api.flickr.com/services/replace/
  • Asynchronous Uploading (0.10): synchronous POST upload with async=1 then use flickr.photos.upload.checkTickets to check it has completed

activity

auth

auth.oauth

blogs

cameras

collections

commons

contacts

favorites

galleries

groups

groups.discuss.replies

groups.discuss.topics

groups.members

groups.pools

interestingness

machinetags

panda

people

photos

photos.comments

photos.geo

photos.licenses

photos.notes

photos.people

photos.suggestions

photos.transform

photos.upload

photosets

photosets.comments

places

prefs

push

reflection

stats

tags

test

urls

Changes

1.25: flickr.contacts.getTaggingSuggestions, flickr.groups.join, flickr.groups.joinRequest, flickr.groups.leave, flickr.people.getGroups, flickr.tags.getMostFrequentlyUsed (6 new)

flickcurl_contact** flickcurl_contacts_getTaggingSuggestions(flickcurl* fc, const char* include_self, const char* include_address_book, int page, int per_page);
int flickcurl_groups_join(flickcurl* fc, const char* group_id, const char* accept_rules);
int flickcurl_groups_joinRequest(flickcurl* fc, const char* group_id, const char* message, const char* accept_rules);
int flickcurl_groups_leave(flickcurl* fc, const char* group_id, const char* delete_photos);
flickcurl_group** flickcurl_people_getGroups(flickcurl* fc, const char* user_id, const char* extras);
flickcurl_tag** flickcurl_tags_getMostFrequentlyUsed(flickcurl* fc);

1.23: flickr.auth.oauth.getAccessToken (1 new)

int flickcurl_auth_oauth_getAccessToken(flickcurl* fc);

1.22: flickr.favorites.getContext (1 new)

flickcurl_photos_list** flickcurl_favorites_getContext(flickcurl* fc, const char* photo_id, const char* user_id, int num_prev, int num_next, const char* extras);

1.19: flickr.photosets.removePhotos, flickr.photosets.reorderPhotos, flickr.photosets.setPrimaryPhoto, flickr.stats.getCSVFiles (4 new)

int flickcurl_photosets_removePhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array);
int flickcurl_photosets_reorderPhotos(flickcurl* fc, const char* photoset_id, const char** photo_ids_array);
int flickcurl_photosets_setPrimaryPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id);
int flickcurl_stats_getCSVFiles(flickcurl* fc);

1.18: flickr.galleries.create, flickr.galleries.editMeta, flickr.galleries.editPhoto, flickr.galleries.editPhotos, flickr.galleries.getInfo, flickr.galleries.getPhotos, flickr.people.getPhotos, flickr.urls.lookupGallery (8 new)

char* flickcurl_galleries_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** gallery_url_p);
int flickcurl_galleries_editMeta(flickcurl* fc, const char* gallery_id, const char* title, const char* description);
int flickcurl_galleries_editPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* new_comment);
int flickcurl_galleries_editPhotos(flickcurl* fc, const char* gallery_id, const char* primary_photo_id, const char** photo_ids_array);
flickcurl_gallery* flickcurl_galleries_getInfo(flickcurl* fc, const char* gallery_id);
flickcurl_photo** flickcurl_galleries_getPhotos(flickcurl* fc, const char* gallery_id, const char* extras, int per_page, int page);
flickcurl_photo** flickcurl_people_getPhotos(flickcurl* fc, const char* user_id, int safe_search, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date, int content_type, int privacy_filter, const char* extras, int per_page, int page);
char* flickcurl_urls_lookupGallery(flickcurl* fc, const char* url);

1.17: flickr.galleries.addPhoto, flickr.galleries.getList, flickr.galleries.getListForPhoto, flickr.people.getPhotosOf, flickr.photos.people.add, flickr.photos.people.delete, flickr.photos.people.deleteCoords, flickr.photos.people.editCoords, flickr.photos.people.getList, flickr.stats.getCollectionDomains, flickr.stats.getCollectionReferrers, flickr.stats.getCollectionStats, flickr.stats.getPhotoDomains, flickr.stats.getPhotoReferrers, flickr.stats.getPhotosetDomains, flickr.stats.getPhotosetReferrers, flickr.stats.getPhotosetStats, flickr.stats.getPhotoStats, flickr.stats.getPhotostreamDomains, flickr.stats.getPhotostreamReferrers, flickr.stats.getPhotostreamStats, flickr.stats.getPopularPhotos, flickr.stats.getTotalViews (23 new)

int flickcurl_galleries_addPhoto(flickcurl* fc, const char* gallery_id, const char* photo_id, const char* comment_text);
flickcurl_gallery** flickcurl_galleries_getList(flickcurl* fc, const char* user_id, int per_page, int page);
flickcurl_gallery** flickcurl_galleries_getListForPhoto(flickcurl* fc, const char* photo_id, int per_page, int page);
flickcurl_photo** flickcurl_people_getPhotosOf(flickcurl* fc, const char* user_id, const char* extras, int per_page, int page);
int flickcurl_photos_people_add(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h);
int flickcurl_photos_people_delete(flickcurl* fc, const char* photo_id, const char* user_id);
int flickcurl_photos_people_deleteCoords(flickcurl* fc, const char* photo_id, const char* user_id);
int flickcurl_photos_people_editCoords(flickcurl* fc, const char* photo_id, const char* user_id, int person_x, int person_y, int person_w, int person_h);
flickcurl_person** flickcurl_photos_people_getList(flickcurl* fc, const char* photo_id);
flickcurl_stat** flickcurl_stats_getCollectionDomains(flickcurl* fc, const char* date, const char* collection_id, int per_page, int page);
flickcurl_stat** flickcurl_stats_getCollectionReferrers(flickcurl* fc, const char* date, const char* domain, const char* collection_id, int per_page, int page);
int flickcurl_stats_getCollectionStats(flickcurl* fc, const char* date, const char* collection_id);
flickcurl_stat** flickcurl_stats_getPhotoDomains(flickcurl* fc, const char* date, const char* photo_id, int per_page, int page);
flickcurl_stat** flickcurl_stats_getPhotoReferrers(flickcurl* fc, const char* date, const char* domain, const char* photo_id, int per_page, int page);
flickcurl_stat** flickcurl_stats_getPhotosetDomains(flickcurl* fc, const char* date, const char* photoset_id, int per_page, int page);
flickcurl_stat** flickcurl_stats_getPhotosetReferrers(flickcurl* fc, const char* date, const char* domain, const char* photoset_id, int per_page, int page);
int flickcurl_stats_getPhotosetStats(flickcurl* fc, const char* date, const char* photoset_id);
flickcurl_stat* flickcurl_stats_getPhotoStats(flickcurl* fc, const char* date, const char* photo_id);
flickcurl_stat** flickcurl_stats_getPhotostreamDomains(flickcurl* fc, const char* date, int per_page, int page);
flickcurl_stat** flickcurl_stats_getPhotostreamReferrers(flickcurl* fc, const char* date, const char* domain, int per_page, int page);
int flickcurl_stats_getPhotostreamStats(flickcurl* fc, const char* date);
flickcurl_photo** flickcurl_stats_getPopularPhotos(flickcurl* fc, const char* date, const char* sort, int per_page, int page, const char* extras);
flickcurl_view_stats* flickcurl_stats_getTotalViews(flickcurl* fc, const char* date);

1.12: flickr.blogs.getServices, flickr.collections.getInfo, flickr.collections.getTree, flickr.machinetags.getRecentValues, flickr.photos.comments.getRecentForContacts, flickr.places.getTopPlacesList (6 new)

flickcurl_blog_service** flickcurl_blogs_getServices(flickcurl* fc);
flickcurl_collection* flickcurl_collections_getInfo(flickcurl* fc, const char* collection_id);
flickcurl_collection* flickcurl_collections_getTree(flickcurl* fc, const char* collection_id, const char* user_id);
flickcurl_tag_predicate_value** flickcurl_machinetags_getRecentValues(flickcurl* fc, const char *nspace, const char* predicate, int added_since);
flickcurl_photos_list* flickcurl_photos_comments_getRecentForContacts_params(flickcurl* fc, int date_lastcomment, const char* contacts_filter, flickcurl_photos_list_params* list_params);
flickcurl_place** flickcurl_places_getTopPlacesList(flickcurl* fc, flickcurl_place_type place_type, const char* date, int woe_id, const char* place_id);

1.9: flickr.groups.members.getList, flickr.panda.getList, flickr.panda.getPhotos (3 new)

flickcurl_member** flickcurl_groups_members_getList(flickcurl* fc, const char* group_id, const char* membertypes, int per_page, int page);
char** flickcurl_panda_getList(flickcurl* fc);
flickcurl_photo** flickcurl_panda_getPhotos(flickcurl *fc, const char *panda_name);

1.8: flickr.commons.getInstitutions, flickr.contacts.getListRecentlyUploaded, flickr.photos.geo.batchCorrectLocation, flickr.photos.geo.correctLocation, flickr.photos.geo.photosForLocation, flickr.photos.geo.setContext, flickr.places.getPlaceTypes, flickr.places.getShapeHistory, flickr.places.placesForBoundingBox, flickr.places.placesForContacts, flickr.places.placesForTags, flickr.places.tagsForPlace (12 new)

flickcurl_institution** flickcurl_commons_getInstitutions(flickcurl* fc);
flickcurl_contact** flickcurl_contacts_getListRecentlyUploaded(flickcurl* fc, int date_lastupload, const char* filter);
int flickcurl_photos_geo_batchCorrectLocation(flickcurl* fc, flickcurl_location* location, const char* place_id, int woe_id);
int flickcurl_photos_geo_correctLocation(flickcurl* fc, const char* photo_id, const char* place_id, int woe_id);
flickcurl_photo** flickcurl_photos_geo_photosForLocation(flickcurl* fc, flickcurl_location* location, const char* extras, int per_page, int page);
int flickcurl_photos_geo_setContext(flickcurl* fc, const char* photo_id, int context);
flickcurl_place_type_info** flickcurl_places_getPlaceTypes(flickcurl* fc);
flickcurl_shapedata** flickcurl_places_getShapeHistory(flickcurl* fc, const char* place_id, int woe_id);
flickcurl_place** flickcurl_places_placesForBoundingBox(flickcurl* fc, flickcurl_place_type place_type, double minimum_longitude, double minimum_latitude, double maximum_longitude, double maximum_latitude);
flickcurl_place** flickcurl_places_placesForContacts(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold, const char* contacts, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date);
int flickcurl_places_placesForTags(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, const char* threshold, const char* tags, const char* tag_mode, const char* machine_tags, const char* machine_tag_mode, const char* min_upload_date, const char* max_upload_date, const char* min_taken_date, const char* max_taken_date);
flickcurl_tag** flickcurl_places_tagsForPlace(flickcurl* fc, int woe_id, const char* place_id, int min_upload_date, int max_upload_date, int min_taken_date, int max_taken_date);

1.7: flickr.machinetags.getNamespaces, flickr.machinetags.getPairs, flickr.machinetags.getPredicates, flickr.machinetags.getValues, flickr.places.getChildrenWithPhotosPublic, flickr.places.getInfo, flickr.places.getInfoByUrl, flickr.tags.getClusterPhotos (8 new)

flickcurl_tag_namespace** flickcurl_machinetags_getNamespaces(flickcurl* fc, const char* predicate, int per_page, int page);
flickcurl_tag_predicate_value** flickcurl_machinetags_getPairs(flickcurl* fc, const char *nspace, const char* predicate, int per_page, int page);
flickcurl_tag_predicate_value** flickcurl_machinetags_getPredicates(flickcurl* fc, const char *nspace, int per_page, int page);
flickcurl_tag_predicate_value** flickcurl_machinetags_getValues(flickcurl* fc, const char *nspace, const char* predicate, int per_page, int page);
flickcurl_place** flickcurl_places_getChildrenWithPhotosPublic(flickcurl* fc, const char* place_id, const char* woe_id);
flickcurl_place* flickcurl_places_getInfo(flickcurl* fc, const char* place_id, const char* woe_id);
flickcurl_place* flickcurl_places_getInfoByUrl(flickcurl* fc, const char* url);
flickcurl_photos_list* flickcurl_tags_getClusterPhotos(flickcurl* fc, const char* tag, const char* cluster_id, flickcurl_photos_list_params* list_params);

1.6: flickr.places.placesForUser (1 new)

flickcurl_place** flickcurl_places_placesForUser(flickcurl* fc, flickcurl_place_type place_type, int woe_id, const char* place_id, int threshold);

1.5: flickr.tags.getClusters (1 new)

flickcurl_tag_clusters* flickcurl_tags_getClusters(flickcurl* fc, const char* tag);

1.4: flickr.prefs.getGeoPerms (1 new)

int flickcurl_prefs_getGeoPerms(flickcurl* fc);

1.3: flickr.prefs.getContentType, flickr.prefs.getHidden, flickr.prefs.getPrivacy, flickr.prefs.getSafetyLevel (4 new)

int flickcurl_prefs_getContentType(flickcurl* fc);
int flickcurl_prefs_getHidden(flickcurl* fc);
int flickcurl_prefs_getPrivacy(flickcurl* fc);
int flickcurl_prefs_getSafetyLevel(flickcurl* fc);

1.1: flickr.places.find, flickr.places.findByLatLon (2 new)

flickcurl_place** flickcurl_places_find(flickcurl* fc, const char* query);
flickcurl_place* flickcurl_places_findByLatLon(flickcurl* fc, double lat, double lon, int accuracy);

1.0: flickr.activity.userComments, flickr.activity.userPhotos, flickr.blogs.getList, flickr.blogs.postPhoto, flickr.favorites.add, flickr.favorites.getList, flickr.favorites.getPublicList, flickr.favorites.remove, flickr.places.resolvePlaceId, flickr.places.resolvePlaceURL, flickr.test.login, flickr.test.null (12 new)

flickcurl_activity** flickcurl_activity_userComments(flickcurl* fc, int per_page, int page);
flickcurl_activity** flickcurl_activity_userPhotos(flickcurl* fc, const char* timeframe, int per_page, int page);
flickcurl_blog** flickcurl_blogs_getList(flickcurl* fc);
int flickcurl_blogs_postPhoto(flickcurl* fc, const char* blog_id, const char* photo_id, const char* title, const char* description, const char* blog_password);
int flickcurl_favorites_add(flickcurl* fc, const char* photo_id);
flickcurl_photos_list* flickcurl_favorites_getList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_favorites_getPublicList_params(flickcurl* fc, const char* user_id, flickcurl_photos_list_params* list_params);
int flickcurl_favorites_remove(flickcurl* fc, const char* photo_id);
flickcurl_place* flickcurl_places_resolvePlaceId(flickcurl* fc, const char* place_id);
flickcurl_place* flickcurl_places_resolvePlaceURL(flickcurl* fc, const char* url);
char* flickcurl_test_login(flickcurl* fc);
int flickcurl_test_null(flickcurl* fc);

0.13: flickr.groups.browse, flickr.groups.getInfo, flickr.groups.search, flickr.interestingness.getList, flickr.people.getPublicGroups, flickr.people.getUploadStatus, flickr.photos.getCounts, flickr.photos.getSizes, flickr.photos.transform.rotate, flickr.photos.upload.checkTickets, flickr.photosets.addPhoto, flickr.photosets.create, flickr.photosets.delete, flickr.photosets.editMeta, flickr.photosets.editPhotos, flickr.photosets.getInfo, flickr.photosets.getList, flickr.photosets.getPhotos, flickr.photosets.orderSets, flickr.photosets.removePhoto (20 new)

flickcurl_category* flickcurl_groups_browse(flickcurl* fc, int cat_id);
flickcurl_group* flickcurl_groups_getInfo(flickcurl* fc, const char* group_id, const char* lang);
flickcurl_group** flickcurl_groups_search(flickcurl* fc, const char* text, int per_page, int page);
flickcurl_photos_list* flickcurl_interestingness_getList_params(flickcurl* fc, const char* date, flickcurl_photos_list_params* list_params);
flickcurl_group** flickcurl_people_getPublicGroups(flickcurl* fc, const char* user_id);
flickcurl_user_upload_status* flickcurl_people_getUploadStatus(flickcurl* fc);
int** flickcurl_photos_getCounts(flickcurl* fc, const char** dates_array, const char** taken_dates_array);
flickcurl_size** flickcurl_photos_getSizes(flickcurl* fc, const char* photo_id);
int flickcurl_photos_transform_rotate(flickcurl* fc, const char* photo_id, int degrees);
flickcurl_ticket** flickcurl_photos_upload_checkTickets(flickcurl* fc, const char** tickets_ids);
int flickcurl_photosets_addPhoto(flickcurl* fc, const char* photoset_id, const char* photo_id);
char* flickcurl_photosets_create(flickcurl* fc, const char* title, const char* description, const char* primary_photo_id, char** photoset_url_p);
int flickcurl_photosets_delete(flickcurl* fc, const char* photoset_id);
int flickcurl_photosets_editMeta(flickcurl* fc, const char* photoset_id, const char* title, const char* description);
int flickcurl_photosets_editPhotos(flickcurl* fc, const char* photoset_id, const char* primary_photo_id, const char** photo_ids_array);
flickcurl_photoset* flickcurl_photosets_getInfo(flickcurl* fc, const char* photoset_id);
flickcurl_photoset** flickcurl_photosets_getList(flickcurl* fc, const char* user_id);
flickcurl_photos_list* flickcurl_photosets_getPhotos_params(flickcurl* fc, const char* photoset_id, int privacy_filter, flickcurl_photos_list_params* list_params);
int flickcurl_photosets_orderSets(flickcurl* fc, const char** photoset_ids_array);
int flickcurl_photosets_removePhoto(flickcurl* fc, const char* photoset_id, const char* photo_id);

0.12: flickr.groups.pools.add, flickr.groups.pools.getGroups, flickr.groups.pools.getPhotos, flickr.groups.pools.remove, flickr.people.getPublicPhotos, flickr.photos.getContactsPublicPhotos, flickr.photos.getExif, flickr.photos.getFavorites, flickr.photos.getNotInSet, flickr.photos.getRecent, flickr.photos.getUntagged, flickr.photos.getWithGeoData, flickr.photos.getWithoutGeoData, flickr.photos.recentlyUpdated, flickr.photos.geo.getLocation, flickr.photos.geo.getPerms, flickr.photos.geo.removeLocation, flickr.photos.geo.setLocation, flickr.photos.geo.setPerms, flickr.photos.licenses.setLicense, flickr.photos.notes.add, flickr.photos.notes.delete, flickr.photos.notes.edit (23 new)

int flickcurl_groups_pools_add(flickcurl* fc, const char* photo_id, const char* group_id);
flickcurl_group** flickcurl_groups_pools_getGroups(flickcurl* fc, int page, int per_page);
flickcurl_photos_list* flickcurl_groups_pools_getPhotos_params(flickcurl* fc, const char* group_id, const char* tags, const char* user_id, flickcurl_photos_list_params* list_params);
int flickcurl_groups_pools_remove(flickcurl* fc, const char* photo_id, const char* group_id);
flickcurl_photos_list* flickcurl_people_getPublicPhotos_params(flickcurl* fc, const char* user_id,  flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_photos_getContactsPublicPhotos_params(flickcurl* fc, const char* user_id, int photo_count, int just_friends,  int single_photo, int include_self, flickcurl_photos_list_params* list_params);
flickcurl_exif** flickcurl_photos_getExif(flickcurl* fc, const char* photo_id, const char* secret);
flickcurl_person** flickcurl_photos_getFavorites(flickcurl* fc, const char* photo_id, int page, int per_page);
flickcurl_photos_list* flickcurl_photos_getNotInSet_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_photos_getRecent_params(flickcurl* fc, flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_photos_getUntagged_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_photos_getWithGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_photos_getWithoutGeoData_params(flickcurl* fc, int min_upload_date, int max_upload_date, const char* min_taken_date, const char* max_taken_date, int privacy_filter, flickcurl_photos_list_params* list_params);
flickcurl_photos_list* flickcurl_photos_recentlyUpdated_params(flickcurl* fc, int min_date, flickcurl_photos_list_params* list_params);
flickcurl_location* flickcurl_photos_geo_getLocation(flickcurl* fc, const char* photo_id);
flickcurl_perms* flickcurl_photos_geo_getPerms(flickcurl* fc, const char* photo_id);
int flickcurl_photos_geo_removeLocation(flickcurl* fc, const char* photo_id);
int flickcurl_photos_geo_setLocation(flickcurl* fc, const char* photo_id, flickcurl_location* location);
int flickcurl_photos_geo_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms);
int flickcurl_photos_licenses_setLicense(flickcurl* fc, const char* photo_id, int license_id);
char* flickcurl_photos_notes_add(flickcurl* fc, const char* photo_id, int note_x, int note_y, int note_w, int note_h, const char* note_text);
int flickcurl_photos_notes_delete(flickcurl* fc, const char* note_id);
int flickcurl_photos_notes_edit(flickcurl* fc, const char* note_id, int note_x, int note_y, int note_w, int note_h, const char* note_text);

0.11: flickr.contacts.getList, flickr.contacts.getPublicList, flickr.photos.getContactsPhotos, flickr.photos.getPerms, flickr.photos.search, flickr.photos.setContentType, flickr.photos.setDates, flickr.photos.setMeta, flickr.photos.setPerms, flickr.photos.setSafetyLevel (10 new)

flickcurl_contact** flickcurl_contacts_getList(flickcurl* fc, const char* filter, int page, int per_page);
flickcurl_contact** flickcurl_contacts_getPublicList(flickcurl* fc, const char* user_id, int page, int per_page);
flickcurl_photos_list* flickcurl_photos_getContactsPhotos_params(flickcurl* fc, int contact_count, int just_friends, int single_photo, int include_self, flickcurl_photos_list_params* list_params);
flickcurl_perms* flickcurl_photos_getPerms(flickcurl* fc, const char* photo_id);
flickcurl_photos_list* flickcurl_photos_search_params(flickcurl* fc, flickcurl_search_params* params, flickcurl_photos_list_params* list_params);
int flickcurl_photos_setContentType(flickcurl* fc, const char* photo_id, int content_type);
int flickcurl_photos_setDates(flickcurl* fc, const char* photo_id, int date_posted, int date_taken, int date_taken_granularity);
int flickcurl_photos_setMeta(flickcurl* fc, const char* photo_id, const char* title, const char* description);
int flickcurl_photos_setPerms(flickcurl* fc, const char* photo_id, flickcurl_perms* perms);
int flickcurl_photos_setSafetyLevel(flickcurl* fc, const char* photo_id, int safety_level, int hidden);

0.10: flickr.photos.comments.addComment, flickr.photos.comments.deleteComment, flickr.photos.comments.editComment, flickr.photos.comments.getList, flickr.photosets.comments.addComment, flickr.photosets.comments.deleteComment, flickr.photosets.comments.editComment, flickr.photosets.comments.getList, flickr.reflection.getMethods, flickr.reflection.getMethodInfo, Uploading Photos, Replacing Photos, Asynchronous Uploading (13 new)

char* flickcurl_photos_comments_addComment(flickcurl* fc, const char* photo_id, const char* comment_text);
int flickcurl_photos_comments_deleteComment(flickcurl* fc, const char* comment_id);
int flickcurl_photos_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text);
flickcurl_comment** flickcurl_photos_comments_getList(flickcurl* fc, const char* photo_id);
char* flickcurl_photosets_comments_addComment(flickcurl* fc, const char* photoset_id, const char* comment_text);
int flickcurl_photosets_comments_deleteComment(flickcurl* fc, const char* comment_id);
int flickcurl_photosets_comments_editComment(flickcurl* fc, const char* comment_id, const char* comment_text);
flickcurl_comment** flickcurl_photosets_comments_getList(flickcurl* fc, const char* photoset_id);
char** flickcurl_reflection_getMethods(flickcurl* fc);
flickcurl_method* flickcurl_reflection_getMethodInfo(flickcurl* fc, const char* name);

0.9: flickr.auth.checkToken, flickr.auth.getFrob, flickr.auth.getToken, flickr.photos.addTags, flickr.photos.delete, flickr.photos.removeTag, flickr.photos.setTags, flickr.tags.getHotList, flickr.tags.getListPhoto, flickr.tags.getListUser, flickr.tags.getListUserPopular, flickr.tags.getListUserRaw, flickr.tags.getRelated, flickr.urls.getGroup, flickr.urls.getUserPhotos, flickr.urls.getUserProfile, flickr.urls.lookupGroup (17 new)

char* flickcurl_auth_checkToken(flickcurl* fc, const char* token);
char* flickcurl_auth_getFrob(flickcurl* fc);
char* flickcurl_auth_getToken(flickcurl* fc, const char* frob);
int flickcurl_photos_addTags(flickcurl* fc, const char* photo_id, const char* tags);
int flickcurl_photos_delete(flickcurl* fc, const char* photo_id);
int flickcurl_photos_removeTag(flickcurl* fc, const char* tag_id);
int flickcurl_photos_setTags(flickcurl* fc, const char* photo_id, const char* tags);
flickcurl_tag** flickcurl_tags_getHotList(flickcurl* fc, const char* period, int tag_count);
flickcurl_tag** flickcurl_tags_getListPhoto(flickcurl* fc, const char* photo_id);
flickcurl_tag** flickcurl_tags_getListUser(flickcurl* fc, const char* user_id);
flickcurl_tag** flickcurl_tags_getListUserPopular(flickcurl* fc, const char* user_id, int pop_count);
flickcurl_tag** flickcurl_tags_getListUserRaw(flickcurl* fc, const char* tag);
flickcurl_tag** flickcurl_tags_getRelated(flickcurl* fc, const char* tag);
char* flickcurl_urls_getGroup(flickcurl* fc, const char* group_id);
char* flickcurl_urls_getUserPhotos(flickcurl* fc, const char* user_id);
char* flickcurl_urls_getUserProfile(flickcurl* fc, const char* user_id);
char* flickcurl_urls_lookupGroup(flickcurl* fc, const char* url);

0.8: flickr.people.findByEmail, flickr.people.findByUsername (2 new)

char* flickcurl_people_findByEmail(flickcurl* fc, const char* email);
char* flickcurl_people_findByUsername(flickcurl* fc, const char* username);

0.7: flickr.groups.pools.getContext, flickr.photos.getAllContexts, flickr.photos.getContext, flickr.photosets.getContext (4 new)

flickcurl_context** flickcurl_groups_pools_getContext(flickcurl* fc, const char* photo_id, const char* group_id);
flickcurl_context** flickcurl_photos_getAllContexts(flickcurl* fc, const char* photo_id);
flickcurl_context** flickcurl_photos_getContext(flickcurl* fc, const char* photo_id);
flickcurl_context** flickcurl_photosets_getContext(flickcurl* fc, const char* photo_id, const char* photoset_id);

0.6: flickr.people.getInfo, flickr.photos.licenses.getInfo, flickr.urls.lookupUser (3 new)

flickcurl_person* flickcurl_people_getInfo(flickcurl* fc, const char* user_id);
flickcurl_license** flickcurl_photos_licenses_getInfo(flickcurl *fc);
char* flickcurl_urls_lookupUser(flickcurl* fc, const char* url);

0.5: flickr.auth.getFullToken, flickr.photos.getInfo, flickr.test.echo (3 new)

char* flickcurl_auth_getFullToken(flickcurl* fc, const char* frob);
flickcurl_photo* flickcurl_photos_getInfo(flickcurl *fc, const char* photo_id);
int flickcurl_test_echo(flickcurl* fc, const char* key, const char* value);

Copyright (C) 2007-2011 Dave Beckett

flickcurl-1.25/aclocal.m40000644000175000017500000013466712157737151012232 00000000000000# generated automatically by aclocal 1.11.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 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.69],, [m4_warning([this file was generated for autoconf 2.69. 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'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # 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|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) 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. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have 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_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) 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 AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [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])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [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 .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 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 1 # 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.6], [], [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.6])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011 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 1 # AM_PROG_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) ]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 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 1 # 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, # 2010, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # 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'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$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 ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain 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='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])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, 2011 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 1 # 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])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, # 2011 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_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # 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 ]) # Copyright (C) 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_PROG_CC_C_O # -------------- # Like AC_PROG_CC_C_O, but changed for automake. AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi dnl Make sure AC_PROG_CC is never called again, or it will override our dnl setting of CC. m4_define([AC_PROG_CC], [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ]) # 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, 2011 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 1 # 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, 2010 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_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) 2009, 2011 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_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # (`yes' being less verbose, `no' or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [ --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0')]) case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few `make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using `$V' instead of `$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001, 2003, 2005, 2011 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 1 # 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, 2010 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_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, 2012 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. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} 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([build/gtk-doc.m4]) m4_include([build/libtool.m4]) m4_include([build/ltoptions.m4]) m4_include([build/ltsugar.m4]) m4_include([build/ltversion.m4]) m4_include([build/lt~obsolete.m4]) flickcurl-1.25/flickcurl.spec0000644000175000017500000000612612210726277013205 00000000000000# -*- RPM-SPEC -*- %define name flickcurl %define version 1.25 %define release 1 %define major 0 %define libname libflickcurl0 %define devname libflickcurl-devel Summary: Flickcurl C library for the Flickr API Name: %name Version: %version Release: %release Prefix: %{_prefix} License: LGPL 2.1 / ASL 2.0 Group: System/Libraries Source0: http://download.dajobe.org/flickcurl/%{name}-%{version}.tar.gz URL: http://librdf.org/flickcurl/ BuildRequires: curl-devel >= 7.10.0, libxml2-devel >= 2.6.8, raptor-devel >= 2.0.0 Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root %description Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. It uses libcurl to call the REST web service and libxml2 to manipulate the XML responses. The current version supports the majority of the API (see Flickcurl API coverage) including the functions for photo uploading, browsing, searching, adding and editing comments, groups, notes, photosets, categories, tags and photo metadata. It also includes a program flickrdf to turn photo metadata, tags and machine tags into RDF descriptions of photso and tags. This package contains utility programs that use the %{name} library. %package -n %libname Summary: C library for the Flickr API Group: System/Libraries %description -n %libname Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. It uses libcurl to call the REST web service and libxml2 to manipulate the XML responses. The current version supports the majority of the API (see Flickcurl API coverage) including the functions for photo uploading, browsing, searching, adding and editing comments, groups, notes, photosets, categories, tags and photo metadata. It also includes a program flickrdf to turn photo metadata, tags and machine tags into RDF descriptions of photso and tags. %package -n %devname Summary: Development files for %libname Group: System/Libraries Requires: %{libname} = %{version} Provides: %name-devel = %version-%release, lib%{name}-devel = %version-%release %description -n %devname This package contains the developement files for the %{name} library. %prep %setup -q %build %configure %{__make} %install rm -fr %{buildroot} %makeinstall %clean rm -fr %{buildroot} %post -n %{libname} -p /sbin/ldconfig %postun -n %{libname} -p /sbin/ldconfig %files %doc LICENSE-2.0.txt LICENSE.html AUTHORS COPYING COPYING.LIB %doc NEWS NEWS.html README README.html ChangeLog coverage.html %{_bindir}/flickcurl %{_bindir}/flickrdf %{_mandir}/man1/flickcurl.1.* %{_mandir}/man1/flickrdf.1.* %files -n %libname %{_libdir}/lib%{name}.so.%{major}* %files -n %devname %doc NOTICE %{_bindir}/flickcurl-config %{_libdir}/lib%{name}.a %{_libdir}/lib%{name}.la %{_libdir}/lib%{name}.so %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/flickcurl.h %{_mandir}/man1/flickcurl-config.1.* %changelog * Thu Dec 21 2007 Dave Beckett - Fedora 7 RPM packaging flickcurl-1.25/libmtwist/0000755000175000017500000000000012210726306012435 500000000000000flickcurl-1.25/libmtwist/mtwist.h0000644000175000017500000000347311653030446014067 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * mtwist.h - Mersenne Twister header * * This is free and unencumbered software released into the public domain. * * Anyone is free to copy, modify, publish, use, compile, sell, or * distribute this software, either in source code form or as a compiled * binary, for any purpose, commercial or non-commercial, and by any * means. * * In jurisdictions that recognize copyright laws, the author or authors * of this software dedicate any and all copyright interest in the * software to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and * successors. We intend this dedication to be an overt act of * relinquishment in perpetuity of all present and future rights to this * software under copyright law. * * 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 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * For more information, please refer to * */ #ifndef MTWIST_H #define MTWIST_H #ifdef __cplusplus extern "C" { #endif /* Mersenne Twister state */ typedef struct mtwist_s mtwist; /* constructor */ mtwist* mtwist_new(void); /* destructor */ void mtwist_free(mtwist* mt); /* methods */ void mtwist_init(mtwist* mt, unsigned long seed); unsigned long mtwist_u32rand(mtwist* mt); double mtwist_drand(mtwist* mt); /* utility functions */ unsigned long mtwist_seed_from_system(mtwist* mt); #ifdef __cplusplus } #endif #endif flickcurl-1.25/libmtwist/mtwist_internal.h0000644000175000017500000000373311653030446015762 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * mtwist_internal.c - Mersenne Twister internals * * This is free and unencumbered software released into the public domain. * * Anyone is free to copy, modify, publish, use, compile, sell, or * distribute this software, either in source code form or as a compiled * binary, for any purpose, commercial or non-commercial, and by any * means. * * In jurisdictions that recognize copyright laws, the author or authors * of this software dedicate any and all copyright interest in the * software to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and * successors. We intend this dedication to be an overt act of * relinquishment in perpetuity of all present and future rights to this * software under copyright law. * * 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 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * For more information, please refer to * */ #ifndef MTWIST_INTERNAL_H #define MTWIST_INTERNAL_H 1 #define MTWIST_N 624 #define MTWIST_M 397 #define MT_STATIC_SEED 5489UL /* Mersenne Twister library state */ struct mtwist_s { /* MT buffer holding N 32 bit unsigned integers */ uint32_t state[MTWIST_N]; /* Pointer into above - next long to use */ uint32_t* next; /* Number of remaining integers in state before an update is needed */ unsigned int remaining; /* 1 if a seed was given */ unsigned int seeded : 1; /* 1 to always return a static system seed (MT_STATIC_SEED) */ unsigned int static_system_seed : 1; }; #endif flickcurl-1.25/libmtwist/mt.c0000644000175000017500000001112312017273031013134 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * mt.c - Mersenne Twister functions * * This is free and unencumbered software released into the public domain. * * Anyone is free to copy, modify, publish, use, compile, sell, or * distribute this software, either in source code form or as a compiled * binary, for any purpose, commercial or non-commercial, and by any * means. * * In jurisdictions that recognize copyright laws, the author or authors * of this software dedicate any and all copyright interest in the * software to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and * successors. We intend this dedication to be an overt act of * relinquishment in perpetuity of all present and future rights to this * software under copyright law. * * 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 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * For more information, please refer to * */ #ifdef MTWIST_CONFIG #include #endif #include #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_STDINT_H /* To get UINT32_C */ #define __STDC_CONSTANT_MACROS 1 #include #else /* pessimistic - use an unsigned long */ typedef unsigned long uint32_t; #define UINT32_C(v) (v ## UL) #endif #include #include /* * Mersenne Twister (MT19937) algorithm * http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html * * http://en.wikipedia.org/wiki/Mersenne_twister * */ #define MTWIST_UPPER_MASK UINT32_C(0x80000000) #define MTWIST_LOWER_MASK UINT32_C(0x7FFFFFFF) #define MTWIST_FULL_MASK UINT32_C(0xFFFFFFFF) #define MTWIST_MATRIX_A UINT32_C(0x9908B0DF) #define MTWIST_MIXBITS(u, v) ( ( (u) & MTWIST_UPPER_MASK) | ( (v) & MTWIST_LOWER_MASK) ) #define MTWIST_TWIST(u, v) ( (MTWIST_MIXBITS(u, v) >> 1) ^ ( (v) & UINT32_C(1) ? MTWIST_MATRIX_A : UINT32_C(0)) ) /** * mtwist_new: * * Construct a Mersenne Twister object * * Return value: new MT object or NULL on failure */ mtwist* mtwist_new(void) { mtwist* mt; mt = (mtwist*)calloc(1, sizeof(*mt)); if(!mt) return NULL; mt->remaining = 0; mt->next = NULL; mt->seeded = 0; return mt; } /** * mtwist_free: * @mt: mt object * * Destroy a Mersenne Twister object */ void mtwist_free(mtwist* mt) { if(mt) free(mt); } /** * mtwist_init: * @mt: mt object * @seed: seed (lower 32 bits used) * * Initialise a Mersenne Twister with an unsigned 32 bit int seed */ void mtwist_init(mtwist* mt, unsigned long seed) { int i; if(!mt) return; mt->state[0] = (uint32_t)(seed & MTWIST_FULL_MASK); for(i = 1; i < MTWIST_N; i++) { mt->state[i] = (UINT32_C(1812433253) * (mt->state[i - 1] ^ (mt->state[i - 1] >> 30)) + i); mt->state[i] &= MTWIST_FULL_MASK; } mt->remaining = 0; mt->next = NULL; mt->seeded = 1; } static void mtwist_update_state(mtwist* mt) { int count; uint32_t *p = mt->state; for(count = (MTWIST_N - MTWIST_M + 1); --count; p++) *p = p[MTWIST_M] ^ MTWIST_TWIST(p[0], p[1]); for(count = MTWIST_M; --count; p++) *p = p[MTWIST_M - MTWIST_N] ^ MTWIST_TWIST(p[0], p[1]); *p = p[MTWIST_M - MTWIST_N] ^ MTWIST_TWIST(p[0], mt->state[0]); mt->remaining = MTWIST_N; mt->next = mt->state; } /** * mtwist_u32rand: * @mt: mt object * * Get a random unsigned 32 bit integer from the random number generator * * Return value: unsigned long with 32 valid bits */ unsigned long mtwist_u32rand(mtwist* mt) { uint32_t r; if(!mt) return 0UL; if(!mt->seeded) mtwist_init(mt, mtwist_seed_from_system(mt)); if(!mt->remaining) mtwist_update_state(mt); r = *mt->next++; mt->remaining--; /* Tempering */ r ^= (r >> 11); r ^= (r << 7) & UINT32_C(0x9D2C5680); r ^= (r << 15) & UINT32_C(0xEFC60000); r ^= (r >> 18); r &= MTWIST_FULL_MASK; return (unsigned long)r; } /** * mtwist_drand: * @mt: mt object * * Get a random double from the random number generator * * Return value: random double in the range 0.0 inclusive to 1.0 exclusive; [0.0, 1.0) */ double mtwist_drand(mtwist* mt) { unsigned long r; double d; if(!mt) return 0.0; r = mtwist_u32rand(mt); d = r / 4294967296.0; /* 2^32 */ return d; } flickcurl-1.25/libmtwist/seed.c0000644000175000017500000000542011653030446013445 00000000000000/* -*- Mode: c; c-basic-offset: 2 -*- * * seed.c - Seeding functions * * This is free and unencumbered software released into the public domain. * * Anyone is free to copy, modify, publish, use, compile, sell, or * distribute this software, either in source code form or as a compiled * binary, for any purpose, commercial or non-commercial, and by any * means. * * In jurisdictions that recognize copyright laws, the author or authors * of this software dedicate any and all copyright interest in the * software to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and * successors. We intend this dedication to be an overt act of * relinquishment in perpetuity of all present and future rights to this * software under copyright law. * * 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 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * For more information, please refer to * */ #ifdef MTWIST_CONFIG #include #endif #include #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_STDINT_H #include #else /* pessimistic - use an unsigned long */ typedef unsigned long uint32_t; #endif #include #include /** * mtwist_seed_from_system: * @mt: mt object * * Get a 32 bit unsigned integer random seed based on system sources * * Return value: seed with only lower 32 bits valid */ unsigned long mtwist_seed_from_system(mtwist* mt) { /* SOURCE 1: processor clock ticks since process started */ uint32_t a = (uint32_t)clock(); /* SOURCE 2: unix time in seconds since epoch */ uint32_t b = (uint32_t)time(NULL); uint32_t c; #ifdef HAVE_UNISTD_H /* SOURCE 3: process ID (on unix) */ c = getpid(); #else c = 0; #endif /* Mix seed sources using public domain code from * http://www.burtleburtle.net/bob/c/lookup3.c */ #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) /* inlined mix(a, b, c) macro */ a -= c; a ^= rot(c, 4); c += b; b -= a; b ^= rot(a, 6); a += c; c -= b; c ^= rot(b, 8); b += a; a -= c; a ^= rot(c,16); c += b; b -= a; b ^= rot(a,19); /* a += c; */ /* CLANG: not needed because of below */ c -= b; c ^= rot(b, 4); /* b += a; */ /* CLANG: last calculation not needed */ if(mt->static_system_seed) c = MT_STATIC_SEED; return (unsigned long)c; } flickcurl-1.25/flickcurl.spec.in0000644000175000017500000000621011212024216013565 00000000000000# -*- RPM-SPEC -*- %define name @PACKAGE@ %define version @VERSION@ %define release 1 %define major 0 %define libname libflickcurl0 %define devname libflickcurl-devel Summary: Flickcurl C library for the Flickr API Name: %name Version: %version Release: %release Prefix: %{_prefix} License: LGPL 2.1 / ASL 2.0 Group: System/Libraries Source0: http://download.dajobe.org/flickcurl/%{name}-%{version}.tar.gz URL: http://librdf.org/flickcurl/ BuildRequires: curl-devel >= @LIBCURL_MIN_VERSION@, libxml2-devel >= @LIBXML_MIN_VERSION@, raptor-devel >= @RAPTOR_MIN_VERSION@ Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root %description Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. It uses libcurl to call the REST web service and libxml2 to manipulate the XML responses. The current version supports the majority of the API (see Flickcurl API coverage) including the functions for photo uploading, browsing, searching, adding and editing comments, groups, notes, photosets, categories, tags and photo metadata. It also includes a program flickrdf to turn photo metadata, tags and machine tags into RDF descriptions of photso and tags. This package contains utility programs that use the %{name} library. %package -n %libname Summary: C library for the Flickr API Group: System/Libraries %description -n %libname Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. It uses libcurl to call the REST web service and libxml2 to manipulate the XML responses. The current version supports the majority of the API (see Flickcurl API coverage) including the functions for photo uploading, browsing, searching, adding and editing comments, groups, notes, photosets, categories, tags and photo metadata. It also includes a program flickrdf to turn photo metadata, tags and machine tags into RDF descriptions of photso and tags. %package -n %devname Summary: Development files for %libname Group: System/Libraries Requires: %{libname} = %{version} Provides: %name-devel = %version-%release, lib%{name}-devel = %version-%release %description -n %devname This package contains the developement files for the %{name} library. %prep %setup -q %build %configure %{__make} %install rm -fr %{buildroot} %makeinstall %clean rm -fr %{buildroot} %post -n %{libname} -p /sbin/ldconfig %postun -n %{libname} -p /sbin/ldconfig %files %doc LICENSE-2.0.txt LICENSE.html AUTHORS COPYING COPYING.LIB %doc NEWS NEWS.html README README.html ChangeLog coverage.html %{_bindir}/flickcurl %{_bindir}/flickrdf %{_mandir}/man1/flickcurl.1.* %{_mandir}/man1/flickrdf.1.* %files -n %libname %{_libdir}/lib%{name}.so.%{major}* %files -n %devname %doc NOTICE %{_bindir}/flickcurl-config %{_libdir}/lib%{name}.a %{_libdir}/lib%{name}.la %{_libdir}/lib%{name}.so %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/flickcurl.h %{_mandir}/man1/flickcurl-config.1.* %changelog * Thu Dec 21 2007 Dave Beckett - Fedora 7 RPM packaging flickcurl-1.25/gtk-doc.make0000644000175000017500000002061312157732311012533 00000000000000# -*- mode: makefile -*- #################################### # Everything below here is generic # #################################### if GTK_DOC_USE_LIBTOOL GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) GTKDOC_RUN = $(LIBTOOL) --mode=execute else GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) GTKDOC_RUN = endif # We set GPATH here; this gives us semantics for GNU make # which are more like other make's VPATH, when it comes to # whether a source that is a target of one rule is then # searched for in VPATH/GPATH. # GPATH = $(srcdir) TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) SETUP_FILES = \ $(content_files) \ $(DOC_MAIN_SGML_FILE) \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt EXTRA_DIST = \ $(HTML_IMAGES) \ $(SETUP_FILES) DOC_STAMPS=setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ html-build.stamp pdf-build.stamp \ tmpl.stamp sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ $(DOC_MODULE).interfaces \ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals REPORT_FILES = \ $(DOC_MODULE)-undocumented.txt \ $(DOC_MODULE)-undeclared.txt \ $(DOC_MODULE)-unused.txt CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) if ENABLE_GTK_DOC if GTK_DOC_BUILD_HTML HTML_BUILD_STAMP=html-build.stamp else HTML_BUILD_STAMP= endif if GTK_DOC_BUILD_PDF PDF_BUILD_STAMP=pdf-build.stamp else PDF_BUILD_STAMP= endif all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) else all-local: endif docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) $(REPORT_FILES): sgml-build.stamp #### setup #### setup-build.stamp: -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ echo ' DOC Preparing build'; \ files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ if test "x$$files" != "x" ; then \ for file in $$files ; do \ test -f $(abs_srcdir)/$$file && \ cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \ done; \ fi; \ test -d $(abs_srcdir)/tmpl && \ { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \ chmod -R u+w $(abs_builddir)/tmpl; } \ fi @touch setup-build.stamp #### scan #### scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @echo ' DOC Scanning header files' @_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ echo " DOC Introspecting gobjects"; \ scanobj_options=""; \ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ scanobj_options="--verbose"; \ fi; \ fi; \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ for i in $(SCANOBJ_FILES) ; do \ test -f $$i || touch $$i ; \ done \ fi @touch scan-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true #### templates #### tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @echo ' DOC Rebuilding template files' @gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ if test -w $(abs_srcdir) ; then \ cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \ fi \ fi @touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @true $(srcdir)/tmpl/*.sgml: @true #### xml #### sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) @echo ' DOC Building XML' @-chmod -R u+w $(srcdir) @_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) @touch sgml-build.stamp sgml.stamp: sgml-build.stamp @true #### html #### html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) @echo ' DOC Building HTML' @rm -rf html @mkdir html @mkhtml_options=""; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkhtml_options="$$mkhtml_options --verbose"; \ fi; \ fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ if test "$(?)" = "0"; then \ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ fi; \ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -@test "x$(HTML_IMAGES)" = "x" || \ for file in $(HTML_IMAGES) ; do \ if test -f $(abs_srcdir)/$$file ; then \ cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ fi; \ if test -f $(abs_builddir)/$$file ; then \ cp $(abs_builddir)/$$file $(abs_builddir)/html; \ fi; \ done; @echo ' DOC Fixing cross-references' @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) @touch html-build.stamp #### pdf #### pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) @echo ' DOC Building PDF' @rm -f $(DOC_MODULE).pdf @mkpdf_options=""; \ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkpdf_options="$$mkpdf_options --verbose"; \ fi; \ fi; \ if test "x$(HTML_IMAGES)" != "x"; then \ for img in $(HTML_IMAGES); do \ part=`dirname $$img`; \ echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ if test $$? != 0; then \ mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ fi; \ done; \ fi; \ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) @touch pdf-build.stamp ############## clean-local: @rm -f *~ *.bak @rm -rf .libs distclean-local: @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ rm -rf tmpl; \ fi maintainer-clean-local: clean @rm -rf xml html install-data-local: @installfiles=`echo $(builddir)/html/*`; \ if test "$$installfiles" = '$(builddir)/html/*'; \ then echo 1>&2 'Nothing to install' ; \ else \ if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ $(mkinstalldirs) $${installdir} ; \ for i in $$installfiles; do \ echo ' $(INSTALL_DATA) '$$i ; \ $(INSTALL_DATA) $$i $${installdir}; \ done; \ if test -n "$(DOC_MODULE_VERSION)"; then \ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ fi; \ $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ fi uninstall-local: @if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ rm -rf $${installdir} # # Require gtk-doc when making dist # if ENABLE_GTK_DOC dist-check-gtkdoc: else dist-check-gtkdoc: @echo "*** gtk-doc must be installed and enabled in order to make dist" @false endif dist-hook: dist-check-gtkdoc dist-hook-local @mkdir $(distdir)/tmpl @mkdir $(distdir)/html @-cp ./tmpl/*.sgml $(distdir)/tmpl @cp ./html/* $(distdir)/html @-cp ./$(DOC_MODULE).pdf $(distdir)/ @-cp ./$(DOC_MODULE).types $(distdir)/ @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ @cd $(distdir) && rm -f $(DISTCLEANFILES) @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs